@fewangsit/wangsvue-fats 1.0.0-alpha.114 → 1.0.0-alpha.115
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/components/carousel/Carousel.vue.d.ts +28 -0
- package/components/index.d.ts +1 -0
- package/package.json +1 -1
- package/stats.html +1 -1
- package/wangsvue-fats.js +5742 -5682
- package/wangsvue-fats.system.js +56 -56
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ImageGallery } from '../image/Image.vue.d';
|
|
2
|
+
import { ClassComponent } from '../ts-helpers';
|
|
3
|
+
|
|
4
|
+
export interface CarouselProps {
|
|
5
|
+
/**
|
|
6
|
+
* An array of image object to be displayed.
|
|
7
|
+
*/
|
|
8
|
+
value: ImageGallery[] | undefined;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* **TSVue v2 - Carousel**
|
|
13
|
+
*
|
|
14
|
+
* _Carousel is a component for displaying a collection of images or content in a sliding or rotating fashion.
|
|
15
|
+
* You can navigate through the items using the provided next and previous functions._
|
|
16
|
+
*
|
|
17
|
+
* --- ---
|
|
18
|
+
* 
|
|
19
|
+
*
|
|
20
|
+
* @group components
|
|
21
|
+
*/
|
|
22
|
+
declare class Carousel extends ClassComponent<
|
|
23
|
+
CarouselProps,
|
|
24
|
+
unknown,
|
|
25
|
+
unknown
|
|
26
|
+
> {}
|
|
27
|
+
|
|
28
|
+
export default Carousel;
|
package/components/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { default as ButtonSync } from './buttonsync/ButtonSync.vue';
|
|
|
17
17
|
export { default as ButtonToggle } from './buttontoggle/ButtonToggle.vue';
|
|
18
18
|
export { default as Calendar } from './calendar/Calendar.vue';
|
|
19
19
|
export { default as Card } from './card/Card.vue';
|
|
20
|
+
export { default as Carousel } from './carousel/Carousel.vue';
|
|
20
21
|
export { default as Checkbox } from './checkbox/Checkbox.vue';
|
|
21
22
|
export { default as DataTable } from './datatable/DataTable.vue';
|
|
22
23
|
export { default as Dialog } from './dialog/Dialog.vue';
|