@db-ux/core-components 4.2.7-consolidation2-66e78e5 → 4.3.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 +27 -15
- package/build/assets/fonts/unicode-eu.txt +1 -1
- package/build/assets/icons/LICENCES.json +72 -0
- package/build/assets/icons/chat.svg +1 -0
- package/build/assets/icons/circle_small.svg +1 -0
- package/build/assets/icons/copy.svg +1 -0
- package/build/assets/icons/double_chevron_down.svg +1 -0
- package/build/assets/icons/double_chevron_left.svg +1 -0
- package/build/assets/icons/double_chevron_right.svg +1 -0
- package/build/assets/icons/double_chevron_up.svg +1 -0
- package/build/assets/icons/eye.svg +1 -0
- package/build/assets/icons/eye_disabled.svg +1 -0
- package/build/assets/icons/fonts/all/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/default/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/default_12/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/default_14/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/default_16/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/default_20/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/default_24/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/default_28/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/default_32/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/default_48/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/default_64/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/filled/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/filled_12/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/filled_14/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/filled_16/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/filled_20/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/filled_24/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/filled_28/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/filled_32/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/filled_48/db-ux.woff2 +0 -0
- package/build/assets/icons/fonts/filled_64/db-ux.woff2 +0 -0
- package/build/assets/icons/house.svg +1 -0
- package/build/assets/icons/moon.svg +1 -0
- package/build/assets/icons/sun.svg +1 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @db-ux/core-components
|
|
2
2
|
|
|
3
|
+
## 4.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix(angular): issue with form-components not applying value changes because of [attr.value] instead of native [value] binding - [see commit 61ab4a3](https://github.com/db-ux-design-system/core-web/commit/61ab4a3e9a781459b829c74cf23624a23edd9e3f)
|
|
8
|
+
|
|
9
|
+
## 4.3.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- _version bump_ (staying in sync with the Figma library) - [see commit 9e03702](https://github.com/db-ux-design-system/core-web/commit/9e0370266511fa99085ff837e430ad83f28856ec)
|
|
14
|
+
|
|
3
15
|
## 4.2.6
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -49,14 +61,14 @@ _version bump_
|
|
|
49
61
|
- refactor(notification): update and simplify grid layout for block link variant - [see commit cb83f96](https://github.com/db-ux-design-system/core-web/commit/cb83f966eaf29c85b4cf0079750bdd563f216d6e)
|
|
50
62
|
|
|
51
63
|
- fix(DBCustomSelect): properly announce selected options - [see commit 773edeb](https://github.com/db-ux-design-system/core-web/commit/773edeb943a085eb79e1c8d59059137b2830fbf0):
|
|
52
|
-
|
|
64
|
+
- feat(DBCustomSelect): introduce new property `selectedPrefix`
|
|
53
65
|
|
|
54
66
|
### Patch Changes
|
|
55
67
|
|
|
56
68
|
- fix(DBCustomSelect): automatically handle form reset events - [see commit 6af5246](https://github.com/db-ux-design-system/core-web/commit/6af5246b3b2e6febdc6ff6342ba1a8eb10184d14):
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
69
|
+
- An event listener is now added for every form component (input, custom-select, etc.) when a `form` property is passed.
|
|
70
|
+
- This listener detects form resets and updates the component's internal value/checked state accordingly.
|
|
71
|
+
- > **Note**: This does not work for `ngModel` in Angular.
|
|
60
72
|
|
|
61
73
|
- fix(button): Replace fixed height with min-height for buttons to allow dynamic height adjustment when text wraps - [see commit d1fd2c4](https://github.com/db-ux-design-system/core-web/commit/d1fd2c4e58a5ed6f75fab44700cd2d93c7232474)
|
|
62
74
|
|
|
@@ -79,7 +91,7 @@ _version bump_
|
|
|
79
91
|
### Patch Changes
|
|
80
92
|
|
|
81
93
|
- chore: update instructions files for better copilot outputs - [see commit e4bc905](https://github.com/db-ux-design-system/core-web/commit/e4bc90508479387371d816d5776f9f568aa5fb82):
|
|
82
|
-
|
|
94
|
+
- fix: add some missing variables
|
|
83
95
|
|
|
84
96
|
- fix(card): Remove the obsolete but harmful declaration regarding wrapping button and link styles. - [see commit 34c78df](https://github.com/db-ux-design-system/core-web/commit/34c78dffd4f43b0ac740574358b426a562e05cd0)
|
|
85
97
|
|
|
@@ -94,9 +106,9 @@ _version bump_
|
|
|
94
106
|
### Major Changes
|
|
95
107
|
|
|
96
108
|
- feat: Switch stable rework - [see commit cb2deb0](https://github.com/db-ux-design-system/core-web/commit/cb2deb0f1c54900d1967483aea05d81279c02f59):
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
109
|
+
- **BREAKING CHANGE**: remove `emphasis` property
|
|
110
|
+
- introduce validation (invalid and valid)
|
|
111
|
+
- configurable label position
|
|
100
112
|
|
|
101
113
|
- **BREAKING CHANGE**: refactor(Custom Select): renamed `ariaListLabel` property to `listLabel` - [see commit 966d5ad](https://github.com/db-ux-design-system/core-web/commit/966d5ad01f00d0ca1707cc316a63e2d431fff1e9)
|
|
102
114
|
|
|
@@ -115,12 +127,12 @@ _version bump_
|
|
|
115
127
|
### Patch Changes
|
|
116
128
|
|
|
117
129
|
- fix(DBTabs): ensure navigation arrows appear correctly on window resize - [see commit 4e65e00](https://github.com/db-ux-design-system/core-web/commit/4e65e00d280cae18baee03b5a7a9b13eec063835):
|
|
118
|
-
|
|
130
|
+
- This update resolves an issue where navigation arrows in DBTabs would not appear or update correctly when the window was resized. The component now properly responds to resize events, ensuring arrows are always shown or hidden as needed.
|
|
119
131
|
|
|
120
132
|
- fix(select): jumping placeholder for label above - [see commit 7ed8d22](https://github.com/db-ux-design-system/core-web/commit/7ed8d2225102e0e9044437e95917e11eef4bc73f)
|
|
121
133
|
|
|
122
134
|
- enabled [`@db-ux/agent-cli`](https://www.npmjs.com/package/@db-ux/agent-cli) for every package - [see commit 0233048](https://github.com/db-ux-design-system/core-web/commit/023304869e61f5a506dca66a22d69e5f3d70f4d0):
|
|
123
|
-
|
|
135
|
+
- auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
|
|
124
136
|
|
|
125
137
|
## 3.1.17
|
|
126
138
|
|
|
@@ -128,17 +140,17 @@ _version bump_
|
|
|
128
140
|
|
|
129
141
|
- fix: color mode for textarea resizer control set by color-mode-switch documentation UI component - [see commit 354e270](https://github.com/db-ux-design-system/core-web/commit/354e27029a4378288a97ed5e31b75c11758f0c01)
|
|
130
142
|
- refactor: enabling `hidden` HTML attribute in every context in which we need to set overwriting styling declarations (`display`) - [see commit 4826455](https://github.com/db-ux-design-system/core-web/commit/4826455637590b6ae780afb93abb9effe9380342)
|
|
131
|
-
|
|
143
|
+
- @db-ux/core-foundations@3.1.17
|
|
132
144
|
|
|
133
145
|
## 3.1.16
|
|
134
146
|
|
|
135
147
|
### Patch Changes
|
|
136
148
|
|
|
137
149
|
- a28eb71: fix(custom-select): keyboard navigation for option groups in single-select mode - [see commit 6d60bab](https://github.com/db-ux-design-system/core-web/commit/6d60bab2eb87f16a9ffa942085bffd658564769c):
|
|
138
|
-
|
|
139
|
-
|
|
150
|
+
- Fixes a keyboard accessibility issue where users could not navigate to options in subsequent option groups using arrow keys in single-select mode.
|
|
151
|
+
- Now, all options are accessible via keyboard regardless of group boundaries.
|
|
140
152
|
- fix: JS framework core-components packages are missing `@db-ux` dependencies - [see commit 49df866](https://github.com/db-ux-design-system/core-web/commit/49df866e753a9459f5acdca4ad1e19141b477471)
|
|
141
|
-
|
|
153
|
+
- @db-ux/core-foundations@3.1.16
|
|
142
154
|
|
|
143
155
|
## 3.1.15
|
|
144
156
|
|
|
@@ -147,4 +159,4 @@ _version bump_
|
|
|
147
159
|
- 262964b: fix(Switch): double event firing with Angular signals
|
|
148
160
|
- 262964b: fix(CustomSelect): tags remaining visible when form values are reset
|
|
149
161
|
- 262964b: fix(CustomSelect): custom removeTagsTexts are not applied correctly
|
|
150
|
-
|
|
162
|
+
- @db-ux/core-foundations@3.1.15
|
|
@@ -83,6 +83,78 @@
|
|
|
83
83
|
"licence": "https://lucide.dev/license#lucide-license",
|
|
84
84
|
"origin": "plus"
|
|
85
85
|
},
|
|
86
|
+
{
|
|
87
|
+
"name": "eye.svg",
|
|
88
|
+
"type": "lucide",
|
|
89
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
90
|
+
"origin": "eye"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "eye_disabled.svg",
|
|
94
|
+
"type": "lucide",
|
|
95
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
96
|
+
"origin": "eye-off"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "double_chevron_down.svg",
|
|
100
|
+
"type": "lucide",
|
|
101
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
102
|
+
"origin": "chevrons-down"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "double_chevron_up.svg",
|
|
106
|
+
"type": "lucide",
|
|
107
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
108
|
+
"origin": "chevrons-up"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "double_chevron_left.svg",
|
|
112
|
+
"type": "lucide",
|
|
113
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
114
|
+
"origin": "chevrons-left"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "double_chevron_right.svg",
|
|
118
|
+
"type": "lucide",
|
|
119
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
120
|
+
"origin": "chevrons-right"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "copy.svg",
|
|
124
|
+
"type": "lucide",
|
|
125
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
126
|
+
"origin": "copy"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "house.svg",
|
|
130
|
+
"type": "lucide",
|
|
131
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
132
|
+
"origin": "house"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "circle_small.svg",
|
|
136
|
+
"type": "lucide",
|
|
137
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
138
|
+
"origin": "circle-small"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "chat.svg",
|
|
142
|
+
"type": "lucide",
|
|
143
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
144
|
+
"origin": "message-square-text"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "sun.svg",
|
|
148
|
+
"type": "lucide",
|
|
149
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
150
|
+
"origin": "sun"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "moon.svg",
|
|
154
|
+
"type": "lucide",
|
|
155
|
+
"licence": "https://lucide.dev/license#lucide-license",
|
|
156
|
+
"origin": "moon"
|
|
157
|
+
},
|
|
86
158
|
{
|
|
87
159
|
"name": "minus.svg",
|
|
88
160
|
"type": "lucide",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-message-square-text-icon lucide-message-square-text"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"/><path d="M7 11h10"/><path d="M7 15h6"/><path d="M7 7h8"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-small-icon lucide-circle-small"><circle cx="12" cy="12" r="6"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-copy-icon lucide-copy"><rect width="14" height="14" x="8" y="8" rx="2" ry="2"/><path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-down-icon lucide-chevrons-down"><path d="m7 6 5 5 5-5"/><path d="m7 13 5 5 5-5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-left-icon lucide-chevrons-left"><path d="m11 17-5-5 5-5"/><path d="m18 17-5-5 5-5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-right-icon lucide-chevrons-right"><path d="m6 17 5-5-5-5"/><path d="m13 17 5-5-5-5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-up-icon lucide-chevrons-up"><path d="m17 11-5-5-5 5"/><path d="m17 18-5-5-5 5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-eye-icon lucide-eye"><path d="M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"/><circle cx="12" cy="12" r="3"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-eye-off-icon lucide-eye-off"><path d="M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49"/><path d="M14.084 14.158a3 3 0 0 1-4.242-4.242"/><path d="M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143"/><path d="m2 2 20 20"/></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-house-icon lucide-house"><path d="M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"/><path d="M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-moon-icon lucide-moon"><path d="M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-sun-icon lucide-sun"><circle cx="12" cy="12" r="4"/><path d="M12 2v2"/><path d="M12 20v2"/><path d="m4.93 4.93 1.41 1.41"/><path d="m17.66 17.66 1.41 1.41"/><path d="M2 12h2"/><path d="M20 12h2"/><path d="m6.34 17.66-1.41 1.41"/><path d="m19.07 4.93-1.41 1.41"/></svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/core-components",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.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": {
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"start": "nodemon --watch src --watch scripts --watch scripts --ext js,tsx,ts,scss,json --exec \"npm run build\""
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@db-ux/core-foundations": "4.
|
|
52
|
+
"@db-ux/core-foundations": "4.3.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@builder.io/eslint-plugin-mitosis": "0.0.17",
|
|
56
|
-
"@builder.io/mitosis": "0.
|
|
57
|
-
"@builder.io/mitosis-cli": "0.
|
|
56
|
+
"@builder.io/mitosis": "0.13.0",
|
|
57
|
+
"@builder.io/mitosis-cli": "0.13.0",
|
|
58
58
|
"@typescript-eslint/eslint-plugin": "8.53.0",
|
|
59
59
|
"cpr": "3.0.1",
|
|
60
60
|
"cssnano": "7.1.2",
|