@db-ux/wc-core-components 4.10.0 → 4.10.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @db-ux/wc-core-components
2
2
 
3
+ ## 4.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - refactor: enhanced imports matrix and adjusted import path for `defineCustomElements` example in `README` - [see commit da9e96a](https://github.com/db-ux-design-system/core-web/commit/da9e96a2e8044c6586da206f39b8a9746fd05ab8)
8
+
9
+ - refactor: simplify cursor-pointer SCSS mixin for inputs and fix tab-item hover/active states - [see commit 17af11f](https://github.com/db-ux-design-system/core-web/commit/17af11fb67c478534e3ee8ec44d8b3cc36623c11)
10
+
3
11
  ## 4.10.0
4
12
 
5
13
  ### Minor Changes
@@ -216,8 +224,7 @@ _version bump_
216
224
  - fix(form elements): `valid` background- and border-colors - [see commit 8f07e55](https://github.com/db-ux-design-system/core-web/commit/8f07e55f2155fcb619198857397ce354f90c4803)
217
225
 
218
226
  - fix: set DBTabItem internal state `_selected` correctly - [see commit f7625cb](https://github.com/db-ux-design-system/core-web/commit/f7625cbd9d64513527e826c9d2c1ef42b2734a4b):
219
-
220
- - Now also sets aria-selected=true|false correctly which improves screen reader behaviour
227
+ - Now also sets aria-selected=true|false correctly which improves screen reader behaviour
221
228
 
222
229
  ## 4.2.1
223
230
 
package/README.md CHANGED
@@ -148,7 +148,7 @@ The bundle entry point is fully self-contained — `@stencil/core` is bundled in
148
148
 
149
149
  ```js
150
150
  // main.js
151
- import { defineCustomElements } from "@db-ux/wc-core-components/bundle";
151
+ import { defineCustomElements } from "@db-ux/wc-core-components/bundle/index.js";
152
152
  defineCustomElements();
153
153
  ```
154
154
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "name": "@db-ux/wc-core-components",
4
- "version": "4.10.0",
4
+ "version": "4.10.1",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/wc-core-components",
3
- "version": "4.10.0",
3
+ "version": "4.10.1",
4
4
  "type": "module",
5
5
  "description": "Stencil components for @db-ux/core-components",
6
6
  "repository": {
@@ -18,6 +18,10 @@
18
18
  "./bundle": {
19
19
  "types": "./bundle/index.d.ts",
20
20
  "import": "./bundle/index.js"
21
+ },
22
+ "./bundle/*.js": {
23
+ "types": "./bundle/*.d.ts",
24
+ "import": "./bundle/*.js"
21
25
  }
22
26
  },
23
27
  "files": [
@@ -27,8 +31,8 @@
27
31
  "dist/"
28
32
  ],
29
33
  "dependencies": {
30
- "@db-ux/core-components": "4.10.0",
31
- "@db-ux/core-foundations": "4.10.0"
34
+ "@db-ux/core-components": "4.10.1",
35
+ "@db-ux/core-foundations": "4.10.1"
32
36
  },
33
37
  "devDependencies": {
34
38
  "@custom-elements-manifest/analyzer": "0.11.0",