@randstad-uca/design-system 1.0.101 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randstad-uca/design-system",
3
- "version": "1.0.101",
3
+ "version": "1.0.102",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -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;
@@ -12,6 +12,7 @@ interface ButtonArgs {
12
12
  active?: boolean;
13
13
  focusVisible?: boolean;
14
14
  iconName?: string | null;
15
+ idevent?: string;
15
16
  }
16
17
  declare const meta: Meta<ButtonArgs>;
17
18
  export default meta;
@@ -77,6 +77,10 @@ declare const _default: {
77
77
  eighteenOrOlder: {
78
78
  control: string;
79
79
  };
80
+ lastElement: {
81
+ control: string;
82
+ description: string;
83
+ };
80
84
  maxLength: {
81
85
  control: string;
82
86
  description: string;
@@ -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>;
@@ -26,9 +26,6 @@ declare const _default: {
26
26
  control: string;
27
27
  options: string[];
28
28
  };
29
- color: {
30
- control: string;
31
- };
32
29
  };
33
30
  };
34
31
  export default _default;
@@ -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
- steps: {
8
- control: string;
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
- steps: string[];
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
- steps: string[];
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
- steps: string[];
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
- steps: string[];
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
- defaultValue: undefined;
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: {
@@ -92,6 +92,10 @@ declare const _default: {
92
92
  control: string;
93
93
  description: string;
94
94
  };
95
+ width: {
96
+ control: string;
97
+ description: string;
98
+ };
95
99
  showDeleteConfirmation: {
96
100
  control: string;
97
101
  description: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randstad-uca/design-system",
3
- "version": "1.0.101",
3
+ "version": "1.0.102",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "files": [