@db-ux/core-components 4.5.0 → 4.5.2-0-eff2227
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/CHANGELOG.md +12 -0
- package/build/components/accordion-item/accordion-item.css +2 -0
- package/build/components/button/button.css +3 -2
- package/build/components/custom-button/custom-button.css +3 -2
- package/build/components/custom-select-dropdown/custom-select-dropdown.css +2 -0
- package/build/components/drawer/drawer.css +2 -0
- package/build/components/input/input.css +12 -0
- package/build/components/input/input.scss +11 -0
- package/build/components/link/link.css +2 -0
- package/build/components/navigation-item/navigation-item.css +2 -0
- package/build/components/notification/notification.css +2 -0
- package/build/components/popover/popover.css +2 -0
- package/build/components/tab-list/tab-list.css +2 -0
- package/build/components/tag/tag.css +2 -0
- package/build/components/textarea/textarea.css +2 -0
- package/build/components/tooltip/tooltip.css +2 -0
- package/build/styles/absolute.css +2 -2
- package/build/styles/component-animations.css +1 -1
- package/build/styles/index.css +2 -2
- package/build/styles/internal/_button-components.scss +3 -2
- package/build/styles/internal/_form-components.scss +5 -1
- package/build/styles/relative.css +2 -2
- package/build/styles/rollup.css +2 -2
- package/build/styles/webpack.css +2 -2
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/core-components",
|
|
3
|
-
"version": "4.5.0",
|
|
3
|
+
"version": "4.5.2-0-eff2227",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "General technical components (styling, fonts and icons) out of DB UX Design System (Version 3)",
|
|
6
6
|
"repository": {
|
|
@@ -46,10 +46,11 @@
|
|
|
46
46
|
"generate:showcase": "mitosis build --config=configs/mitosis.showcase.config.cjs",
|
|
47
47
|
"generate:stories": "mitosis build --config=configs/mitosis.storybook.config.cjs",
|
|
48
48
|
"prepack": "npm run copy-assets",
|
|
49
|
-
"start": "nodemon --watch src --watch scripts --watch scripts --ext js,tsx,ts,scss,json --exec \"npm run build\""
|
|
49
|
+
"start": "nodemon --watch src --watch scripts --watch scripts --ext js,tsx,ts,scss,json --exec \"npm run build\"",
|
|
50
|
+
"test": "vitest run --config vitest.config.ts"
|
|
50
51
|
},
|
|
51
52
|
"dependencies": {
|
|
52
|
-
"@db-ux/core-foundations": "4.5.0"
|
|
53
|
+
"@db-ux/core-foundations": "4.5.2-0-eff2227"
|
|
53
54
|
},
|
|
54
55
|
"devDependencies": {
|
|
55
56
|
"@builder.io/eslint-plugin-mitosis": "0.0.17",
|
|
@@ -63,8 +64,9 @@
|
|
|
63
64
|
"nodemon": "3.1.14",
|
|
64
65
|
"sass": "1.85.1",
|
|
65
66
|
"sassdoc": "2.7.4",
|
|
66
|
-
"storybook": "10.2.
|
|
67
|
-
"tsx": "4.21.0"
|
|
67
|
+
"storybook": "10.2.13",
|
|
68
|
+
"tsx": "4.21.0",
|
|
69
|
+
"vitest": "3.2.4"
|
|
68
70
|
},
|
|
69
71
|
"publishConfig": {
|
|
70
72
|
"registry": "https://registry.npmjs.org/",
|