@randstad-uca/design-system 1.0.62 → 1.0.63
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/assets/icons/arrow_next.svg +3 -0
- package/dist/assets/icons/arrow_prev.svg +3 -0
- package/dist/components/Carousel.d.ts +63 -10
- package/dist/components/CarouselCards.d.ts +2 -0
- package/dist/components/Icon.d.ts +2 -2
- package/dist/index.js +570 -307
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/stories/Carousel.stories.d.ts +6 -2
- package/dist/stories/CarouselCards.stories.d.ts +1 -0
- package/dist/stories/Upload.stories.d.ts +16 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -4,5 +4,9 @@ import '../components/CarouselCards';
|
|
|
4
4
|
declare const _default: Meta;
|
|
5
5
|
export default _default;
|
|
6
6
|
export declare const Default: StoryFn;
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
7
|
+
export declare const CustomSize: StoryFn;
|
|
8
|
+
export declare const SlotContentAndNotInfinitePartial: StoryFn;
|
|
9
|
+
export declare const ResponsiveWithOutDynamicWidth: StoryFn;
|
|
10
|
+
export declare const NoNavButtonsAndNotInfinitePartial: StoryFn;
|
|
11
|
+
export declare const NoInfiniteScroll: StoryFn;
|
|
12
|
+
export declare const AutoplayDynamicWidth: StoryFn;
|
|
@@ -10,6 +10,20 @@ declare const _default: {
|
|
|
10
10
|
disabled: {
|
|
11
11
|
control: string;
|
|
12
12
|
};
|
|
13
|
+
maxFileSize: {
|
|
14
|
+
control: {
|
|
15
|
+
type: string;
|
|
16
|
+
min: number;
|
|
17
|
+
step: number;
|
|
18
|
+
};
|
|
19
|
+
description: string;
|
|
20
|
+
defaultValue: number;
|
|
21
|
+
};
|
|
22
|
+
labelColor: {
|
|
23
|
+
control: string;
|
|
24
|
+
description: string;
|
|
25
|
+
defaultValue: undefined;
|
|
26
|
+
};
|
|
13
27
|
simulatedDelay: {
|
|
14
28
|
control: {
|
|
15
29
|
type: string;
|
|
@@ -26,6 +40,8 @@ declare const _default: {
|
|
|
26
40
|
};
|
|
27
41
|
export default _default;
|
|
28
42
|
export declare const Default: StoryFn;
|
|
43
|
+
export declare const FileSizeLimitAndLabel: StoryFn;
|
|
44
|
+
export declare const CustomLabelColor: StoryFn;
|
|
29
45
|
export declare const InstantUpload: StoryFn;
|
|
30
46
|
export declare const SlowUpload: StoryFn;
|
|
31
47
|
export declare const Disabled: StoryFn;
|