@randstad-uca/design-system 1.0.19 → 1.0.20-alpha.0

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.
Files changed (63) hide show
  1. package/dist/assets/icons/arrow_down.svg +3 -0
  2. package/dist/assets/icons/arrow_left.svg +10 -0
  3. package/dist/assets/icons/arrow_up.svg +3 -0
  4. package/dist/assets/icons/{default/ayuda.svg → ayuda.svg} +5 -5
  5. package/dist/assets/icons/{default/calendar.svg → calendar.svg} +13 -13
  6. package/dist/assets/icons/{default/check.svg → check.svg} +10 -10
  7. package/dist/assets/icons/close.svg +10 -0
  8. package/dist/assets/icons/{default/email.svg → email.svg} +4 -4
  9. package/dist/assets/icons/{default/eye.svg → eye.svg} +4 -4
  10. package/dist/assets/icons/{default/eye_crossed.svg → eye_crossed.svg} +3 -3
  11. package/dist/assets/icons/home.svg +10 -0
  12. package/dist/assets/icons/icon_check.svg +4 -0
  13. package/dist/assets/icons/icon_trash.svg +7 -0
  14. package/dist/assets/icons/icon_warning.svg +6 -0
  15. package/dist/assets/icons/{default/info.svg → info.svg} +5 -5
  16. package/dist/assets/icons/settings.svg +11 -0
  17. package/dist/assets/icons/thumbs_up.svg +11 -0
  18. package/dist/assets/icons/tick-circle.svg +3 -0
  19. package/dist/assets/icons/user.svg +10 -0
  20. package/dist/assets/icons/{default/warning.svg → warning.svg} +5 -5
  21. package/dist/assets/img/carousel-example.png +0 -0
  22. package/dist/assets/img/facebook_logo.svg +4 -0
  23. package/dist/assets/img/google_logo.svg +13 -0
  24. package/dist/assets/img/icon_check.svg +4 -0
  25. package/dist/assets/img/icon_trash.svg +7 -0
  26. package/dist/assets/img/icon_warning.svg +6 -0
  27. package/dist/assets/img/image-upload-circle.svg +6 -0
  28. package/dist/assets/img/image-upload-disabled.svg +6 -0
  29. package/dist/assets/img/linkedin_logo.svg +3 -0
  30. package/dist/components/Accordion.d.ts +5 -0
  31. package/dist/components/{Test.d.ts → AccordionList.d.ts} +1 -1
  32. package/dist/components/CarouselCards.d.ts +1 -5
  33. package/dist/components/Form.d.ts +0 -1
  34. package/dist/components/Icon.d.ts +1 -3
  35. package/dist/components/Modal.d.ts +11 -0
  36. package/dist/components/Notice.d.ts +9 -1
  37. package/dist/components/Popup.d.ts +3 -0
  38. package/dist/components/Radio.d.ts +0 -1
  39. package/dist/components/Select.d.ts +11 -5
  40. package/dist/components/Tabs.d.ts +16 -0
  41. package/dist/components/Upload.d.ts +3 -0
  42. package/dist/index.css +1 -1
  43. package/dist/index.d.ts +1 -3
  44. package/dist/index.js +687 -4182
  45. package/dist/index.js.map +1 -1
  46. package/dist/package.json +5 -5
  47. package/dist/stories/Accordion.stories.d.ts +2 -1
  48. package/dist/stories/Button.stories.d.ts +1 -0
  49. package/dist/stories/Icon.stories.d.ts +1 -2
  50. package/dist/stories/Modal.stories.d.ts +5 -0
  51. package/dist/stories/Notice.stories.d.ts +39 -6
  52. package/dist/stories/Select.stories.d.ts +13 -174
  53. package/dist/stories/Stepper.stories.d.ts +29 -16
  54. package/dist/stories/Tabs.stories.d.ts +18 -0
  55. package/dist/stories/Upload.stories.d.ts +1 -0
  56. package/dist/styles/colors.css +17 -3
  57. package/dist/styles/fontStyles.d.ts +6 -0
  58. package/dist/styles/fontStyles.ts +51 -0
  59. package/dist/styles/fonts.css +0 -43
  60. package/package.json +5 -5
  61. package/dist/components/Datepicker.d.ts +0 -1
  62. package/dist/components/TestButton.d.ts +0 -6
  63. package/dist/stories/Datepicker.stories.d.ts +0 -6
package/dist/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@randstad-uca/design-system",
3
- "version": "1.0.19",
3
+ "version": "1.0.20-alpha.0",
4
+ "type": "module",
4
5
  "main": "dist/index.js",
5
6
  "files": [
6
7
  "dist"
@@ -9,7 +10,7 @@
9
10
  "test": "echo \"Error: no test specified\" && exit 1",
10
11
  "storybook-live": "storybook dev -p 6006",
11
12
  "build-test": "storybook build",
12
- "generate-icons": "node src/utils/generateIconList.js",
13
+ "generate-icons": "node src/utils/generateIconList.cjs",
13
14
  "build": "rm -rf dist && rollup -c"
14
15
  },
15
16
  "keywords": [],
@@ -42,10 +43,9 @@
42
43
  "webpack-cli": "^6.0.1"
43
44
  },
44
45
  "dependencies": {
45
- "@material/web": "^2.2.0",
46
- "@vaadin/vaadin-date-picker": "^23.5.12"
46
+ "@material/web": "^2.2.0"
47
47
  },
48
48
  "peerDependencies": {
49
- "lit": "^3.2.1"
49
+ "lit": "^3.3.0"
50
50
  }
51
51
  }
@@ -1,5 +1,6 @@
1
1
  import type { Meta, StoryFn } from '@storybook/web-components';
2
2
  import '../components/Accordion';
3
+ import '../components/AccordionList';
3
4
  declare const _default: Meta;
4
5
  export default _default;
5
- export declare const Default: StoryFn;
6
+ export declare const MobileList: StoryFn;
@@ -24,3 +24,4 @@ export declare const Primary: Story;
24
24
  export declare const Secondary: Story;
25
25
  export declare const Tertiary: Story;
26
26
  export declare const GoogleRoundButton: Story;
27
+ export declare const FacebookRoundButton: Story;
@@ -3,5 +3,4 @@ import '../components/Icon';
3
3
  declare const meta: Meta;
4
4
  export default meta;
5
5
  type Story = StoryObj;
6
- export declare const Default: Story;
7
- export declare const Red: Story;
6
+ export declare const Gallery: Story;
@@ -1,4 +1,5 @@
1
1
  import '../components/Modal';
2
+ import '../components/Notice';
2
3
  declare const _default: {
3
4
  title: string;
4
5
  component: string;
@@ -8,4 +9,8 @@ declare const _default: {
8
9
  };
9
10
  export default _default;
10
11
  export declare const ModalConScrollInterno: () => import("lit-html").TemplateResult<1>;
12
+ export declare const ModalConScrollInternoSubtitle: () => import("lit-html").TemplateResult<1>;
11
13
  export declare const ModalScrollEnBody: () => import("lit-html").TemplateResult<1>;
14
+ export declare const ModalConNotice: () => import("lit-html").TemplateResult<1>;
15
+ export declare const ModalConUnBoton: () => import("lit-html").TemplateResult<1>;
16
+ export declare const ModalConDosBotones: () => import("lit-html").TemplateResult<1>;
@@ -1,4 +1,5 @@
1
1
  import { TemplateResult } from 'lit';
2
+ import type { StoryFn } from '@storybook/web-components';
2
3
  import '../components/Notice';
3
4
  declare const _default: {
4
5
  title: string;
@@ -6,7 +7,7 @@ declare const _default: {
6
7
  parameters: {
7
8
  layout: string;
8
9
  };
9
- decorators: ((story: any) => TemplateResult<1>)[];
10
+ decorators: ((story: () => TemplateResult) => TemplateResult<1>)[];
10
11
  argTypes: {
11
12
  icon: {
12
13
  control: string;
@@ -25,7 +26,43 @@ declare const _default: {
25
26
  };
26
27
  export default _default;
27
28
  export declare const Default: {
28
- render: (args: any) => TemplateResult;
29
+ render: StoryFn;
30
+ args: {
31
+ type: string;
32
+ icon: string;
33
+ message: string;
34
+ open: boolean;
35
+ };
36
+ };
37
+ export declare const Informative: {
38
+ render: StoryFn;
39
+ args: {
40
+ type: string;
41
+ icon: string;
42
+ message: string;
43
+ open: boolean;
44
+ };
45
+ };
46
+ export declare const Success: {
47
+ render: StoryFn;
48
+ args: {
49
+ type: string;
50
+ icon: string;
51
+ message: string;
52
+ open: boolean;
53
+ };
54
+ };
55
+ export declare const Warning: {
56
+ render: StoryFn;
57
+ args: {
58
+ type: string;
59
+ icon: string;
60
+ message: string;
61
+ open: boolean;
62
+ };
63
+ };
64
+ export declare const Error: {
65
+ render: StoryFn;
29
66
  args: {
30
67
  type: string;
31
68
  icon: string;
@@ -33,7 +70,3 @@ export declare const Default: {
33
70
  open: boolean;
34
71
  };
35
72
  };
36
- export declare const Informative: (args: any) => TemplateResult;
37
- export declare const Success: (args: any) => TemplateResult;
38
- export declare const Warning: (args: any) => TemplateResult;
39
- export declare const Error: (args: any) => TemplateResult;
@@ -1,3 +1,4 @@
1
+ import type { StoryFn } from '@storybook/web-components';
1
2
  import '../components/Select';
2
3
  declare const _default: {
3
4
  title: string;
@@ -5,211 +6,49 @@ declare const _default: {
5
6
  argTypes: {
6
7
  options: {
7
8
  control: string;
8
- description: string;
9
9
  };
10
10
  placeholder: {
11
11
  control: string;
12
- description: string;
13
12
  };
14
13
  defaultValue: {
15
14
  control: string;
16
- description: string;
17
15
  };
18
16
  disabled: {
19
17
  control: string;
20
- description: string;
21
18
  };
22
19
  label: {
23
20
  control: string;
24
- description: string;
25
21
  };
26
22
  labelColor: {
27
23
  control: string;
28
- description: string;
29
24
  };
30
25
  filterable: {
31
26
  control: string;
32
- description: string;
33
27
  };
34
28
  screenWidth: {
35
29
  control: string;
36
- description: string;
37
30
  };
38
31
  error: {
39
32
  control: string;
40
- description: string;
41
33
  };
42
34
  onOptionSelected: {
43
35
  action: string;
44
- description: string;
45
36
  };
46
37
  maxLength: {
47
38
  control: string;
48
- description: string;
49
- };
50
- };
51
- parameters: {
52
- docs: {
53
- description: {
54
- component: string;
55
- };
56
39
  };
57
40
  };
58
41
  };
59
42
  export default _default;
60
- export declare const Default: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
61
- options: any;
62
- placeholder: any;
63
- defaultValue: any;
64
- disabled: any;
65
- label: any;
66
- labelColor: any;
67
- filterable: any;
68
- maxLength: any;
69
- screenWidth: any;
70
- error: any;
71
- onOptionSelected: any;
72
- }) => import("lit-html").TemplateResult<1>;
73
- export declare const WithObjects: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
74
- options: any;
75
- placeholder: any;
76
- defaultValue: any;
77
- disabled: any;
78
- label: any;
79
- labelColor: any;
80
- filterable: any;
81
- maxLength: any;
82
- screenWidth: any;
83
- error: any;
84
- onOptionSelected: any;
85
- }) => import("lit-html").TemplateResult<1>;
86
- export declare const WithNoOptions: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
87
- options: any;
88
- placeholder: any;
89
- defaultValue: any;
90
- disabled: any;
91
- label: any;
92
- labelColor: any;
93
- filterable: any;
94
- maxLength: any;
95
- screenWidth: any;
96
- error: any;
97
- onOptionSelected: any;
98
- }) => import("lit-html").TemplateResult<1>;
99
- export declare const WithLabel: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
100
- options: any;
101
- placeholder: any;
102
- defaultValue: any;
103
- disabled: any;
104
- label: any;
105
- labelColor: any;
106
- filterable: any;
107
- maxLength: any;
108
- screenWidth: any;
109
- error: any;
110
- onOptionSelected: any;
111
- }) => import("lit-html").TemplateResult<1>;
112
- export declare const NonFilterable: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
113
- options: any;
114
- placeholder: any;
115
- defaultValue: any;
116
- disabled: any;
117
- label: any;
118
- labelColor: any;
119
- filterable: any;
120
- maxLength: any;
121
- screenWidth: any;
122
- error: any;
123
- onOptionSelected: any;
124
- }) => import("lit-html").TemplateResult<1>;
125
- export declare const Disabled: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
126
- options: any;
127
- placeholder: any;
128
- defaultValue: any;
129
- disabled: any;
130
- label: any;
131
- labelColor: any;
132
- filterable: any;
133
- maxLength: any;
134
- screenWidth: any;
135
- error: any;
136
- onOptionSelected: any;
137
- }) => import("lit-html").TemplateResult<1>;
138
- export declare const WithDefaultObjectValue: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
139
- options: any;
140
- placeholder: any;
141
- defaultValue: any;
142
- disabled: any;
143
- label: any;
144
- labelColor: any;
145
- filterable: any;
146
- maxLength: any;
147
- screenWidth: any;
148
- error: any;
149
- onOptionSelected: any;
150
- }) => import("lit-html").TemplateResult<1>;
151
- export declare const NonFilterableBasic: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
152
- options: any;
153
- placeholder: any;
154
- defaultValue: any;
155
- disabled: any;
156
- label: any;
157
- labelColor: any;
158
- filterable: any;
159
- maxLength: any;
160
- screenWidth: any;
161
- error: any;
162
- onOptionSelected: any;
163
- }) => import("lit-html").TemplateResult<1>;
164
- export declare const WithMaxLength: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
165
- options: any;
166
- placeholder: any;
167
- defaultValue: any;
168
- disabled: any;
169
- label: any;
170
- labelColor: any;
171
- filterable: any;
172
- maxLength: any;
173
- screenWidth: any;
174
- error: any;
175
- onOptionSelected: any;
176
- }) => import("lit-html").TemplateResult<1>;
177
- export declare const MobileModal: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
178
- options: any;
179
- placeholder: any;
180
- defaultValue: any;
181
- disabled: any;
182
- label: any;
183
- labelColor: any;
184
- filterable: any;
185
- maxLength: any;
186
- screenWidth: any;
187
- error: any;
188
- onOptionSelected: any;
189
- }) => import("lit-html").TemplateResult<1>;
190
- export declare const WithError: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
191
- options: any;
192
- placeholder: any;
193
- defaultValue: any;
194
- disabled: any;
195
- label: any;
196
- labelColor: any;
197
- filterable: any;
198
- maxLength: any;
199
- screenWidth: any;
200
- error: any;
201
- onOptionSelected: any;
202
- }) => import("lit-html").TemplateResult<1>;
203
- export declare const MobileWithError: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
204
- options: any;
205
- placeholder: any;
206
- defaultValue: any;
207
- disabled: any;
208
- label: any;
209
- labelColor: any;
210
- filterable: any;
211
- maxLength: any;
212
- screenWidth: any;
213
- error: any;
214
- onOptionSelected: any;
215
- }) => import("lit-html").TemplateResult<1>;
43
+ export declare const Default: StoryFn;
44
+ export declare const WithObjects: StoryFn;
45
+ export declare const WithNoOptions: StoryFn;
46
+ export declare const WithLabel: StoryFn;
47
+ export declare const NonFilterable: StoryFn;
48
+ export declare const Disabled: StoryFn;
49
+ export declare const WithDefaultObjectValue: StoryFn;
50
+ export declare const NonFilterableBasic: StoryFn;
51
+ export declare const WithMaxLength: StoryFn;
52
+ export declare const MobileModal: StoryFn;
53
+ export declare const WithError: StoryFn;
54
+ export declare const MobileWithError: StoryFn;
@@ -1,3 +1,4 @@
1
+ import type { StoryFn } from '@storybook/web-components';
1
2
  import '../components/Stepper';
2
3
  declare const _default: {
3
4
  title: string;
@@ -19,20 +20,32 @@ declare const _default: {
19
20
  };
20
21
  };
21
22
  export default _default;
22
- export declare const Default: ({ steps, currentStep }: {
23
- steps: any;
24
- currentStep: any;
25
- }) => import("lit-html").TemplateResult<1>;
26
- export declare const MixedLabels: ({ steps, currentStep }: {
27
- steps: any;
28
- currentStep: any;
29
- }) => import("lit-html").TemplateResult<1>;
30
- export declare const NoLabels: ({ steps, currentStep }: {
31
- steps: any;
32
- currentStep: any;
33
- }) => import("lit-html").TemplateResult<1>;
34
- export declare const AllStepsCompleted: ({ steps, currentStep }: {
35
- steps: any;
36
- currentStep: any;
37
- }) => import("lit-html").TemplateResult<1>;
23
+ export declare const Default: {
24
+ render: StoryFn;
25
+ args: {
26
+ steps: string[];
27
+ currentStep: number;
28
+ };
29
+ };
30
+ export declare const MixedLabels: {
31
+ render: StoryFn;
32
+ args: {
33
+ steps: string[];
34
+ currentStep: number;
35
+ };
36
+ };
37
+ export declare const NoLabels: {
38
+ render: StoryFn;
39
+ args: {
40
+ steps: string[];
41
+ currentStep: number;
42
+ };
43
+ };
44
+ export declare const AllStepsCompleted: {
45
+ render: StoryFn;
46
+ args: {
47
+ steps: string[];
48
+ currentStep: number;
49
+ };
50
+ };
38
51
  export declare const Interactive: () => import("lit-html").TemplateResult<1>;
@@ -0,0 +1,18 @@
1
+ import '../components/Tabs';
2
+ declare const _default: {
3
+ title: string;
4
+ component: string;
5
+ tags: string[];
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ };
10
+ export default _default;
11
+ export declare const Default: {
12
+ selected: string;
13
+ tabs: {
14
+ label: string;
15
+ icon: string;
16
+ value: string;
17
+ }[];
18
+ };
@@ -5,3 +5,4 @@ declare const _default: {
5
5
  };
6
6
  export default _default;
7
7
  export declare const Default: () => import("lit-html").TemplateResult<1>;
8
+ export declare const Disabled: () => import("lit-html").TemplateResult<1>;
@@ -4,7 +4,8 @@
4
4
  --primary-color-60: #7AACE8;
5
5
  --primary-color-40: #A6C8F0;
6
6
  --primary-color-20: #D3E3F7;
7
- --primary-color-10: #E8F1FB;
7
+ --primary-color-10: #2175D91A;
8
+ --primary-color-5: #2175D90D;
8
9
 
9
10
  --secondary-color: #0F1941;
10
11
  --secondary-color-80: #404767;
@@ -14,14 +15,21 @@
14
15
  --secondary-color-10: #E7E8EC;
15
16
 
16
17
  --brand-randstad-blue: #2175D9;
18
+ --randstad-blue-10: #E8F1FB;
19
+ --randstad-blue-40: #A6C8F0;
17
20
  --brand-dark-blue: #0F1941;
18
21
  --brand-light-blue: #00D7FF;
19
22
  --brand-off-white: #F7F5F0;
20
23
 
21
- --ui-negative: #E00F0FEE;
22
- --ui-positive: #257F56;
24
+ --ui-negative: #E00F0F;
25
+ --ui-negative-5: #FDF3F3;
26
+ --ui-negative-pink-shadow: #E00F0F1A;
27
+ --ui-positive: #257156;
28
+ --ui-positve-5: #F4F8F6;
23
29
  --ui-warning: #E9A204;
30
+ --ui-warning-10: #FCF5E5;
24
31
  --ui-informative: #4E90E1;
32
+ --ui-informative-10: #E8F1FB;
25
33
 
26
34
  --tertiary-shade: #DEDCD8;
27
35
  --tertiary-tint: #F9F7F3;
@@ -33,4 +41,10 @@
33
41
  --primary-button-active: #124077;
34
42
  --primary-button-focus: #2175D9;
35
43
 
44
+ --form-hover-shadow: #D1D3DB;
45
+
46
+ --randstad-dark-blue-40: #262626;
47
+ --primary-light-blue: #00D7FF;
48
+ --primary-light-blue-20: #00D7FF33;
49
+
36
50
  }
@@ -0,0 +1,6 @@
1
+ export declare const bodyXS: import("lit").CSSResult;
2
+ export declare const bodyS: import("lit").CSSResult;
3
+ export declare const bodyM: import("lit").CSSResult;
4
+ export declare const bodyL: import("lit").CSSResult;
5
+ export declare const titleXS: import("lit").CSSResult;
6
+ export declare const titleS: import("lit").CSSResult;
@@ -0,0 +1,51 @@
1
+ import { css } from 'lit';
2
+
3
+ export const bodyXS = css`
4
+ font-family: 'Graphik', sans-serif;
5
+ font-weight: 400;
6
+ font-size: 12px;
7
+ line-height: 15px;
8
+ letter-spacing: 0%;
9
+ `;
10
+
11
+ export const bodyS = css`
12
+ font-family: 'Graphik', sans-serif;
13
+ font-weight: 400;
14
+ font-size: 14px;
15
+ line-height: 25px;
16
+ letter-spacing: 0%;
17
+ `;
18
+
19
+ export const bodyM = css`
20
+ font-family: 'Graphik', sans-serif;
21
+ font-weight: 400;
22
+ font-size: 16px;
23
+ line-height: 25px;
24
+ letter-spacing: 0%;
25
+ `;
26
+
27
+ export const bodyL = css`
28
+ font-family: 'Graphik', sans-serif;
29
+ font-weight: 400;
30
+ font-size: 18px;
31
+ line-height: 30px;
32
+ letter-spacing: 0%;
33
+ `;
34
+
35
+ export const titleXS = css`
36
+ font-family: 'Graphik', sans-serif;
37
+ font-weight: 400;
38
+ font-size: 20px;
39
+ line-height: 30px;
40
+ letter-spacing: -1%;
41
+ vertical-align: middle;
42
+ `;
43
+
44
+ export const titleS = css`
45
+ font-family: 'Graphik', sans-serif;
46
+ font-weight: 400;
47
+ font-size: 26px;
48
+ line-height: 30px;
49
+ letter-spacing: -1%;
50
+ vertical-align: middle;
51
+ `;
@@ -5,47 +5,4 @@
5
5
  url('/src/assets/font/Graphik-Regular.eot') format('embedded-opentype');
6
6
  font-weight: normal;
7
7
  font-style: normal;
8
- }
9
-
10
- :root {
11
- --body-xs-font-size: 12px;
12
- --body-s-font-size: 14px;
13
- --body-m-font-size: 16px;
14
- --body-l-font-size: 18px;
15
- --body-xs-line-height: 20px;
16
- --body-s-line-height: 25px;
17
- --body-m-line-height: 25px;
18
- --body-l-line-height: 30px;
19
- }
20
-
21
- .body-l {
22
- font-family: Graphik;
23
- font-weight: 400;
24
- font-size: 18px;
25
- line-height: 100%;
26
- letter-spacing: 0%;
27
- }
28
-
29
- .body-m {
30
- font-family: Graphik;
31
- font-weight: 400;
32
- font-size: 16px;
33
- line-height: 100%;
34
- letter-spacing: 0%;
35
- }
36
-
37
- .body-s {
38
- font-family: Graphik;
39
- font-weight: 400;
40
- font-size: 149px;
41
- line-height: 100%;
42
- letter-spacing: 0%;
43
- }
44
-
45
- .body-xs {
46
- font-family: Graphik;
47
- font-weight: 400;
48
- font-size: 149px;
49
- line-height: 100%;
50
- letter-spacing: 0%;
51
8
  }
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@randstad-uca/design-system",
3
- "version": "1.0.19",
3
+ "version": "1.0.20-alpha.0",
4
+ "type": "module",
4
5
  "main": "dist/index.js",
5
6
  "files": [
6
7
  "dist"
@@ -9,7 +10,7 @@
9
10
  "test": "echo \"Error: no test specified\" && exit 1",
10
11
  "storybook-live": "storybook dev -p 6006",
11
12
  "build-test": "storybook build",
12
- "generate-icons": "node src/utils/generateIconList.js",
13
+ "generate-icons": "node src/utils/generateIconList.cjs",
13
14
  "build": "rm -rf dist && rollup -c"
14
15
  },
15
16
  "keywords": [],
@@ -42,10 +43,9 @@
42
43
  "webpack-cli": "^6.0.1"
43
44
  },
44
45
  "dependencies": {
45
- "@material/web": "^2.2.0",
46
- "@vaadin/vaadin-date-picker": "^23.5.12"
46
+ "@material/web": "^2.2.0"
47
47
  },
48
48
  "peerDependencies": {
49
- "lit": "^3.2.1"
49
+ "lit": "^3.3.0"
50
50
  }
51
51
  }
@@ -1 +0,0 @@
1
- import '@vaadin/vaadin-date-picker';
@@ -1,6 +0,0 @@
1
- import { LitElement } from 'lit';
2
- export declare class TestButton extends LitElement {
3
- label: string;
4
- static styles: import("lit").CSSResult;
5
- render(): import("lit-html").TemplateResult<1>;
6
- }
@@ -1,6 +0,0 @@
1
- import { Meta, StoryFn } from '@storybook/web-components';
2
- import '@vaadin/vaadin-date-picker';
3
- declare const _default: Meta;
4
- export default _default;
5
- export declare const Default: StoryFn;
6
- export declare const Disabled: StoryFn;