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.
838
+
*/
839
+
"arrowType": ArrowType;
840
+
/**
841
+
* 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.
842
+
*/
843
+
"autoplay": AutoplayType;
844
+
/**
845
+
* When `autoplay` is `true`, specifies in milliseconds the length of time to display each Carousel Item.
846
+
*/
847
+
"autoplayDuration": number;
848
+
/**
849
+
* Specifies if the component's controls are positioned absolutely on top of slotted Carousel Items.
850
+
*/
851
+
"controlOverlay": boolean;
852
+
/**
853
+
* When `true`, interaction is prevented and the component is displayed with lower opacity.
854
+
*/
855
+
"disabled": boolean;
856
+
/**
857
+
* Accessible name for the component.
858
+
*/
859
+
"label": string;
860
+
/**
861
+
* Use this property to override individual strings used by the component.
862
+
*/
863
+
"messageOverrides": Partial<CarouselMessages>;
864
+
/**
865
+
* Made into a prop for testing purposes only
866
+
*/
867
+
"messages": CarouselMessages;
868
+
/**
869
+
* Made into a prop for testing purposes only
870
+
*/
871
+
"paused": boolean;
872
+
/**
873
+
* Play the carousel. If `autoplay` is not enabled (initialized either to `true` or `"paused"`), these methods will have no effect.
874
+
*/
875
+
"play": () => Promise<void>;
876
+
/**
877
+
* The component's selected `calcite-carousel-item`.
878
+
* @readonly
879
+
*/
880
+
"selectedItem": HTMLCalciteCarouselItemElement;
881
+
/**
882
+
* Sets focus on the component.
883
+
*/
884
+
"setFocus": () => Promise<void>;
885
+
/**
886
+
* 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.
8389
+
*/
8390
+
"arrowType"?: ArrowType;
8391
+
/**
8392
+
* 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.
8393
+
*/
8394
+
"autoplay"?: AutoplayType;
8395
+
/**
8396
+
* When `autoplay` is `true`, specifies in milliseconds the length of time to display each Carousel Item.
8397
+
*/
8398
+
"autoplayDuration"?: number;
8399
+
/**
8400
+
* Specifies if the component's controls are positioned absolutely on top of slotted Carousel Items.
8401
+
*/
8402
+
"controlOverlay"?: boolean;
8403
+
/**
8404
+
* When `true`, interaction is prevented and the component is displayed with lower opacity.
8405
+
*/
8406
+
"disabled"?: boolean;
8407
+
/**
8408
+
* Accessible name for the component.
8409
+
*/
8410
+
"label": string;
8411
+
/**
8412
+
* Use this property to override individual strings used by the component.
8413
+
*/
8414
+
"messageOverrides"?: Partial<CarouselMessages>;
8415
+
/**
8416
+
* Made into a prop for testing purposes only
8417
+
*/
8418
+
"messages"?: CarouselMessages;
8419
+
/**
8420
+
* Fires when the selected `calcite-carousel-item` changes.
0 commit comments