prismify-ui 0.1.0-alpha.3 → 0.1.0-alpha.5
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 +9 -1
- package/README.md +1 -1
- package/docs/installation.md +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
## [0.1.0-alpha.
|
|
9
|
+
## [0.1.0-alpha.5] - 2026-04-09
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- **Peer dependency** **`vue-router`** raised from **^4** to **^5** (install **Vue Router 5** if you use **`PfLink`** or other router-aware components). The APIs used in the library (**`RouterLink`**, **`useRouter`**, **`useRoute`**, route location types) stay compatible with Vue Router 5; no source changes were required in **prismify-ui**.
|
|
14
|
+
- **Dev dependency** **`vue-router`** updated to **^5.0.4** for tests, Storybook, and the playground.
|
|
15
|
+
- **`docs/installation.md`**: peer table documents **`vue-router` ^5**.
|
|
16
|
+
|
|
17
|
+
## [0.1.0-alpha.4] - 2026-04-09
|
|
10
18
|
|
|
11
19
|
### Added
|
|
12
20
|
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# prismify-ui v0.1.0-alpha.
|
|
1
|
+
# prismify-ui v0.1.0-alpha.5
|
|
2
2
|
|
|
3
3
|
[](https://github.com/koirodev/prismify-ui/actions/workflows/test.yml) [](https://github.com/koirodev/prismify-ui/actions/workflows/build.yml)
|
|
4
4
|
|
package/docs/installation.md
CHANGED
|
@@ -11,7 +11,7 @@ The package has **no runtime `dependencies`**; everything below is **`peerDepend
|
|
|
11
11
|
| Peer | Used for |
|
|
12
12
|
| --- | --- |
|
|
13
13
|
| `vue` ^3.4 | All components |
|
|
14
|
-
| `vue-router` ^
|
|
14
|
+
| `vue-router` ^5 | **`PfLink`** (and router-aware navigation) |
|
|
15
15
|
| `@internationalized/date` ^3.12 | **`PfCalendar`** |
|
|
16
16
|
| `@internationalized/number` ^3.6 | **`PfInputNumber`** ([Internationalized Number](https://react-spectrum.adobe.com/internationalized/number/) — locale parsing/formatting) |
|
|
17
17
|
| `@tanstack/vue-table` ^8.21 | **`PfTable`** |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prismify-ui",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.5",
|
|
4
4
|
"description": "Vue 3 UI kit (SCSS only). Compatible with Nuxt 4.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@tiptap/suggestion": "^3.22.3",
|
|
57
57
|
"@tiptap/vue-3": "^3.22.3",
|
|
58
58
|
"vue": "^3.4.0",
|
|
59
|
-
"vue-router": "^
|
|
59
|
+
"vue-router": "^5.0.0"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"dev": "vite build --config vite.lib.config.ts --watch",
|
|
@@ -141,6 +141,6 @@
|
|
|
141
141
|
"vitest": "^3.0.9",
|
|
142
142
|
"vue": "^3.5.13",
|
|
143
143
|
"vue-eslint-parser": "^10.1.1",
|
|
144
|
-
"vue-router": "^
|
|
144
|
+
"vue-router": "^5.0.4"
|
|
145
145
|
}
|
|
146
146
|
}
|