@randstad-uca/design-system 1.0.18 → 1.0.20
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/Accordion.d.ts +13 -0
- package/dist/components/AccordionList.d.ts +5 -0
- package/dist/components/CarouselCards.d.ts +12 -0
- package/dist/components/Modal.d.ts +1 -0
- package/dist/components/ProgressCircle.d.ts +7 -0
- package/dist/components/Select.d.ts +8 -2
- package/dist/components/Tabs.d.ts +16 -0
- package/dist/components/Upload.d.ts +15 -0
- package/dist/index.d.ts +1 -2
- package/dist/index.js +452 -3948
- package/dist/index.js.map +1 -1
- package/dist/package.json +3 -4
- package/dist/stories/Accordion.stories.d.ts +6 -0
- package/dist/stories/CarouselCards.stories.d.ts +5 -0
- package/dist/stories/Modal.stories.d.ts +10 -5
- package/dist/stories/ProgressCircle.stories.d.ts +5 -0
- package/dist/stories/Select.stories.d.ts +74 -9
- package/dist/stories/Tabs.stories.d.ts +14 -0
- package/dist/stories/Upload.stories.d.ts +8 -0
- package/package.json +3 -4
- package/dist/components/Datepicker.d.ts +0 -1
- package/dist/components/Progress.d.ts +0 -11
- package/dist/stories/Datepicker.stories.d.ts +0 -6
- package/dist/stories/Progress.stories.d.ts +0 -15
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@randstad-uca/design-system",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -42,10 +42,9 @@
|
|
|
42
42
|
"webpack-cli": "^6.0.1"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@material/web": "^2.2.0"
|
|
46
|
-
"@vaadin/vaadin-date-picker": "^23.5.12"
|
|
45
|
+
"@material/web": "^2.2.0"
|
|
47
46
|
},
|
|
48
47
|
"peerDependencies": {
|
|
49
|
-
"lit": "^3.
|
|
48
|
+
"lit": "^3.3.0"
|
|
50
49
|
}
|
|
51
50
|
}
|
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
2
1
|
import '../components/Modal';
|
|
3
|
-
declare const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: string;
|
|
5
|
+
parameters: {
|
|
6
|
+
layout: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
export default _default;
|
|
10
|
+
export declare const ModalConScrollInterno: () => import("lit-html").TemplateResult<1>;
|
|
11
|
+
export declare const ModalScrollEnBody: () => import("lit-html").TemplateResult<1>;
|
|
@@ -31,6 +31,14 @@ declare const _default: {
|
|
|
31
31
|
control: string;
|
|
32
32
|
description: string;
|
|
33
33
|
};
|
|
34
|
+
screenWidth: {
|
|
35
|
+
control: string;
|
|
36
|
+
description: string;
|
|
37
|
+
};
|
|
38
|
+
error: {
|
|
39
|
+
control: string;
|
|
40
|
+
description: string;
|
|
41
|
+
};
|
|
34
42
|
onOptionSelected: {
|
|
35
43
|
action: string;
|
|
36
44
|
description: string;
|
|
@@ -49,7 +57,46 @@ declare const _default: {
|
|
|
49
57
|
};
|
|
50
58
|
};
|
|
51
59
|
export default _default;
|
|
52
|
-
export declare const Default: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, onOptionSelected }: {
|
|
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 }: {
|
|
53
100
|
options: any;
|
|
54
101
|
placeholder: any;
|
|
55
102
|
defaultValue: any;
|
|
@@ -58,9 +105,11 @@ export declare const Default: ({ options, placeholder, defaultValue, disabled, l
|
|
|
58
105
|
labelColor: any;
|
|
59
106
|
filterable: any;
|
|
60
107
|
maxLength: any;
|
|
108
|
+
screenWidth: any;
|
|
109
|
+
error: any;
|
|
61
110
|
onOptionSelected: any;
|
|
62
111
|
}) => import("lit-html").TemplateResult<1>;
|
|
63
|
-
export declare const
|
|
112
|
+
export declare const NonFilterable: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
|
|
64
113
|
options: any;
|
|
65
114
|
placeholder: any;
|
|
66
115
|
defaultValue: any;
|
|
@@ -69,9 +118,11 @@ export declare const WithObjects: ({ options, placeholder, defaultValue, disable
|
|
|
69
118
|
labelColor: any;
|
|
70
119
|
filterable: any;
|
|
71
120
|
maxLength: any;
|
|
121
|
+
screenWidth: any;
|
|
122
|
+
error: any;
|
|
72
123
|
onOptionSelected: any;
|
|
73
124
|
}) => import("lit-html").TemplateResult<1>;
|
|
74
|
-
export declare const
|
|
125
|
+
export declare const Disabled: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
|
|
75
126
|
options: any;
|
|
76
127
|
placeholder: any;
|
|
77
128
|
defaultValue: any;
|
|
@@ -80,9 +131,11 @@ export declare const WithNoOptions: ({ options, placeholder, defaultValue, disab
|
|
|
80
131
|
labelColor: any;
|
|
81
132
|
filterable: any;
|
|
82
133
|
maxLength: any;
|
|
134
|
+
screenWidth: any;
|
|
135
|
+
error: any;
|
|
83
136
|
onOptionSelected: any;
|
|
84
137
|
}) => import("lit-html").TemplateResult<1>;
|
|
85
|
-
export declare const
|
|
138
|
+
export declare const WithDefaultObjectValue: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
|
|
86
139
|
options: any;
|
|
87
140
|
placeholder: any;
|
|
88
141
|
defaultValue: any;
|
|
@@ -91,9 +144,11 @@ export declare const WithLabel: ({ options, placeholder, defaultValue, disabled,
|
|
|
91
144
|
labelColor: any;
|
|
92
145
|
filterable: any;
|
|
93
146
|
maxLength: any;
|
|
147
|
+
screenWidth: any;
|
|
148
|
+
error: any;
|
|
94
149
|
onOptionSelected: any;
|
|
95
150
|
}) => import("lit-html").TemplateResult<1>;
|
|
96
|
-
export declare const
|
|
151
|
+
export declare const NonFilterableBasic: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
|
|
97
152
|
options: any;
|
|
98
153
|
placeholder: any;
|
|
99
154
|
defaultValue: any;
|
|
@@ -102,9 +157,11 @@ export declare const NonFilterable: ({ options, placeholder, defaultValue, disab
|
|
|
102
157
|
labelColor: any;
|
|
103
158
|
filterable: any;
|
|
104
159
|
maxLength: any;
|
|
160
|
+
screenWidth: any;
|
|
161
|
+
error: any;
|
|
105
162
|
onOptionSelected: any;
|
|
106
163
|
}) => import("lit-html").TemplateResult<1>;
|
|
107
|
-
export declare const
|
|
164
|
+
export declare const WithMaxLength: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
|
|
108
165
|
options: any;
|
|
109
166
|
placeholder: any;
|
|
110
167
|
defaultValue: any;
|
|
@@ -113,9 +170,11 @@ export declare const Disabled: ({ options, placeholder, defaultValue, disabled,
|
|
|
113
170
|
labelColor: any;
|
|
114
171
|
filterable: any;
|
|
115
172
|
maxLength: any;
|
|
173
|
+
screenWidth: any;
|
|
174
|
+
error: any;
|
|
116
175
|
onOptionSelected: any;
|
|
117
176
|
}) => import("lit-html").TemplateResult<1>;
|
|
118
|
-
export declare const
|
|
177
|
+
export declare const MobileModal: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
|
|
119
178
|
options: any;
|
|
120
179
|
placeholder: any;
|
|
121
180
|
defaultValue: any;
|
|
@@ -124,9 +183,11 @@ export declare const WithDefaultObjectValue: ({ options, placeholder, defaultVal
|
|
|
124
183
|
labelColor: any;
|
|
125
184
|
filterable: any;
|
|
126
185
|
maxLength: any;
|
|
186
|
+
screenWidth: any;
|
|
187
|
+
error: any;
|
|
127
188
|
onOptionSelected: any;
|
|
128
189
|
}) => import("lit-html").TemplateResult<1>;
|
|
129
|
-
export declare const
|
|
190
|
+
export declare const WithError: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
|
|
130
191
|
options: any;
|
|
131
192
|
placeholder: any;
|
|
132
193
|
defaultValue: any;
|
|
@@ -135,9 +196,11 @@ export declare const NonFilterableBasic: ({ options, placeholder, defaultValue,
|
|
|
135
196
|
labelColor: any;
|
|
136
197
|
filterable: any;
|
|
137
198
|
maxLength: any;
|
|
199
|
+
screenWidth: any;
|
|
200
|
+
error: any;
|
|
138
201
|
onOptionSelected: any;
|
|
139
202
|
}) => import("lit-html").TemplateResult<1>;
|
|
140
|
-
export declare const
|
|
203
|
+
export declare const MobileWithError: ({ options, placeholder, defaultValue, disabled, label, labelColor, filterable, maxLength, screenWidth, error, onOptionSelected }: {
|
|
141
204
|
options: any;
|
|
142
205
|
placeholder: any;
|
|
143
206
|
defaultValue: any;
|
|
@@ -146,5 +209,7 @@ export declare const WithMaxLength: ({ options, placeholder, defaultValue, disab
|
|
|
146
209
|
labelColor: any;
|
|
147
210
|
filterable: any;
|
|
148
211
|
maxLength: any;
|
|
212
|
+
screenWidth: any;
|
|
213
|
+
error: any;
|
|
149
214
|
onOptionSelected: any;
|
|
150
215
|
}) => import("lit-html").TemplateResult<1>;
|
|
@@ -0,0 +1,14 @@
|
|
|
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: ({ tabs, selected }: {
|
|
12
|
+
tabs: any;
|
|
13
|
+
selected: any;
|
|
14
|
+
}) => import("lit-html").TemplateResult<1>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import '../components/Upload.ts';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: string;
|
|
5
|
+
};
|
|
6
|
+
export default _default;
|
|
7
|
+
export declare const Default: () => import("lit-html").TemplateResult<1>;
|
|
8
|
+
export declare const Disabled: () => import("lit-html").TemplateResult<1>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@randstad-uca/design-system",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -42,10 +42,9 @@
|
|
|
42
42
|
"webpack-cli": "^6.0.1"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@material/web": "^2.2.0"
|
|
46
|
-
"@vaadin/vaadin-date-picker": "^23.5.12"
|
|
45
|
+
"@material/web": "^2.2.0"
|
|
47
46
|
},
|
|
48
47
|
"peerDependencies": {
|
|
49
|
-
"lit": "^3.
|
|
48
|
+
"lit": "^3.3.0"
|
|
50
49
|
}
|
|
51
50
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import '@vaadin/vaadin-date-picker';
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { LitElement } from 'lit';
|
|
2
|
-
import '@material/web/progress/circular-progress.js';
|
|
3
|
-
export declare class MyCircularProgress extends LitElement {
|
|
4
|
-
steps: number;
|
|
5
|
-
currentStep: number;
|
|
6
|
-
size: string;
|
|
7
|
-
static styles: import("lit").CSSResult;
|
|
8
|
-
private getProgressValue;
|
|
9
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
10
|
-
updated(changedProperties: Map<string, any>): void;
|
|
11
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { StoryFn, Meta } from '@storybook/web-components';
|
|
2
|
-
import '../components/Progress';
|
|
3
|
-
declare const _default: Meta;
|
|
4
|
-
export default _default;
|
|
5
|
-
interface CircularProgressArgs {
|
|
6
|
-
steps: number;
|
|
7
|
-
currentStep: number;
|
|
8
|
-
size: string;
|
|
9
|
-
}
|
|
10
|
-
export declare const HalfProgress: StoryFn<CircularProgressArgs>;
|
|
11
|
-
export declare const Completed: StoryFn<CircularProgressArgs>;
|
|
12
|
-
export declare const Initial: StoryFn<CircularProgressArgs>;
|
|
13
|
-
export declare const Large: StoryFn<CircularProgressArgs>;
|
|
14
|
-
export declare const Small: StoryFn<CircularProgressArgs>;
|
|
15
|
-
export declare const LongText: StoryFn<CircularProgressArgs>;
|