@kungal/ui-nuxt 1.12.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 +14 -0
- package/nuxt.config.ts +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
3
17
|
## 1.12.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/nuxt.config.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kungal/ui-nuxt",
|
|
3
|
-
"version": "1.12.
|
|
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-vue": "1.12.
|
|
38
|
-
"@kungal/ui-tokens": "1.12.
|
|
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",
|