@db-ux/core-components 4.10.2 → 4.11.1
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 +16 -0
- package/build/components/checkbox/checkbox.css +1 -1
- package/build/components/custom-button/custom-button.css +0 -5
- package/build/components/custom-select-list-item/custom-select-list-item.css +0 -5
- package/build/components/infotext/infotext.css +4 -1
- package/build/components/infotext/infotext.scss +3 -1
- package/build/components/input/input.css +0 -5
- package/build/components/link/link.css +4 -2
- package/build/components/navigation/navigation.css +1 -1
- package/build/components/notification/notification.css +4 -2
- package/build/components/radio/radio.css +1 -1
- package/build/components/switch/switch.css +1 -1
- package/build/components/tab-item/tab-item.css +0 -5
- package/build/components/tab-list/tab-list.css +4 -2
- package/build/components/table/table.css +591 -0
- package/build/components/table/table.scss +293 -0
- package/build/components/table-body/table-body.css +8 -0
- package/build/components/table-body/table-body.scss +5 -0
- package/build/components/table-caption/table-caption.css +3 -0
- package/build/components/table-caption/table-caption.scss +3 -0
- package/build/components/table-data-cell/table-data-cell.css +144 -0
- package/build/components/table-data-cell/table-data-cell.scss +5 -0
- package/build/components/table-footer/table-footer.css +8 -0
- package/build/components/table-footer/table-footer.scss +5 -0
- package/build/components/table-head/table-head.css +19 -0
- package/build/components/table-head/table-head.scss +17 -0
- package/build/components/table-header-cell/table-header-cell.css +148 -0
- package/build/components/table-header-cell/table-header-cell.scss +9 -0
- package/build/components/table-row/table-row.css +230 -0
- package/build/components/table-row/table-row.scss +116 -0
- package/build/components/tabs/tabs.css +1 -1
- package/build/components/tag/tag.css +4 -2
- package/build/components/textarea/textarea.css +4 -2
- package/build/styles/absolute.css +8 -8
- package/build/styles/bundle.css +8 -8
- package/build/styles/component-animations.css +1 -1
- package/build/styles/index.css +7 -7
- package/build/styles/index.scss +8 -0
- package/build/styles/internal/_custom-elements.scss +3 -1
- package/build/styles/internal/_db-puls.scss +2 -2
- package/build/styles/internal/_form-components.scss +1 -1
- package/build/styles/internal/_table-components.scss +64 -0
- package/build/styles/relative.css +8 -8
- package/build/styles/rollup.css +8 -8
- package/build/styles/wc-workarounds.css +1 -1
- package/build/styles/webpack.css +8 -8
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/core-components",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.11.1",
|
|
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": {
|
|
@@ -15,23 +15,23 @@
|
|
|
15
15
|
"build"
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@db-ux/core-foundations": "4.
|
|
18
|
+
"@db-ux/core-foundations": "4.11.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@builder.io/eslint-plugin-mitosis": "0.0.17",
|
|
22
|
-
"@builder.io/mitosis": "0.13.
|
|
23
|
-
"@builder.io/mitosis-cli": "0.13.
|
|
22
|
+
"@builder.io/mitosis": "0.13.2",
|
|
23
|
+
"@builder.io/mitosis-cli": "0.13.2",
|
|
24
24
|
"@prettier/sync": "0.6.1",
|
|
25
25
|
"cpr": "3.0.1",
|
|
26
|
-
"cssnano": "8.0.
|
|
26
|
+
"cssnano": "8.0.2",
|
|
27
27
|
"hygen": "6.2.11",
|
|
28
28
|
"nodemon": "3.1.14",
|
|
29
|
-
"npm-run-all2": "9.0.
|
|
29
|
+
"npm-run-all2": "9.0.2",
|
|
30
30
|
"postcss": "8.5.15",
|
|
31
31
|
"postcss-cli": "11.0.1",
|
|
32
32
|
"replace-in-file": "8.4.0",
|
|
33
|
-
"sass": "1.
|
|
34
|
-
"storybook": "10.4.
|
|
33
|
+
"sass": "1.101.0",
|
|
34
|
+
"storybook": "10.4.4",
|
|
35
35
|
"tsx": "4.22.4",
|
|
36
36
|
"vitest": "4.1.8"
|
|
37
37
|
},
|