@randstad-uca/design-system 1.0.65 → 1.0.67
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/CalendarOverlay.d.ts +44 -1
- package/dist/components/Checkbox.d.ts +1 -0
- package/dist/components/DatePicker.d.ts +20 -1
- package/dist/components/File.d.ts +1 -0
- package/dist/components/Form.d.ts +7 -0
- package/dist/components/Radio.d.ts +5 -1
- package/dist/components/Select.d.ts +24 -5
- package/dist/components/Upload.d.ts +1 -0
- package/dist/helpers/BaseUpload.d.ts +16 -2
- package/dist/index.js +421 -410
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/stories/Radio.stories.d.ts +5 -3
- package/dist/stories/Select.stories.d.ts +5 -0
- package/dist/stories/Upload.stories.d.ts +13 -0
- package/dist/stories/UploadFile.stories.d.ts +12 -0
- package/dist/styles/focus.d.ts +2 -0
- package/dist/styles/focus.ts +10 -0
- package/dist/styles/mix.ts +3 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -4,8 +4,10 @@ declare const meta: Meta;
|
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj;
|
|
6
6
|
export declare const Default: Story;
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
7
|
+
export declare const DisabledOn: Story;
|
|
8
|
+
export declare const DisabledOff: Story;
|
|
9
|
+
export declare const DisabledErrorOn: Story;
|
|
10
|
+
export declare const DisabledErrorOff: Story;
|
|
10
11
|
export declare const ErrorOn: Story;
|
|
11
12
|
export declare const ErrorOff: Story;
|
|
13
|
+
export declare const GroupSelection: Story;
|
|
@@ -64,10 +64,15 @@ declare const _default: {
|
|
|
64
64
|
helpLinkTooltipMessage: {
|
|
65
65
|
control: string;
|
|
66
66
|
};
|
|
67
|
+
isRenderClearButton: {
|
|
68
|
+
control: string;
|
|
69
|
+
description: string;
|
|
70
|
+
};
|
|
67
71
|
};
|
|
68
72
|
};
|
|
69
73
|
export default _default;
|
|
70
74
|
export declare const Default: StoryFn;
|
|
75
|
+
export declare const ClearButtonHidden: StoryFn;
|
|
71
76
|
export declare const WithObjects: StoryFn;
|
|
72
77
|
export declare const WithIcons: StoryFn;
|
|
73
78
|
export declare const WithNoOptions: StoryFn;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { StoryFn } from '@storybook/web-components';
|
|
2
2
|
import '../components/Upload.ts';
|
|
3
|
+
import '../components/Snackbar';
|
|
3
4
|
declare const _default: {
|
|
4
5
|
title: string;
|
|
5
6
|
component: string;
|
|
@@ -33,6 +34,16 @@ declare const _default: {
|
|
|
33
34
|
description: string;
|
|
34
35
|
defaultValue: number;
|
|
35
36
|
};
|
|
37
|
+
showAlertInError: {
|
|
38
|
+
control: string;
|
|
39
|
+
description: string;
|
|
40
|
+
defaultValue: boolean;
|
|
41
|
+
};
|
|
42
|
+
isShowInfoSize: {
|
|
43
|
+
control: string;
|
|
44
|
+
description: string;
|
|
45
|
+
defaultValue: boolean;
|
|
46
|
+
};
|
|
36
47
|
onFilesChanged: {
|
|
37
48
|
action: string;
|
|
38
49
|
};
|
|
@@ -41,7 +52,9 @@ declare const _default: {
|
|
|
41
52
|
export default _default;
|
|
42
53
|
export declare const Default: StoryFn;
|
|
43
54
|
export declare const FileSizeLimitAndLabel: StoryFn;
|
|
55
|
+
export declare const HideSizeInfo: StoryFn;
|
|
44
56
|
export declare const CustomLabelColor: StoryFn;
|
|
45
57
|
export declare const InstantUpload: StoryFn;
|
|
46
58
|
export declare const SlowUpload: StoryFn;
|
|
47
59
|
export declare const Disabled: StoryFn;
|
|
60
|
+
export declare const WithSnackbar: StoryFn;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { StoryFn } from '@storybook/web-components';
|
|
2
2
|
import '../components/File';
|
|
3
|
+
import '../components/Snackbar';
|
|
3
4
|
declare const _default: {
|
|
4
5
|
title: string;
|
|
5
6
|
component: string;
|
|
@@ -82,6 +83,15 @@ declare const _default: {
|
|
|
82
83
|
helpLinkTooltipMessage: {
|
|
83
84
|
control: string;
|
|
84
85
|
};
|
|
86
|
+
showAlertInError: {
|
|
87
|
+
control: string;
|
|
88
|
+
description: string;
|
|
89
|
+
defaultValue: boolean;
|
|
90
|
+
};
|
|
91
|
+
typeTextFile: {
|
|
92
|
+
control: string;
|
|
93
|
+
description: string;
|
|
94
|
+
};
|
|
85
95
|
onFilesChanged: {
|
|
86
96
|
action: string;
|
|
87
97
|
};
|
|
@@ -104,3 +114,5 @@ export declare const WithHelpLink: StoryFn;
|
|
|
104
114
|
export declare const WithHelpLinkAndTooltip: StoryFn;
|
|
105
115
|
export declare const InstantUpload: StoryFn;
|
|
106
116
|
export declare const SlowUpload: StoryFn;
|
|
117
|
+
export declare const WithSnackbar: StoryFn;
|
|
118
|
+
export declare const WithAlerts: StoryFn;
|
package/dist/styles/mix.ts
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
import { css, CSSResult } from "lit";
|
|
3
3
|
import { bodyL, bodyM, bodyXS } from "./fontStyles";
|
|
4
|
+
import { focusStyles } from "./focus";
|
|
4
5
|
|
|
5
6
|
export const mixStyles: CSSResult = css `
|
|
7
|
+
${ focusStyles }
|
|
8
|
+
|
|
6
9
|
:host {
|
|
7
10
|
display: block;
|
|
8
11
|
font-family: "Graphik", sans-serif;
|