@visitscotland/component-library 5.3.12 → 5.3.13
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/components/components/card-group/CardGroup.vue.d.ts +63 -0
- package/dist/components/components/index.d.ts +1 -0
- package/dist/components/style.css +1 -1
- package/dist/components/vs-component-library.js +4 -4
- package/dist/components/vs-component-library.mjs +149 -94
- package/package.json +1 -1
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* the layout of the card group
|
|
4
|
+
* `grid`
|
|
5
|
+
*/
|
|
6
|
+
variant: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
validator: (value: unknown) => any;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* specifies the number of cards per row
|
|
13
|
+
* `3` or `4`
|
|
14
|
+
*/
|
|
15
|
+
cardsPerRow: {
|
|
16
|
+
type: NumberConstructor;
|
|
17
|
+
default: number;
|
|
18
|
+
validator: (value: unknown) => boolean;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* sets the card group to scroll snap
|
|
22
|
+
*/
|
|
23
|
+
scrollSnap: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
}>, {}, {}, {
|
|
28
|
+
cardGroupClasses(): (string | {
|
|
29
|
+
'is-scroll-snap': boolean;
|
|
30
|
+
'is-grid': boolean;
|
|
31
|
+
})[];
|
|
32
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
33
|
+
/**
|
|
34
|
+
* the layout of the card group
|
|
35
|
+
* `grid`
|
|
36
|
+
*/
|
|
37
|
+
variant: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
validator: (value: unknown) => any;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* specifies the number of cards per row
|
|
44
|
+
* `3` or `4`
|
|
45
|
+
*/
|
|
46
|
+
cardsPerRow: {
|
|
47
|
+
type: NumberConstructor;
|
|
48
|
+
default: number;
|
|
49
|
+
validator: (value: unknown) => boolean;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* sets the card group to scroll snap
|
|
53
|
+
*/
|
|
54
|
+
scrollSnap: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
}>> & Readonly<{}>, {
|
|
59
|
+
variant: string;
|
|
60
|
+
cardsPerRow: number;
|
|
61
|
+
scrollSnap: boolean;
|
|
62
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
63
|
+
export default _default;
|
|
@@ -18,6 +18,7 @@ export { default as VsCannedSearch } from './canned-search/CannedSearch.vue';
|
|
|
18
18
|
export { default as VsCaption } from './caption/Caption.vue';
|
|
19
19
|
export { default as VsCarbonCalculator } from './carbon-calculator/CarbonCalculator.vue';
|
|
20
20
|
export { default as VsCard } from './card/Card.vue';
|
|
21
|
+
export { default as VsCardGroup } from './card-group/CardGroup.vue';
|
|
21
22
|
export { default as VsCarousel } from './carousel/Carousel.vue';
|
|
22
23
|
export { default as VsCarouselSlide } from './carousel/components/CarouselSlide.vue';
|
|
23
24
|
export { default as VsCheckbox } from './checkbox/Checkbox.vue';
|