niuma-ui 1.1.10 → 1.1.12
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 +15 -1
- package/README.en.md +1 -1
- package/README.md +7 -3
- package/package.json +1 -1
- package/src/components/RsTree.vue +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,18 @@
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.1.12] - 2026-08-30
|
|
10
|
+
|
|
11
|
+
### 说明
|
|
12
|
+
|
|
13
|
+
- 正式版 `pnpm publish` 打 npm dist-tag `latest`;预发布打 `next`。不维护 GitHub 标签 `latest`。niuma-cloud / NiuMa 流水线从 npm 装 `@latest`(可用 `NIUMA_UI_VERSION` 钉死)。
|
|
14
|
+
|
|
15
|
+
## [1.1.11] - 2026-08-29
|
|
16
|
+
|
|
17
|
+
### 优化
|
|
18
|
+
|
|
19
|
+
- `RsTree`:`nodes` 变更不再 `deep` 监听,避免万级节点每次替换都整树深遍历;仍会清空拖拽态。
|
|
20
|
+
|
|
9
21
|
## [1.1.10] - 2026-08-29
|
|
10
22
|
|
|
11
23
|
### 修复
|
|
@@ -202,7 +214,9 @@
|
|
|
202
214
|
|
|
203
215
|
- 1.0 之前的私有 tag(如 `v0.1.0`)仅作历史记录;新接入请依赖 `v1.0.0` 及之后版本。
|
|
204
216
|
|
|
205
|
-
[Unreleased]: https://github.com/Blair-Shang/niuma-ui/compare/v1.1.
|
|
217
|
+
[Unreleased]: https://github.com/Blair-Shang/niuma-ui/compare/v1.1.12...HEAD
|
|
218
|
+
[1.1.12]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.12
|
|
219
|
+
[1.1.11]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.11
|
|
206
220
|
[1.1.10]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.10
|
|
207
221
|
[1.1.9]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.9
|
|
208
222
|
[1.1.8]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.8
|
package/README.en.md
CHANGED
|
@@ -92,7 +92,7 @@ pnpm test
|
|
|
92
92
|
|
|
93
93
|
## Versioning
|
|
94
94
|
|
|
95
|
-
Semantic Versioning.
|
|
95
|
+
Semantic Versioning. Stable publishes set the npm dist-tag **`latest`** (prereleases use `next`). There is no GitHub tag named `latest`. Pin a SemVer tag for reproducible releases. See [CHANGELOG.md](./CHANGELOG.md).
|
|
96
96
|
|
|
97
97
|
## License
|
|
98
98
|
|
package/README.md
CHANGED
|
@@ -34,12 +34,16 @@ Vue 3 设计系统与组件库。提供一致的 `Rs*` 组件、`--rs-*` 设计
|
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
pnpm add niuma-ui
|
|
37
|
+
# 业务流水线跟最新正式版(npm dist-tag latest,无 GitHub 标签 latest)
|
|
38
|
+
pnpm add niuma-ui@latest
|
|
37
39
|
```
|
|
38
40
|
|
|
39
|
-
|
|
41
|
+
钉死某一版:
|
|
40
42
|
|
|
41
43
|
```bash
|
|
42
|
-
pnpm add
|
|
44
|
+
pnpm add niuma-ui@1.1.11
|
|
45
|
+
# 或
|
|
46
|
+
pnpm add git+https://github.com/Blair-Shang/niuma-ui.git#v1.1.11
|
|
43
47
|
```
|
|
44
48
|
|
|
45
49
|
本地 link、Vite 配置、包体积建议见 **[消费方指南](./docs/consumers.md)**。
|
|
@@ -131,7 +135,7 @@ git push origin v1.0.1
|
|
|
131
135
|
|
|
132
136
|
也可在 Actions 里手动运行 **Publish** 工作流。
|
|
133
137
|
|
|
134
|
-
|
|
138
|
+
正式版会更新 npm dist-tag **`latest`**(`niuma-ui@latest`),不维护 GitHub 标签 `latest`。可复现发版请钉 SemVer tag;预发布走 npm tag `next`。
|
|
135
139
|
|
|
136
140
|
详见 [CHANGELOG.md](./CHANGELOG.md)。
|
|
137
141
|
|
package/package.json
CHANGED