rbro-tat-uds 1.1.6 → 1.2.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.
- package/dist/components/Alert/Alert.d.ts +1 -1
- package/dist/components/Bar/Bar.d.ts +1 -1
- package/dist/components/Container/Container.d.ts +1 -1
- package/dist/components/Datepicker/Calendar.d.ts +8 -0
- package/dist/components/Datepicker/Datepicker.d.ts +14 -0
- package/dist/components/Datepicker/helpers_calendar.d.ts +44 -0
- package/dist/components/Datepicker/index.d.ts +1 -0
- package/dist/components/Divider/Divider.d.ts +1 -1
- package/dist/components/Dropdown/Dropdown.d.ts +19 -0
- package/dist/components/Dropdown/index.d.ts +1 -0
- package/dist/components/Flex/Flex.d.ts +1 -1
- package/dist/components/FormField/FormField.d.ts +1 -1
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +5 -0
- package/dist/components/IconCard/IconCard.d.ts +1 -1
- package/dist/components/ImageCard/ImageCard.d.ts +1 -1
- package/dist/components/LabeledText/LabeledText.d.ts +1 -1
- package/dist/components/Layout/Layout.d.ts +1 -1
- package/dist/components/{ProductTeaserConfiguratieFlexicredit/ProductTeaserConfiguratieFlexicredit.d.ts → ProductTeaserConfiguratie4Parameters/ProductTeaserConfiguratie4Parameters.d.ts} +3 -3
- package/dist/components/ProductTeaserConfiguratie4Parameters/index.d.ts +1 -0
- package/dist/components/ProposalPensii/ProposalPensii.d.ts +23 -0
- package/dist/components/ProposalPensii/index.d.ts +1 -0
- package/dist/components/PropunereFlexicredit/PropunereFlexicredit.d.ts +2 -2
- package/dist/components/SidebarItem/SidebarItem.d.ts +1 -1
- package/dist/components/Slider/Slider.d.ts +1 -0
- package/dist/components/StepTab/StepTab.d.ts +1 -1
- package/dist/components/index.d.ts +4 -1
- package/dist/index.cjs.js +715 -139
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +2775 -1567
- package/dist/index.es.js.map +1 -1
- package/dist/utils/colors.d.ts +18 -2
- package/dist/utils/index.d.ts +1 -1
- package/package.json +15 -12
- package/dist/components/ProductTeaserConfiguratieFlexicredit/index.d.ts +0 -1
package/dist/utils/colors.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
declare const colors: {
|
1
|
+
export declare const colors: {
|
2
2
|
gray_30: string;
|
3
3
|
gray_60: string;
|
4
4
|
gray_100: string;
|
@@ -32,16 +32,33 @@ declare const colors: {
|
|
32
32
|
info_300: string;
|
33
33
|
info_400: string;
|
34
34
|
info_500: string;
|
35
|
+
info_500_40: string;
|
35
36
|
info_600: string;
|
36
37
|
info_700: string;
|
37
38
|
info_700_40: string;
|
38
39
|
info_800: string;
|
40
|
+
success_50: string;
|
39
41
|
success_100: string;
|
42
|
+
success_200: string;
|
43
|
+
success_300: string;
|
44
|
+
success_400: string;
|
45
|
+
success_500: string;
|
40
46
|
success_600: string;
|
47
|
+
success_700: string;
|
41
48
|
success_800: string;
|
49
|
+
success_900: string;
|
50
|
+
success_950: string;
|
51
|
+
warning_50: string;
|
42
52
|
warning_100: string;
|
53
|
+
warning_200: string;
|
54
|
+
warning_300: string;
|
55
|
+
warning_400: string;
|
43
56
|
warning_500: string;
|
57
|
+
warning_600: string;
|
44
58
|
warning_700: string;
|
59
|
+
warning_800: string;
|
60
|
+
warning_900: string;
|
61
|
+
warning_950: string;
|
45
62
|
danger_100: string;
|
46
63
|
danger_200: string;
|
47
64
|
danger_250: string;
|
@@ -67,4 +84,3 @@ declare const colors: {
|
|
67
84
|
white: string;
|
68
85
|
black: string;
|
69
86
|
};
|
70
|
-
export default colors;
|
package/dist/utils/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export * from "./colors";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "rbro-tat-uds",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.2.0",
|
4
4
|
"description": "",
|
5
5
|
"type": "module",
|
6
6
|
"main": "dist/index.cjs.js",
|
@@ -25,15 +25,17 @@
|
|
25
25
|
"react-dom": ">=18.0.0"
|
26
26
|
},
|
27
27
|
"devDependencies": {
|
28
|
-
"@storybook
|
29
|
-
"@storybook/addon-
|
30
|
-
"@storybook/addon-
|
31
|
-
"@storybook/addon-
|
32
|
-
"@storybook/
|
33
|
-
"@storybook/
|
34
|
-
"@storybook/
|
35
|
-
"@storybook/
|
36
|
-
"@storybook/
|
28
|
+
"@chromatic-com/storybook": "^1.3.3",
|
29
|
+
"@storybook/addon-actions": "^8.0.9",
|
30
|
+
"@storybook/addon-essentials": "^8.0.9",
|
31
|
+
"@storybook/addon-interactions": "^8.0.9",
|
32
|
+
"@storybook/addon-links": "^8.0.9",
|
33
|
+
"@storybook/addon-mdx-gfm": "^8.0.9",
|
34
|
+
"@storybook/blocks": "^8.0.9",
|
35
|
+
"@storybook/preview-api": "^8.0.9",
|
36
|
+
"@storybook/react": "^8.0.9",
|
37
|
+
"@storybook/react-vite": "^8.0.9",
|
38
|
+
"@storybook/test": "^8.0.9",
|
37
39
|
"@types/react": "^18.2.48",
|
38
40
|
"@typescript-eslint/eslint-plugin": "^6.19.1",
|
39
41
|
"@typescript-eslint/parser": "^6.19.1",
|
@@ -42,12 +44,13 @@
|
|
42
44
|
"eslint-plugin-prettier": "^5.1.3",
|
43
45
|
"eslint-plugin-react": "^7.33.2",
|
44
46
|
"eslint-plugin-react-hooks": "^4.6.0",
|
45
|
-
"eslint-plugin-storybook": "^0.
|
47
|
+
"eslint-plugin-storybook": "^0.8.0",
|
46
48
|
"file-loader": "^6.2.0",
|
47
49
|
"prettier": "^3.2.4",
|
48
50
|
"react": "^18.2.0",
|
51
|
+
"react-docgen-typescript": "^2.2.2",
|
49
52
|
"react-dom": "^18.2.0",
|
50
|
-
"storybook": "^
|
53
|
+
"storybook": "^8.0.9",
|
51
54
|
"styled-components": "^6.1.8",
|
52
55
|
"typescript": "^5.3.3",
|
53
56
|
"vite": "^5.0.12",
|
@@ -1 +0,0 @@
|
|
1
|
-
export { default as ProductTeaserConfiguratieFlexicredit } from './ProductTeaserConfiguratieFlexicredit';
|