@kungal/ui-nuxt 1.11.0 → 1.12.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,27 @@
1
1
  # @kungal/ui-nuxt
2
2
 
3
+ ## 1.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - e7505ae: fix(nuxt): register KunReaction for auto-import
8
+
9
+ `KunReaction` (added in 1.11.0) was wired into the plain-Vue plugin and the docs
10
+ but not into the Nuxt layer's `KUN_COMPONENTS` auto-import list, so downstream
11
+ Nuxt templates hit `[Vue warn]: Failed to resolve component: KunReaction`. Added
12
+ it to the list. No other component was affected — the rest are in sync.
13
+
14
+ - @kungal/ui-tokens@1.12.1
15
+ - @kungal/ui-vue@1.12.1
16
+
17
+ ## 1.12.0
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [886e58f]
22
+ - @kungal/ui-vue@1.12.0
23
+ - @kungal/ui-tokens@1.12.0
24
+
3
25
  ## 1.11.0
4
26
 
5
27
  ### Patch Changes
package/nuxt.config.ts CHANGED
@@ -53,6 +53,7 @@ const KUN_COMPONENTS = [
53
53
  'KunProgress',
54
54
  'KunRadioGroup',
55
55
  'KunRating',
56
+ 'KunReaction',
56
57
  'KunRipple',
57
58
  'KunScrollShadow',
58
59
  'KunSelect',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kungal/ui-nuxt",
3
- "version": "1.11.0",
3
+ "version": "1.12.1",
4
4
  "description": "KunUI Nuxt Layer — wraps @kungal/ui-vue, auto-imports the components, and injects NuxtLink + @nuxt/icon so existing Nuxt apps keep their exact DX.",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -34,8 +34,8 @@
34
34
  "@nuxt/icon": "^2.2.3",
35
35
  "@nuxt/image": "^2.0.0",
36
36
  "@nuxt/kit": "^4.4.7",
37
- "@kungal/ui-tokens": "1.11.0",
38
- "@kungal/ui-vue": "1.11.0"
37
+ "@kungal/ui-vue": "1.12.1",
38
+ "@kungal/ui-tokens": "1.12.1"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "nuxt": "^4.0.0",