@randstad-uca/design-system 1.0.100 → 1.0.102
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/Form.d.ts +1 -0
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/stories/Bubble.stories.d.ts +28 -0
- package/dist/stories/Button.stories.d.ts +1 -0
- package/dist/stories/DatePicker.stories.d.ts +4 -0
- package/dist/stories/Form.stories.d.ts +2 -1
- package/dist/stories/Modal.stories.d.ts +75 -0
- package/dist/stories/Snackbar.stories.d.ts +0 -3
- package/dist/stories/SocialMediaInput.stories.d.ts +7 -0
- package/dist/stories/Stepper.stories.d.ts +10 -6
- package/dist/stories/Upload.stories.d.ts +51 -1
- package/dist/stories/UploadFile.stories.d.ts +4 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -31,6 +31,34 @@ declare const _default: {
|
|
|
31
31
|
control: string;
|
|
32
32
|
description: string;
|
|
33
33
|
};
|
|
34
|
+
backgroundColor: {
|
|
35
|
+
control: string;
|
|
36
|
+
description: string;
|
|
37
|
+
};
|
|
38
|
+
textColor: {
|
|
39
|
+
control: string;
|
|
40
|
+
description: string;
|
|
41
|
+
};
|
|
42
|
+
fontFamily: {
|
|
43
|
+
control: string;
|
|
44
|
+
description: string;
|
|
45
|
+
};
|
|
46
|
+
width: {
|
|
47
|
+
control: string;
|
|
48
|
+
description: string;
|
|
49
|
+
};
|
|
50
|
+
height: {
|
|
51
|
+
control: string;
|
|
52
|
+
description: string;
|
|
53
|
+
};
|
|
54
|
+
top: {
|
|
55
|
+
control: string;
|
|
56
|
+
description: string;
|
|
57
|
+
};
|
|
58
|
+
left: {
|
|
59
|
+
control: string;
|
|
60
|
+
description: string;
|
|
61
|
+
};
|
|
34
62
|
};
|
|
35
63
|
};
|
|
36
64
|
export default _default;
|
|
@@ -26,7 +26,8 @@ export interface FormProps {
|
|
|
26
26
|
heightTextArea?: string;
|
|
27
27
|
maxHeightTextArea?: string;
|
|
28
28
|
helperAlign?: 'left' | 'center' | 'right' | 'justify';
|
|
29
|
-
keydown?: 'number' | 'text' | undefined;
|
|
29
|
+
keydown?: 'number' | 'text' | 'alfanumeric' | undefined;
|
|
30
|
+
keydownRegex?: string;
|
|
30
31
|
}
|
|
31
32
|
declare const meta: Meta<FormProps>;
|
|
32
33
|
export default meta;
|
|
@@ -9,6 +9,81 @@ declare const _default: {
|
|
|
9
9
|
parameters: {
|
|
10
10
|
layout: string;
|
|
11
11
|
};
|
|
12
|
+
argTypes: {
|
|
13
|
+
open: {
|
|
14
|
+
control: string;
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
17
|
+
title: {
|
|
18
|
+
control: string;
|
|
19
|
+
description: string;
|
|
20
|
+
};
|
|
21
|
+
subtitle: {
|
|
22
|
+
control: string;
|
|
23
|
+
description: string;
|
|
24
|
+
};
|
|
25
|
+
showNotice: {
|
|
26
|
+
control: string;
|
|
27
|
+
description: string;
|
|
28
|
+
};
|
|
29
|
+
noticeType: {
|
|
30
|
+
control: string;
|
|
31
|
+
options: string[];
|
|
32
|
+
description: string;
|
|
33
|
+
};
|
|
34
|
+
noticeMessage: {
|
|
35
|
+
control: string;
|
|
36
|
+
description: string;
|
|
37
|
+
};
|
|
38
|
+
noticeIcon: {
|
|
39
|
+
control: string;
|
|
40
|
+
description: string;
|
|
41
|
+
};
|
|
42
|
+
showPrimaryButton: {
|
|
43
|
+
control: string;
|
|
44
|
+
description: string;
|
|
45
|
+
};
|
|
46
|
+
primaryButtonLabel: {
|
|
47
|
+
control: string;
|
|
48
|
+
description: string;
|
|
49
|
+
};
|
|
50
|
+
showSecondaryButton: {
|
|
51
|
+
control: string;
|
|
52
|
+
description: string;
|
|
53
|
+
};
|
|
54
|
+
secondaryButtonLabel: {
|
|
55
|
+
control: string;
|
|
56
|
+
description: string;
|
|
57
|
+
};
|
|
58
|
+
isFooterCustom: {
|
|
59
|
+
control: string;
|
|
60
|
+
description: string;
|
|
61
|
+
};
|
|
62
|
+
isPrimaryLoader: {
|
|
63
|
+
control: string;
|
|
64
|
+
description: string;
|
|
65
|
+
};
|
|
66
|
+
isPrimaryDisabled: {
|
|
67
|
+
control: string;
|
|
68
|
+
description: string;
|
|
69
|
+
};
|
|
70
|
+
modalWidth: {
|
|
71
|
+
control: string;
|
|
72
|
+
description: string;
|
|
73
|
+
};
|
|
74
|
+
modalHeight: {
|
|
75
|
+
control: string;
|
|
76
|
+
description: string;
|
|
77
|
+
};
|
|
78
|
+
maxHeight: {
|
|
79
|
+
control: string;
|
|
80
|
+
description: string;
|
|
81
|
+
};
|
|
82
|
+
hideFooter: {
|
|
83
|
+
control: string;
|
|
84
|
+
description: string;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
12
87
|
};
|
|
13
88
|
export default _default;
|
|
14
89
|
export declare const ModalConScrollInterno: () => import("lit-html").TemplateResult<1>;
|
|
@@ -13,6 +13,13 @@ export interface SocialMediaInputProps {
|
|
|
13
13
|
required?: boolean;
|
|
14
14
|
maxLength?: number;
|
|
15
15
|
helperAlign?: 'left' | 'center' | 'right' | 'justify';
|
|
16
|
+
help?: string;
|
|
17
|
+
helpLink?: string;
|
|
18
|
+
helpLinkTooltipMessage?: string;
|
|
19
|
+
labelColor?: string;
|
|
20
|
+
helpClickable?: boolean;
|
|
21
|
+
customSanitizeRegex?: string;
|
|
22
|
+
customUrlValidationRegex?: string;
|
|
16
23
|
}
|
|
17
24
|
declare const meta: Meta<SocialMediaInputProps>;
|
|
18
25
|
export default meta;
|
|
@@ -4,8 +4,12 @@ declare const _default: {
|
|
|
4
4
|
title: string;
|
|
5
5
|
component: string;
|
|
6
6
|
argTypes: {
|
|
7
|
-
|
|
8
|
-
control:
|
|
7
|
+
totalSteps: {
|
|
8
|
+
control: {
|
|
9
|
+
type: string;
|
|
10
|
+
min: number;
|
|
11
|
+
max: number;
|
|
12
|
+
};
|
|
9
13
|
description: string;
|
|
10
14
|
};
|
|
11
15
|
currentStep: {
|
|
@@ -23,28 +27,28 @@ export default _default;
|
|
|
23
27
|
export declare const Default: {
|
|
24
28
|
render: StoryFn;
|
|
25
29
|
args: {
|
|
26
|
-
|
|
30
|
+
totalSteps: number;
|
|
27
31
|
currentStep: number;
|
|
28
32
|
};
|
|
29
33
|
};
|
|
30
34
|
export declare const MixedLabels: {
|
|
31
35
|
render: StoryFn;
|
|
32
36
|
args: {
|
|
33
|
-
|
|
37
|
+
totalSteps: number;
|
|
34
38
|
currentStep: number;
|
|
35
39
|
};
|
|
36
40
|
};
|
|
37
41
|
export declare const NoLabels: {
|
|
38
42
|
render: StoryFn;
|
|
39
43
|
args: {
|
|
40
|
-
|
|
44
|
+
totalSteps: number;
|
|
41
45
|
currentStep: number;
|
|
42
46
|
};
|
|
43
47
|
};
|
|
44
48
|
export declare const AllStepsCompleted: {
|
|
45
49
|
render: StoryFn;
|
|
46
50
|
args: {
|
|
47
|
-
|
|
51
|
+
totalSteps: number;
|
|
48
52
|
currentStep: number;
|
|
49
53
|
};
|
|
50
54
|
};
|
|
@@ -20,10 +20,60 @@ declare const _default: {
|
|
|
20
20
|
description: string;
|
|
21
21
|
defaultValue: number;
|
|
22
22
|
};
|
|
23
|
+
maxFiles: {
|
|
24
|
+
control: {
|
|
25
|
+
type: string;
|
|
26
|
+
min: number;
|
|
27
|
+
};
|
|
28
|
+
description: string;
|
|
29
|
+
defaultValue: number;
|
|
30
|
+
};
|
|
31
|
+
label: {
|
|
32
|
+
control: string;
|
|
33
|
+
description: string;
|
|
34
|
+
};
|
|
23
35
|
labelColor: {
|
|
24
36
|
control: string;
|
|
25
37
|
description: string;
|
|
26
|
-
|
|
38
|
+
};
|
|
39
|
+
helper: {
|
|
40
|
+
control: string;
|
|
41
|
+
description: string;
|
|
42
|
+
};
|
|
43
|
+
helperAlign: {
|
|
44
|
+
control: {
|
|
45
|
+
type: string;
|
|
46
|
+
};
|
|
47
|
+
options: string[];
|
|
48
|
+
description: string;
|
|
49
|
+
};
|
|
50
|
+
error: {
|
|
51
|
+
control: string;
|
|
52
|
+
description: string;
|
|
53
|
+
};
|
|
54
|
+
errorMessage: {
|
|
55
|
+
control: string;
|
|
56
|
+
description: string;
|
|
57
|
+
};
|
|
58
|
+
required: {
|
|
59
|
+
control: string;
|
|
60
|
+
description: string;
|
|
61
|
+
};
|
|
62
|
+
optional: {
|
|
63
|
+
control: string;
|
|
64
|
+
description: string;
|
|
65
|
+
};
|
|
66
|
+
help: {
|
|
67
|
+
control: string;
|
|
68
|
+
description: string;
|
|
69
|
+
};
|
|
70
|
+
helpLink: {
|
|
71
|
+
control: string;
|
|
72
|
+
description: string;
|
|
73
|
+
};
|
|
74
|
+
helpLinkTooltipMessage: {
|
|
75
|
+
control: string;
|
|
76
|
+
description: string;
|
|
27
77
|
};
|
|
28
78
|
simulatedDelay: {
|
|
29
79
|
control: {
|