123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- export declare const CLASS_ROOT = "splide";
- export declare const CLASS_SLIDER: string;
- export declare const CLASS_TRACK: string;
- export declare const CLASS_LIST: string;
- export declare const CLASS_SLIDE: string;
- export declare const CLASS_CLONE: string;
- export declare const CLASS_CONTAINER: string;
- export declare const CLASS_ARROWS: string;
- export declare const CLASS_ARROW: string;
- export declare const CLASS_ARROW_PREV: string;
- export declare const CLASS_ARROW_NEXT: string;
- export declare const CLASS_PAGINATION: string;
- export declare const CLASS_PAGINATION_PAGE: string;
- export declare const CLASS_PROGRESS: string;
- export declare const CLASS_PROGRESS_BAR: string;
- export declare const CLASS_AUTOPLAY: string;
- export declare const CLASS_PLAY: string;
- export declare const CLASS_PAUSE: string;
- export declare const CLASS_SPINNER: string;
- export declare const CLASS_INITIALIZED = "is-initialized";
- export declare const CLASS_ACTIVE = "is-active";
- export declare const CLASS_PREV = "is-prev";
- export declare const CLASS_NEXT = "is-next";
- export declare const CLASS_VISIBLE = "is-visible";
- export declare const CLASS_LOADING = "is-loading";
- /**
- * The array with all status classes.
- *
- * @since 3.0.0
- */
- export declare const STATUS_CLASSES: string[];
- /**
- * The collection of classes for elements that Splide dynamically creates.
- *
- * @since 3.0.0
- */
- export declare const CLASSES: {
- slide: string;
- clone: string;
- arrows: string;
- arrow: string;
- prev: string;
- next: string;
- pagination: string;
- page: string;
- spinner: string;
- };
- //# sourceMappingURL=../../../src/js/constants/classes.d.ts.map
|