@db-ux/react-core-components 3.1.18 → 3.1.19

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/package.json +4 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,50 @@
1
+ # @db-ux/react-core-components
2
+
3
+ ## 3.1.19
4
+
5
+ _version bump_
6
+
7
+
8
+ ## 3.1.18
9
+
10
+ ### Patch Changes
11
+
12
+ - fix(DBTabs): ensure navigation arrows appear correctly on window resize - [see commit 4e65e00](https://github.com/db-ux-design-system/core-web/commit/4e65e00d280cae18baee03b5a7a9b13eec063835):
13
+ - 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.
14
+
15
+ - fix(select): jumping placeholder for label above - [see commit 7ed8d22](https://github.com/db-ux-design-system/core-web/commit/7ed8d2225102e0e9044437e95917e11eef4bc73f)
16
+
17
+ - 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):
18
+ - auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
19
+
20
+ ## 3.1.17
21
+
22
+ ### Patch Changes
23
+
24
+ - 0c20c00: fix: color mode for textarea resizer control set by color-mode-switch documentation UI component
25
+ - 0c20c00: refactor: enabling `hidden` HTML attribute in every context in which we need to set overwriting styling declarations (`display`)
26
+ - Updated dependencies [0c20c00]
27
+ - Updated dependencies [0c20c00]
28
+ - @db-ux/core-components@3.1.17
29
+ - @db-ux/core-foundations@3.1.17
30
+
31
+ ## 3.1.16
32
+
33
+ ### Patch Changes
34
+
35
+ - a28eb71: fix(custom-select): keyboard navigation for option groups in single-select mode:
36
+ - Fixes a keyboard accessibility issue where users could not navigate to options in subsequent option groups using arrow keys in single-select mode.
37
+ - Now, all options are accessible via keyboard regardless of group boundaries.
38
+ - a28eb71: fix: JS framework core-components packages are missing `@db-ux` dependencies
39
+ - Updated dependencies [a28eb71]
40
+ - Updated dependencies [a28eb71]
41
+ - @db-ux/core-components@3.1.16
42
+ - @db-ux/core-foundations@3.1.16
43
+
44
+ ## 3.1.15
45
+
46
+ ### Patch Changes
47
+
48
+ - 262964b: fix(Switch): double event firing with Angular signals
49
+ - 262964b: fix(CustomSelect): tags remaining visible when form values are reset
50
+ - 262964b: fix(CustomSelect): custom removeTagsTexts are not applied correctly
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/react-core-components",
3
- "version": "3.1.18",
3
+ "version": "3.1.19",
4
4
  "description": "React components for @db-ux/core-components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,6 +19,7 @@
19
19
  "build": "npm-run-all tsc",
20
20
  "mv:dist": "cpr dist ../../build-outputs/react/dist --overwrite",
21
21
  "mv:agent": "cpr agent ../../build-outputs/react/agent --overwrite",
22
+ "mv:changelog": "cpr CHANGELOG.md ../../build-outputs/react/CHANGELOG.md --overwrite",
22
23
  "mv:package.json": "cpr package.json ../../build-outputs/react/package.json --overwrite",
23
24
  "mv:readme": "cpr README.md ../../build-outputs/react/README.md --overwrite",
24
25
  "open:report": "npx playwright show-report",
@@ -41,7 +42,7 @@
41
42
  },
42
43
  "sideEffects": false,
43
44
  "dependencies": {
44
- "@db-ux/core-components": "3.1.18",
45
- "@db-ux/core-foundations": "3.1.18"
45
+ "@db-ux/core-components": "3.1.19",
46
+ "@db-ux/core-foundations": "3.1.19"
46
47
  }
47
48
  }