You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Specifies how and if the "previous" and "next" arrows are displayed.
836
+
*/
837
+
"arrowType": ArrowType;
838
+
/**
839
+
* When `true`, the carousel will autoplay and controls will be displayed. When "paused" at time of initialization, the carousel will not autoplay, but controls will be displayed.
840
+
*/
841
+
"autoplay": AutoplayType;
842
+
/**
843
+
* When `autoplay` is `true`, specifies in milliseconds the length of time to display each Carousel Item.
844
+
*/
845
+
"autoplayDuration": number;
846
+
/**
847
+
* Specifies if the component's controls are positioned absolutely on top of slotted Carousel Items.
848
+
*/
849
+
"controlOverlay": boolean;
850
+
/**
851
+
* When `true`, interaction is prevented and the component is displayed with lower opacity.
852
+
*/
853
+
"disabled": boolean;
854
+
/**
855
+
* Accessible name for the component.
856
+
*/
857
+
"label": string;
858
+
/**
859
+
* Use this property to override individual strings used by the component.
860
+
*/
861
+
"messageOverrides": Partial<CarouselMessages>;
862
+
/**
863
+
* Made into a prop for testing purposes only
864
+
*/
865
+
"messages": CarouselMessages;
866
+
/**
867
+
* Made into a prop for testing purposes only
868
+
*/
869
+
"paused": boolean;
870
+
/**
871
+
* Play the carousel. If `autoplay` is not enabled (initialized either to `true` or `"paused"`), these methods will have no effect.
872
+
*/
873
+
"play": () => Promise<void>;
874
+
/**
875
+
* The component's selected `calcite-carousel-item`.
876
+
* @readonly
877
+
*/
878
+
"selectedItem": HTMLCalciteCarouselItemElement;
879
+
/**
880
+
* Sets focus on the component.
881
+
*/
882
+
"setFocus": () => Promise<void>;
883
+
/**
884
+
* Stop the carousel. If `autoplay` is not enabled (initialized either to `true` or `"paused"`), these methods will have no effect.
* Specifies how and if the "previous" and "next" arrows are displayed.
8321
+
*/
8322
+
"arrowType"?: ArrowType;
8323
+
/**
8324
+
* When `true`, the carousel will autoplay and controls will be displayed. When "paused" at time of initialization, the carousel will not autoplay, but controls will be displayed.
8325
+
*/
8326
+
"autoplay"?: AutoplayType;
8327
+
/**
8328
+
* When `autoplay` is `true`, specifies in milliseconds the length of time to display each Carousel Item.
8329
+
*/
8330
+
"autoplayDuration"?: number;
8331
+
/**
8332
+
* Specifies if the component's controls are positioned absolutely on top of slotted Carousel Items.
8333
+
*/
8334
+
"controlOverlay"?: boolean;
8335
+
/**
8336
+
* When `true`, interaction is prevented and the component is displayed with lower opacity.
8337
+
*/
8338
+
"disabled"?: boolean;
8339
+
/**
8340
+
* Accessible name for the component.
8341
+
*/
8342
+
"label": string;
8343
+
/**
8344
+
* Use this property to override individual strings used by the component.
8345
+
*/
8346
+
"messageOverrides"?: Partial<CarouselMessages>;
8347
+
/**
8348
+
* Made into a prop for testing purposes only
8349
+
*/
8350
+
"messages"?: CarouselMessages;
8351
+
/**
8352
+
* Fires when the selected `calcite-carousel-item` changes.
0 commit comments