@dynamic-framework/ui-react 1.3.0 → 1.4.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const ICONS: string[];
|
|
2
2
|
export declare const FIRST_ICON: string;
|
|
3
|
+
export declare const COLOR_THEMES: string[];
|
|
3
4
|
export declare const THEMES: string[];
|
|
4
|
-
export declare const ALERT_TYPES: string[];
|
|
5
5
|
export declare const THEMES_WITH_EMPTY: (string | undefined)[];
|
|
6
6
|
export declare const INPUT_STATE: string[];
|
|
7
7
|
export declare const COMPONENT_SIZE: (string | undefined)[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-framework/ui-react",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"description": "React Dynamic Framework",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"clean": "rimraf dist",
|
|
33
33
|
"compile": "tsc -p . && rollup -c rollup.config.js",
|
|
34
34
|
"storybook": "storybook dev -p 6006",
|
|
35
|
-
"build
|
|
35
|
+
"build:storybook": "storybook build -o docs",
|
|
36
36
|
"eslint": "eslint src/**/*{.ts,.tsx}",
|
|
37
37
|
"stylelint": "stylelint \"**/*.{css,scss}\" --rd",
|
|
38
38
|
"lint-staged": "lint-staged"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"src/style"
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@dynamic-framework/ui": "^1.
|
|
48
|
+
"@dynamic-framework/ui": "^1.5.0",
|
|
49
49
|
"@floating-ui/react": "^0.24.1",
|
|
50
50
|
"@splidejs/react-splide": "^0.7.12",
|
|
51
51
|
"@splidejs/splide": "^4.1.4",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"@testing-library/react": "^13.4.0",
|
|
81
81
|
"@types/jest": "29.1.2",
|
|
82
82
|
"@types/lodash.camelcase": "^4.3.7",
|
|
83
|
-
"@types/luxon": "
|
|
83
|
+
"@types/luxon": "^3.2.1",
|
|
84
84
|
"@types/node": "^15.12.2",
|
|
85
85
|
"@types/react": "^18.2.19",
|
|
86
86
|
"@types/react-datepicker": "~4.8.0",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"jest-cli": "^29.1.2",
|
|
104
104
|
"jest-environment-jsdom": "^29.1.2",
|
|
105
105
|
"lint-staged": "^12.4.1",
|
|
106
|
-
"luxon": "
|
|
106
|
+
"luxon": "^3.2.1",
|
|
107
107
|
"postcss-cli": "^10.1.0",
|
|
108
108
|
"react": "^18.2.0",
|
|
109
109
|
"react-dom": "^18.2.0",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"peerDependencies": {
|
|
123
123
|
"formik": "^2.2.9",
|
|
124
124
|
"html2canvas": "^1.4.1",
|
|
125
|
-
"luxon": "
|
|
125
|
+
"luxon": "^3.2.1",
|
|
126
126
|
"react": "^18.1.0",
|
|
127
127
|
"react-dom": "^18.1.0",
|
|
128
128
|
"react-i18next": "~11.18.3",
|
|
@@ -133,5 +133,5 @@
|
|
|
133
133
|
"@dynamic-framework/ui"
|
|
134
134
|
]
|
|
135
135
|
},
|
|
136
|
-
"gitHead": "
|
|
136
|
+
"gitHead": "0ab8bac37b37cb95d7c22bb7cdb825ee920f4a92"
|
|
137
137
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// Header variables
|
|
12
12
|
--#{$prefix}datepicker-header-gap: var(--#{$prefix}ref-spacer-3);
|
|
13
13
|
--#{$prefix}datepicker-header-padding: var(--#{$prefix}ref-spacer-3) var(--#{$prefix}ref-spacer-4);
|
|
14
|
-
--#{$prefix}datepicker-header-background-color: var(--#{$prefix}
|
|
14
|
+
--#{$prefix}datepicker-header-background-color: var(--#{$prefix}secondary-soft);
|
|
15
15
|
--#{$prefix}datepicker-header-border: 0;
|
|
16
16
|
--#{$prefix}datepicker-header-font-size: var(--#{$prefix}ref-fs-6);
|
|
17
17
|
|