@randstad-uca/design-system 1.0.41 → 1.0.42

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.41",
3
+ "version": "1.0.42",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "dist",
@@ -46,6 +46,8 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@material/web": "^2.3.0",
49
+ "@types/date-fns": "^2.5.3",
50
+ "date-fns": "^4.1.0",
49
51
  "lit-html": "^3.3.1"
50
52
  },
51
53
  "peerDependencies": {
@@ -0,0 +1,45 @@
1
+ import type { StoryFn } from '@storybook/web-components';
2
+ import '../components/DatePicker';
3
+ declare const _default: {
4
+ title: string;
5
+ component: string;
6
+ argTypes: {
7
+ label: {
8
+ control: string;
9
+ };
10
+ placeholder: {
11
+ control: string;
12
+ };
13
+ value: {
14
+ control: string;
15
+ };
16
+ disabled: {
17
+ control: string;
18
+ };
19
+ error: {
20
+ control: string;
21
+ };
22
+ required: {
23
+ control: string;
24
+ };
25
+ optional: {
26
+ control: string;
27
+ };
28
+ isRenderClearButton: {
29
+ control: string;
30
+ };
31
+ onDateSelected: {
32
+ action: string;
33
+ };
34
+ width: {
35
+ control: string;
36
+ };
37
+ };
38
+ };
39
+ export default _default;
40
+ export declare const Default: StoryFn;
41
+ export declare const WithoutClearButton: StoryFn;
42
+ export declare const WithDefaultValueAndRequired: StoryFn;
43
+ export declare const Disabled: StoryFn;
44
+ export declare const WithError: StoryFn;
45
+ export declare const WithCustomWidth: StoryFn;
@@ -17,6 +17,14 @@ globalStyles.replaceSync(`
17
17
  letter-spacing: 0%;
18
18
  color: green;
19
19
  }
20
+
21
+ .body-l {
22
+ font-family: Graphik;
23
+ font-size: 18px;
24
+ font-style: normal;
25
+ font-weight: 400;
26
+ line-height: 30px;
27
+ }
20
28
  `);
21
29
 
22
30
  export default globalStyles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randstad-uca/design-system",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "dist",
@@ -46,6 +46,8 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@material/web": "^2.3.0",
49
+ "@types/date-fns": "^2.5.3",
50
+ "date-fns": "^4.1.0",
49
51
  "lit-html": "^3.3.1"
50
52
  },
51
53
  "peerDependencies": {