classes.d.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. export declare const CLASS_ROOT = "splide";
  2. export declare const CLASS_SLIDER: string;
  3. export declare const CLASS_TRACK: string;
  4. export declare const CLASS_LIST: string;
  5. export declare const CLASS_SLIDE: string;
  6. export declare const CLASS_CLONE: string;
  7. export declare const CLASS_CONTAINER: string;
  8. export declare const CLASS_ARROWS: string;
  9. export declare const CLASS_ARROW: string;
  10. export declare const CLASS_ARROW_PREV: string;
  11. export declare const CLASS_ARROW_NEXT: string;
  12. export declare const CLASS_PAGINATION: string;
  13. export declare const CLASS_PAGINATION_PAGE: string;
  14. export declare const CLASS_PROGRESS: string;
  15. export declare const CLASS_PROGRESS_BAR: string;
  16. export declare const CLASS_AUTOPLAY: string;
  17. export declare const CLASS_PLAY: string;
  18. export declare const CLASS_PAUSE: string;
  19. export declare const CLASS_SPINNER: string;
  20. export declare const CLASS_INITIALIZED = "is-initialized";
  21. export declare const CLASS_ACTIVE = "is-active";
  22. export declare const CLASS_PREV = "is-prev";
  23. export declare const CLASS_NEXT = "is-next";
  24. export declare const CLASS_VISIBLE = "is-visible";
  25. export declare const CLASS_LOADING = "is-loading";
  26. /**
  27. * The array with all status classes.
  28. *
  29. * @since 3.0.0
  30. */
  31. export declare const STATUS_CLASSES: string[];
  32. /**
  33. * The collection of classes for elements that Splide dynamically creates.
  34. *
  35. * @since 3.0.0
  36. */
  37. export declare const CLASSES: {
  38. slide: string;
  39. clone: string;
  40. arrows: string;
  41. arrow: string;
  42. prev: string;
  43. next: string;
  44. pagination: string;
  45. page: string;
  46. spinner: string;
  47. };
  48. //# sourceMappingURL=../../../src/js/constants/classes.d.ts.map