@vtj/ui 0.13.38 → 0.13.39
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/dist/index.umd.js +2 -2
- package/package.json +5 -5
- package/types/components/action/Action.d.ts +37 -1
- package/types/components/action/Trigger.d.ts +1 -1
- package/types/components/action/hooks.d.ts +7 -1
- package/types/components/action-bar/ActionBar.d.ts +25 -1
- package/types/components/attachment/Attachment.d.ts +42 -28
- package/types/components/data-item/DataItem.d.ts +24 -0
- package/types/components/dialog/Dialog.d.ts +2 -2
- package/types/components/dialog-form/DialogForm.d.ts +4 -4
- package/types/components/dialog-grid/DialogGrid.d.ts +2 -2
- package/types/components/field/Field.d.ts +16 -12
- package/types/components/form/Form.d.ts +2 -2
- package/types/components/grid/renderers/components/DateEdit.d.ts +15 -15
- package/types/components/grid/renderers/components/GridEdit.d.ts +22 -19
- package/types/components/grid-editor/GridEditor.d.ts +22 -19
- package/types/components/mask/Mask.d.ts +24 -0
- package/types/components/query-form/QueryForm.d.ts +4 -4
- package/types/components/tabs/Tabs.d.ts +12 -0
- package/types/version.d.ts +2 -2
|
@@ -28,7 +28,6 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
28
28
|
readonly id: string;
|
|
29
29
|
readonly type: EpPropMergeType<(new (...args: any[]) => string) | (() => InputType) | ((new (...args: any[]) => string) | (() => InputType))[], unknown, unknown>;
|
|
30
30
|
readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
|
31
|
-
readonly readonly: boolean;
|
|
32
31
|
readonly modelModifiers: InputModelModifiers;
|
|
33
32
|
readonly autosize: InputAutoSize;
|
|
34
33
|
readonly autocomplete: AutoFill;
|
|
@@ -38,6 +37,7 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
38
37
|
readonly inputStyle: StyleValue;
|
|
39
38
|
readonly rows: number;
|
|
40
39
|
readonly inputmode: EpPropMergeType<(new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined) | ((new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined))[], unknown, unknown>;
|
|
40
|
+
readonly readonly: boolean;
|
|
41
41
|
readonly clearable: boolean;
|
|
42
42
|
readonly showPassword: boolean;
|
|
43
43
|
readonly showWordLimit: boolean;
|
|
@@ -65,7 +65,7 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
65
65
|
readonly form?: string | undefined;
|
|
66
66
|
readonly id?: string | undefined;
|
|
67
67
|
readonly ariaLabel?: string | undefined;
|
|
68
|
-
readonly resize?: EpPropMergeType<StringConstructor, "
|
|
68
|
+
readonly resize?: EpPropMergeType<StringConstructor, "horizontal" | "vertical" | "none" | "both", unknown> | undefined;
|
|
69
69
|
readonly inputmode?: EpPropMergeType<(new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined) | ((new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined))[], unknown, unknown>;
|
|
70
70
|
readonly maxlength?: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
71
71
|
readonly minlength?: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
@@ -76,13 +76,13 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
76
76
|
readonly prefixIcon?: EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown> | undefined;
|
|
77
77
|
readonly containerRole?: string | undefined;
|
|
78
78
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
79
|
+
onInput?: ((value: string) => any) | undefined | undefined;
|
|
80
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
79
81
|
onChange?: ((value: string, evt?: Event | undefined) => any) | undefined | undefined;
|
|
82
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
80
83
|
onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
81
84
|
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
82
85
|
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
83
|
-
onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
84
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
85
|
-
onInput?: ((value: string) => any) | undefined | undefined;
|
|
86
86
|
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
|
|
87
87
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
88
88
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
@@ -193,18 +193,18 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
193
193
|
readonly containerRole: EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
194
194
|
readonly tabindex: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
|
195
195
|
readonly validateEvent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
196
|
-
readonly inputStyle: EpPropFinalized<(new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue))[], unknown, unknown, () => Mutable<{}>, boolean>;
|
|
196
|
+
readonly inputStyle: EpPropFinalized<(new (...args: any[]) => string | false | CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | false | CSSProperties | StyleValue[]) | (() => StyleValue))[], unknown, unknown, () => Mutable<{}>, boolean>;
|
|
197
197
|
readonly autofocus: BooleanConstructor;
|
|
198
198
|
readonly rows: EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
|
199
199
|
}>> & {
|
|
200
200
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
201
|
+
onInput?: ((value: string) => any) | undefined;
|
|
202
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
201
203
|
onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
|
|
204
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
202
205
|
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
203
206
|
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
204
207
|
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
205
|
-
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
206
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
207
|
-
onInput?: ((value: string) => any) | undefined;
|
|
208
208
|
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
209
209
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
210
210
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
@@ -240,7 +240,6 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
240
240
|
readonly id: string;
|
|
241
241
|
readonly type: EpPropMergeType<(new (...args: any[]) => string) | (() => InputType) | ((new (...args: any[]) => string) | (() => InputType))[], unknown, unknown>;
|
|
242
242
|
readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
|
243
|
-
readonly readonly: boolean;
|
|
244
243
|
readonly modelModifiers: InputModelModifiers;
|
|
245
244
|
readonly autosize: InputAutoSize;
|
|
246
245
|
readonly autocomplete: AutoFill;
|
|
@@ -250,6 +249,7 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
250
249
|
readonly inputStyle: StyleValue;
|
|
251
250
|
readonly rows: number;
|
|
252
251
|
readonly inputmode: EpPropMergeType<(new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined) | ((new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined))[], unknown, unknown>;
|
|
252
|
+
readonly readonly: boolean;
|
|
253
253
|
readonly clearable: boolean;
|
|
254
254
|
readonly showPassword: boolean;
|
|
255
255
|
readonly showWordLimit: boolean;
|
|
@@ -280,7 +280,6 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
280
280
|
readonly id: string;
|
|
281
281
|
readonly type: EpPropMergeType<(new (...args: any[]) => string) | (() => InputType) | ((new (...args: any[]) => string) | (() => InputType))[], unknown, unknown>;
|
|
282
282
|
readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
|
283
|
-
readonly readonly: boolean;
|
|
284
283
|
readonly modelModifiers: InputModelModifiers;
|
|
285
284
|
readonly autosize: InputAutoSize;
|
|
286
285
|
readonly autocomplete: AutoFill;
|
|
@@ -290,6 +289,7 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
290
289
|
readonly inputStyle: StyleValue;
|
|
291
290
|
readonly rows: number;
|
|
292
291
|
readonly inputmode: EpPropMergeType<(new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined) | ((new (...args: any[]) => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal") | (() => "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined))[], unknown, unknown>;
|
|
292
|
+
readonly readonly: boolean;
|
|
293
293
|
readonly clearable: boolean;
|
|
294
294
|
readonly showPassword: boolean;
|
|
295
295
|
readonly showWordLimit: boolean;
|
|
@@ -385,18 +385,18 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
385
385
|
readonly containerRole: EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
386
386
|
readonly tabindex: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
|
387
387
|
readonly validateEvent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
388
|
-
readonly inputStyle: EpPropFinalized<(new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue))[], unknown, unknown, () => Mutable<{}>, boolean>;
|
|
388
|
+
readonly inputStyle: EpPropFinalized<(new (...args: any[]) => string | false | CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | false | CSSProperties | StyleValue[]) | (() => StyleValue))[], unknown, unknown, () => Mutable<{}>, boolean>;
|
|
389
389
|
readonly autofocus: BooleanConstructor;
|
|
390
390
|
readonly rows: EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
|
391
391
|
}>> & {
|
|
392
392
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
393
|
+
onInput?: ((value: string) => any) | undefined;
|
|
394
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
393
395
|
onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
|
|
396
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
394
397
|
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
395
398
|
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
396
399
|
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
397
|
-
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
398
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
399
|
-
onInput?: ((value: string) => any) | undefined;
|
|
400
400
|
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
401
401
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
402
402
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
@@ -415,10 +415,13 @@ declare const _default: DefineComponent<GridEditorProps, {
|
|
|
415
415
|
resizeTextarea: () => void;
|
|
416
416
|
}> & {} & ComponentCustomProperties & {} & {
|
|
417
417
|
$slots: {
|
|
418
|
-
prepend
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
418
|
+
prepend?: (props: {}) => any;
|
|
419
|
+
} & {
|
|
420
|
+
prefix?: (props: {}) => any;
|
|
421
|
+
} & {
|
|
422
|
+
suffix?: (props: {}) => any;
|
|
423
|
+
} & {
|
|
424
|
+
append?: (props: {}) => any;
|
|
422
425
|
};
|
|
423
426
|
}) | null;
|
|
424
427
|
}, any>;
|
|
@@ -541,6 +541,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
541
541
|
__epPropKey: true;
|
|
542
542
|
};
|
|
543
543
|
readonly teleported: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
544
|
+
readonly appendTo: {
|
|
545
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
546
|
+
readonly required: false;
|
|
547
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
548
|
+
__epPropKey: true;
|
|
549
|
+
};
|
|
544
550
|
readonly persistent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
545
551
|
}>>>;
|
|
546
552
|
};
|
|
@@ -756,6 +762,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
756
762
|
__epPropKey: true;
|
|
757
763
|
};
|
|
758
764
|
readonly teleported: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
765
|
+
readonly appendTo: {
|
|
766
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
767
|
+
readonly required: false;
|
|
768
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
769
|
+
__epPropKey: true;
|
|
770
|
+
};
|
|
759
771
|
readonly persistent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
760
772
|
}>>>;
|
|
761
773
|
};
|
|
@@ -1026,6 +1038,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1026
1038
|
__epPropKey: true;
|
|
1027
1039
|
};
|
|
1028
1040
|
readonly teleported: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1041
|
+
readonly appendTo: {
|
|
1042
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
1043
|
+
readonly required: false;
|
|
1044
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1045
|
+
__epPropKey: true;
|
|
1046
|
+
};
|
|
1029
1047
|
readonly persistent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1030
1048
|
}>>>;
|
|
1031
1049
|
};
|
|
@@ -1241,6 +1259,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1241
1259
|
__epPropKey: true;
|
|
1242
1260
|
};
|
|
1243
1261
|
readonly teleported: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1262
|
+
readonly appendTo: {
|
|
1263
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
1264
|
+
readonly required: false;
|
|
1265
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1266
|
+
__epPropKey: true;
|
|
1267
|
+
};
|
|
1244
1268
|
readonly persistent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1245
1269
|
}>>>;
|
|
1246
1270
|
};
|
|
@@ -222,7 +222,7 @@ declare function __VLS_template(): {
|
|
|
222
222
|
fields: Reactive< FormItemContext[]>;
|
|
223
223
|
}> & {} & ComponentCustomProperties & {} & {
|
|
224
224
|
$slots: {
|
|
225
|
-
default
|
|
225
|
+
default?: (props: {}) => any;
|
|
226
226
|
};
|
|
227
227
|
}) | null;
|
|
228
228
|
};
|
|
@@ -626,7 +626,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
626
626
|
fields: Reactive< FormItemContext[]>;
|
|
627
627
|
}> & {} & ComponentCustomProperties & {} & {
|
|
628
628
|
$slots: {
|
|
629
|
-
default
|
|
629
|
+
default?: (props: {}) => any;
|
|
630
630
|
};
|
|
631
631
|
}) | null;
|
|
632
632
|
};
|
|
@@ -1005,7 +1005,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1005
1005
|
fields: Reactive< FormItemContext[]>;
|
|
1006
1006
|
}> & {} & ComponentCustomProperties & {} & {
|
|
1007
1007
|
$slots: {
|
|
1008
|
-
default
|
|
1008
|
+
default?: (props: {}) => any;
|
|
1009
1009
|
};
|
|
1010
1010
|
}) | null;
|
|
1011
1011
|
};
|
|
@@ -1410,7 +1410,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1410
1410
|
fields: Reactive< FormItemContext[]>;
|
|
1411
1411
|
}> & {} & ComponentCustomProperties & {} & {
|
|
1412
1412
|
$slots: {
|
|
1413
|
-
default
|
|
1413
|
+
default?: (props: {}) => any;
|
|
1414
1414
|
};
|
|
1415
1415
|
}) | null;
|
|
1416
1416
|
};
|
|
@@ -258,6 +258,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
258
258
|
__epPropKey: true;
|
|
259
259
|
};
|
|
260
260
|
readonly teleported: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
261
|
+
readonly appendTo: {
|
|
262
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
263
|
+
readonly required: false;
|
|
264
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
265
|
+
__epPropKey: true;
|
|
266
|
+
};
|
|
261
267
|
readonly persistent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
262
268
|
}>>>;
|
|
263
269
|
};
|
|
@@ -489,6 +495,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
489
495
|
__epPropKey: true;
|
|
490
496
|
};
|
|
491
497
|
readonly teleported: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
498
|
+
readonly appendTo: {
|
|
499
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
500
|
+
readonly required: false;
|
|
501
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
502
|
+
__epPropKey: true;
|
|
503
|
+
};
|
|
492
504
|
readonly persistent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
493
505
|
}>>>;
|
|
494
506
|
};
|
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.13.
|
|
5
|
+
* @version 0.13.38
|
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
|
7
7
|
*/
|
|
8
|
-
export declare const version = "0.13.
|
|
8
|
+
export declare const version = "0.13.38";
|