@randstad-uca/design-system 1.0.68 → 1.0.70
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/File.d.ts +9 -0
- package/dist/components/Select.d.ts +5 -0
- package/dist/index.js +274 -185
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/stories/Select.stories.d.ts +10 -0
- package/dist/stories/UploadFile.stories.d.ts +6 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -68,6 +68,16 @@ declare const _default: {
|
|
|
68
68
|
control: string;
|
|
69
69
|
description: string;
|
|
70
70
|
};
|
|
71
|
+
textLabelFilterNotResult: {
|
|
72
|
+
control: string;
|
|
73
|
+
description: string;
|
|
74
|
+
defaultValue: string;
|
|
75
|
+
};
|
|
76
|
+
textLabelMobileSearch: {
|
|
77
|
+
control: string;
|
|
78
|
+
description: string;
|
|
79
|
+
defaultValue: string;
|
|
80
|
+
};
|
|
71
81
|
};
|
|
72
82
|
};
|
|
73
83
|
export default _default;
|
|
@@ -92,6 +92,11 @@ declare const _default: {
|
|
|
92
92
|
control: string;
|
|
93
93
|
description: string;
|
|
94
94
|
};
|
|
95
|
+
showDeleteConfirmation: {
|
|
96
|
+
control: string;
|
|
97
|
+
description: string;
|
|
98
|
+
defaultValue: boolean;
|
|
99
|
+
};
|
|
95
100
|
onFilesChanged: {
|
|
96
101
|
action: string;
|
|
97
102
|
};
|
|
@@ -116,3 +121,4 @@ export declare const InstantUpload: StoryFn;
|
|
|
116
121
|
export declare const SlowUpload: StoryFn;
|
|
117
122
|
export declare const WithSnackbar: StoryFn;
|
|
118
123
|
export declare const WithAlerts: StoryFn;
|
|
124
|
+
export declare const DeleteWithConfirmationAndAlerts: StoryFn;
|