@kws3/ui 4.5.2 → 4.5.3

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.mdx +3 -0
  2. package/package.json +3 -2
package/CHANGELOG.mdx CHANGED
@@ -1,3 +1,6 @@
1
+ ## 4.5.3
2
+ - Bugfix, add styles to exports
3
+
1
4
  ## 4.5.2
2
5
  - Fix hardcoded color in `Radio` component
3
6
  - Remove legacy additional `is-active` class from active buttons in `ToggleButtons` component
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kws3/ui",
3
- "version": "4.5.2",
3
+ "version": "4.5.3",
4
4
  "description": "UI components for use with Svelte v3 applications.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -46,6 +46,7 @@
46
46
  "types": "./keyboard/index.d.ts",
47
47
  "svelte": "./keyboard/index.js"
48
48
  },
49
+ "./styles/*": "./styles/*",
49
50
  ".": {
50
51
  "types": "./index.d.ts",
51
52
  "svelte": "./index.js"
@@ -65,5 +66,5 @@
65
66
  "devDependencies": {
66
67
  "typescript": "^5.2.2"
67
68
  },
68
- "gitHead": "24e1449be3a778f0d1bc2a281ad187792c5c3370"
69
+ "gitHead": "0eca4a72218645db6656fc76ab7853f0d78f3339"
69
70
  }