@lytjs/component 6.4.0 → 6.5.0
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/README.md +11 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -507,3 +507,14 @@ import type {
|
|
|
507
507
|
- [@lytjs/core](../core) - 框架核心入口,整合所有子包
|
|
508
508
|
- [@lytjs/reactivity](../reactivity) - 响应式系统,组件状态管理的基础
|
|
509
509
|
- [@lytjs/vdom](../vdom) - 虚拟 DOM,组件渲染的基础
|
|
510
|
+
|
|
511
|
+
## 依赖版本
|
|
512
|
+
|
|
513
|
+
- [@lytjs/shared-types](https://www.npmjs.com/package/@lytjs/shared-types): ^6.4.0
|
|
514
|
+
- [@lytjs/reactivity](https://www.npmjs.com/package/@lytjs/reactivity): ^6.4.0
|
|
515
|
+
- [@lytjs/vdom](https://www.npmjs.com/package/@lytjs/vdom): ^6.4.0
|
|
516
|
+
- [@lytjs/common-vnode](https://www.npmjs.com/package/@lytjs/common-vnode): ^6.4.0
|
|
517
|
+
- [@lytjs/common-is](https://www.npmjs.com/package/@lytjs/common-is): ^6.4.0
|
|
518
|
+
- [@lytjs/common-scheduler](https://www.npmjs.com/package/@lytjs/common-scheduler): ^6.4.0
|
|
519
|
+
- [@lytjs/common-error](https://www.npmjs.com/package/@lytjs/common-error): ^6.4.0
|
|
520
|
+
- [@lytjs/common-string](https://www.npmjs.com/package/@lytjs/common-string): ^6.4.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lytjs/component",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.5.0",
|
|
4
4
|
"description": "LytJS component system - component instances, props, emits, slots, and lifecycle",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"clean": "rm -rf dist"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@lytjs/shared-types": "^6.
|
|
30
|
-
"@lytjs/reactivity": "^6.
|
|
31
|
-
"@lytjs/vdom": "^6.
|
|
32
|
-
"@lytjs/common-vnode": "^6.
|
|
33
|
-
"@lytjs/common-is": "^6.
|
|
34
|
-
"@lytjs/common-scheduler": "^6.
|
|
35
|
-
"@lytjs/common-error": "^6.
|
|
36
|
-
"@lytjs/common-string": "^6.
|
|
29
|
+
"@lytjs/shared-types": "^6.4.0",
|
|
30
|
+
"@lytjs/reactivity": "^6.4.0",
|
|
31
|
+
"@lytjs/vdom": "^6.4.0",
|
|
32
|
+
"@lytjs/common-vnode": "^6.4.0",
|
|
33
|
+
"@lytjs/common-is": "^6.4.0",
|
|
34
|
+
"@lytjs/common-scheduler": "^6.4.0",
|
|
35
|
+
"@lytjs/common-error": "^6.4.0",
|
|
36
|
+
"@lytjs/common-string": "^6.4.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"tsup": "^8.0.0",
|