@vtj/designer 0.10.10 → 0.10.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/dist/index.mjs +2 -2
- package/package.json +7 -7
- package/types/components/shared/viewer.d.ts +10 -0
- package/types/version.d.ts +2 -2
package/dist/index.mjs
CHANGED
@@ -16,10 +16,10 @@ import { PAGE_LIFE_CYCLES_LIST as co, APP_LIFE_CYCLE as po, createUniAppComponen
|
|
16
16
|
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
17
17
|
* @name @vtj/designer
|
18
18
|
* @author CHC chenhuachun1549@dingtalk.com
|
19
|
-
* @version 0.10.
|
19
|
+
* @version 0.10.11
|
20
20
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
21
21
|
*/
|
22
|
-
const St = "0.10.
|
22
|
+
const St = "0.10.11", hn = {
|
23
23
|
width: 390,
|
24
24
|
height: 844
|
25
25
|
}, bn = {
|
package/package.json
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vtj/designer",
|
3
3
|
"private": false,
|
4
|
-
"version": "0.10.
|
4
|
+
"version": "0.10.11",
|
5
5
|
"type": "module",
|
6
6
|
"dependencies": {
|
7
7
|
"html2canvas": "~1.4.1",
|
8
8
|
"mockjs": "~1.1.0",
|
9
9
|
"monaco-editor": "~0.52.0",
|
10
|
-
"@vtj/
|
11
|
-
"@vtj/
|
12
|
-
"@vtj/
|
13
|
-
"@vtj/ui": "~0.10.
|
14
|
-
"@vtj/uni": "~0.10.
|
15
|
-
"@vtj/utils": "~0.10.
|
10
|
+
"@vtj/core": "~0.10.11",
|
11
|
+
"@vtj/icons": "~0.10.11",
|
12
|
+
"@vtj/renderer": "~0.10.11",
|
13
|
+
"@vtj/ui": "~0.10.11",
|
14
|
+
"@vtj/uni": "~0.10.11",
|
15
|
+
"@vtj/utils": "~0.10.11"
|
16
16
|
},
|
17
17
|
"devDependencies": {
|
18
18
|
"@types/mockjs": "~1.0.10",
|
@@ -33,6 +33,10 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
33
33
|
default: boolean;
|
34
34
|
};
|
35
35
|
checkOnClickNode: BooleanConstructor;
|
36
|
+
checkOnClickLeaf: {
|
37
|
+
type: BooleanConstructor;
|
38
|
+
default: boolean;
|
39
|
+
};
|
36
40
|
checkDescendants: {
|
37
41
|
type: BooleanConstructor;
|
38
42
|
default: boolean;
|
@@ -386,6 +390,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
386
390
|
showCheckbox: boolean;
|
387
391
|
expandOnClickNode: boolean;
|
388
392
|
checkOnClickNode: boolean;
|
393
|
+
checkOnClickLeaf: boolean;
|
389
394
|
checkDescendants: boolean;
|
390
395
|
autoExpandParent: boolean;
|
391
396
|
highlightCurrent: boolean;
|
@@ -416,6 +421,10 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
416
421
|
default: boolean;
|
417
422
|
};
|
418
423
|
checkOnClickNode: BooleanConstructor;
|
424
|
+
checkOnClickLeaf: {
|
425
|
+
type: BooleanConstructor;
|
426
|
+
default: boolean;
|
427
|
+
};
|
419
428
|
checkDescendants: {
|
420
429
|
type: BooleanConstructor;
|
421
430
|
default: boolean;
|
@@ -769,6 +778,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
769
778
|
showCheckbox: boolean;
|
770
779
|
expandOnClickNode: boolean;
|
771
780
|
checkOnClickNode: boolean;
|
781
|
+
checkOnClickLeaf: boolean;
|
772
782
|
checkDescendants: boolean;
|
773
783
|
autoExpandParent: boolean;
|
774
784
|
highlightCurrent: boolean;
|
package/types/version.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
3
3
|
* @name @vtj/designer
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
5
|
-
* @version 0.10.
|
5
|
+
* @version 0.10.10
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export declare const version = "0.10.
|
8
|
+
export declare const version = "0.10.10";
|