@sky.ui.ultra/core 0.0.27 → 0.0.29

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
@@ -6,6 +6,12 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.0.28] - 2026-07-14
10
+
11
+ ### Changed
12
+
13
+ - Declare `@sky.ui.pro/*` peer dependencies so `npx sky.ui.ultra install` / npm peer install pulls Pro with Ultra.
14
+
9
15
  ## [0.0.8] - 2026-07-07
10
16
 
11
17
  ### Changed
package/README.md CHANGED
@@ -55,7 +55,7 @@ import '@sky.ui.ultra/core/sky-table';
55
55
 
56
56
  ## Auto-import resolvers
57
57
 
58
- Use resolvers from `@sky.ui.ultra/core/auto-import` with `unplugin-vue-components` or your bundler's component plugin, alongside the free-tier setup in [`@sky.ui/core`](https://www.npmjs.com/package/@sky.ui/core).
58
+ `SkyUIUltraMainVitePlugin` alone stacks **free + Pro + Ultra** Main resolvers and per-file kebab `<sky-*>` CE auto-import. You do not need a separate Free/Pro core plugin.
59
59
 
60
60
  ## Bundler plugins (Vite, Webpack, Rollup)
61
61
 
@@ -68,8 +68,8 @@ import { SkyUIUltraMainVitePlugin } from '@sky.ui.ultra/core/vite';
68
68
 
69
69
  export default {
70
70
  plugins: [
71
- SkyUIUltraMainVitePlugin({
72
- mode: 'auto-import', // or 'vue' with unplugin-vue-components
71
+ ...SkyUIUltraMainVitePlugin({
72
+ mode: 'vue', // or 'auto-import' for entry HTML/JS scan (+ CE per-file)
73
73
  }),
74
74
  ],
75
75
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sky.ui.ultra/core",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "description": "Sky UI Ultra web components — run npx sky.ui.ultra install after npm install.",
5
5
  "keywords": [
6
6
  "sky-ui",
@@ -28,7 +28,8 @@
28
28
  "CHANGELOG.md"
29
29
  ],
30
30
  "peerDependencies": {
31
- "@sky.ui/core": "^0.0.27",
31
+ "@sky.ui/core": "^0.0.29",
32
+ "@sky.ui.pro/core": "^0.0.29",
32
33
  "lit": ">=3 <4"
33
34
  },
34
35
  "peerDependenciesMeta": {