@asdp/ferryui 0.1.22-dev.9114 → 0.1.22-dev.9151

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -256,6 +256,16 @@ interface CarouselWithCustomNavProps {
256
256
  * Callback when close button is clicked
257
257
  */
258
258
  onCloseClick?: () => void;
259
+ /**
260
+ * Whether the carousel should auto play
261
+ * @default false
262
+ */
263
+ autoPlay?: boolean;
264
+ /**
265
+ * Interval for auto play in milliseconds
266
+ * @default 5000
267
+ */
268
+ autoPlayInterval?: number;
259
269
  }
260
270
 
261
271
  declare const CarouselWithCustomNav: React$1.FC<CarouselWithCustomNavProps>;
@@ -2966,7 +2976,7 @@ interface CardBookingTicketProps {
2966
2976
  declare const CardBookingTicket: React$1.FC<CardBookingTicketProps>;
2967
2977
 
2968
2978
  interface FAQItem {
2969
- value: string;
2979
+ id: number;
2970
2980
  question: string;
2971
2981
  answer: string;
2972
2982
  }
package/dist/index.d.ts CHANGED
@@ -256,6 +256,16 @@ interface CarouselWithCustomNavProps {
256
256
  * Callback when close button is clicked
257
257
  */
258
258
  onCloseClick?: () => void;
259
+ /**
260
+ * Whether the carousel should auto play
261
+ * @default false
262
+ */
263
+ autoPlay?: boolean;
264
+ /**
265
+ * Interval for auto play in milliseconds
266
+ * @default 5000
267
+ */
268
+ autoPlayInterval?: number;
259
269
  }
260
270
 
261
271
  declare const CarouselWithCustomNav: React$1.FC<CarouselWithCustomNavProps>;
@@ -2966,7 +2976,7 @@ interface CardBookingTicketProps {
2966
2976
  declare const CardBookingTicket: React$1.FC<CardBookingTicketProps>;
2967
2977
 
2968
2978
  interface FAQItem {
2969
- value: string;
2979
+ id: number;
2970
2980
  question: string;
2971
2981
  answer: string;
2972
2982
  }