@vtj/ui 0.12.63 → 0.12.65
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 +34 -23
- package/dist/index.umd.js +4 -4
- package/package.json +3 -3
- package/types/components/captcha/Captcha.d.ts +1 -1
- package/types/components/dialog/Dialog.d.ts +6 -0
- package/types/components/dialog/types.d.ts +3 -0
- package/types/components/dialog-form/DialogForm.d.ts +14 -0
- package/types/components/dialog-grid/DialogGrid.d.ts +14 -0
- package/types/components/grid/renderers/components/GridEdit.d.ts +1 -1
- package/types/components/grid-editor/GridEditor.d.ts +1 -1
- package/types/components/verify/Verify.d.ts +1 -1
- package/types/version.d.ts +2 -2
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vtj/ui",
|
3
3
|
"private": false,
|
4
|
-
"version": "0.12.
|
4
|
+
"version": "0.12.65",
|
5
5
|
"type": "module",
|
6
6
|
"keywords": [
|
7
7
|
"低代码引擎",
|
@@ -29,8 +29,8 @@
|
|
29
29
|
"sortablejs": "~1.15.6",
|
30
30
|
"vxe-table": "~4.6.17",
|
31
31
|
"vxe-table-plugin-menus": "~4.0.3",
|
32
|
-
"@vtj/
|
33
|
-
"@vtj/
|
32
|
+
"@vtj/icons": "~0.12.65",
|
33
|
+
"@vtj/utils": "~0.12.65"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
36
36
|
"@types/qrcode": "^1.5.5",
|
@@ -10,7 +10,7 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
10
10
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
11
11
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
12
12
|
}>, {
|
13
|
-
maxlength: number;
|
14
13
|
placeholder: string;
|
14
|
+
maxlength: number;
|
15
15
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
16
16
|
export default _default;
|
@@ -675,6 +675,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
675
675
|
pure: {
|
676
676
|
type: BooleanConstructor;
|
677
677
|
};
|
678
|
+
zIndex: {
|
679
|
+
type: NumberConstructor;
|
680
|
+
};
|
678
681
|
}>, {
|
679
682
|
$vtjEl: ComputedRef<any>;
|
680
683
|
panelRef: Ref<any, any>;
|
@@ -841,6 +844,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
841
844
|
pure: {
|
842
845
|
type: BooleanConstructor;
|
843
846
|
};
|
847
|
+
zIndex: {
|
848
|
+
type: NumberConstructor;
|
849
|
+
};
|
844
850
|
}>> & Readonly<{
|
845
851
|
onClose?: (() => any) | undefined;
|
846
852
|
onOpen?: ((instance: ComponentInternalInstance) => any) | undefined;
|
@@ -56,6 +56,7 @@ declare function __VLS_template(): {
|
|
56
56
|
readonly icon?: IconParam | undefined;
|
57
57
|
readonly src?: string | undefined;
|
58
58
|
readonly title?: string | undefined;
|
59
|
+
readonly zIndex?: number | undefined;
|
59
60
|
readonly cancel?: string | boolean | undefined;
|
60
61
|
readonly top?: string | number | undefined;
|
61
62
|
readonly left?: string | number | undefined;
|
@@ -821,6 +822,9 @@ declare function __VLS_template(): {
|
|
821
822
|
pure: {
|
822
823
|
type: BooleanConstructor;
|
823
824
|
};
|
825
|
+
zIndex: {
|
826
|
+
type: NumberConstructor;
|
827
|
+
};
|
824
828
|
}>> & Readonly<{
|
825
829
|
onClose?: (() => any) | undefined;
|
826
830
|
onOpen?: ((instance: ComponentInternalInstance) => any) | undefined;
|
@@ -1088,6 +1092,9 @@ declare function __VLS_template(): {
|
|
1088
1092
|
pure: {
|
1089
1093
|
type: BooleanConstructor;
|
1090
1094
|
};
|
1095
|
+
zIndex: {
|
1096
|
+
type: NumberConstructor;
|
1097
|
+
};
|
1091
1098
|
}>> & Readonly<{
|
1092
1099
|
onClose?: (() => any) | undefined;
|
1093
1100
|
onOpen?: ((instance: ComponentInternalInstance) => any) | undefined;
|
@@ -1771,6 +1778,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
1771
1778
|
readonly icon?: IconParam | undefined;
|
1772
1779
|
readonly src?: string | undefined;
|
1773
1780
|
readonly title?: string | undefined;
|
1781
|
+
readonly zIndex?: number | undefined;
|
1774
1782
|
readonly cancel?: string | boolean | undefined;
|
1775
1783
|
readonly top?: string | number | undefined;
|
1776
1784
|
readonly left?: string | number | undefined;
|
@@ -2536,6 +2544,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
2536
2544
|
pure: {
|
2537
2545
|
type: BooleanConstructor;
|
2538
2546
|
};
|
2547
|
+
zIndex: {
|
2548
|
+
type: NumberConstructor;
|
2549
|
+
};
|
2539
2550
|
}>> & Readonly<{
|
2540
2551
|
onClose?: (() => any) | undefined;
|
2541
2552
|
onOpen?: ((instance: ComponentInternalInstance) => any) | undefined;
|
@@ -2803,6 +2814,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
2803
2814
|
pure: {
|
2804
2815
|
type: BooleanConstructor;
|
2805
2816
|
};
|
2817
|
+
zIndex: {
|
2818
|
+
type: NumberConstructor;
|
2819
|
+
};
|
2806
2820
|
}>> & Readonly<{
|
2807
2821
|
onClose?: (() => any) | undefined;
|
2808
2822
|
onOpen?: ((instance: ComponentInternalInstance) => any) | undefined;
|
@@ -71,6 +71,7 @@ declare function __VLS_template(): {
|
|
71
71
|
readonly icon?: IconParam | undefined;
|
72
72
|
readonly src?: string | undefined;
|
73
73
|
readonly title?: string | undefined;
|
74
|
+
readonly zIndex?: number | undefined;
|
74
75
|
readonly cancel?: string | boolean | undefined;
|
75
76
|
readonly top?: string | number | undefined;
|
76
77
|
readonly left?: string | number | undefined;
|
@@ -836,6 +837,9 @@ declare function __VLS_template(): {
|
|
836
837
|
pure: {
|
837
838
|
type: BooleanConstructor;
|
838
839
|
};
|
840
|
+
zIndex: {
|
841
|
+
type: NumberConstructor;
|
842
|
+
};
|
839
843
|
}>> & Readonly<{
|
840
844
|
onClose?: (() => any) | undefined;
|
841
845
|
onOpen?: ((instance: ComponentInternalInstance) => any) | undefined;
|
@@ -1103,6 +1107,9 @@ declare function __VLS_template(): {
|
|
1103
1107
|
pure: {
|
1104
1108
|
type: BooleanConstructor;
|
1105
1109
|
};
|
1110
|
+
zIndex: {
|
1111
|
+
type: NumberConstructor;
|
1112
|
+
};
|
1106
1113
|
}>> & Readonly<{
|
1107
1114
|
onClose?: (() => any) | undefined;
|
1108
1115
|
onOpen?: ((instance: ComponentInternalInstance) => any) | undefined;
|
@@ -2533,6 +2540,7 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
2533
2540
|
readonly icon?: IconParam | undefined;
|
2534
2541
|
readonly src?: string | undefined;
|
2535
2542
|
readonly title?: string | undefined;
|
2543
|
+
readonly zIndex?: number | undefined;
|
2536
2544
|
readonly cancel?: string | boolean | undefined;
|
2537
2545
|
readonly top?: string | number | undefined;
|
2538
2546
|
readonly left?: string | number | undefined;
|
@@ -3298,6 +3306,9 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
3298
3306
|
pure: {
|
3299
3307
|
type: BooleanConstructor;
|
3300
3308
|
};
|
3309
|
+
zIndex: {
|
3310
|
+
type: NumberConstructor;
|
3311
|
+
};
|
3301
3312
|
}>> & Readonly<{
|
3302
3313
|
onClose?: (() => any) | undefined;
|
3303
3314
|
onOpen?: ((instance: ComponentInternalInstance) => any) | undefined;
|
@@ -3565,6 +3576,9 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
3565
3576
|
pure: {
|
3566
3577
|
type: BooleanConstructor;
|
3567
3578
|
};
|
3579
|
+
zIndex: {
|
3580
|
+
type: NumberConstructor;
|
3581
|
+
};
|
3568
3582
|
}>> & Readonly<{
|
3569
3583
|
onClose?: (() => any) | undefined;
|
3570
3584
|
onOpen?: ((instance: ComponentInternalInstance) => any) | undefined;
|
@@ -61,6 +61,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
61
61
|
readonly rows: number;
|
62
62
|
readonly size?: ("" | "large" | "default" | "small") | undefined;
|
63
63
|
readonly name?: string | undefined;
|
64
|
+
readonly placeholder?: string | undefined;
|
64
65
|
readonly form?: string | undefined;
|
65
66
|
readonly id?: string | undefined;
|
66
67
|
readonly ariaLabel?: string | undefined;
|
@@ -70,7 +71,6 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
70
71
|
readonly minlength?: (string | number) | undefined;
|
71
72
|
readonly formatter?: Function | undefined;
|
72
73
|
readonly parser?: Function | undefined;
|
73
|
-
readonly placeholder?: string | undefined;
|
74
74
|
readonly suffixIcon?: (string | Component) | undefined;
|
75
75
|
readonly prefixIcon?: (string | Component) | undefined;
|
76
76
|
readonly containerRole?: string | undefined;
|
@@ -55,6 +55,7 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
55
55
|
readonly rows: number;
|
56
56
|
readonly size?: ("" | "large" | "default" | "small") | undefined;
|
57
57
|
readonly name?: string | undefined;
|
58
|
+
readonly placeholder?: string | undefined;
|
58
59
|
readonly form?: string | undefined;
|
59
60
|
readonly id?: string | undefined;
|
60
61
|
readonly ariaLabel?: string | undefined;
|
@@ -64,7 +65,6 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
64
65
|
readonly minlength?: (string | number) | undefined;
|
65
66
|
readonly formatter?: Function | undefined;
|
66
67
|
readonly parser?: Function | undefined;
|
67
|
-
readonly placeholder?: string | undefined;
|
68
68
|
readonly suffixIcon?: (string | Component) | undefined;
|
69
69
|
readonly prefixIcon?: (string | Component) | undefined;
|
70
70
|
readonly containerRole?: string | undefined;
|
@@ -12,8 +12,8 @@ declare const _default: DefineComponent<__VLS_PublicProps, {
|
|
12
12
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
13
13
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
14
14
|
}>, {
|
15
|
-
maxlength: number;
|
16
15
|
placeholder: string;
|
16
|
+
maxlength: number;
|
17
17
|
seconds: number;
|
18
18
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
19
19
|
export default _default;
|
package/types/version.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
3
3
|
* @name @vtj/ui
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
5
|
-
* @version 0.12.
|
5
|
+
* @version 0.12.64
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export declare const version = "0.12.
|
8
|
+
export declare const version = "0.12.64";
|