niuma-ui 1.1.10 → 1.1.11

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 @@
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.1.11] - 2026-08-29
10
+
11
+ ### 优化
12
+
13
+ - `RsTree`:`nodes` 变更不再 `deep` 监听,避免万级节点每次替换都整树深遍历;仍会清空拖拽态。
14
+
9
15
  ## [1.1.10] - 2026-08-29
10
16
 
11
17
  ### 修复
@@ -202,7 +208,8 @@
202
208
 
203
209
  - 1.0 之前的私有 tag(如 `v0.1.0`)仅作历史记录;新接入请依赖 `v1.0.0` 及之后版本。
204
210
 
205
- [Unreleased]: https://github.com/Blair-Shang/niuma-ui/compare/v1.1.10...HEAD
211
+ [Unreleased]: https://github.com/Blair-Shang/niuma-ui/compare/v1.1.11...HEAD
212
+ [1.1.11]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.11
206
213
  [1.1.10]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.10
207
214
  [1.1.9]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.9
208
215
  [1.1.8]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "niuma-ui",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "description": "Vue 3 设计系统与 Rs* 组件库(--rs-* token)",
@@ -376,7 +376,6 @@ watch(
376
376
  dragKey.value = null
377
377
  dropTargetKey.value = null
378
378
  },
379
- { deep: true },
380
379
  )
381
380
 
382
381
  function setRowRef(key: string, element: Element | null): void {