vft 0.0.499 → 0.0.501
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.css +1 -1
- package/es/components/autocomplete/autocomplete.vue.d.ts +6 -6
- package/es/components/autocomplete/index.d.ts +18 -18
- package/es/components/button/index.d.ts +9 -9
- package/es/components/carousel/use-carousel.js +1 -1
- package/es/components/config-provider/hooks/use-global-config.js +3 -3
- package/es/components/image-viewer/image-viewer.vue.d.ts +2 -0
- package/es/components/image-viewer/image-viewer.vue2.js +89 -85
- package/es/components/image-viewer/index.d.ts +18 -0
- package/es/components/input/input.vue2.js +4 -4
- package/es/components/input-tag/composables/use-input-tag.js +1 -1
- package/es/components/popconfirm/index.d.ts +15 -15
- package/es/components/popconfirm/popconfirm.vue.d.ts +1 -1
- package/es/components/popper/index.d.ts +3 -3
- package/es/components/select/index.d.ts +15 -15
- package/es/components/select/select.vue.d.ts +15 -15
- package/es/components/select/useSelect.d.ts +12 -12
- package/es/components/super-form/style/css.d.ts +1 -0
- package/es/components/super-form/style/index.d.ts +1 -0
- package/es/components/super-form/super-form-item.vue2.js +360 -325
- package/es/components/super-form/types.d.ts +3 -1
- package/es/components/table/field.js +32 -33
- package/es/components/table/table.vue2.js +51 -49
- package/es/components/table/use/use-data-source.js +166 -143
- package/es/components/table/use/use-loading.js +11 -11
- package/es/components/table/use/use-table.js +7 -6
- package/es/components/tooltip/index.d.ts +3 -3
- package/es/components/tree/index.d.ts +5 -5
- package/es/components/tree/tree.vue.d.ts +2 -2
- package/es/components/tree-select/select.js +24 -24
- package/es/components/tree-select/tree-select-option.js +18 -7
- package/es/components/tree-select/tree-select.vue2.js +28 -26
- package/es/components/tree-select/tree.js +27 -26
- package/es/components/upload/index.d.ts +15 -15
- package/es/components/upload/upload-content.vue.d.ts +1 -1
- package/es/components/upload/upload.vue.d.ts +1 -1
- package/es/hooks/use-z-index/index.js +3 -3
- package/es/package.json.d.ts +1 -1
- package/es/package.json.js +1 -1
- package/es/utils/form-register.d.ts +1 -0
- package/es/utils/form-register.js +5 -4
- package/es/utils/vue/vnode.js +1 -1
- package/lib/components/autocomplete/autocomplete.vue.d.ts +6 -6
- package/lib/components/autocomplete/index.d.ts +18 -18
- package/lib/components/button/index.d.ts +9 -9
- package/lib/components/image-viewer/image-viewer.vue.d.ts +2 -0
- package/lib/components/image-viewer/image-viewer.vue2.cjs +1 -1
- package/lib/components/image-viewer/index.d.ts +18 -0
- package/lib/components/input/input.vue2.cjs +1 -1
- package/lib/components/popconfirm/index.d.ts +15 -15
- package/lib/components/popconfirm/popconfirm.vue.d.ts +1 -1
- package/lib/components/popper/index.d.ts +3 -3
- package/lib/components/select/index.d.ts +15 -15
- package/lib/components/select/select.vue.d.ts +15 -15
- package/lib/components/select/useSelect.d.ts +12 -12
- package/lib/components/super-form/style/css.d.ts +1 -0
- package/lib/components/super-form/style/index.d.ts +1 -0
- package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
- package/lib/components/super-form/types.d.ts +3 -1
- package/lib/components/table/field.cjs +1 -1
- package/lib/components/table/table.vue2.cjs +1 -1
- package/lib/components/table/use/use-data-source.cjs +1 -1
- package/lib/components/table/use/use-loading.cjs +1 -1
- package/lib/components/table/use/use-table.cjs +1 -1
- package/lib/components/tooltip/index.d.ts +3 -3
- package/lib/components/tree/index.d.ts +5 -5
- package/lib/components/tree/tree.vue.d.ts +2 -2
- package/lib/components/tree-select/select.cjs +1 -1
- package/lib/components/tree-select/tree-select-option.cjs +1 -1
- package/lib/components/tree-select/tree-select.vue2.cjs +1 -1
- package/lib/components/tree-select/tree.cjs +1 -1
- package/lib/components/upload/index.d.ts +15 -15
- package/lib/components/upload/upload-content.vue.d.ts +1 -1
- package/lib/components/upload/upload.vue.d.ts +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +1 -1
- package/lib/utils/form-register.cjs +1 -1
- package/lib/utils/form-register.d.ts +1 -0
- package/package.json +5 -5
- package/theme-style/index.css +1 -1
- package/theme-style/src/icon-text.scss +1 -1
- package/theme-style/src/tree-select.scss +8 -0
- package/theme-style/vft-icon-text.css +1 -1
- package/theme-style/vft-tree-select.css +1 -1
- package/web-types.json +1 -1
|
@@ -263,9 +263,9 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
263
263
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
264
264
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
265
265
|
readonly effect?: "light" | "dark" | undefined;
|
|
266
|
+
readonly visible?: boolean | null | undefined;
|
|
266
267
|
readonly teleported?: boolean | undefined;
|
|
267
268
|
readonly open?: boolean | undefined;
|
|
268
|
-
readonly visible?: boolean | null | undefined;
|
|
269
269
|
readonly trigger?: import("vft/es/vft").TooltipTriggerType | undefined;
|
|
270
270
|
readonly arrowOffset?: number | undefined;
|
|
271
271
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -313,7 +313,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
313
313
|
$el: any;
|
|
314
314
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
315
315
|
role: {
|
|
316
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
316
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
317
317
|
};
|
|
318
318
|
showArrow: {
|
|
319
319
|
type: import("vue").PropType<boolean>;
|
|
@@ -497,7 +497,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
497
497
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
498
498
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
499
499
|
role: {
|
|
500
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
500
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
501
501
|
};
|
|
502
502
|
showArrow: {
|
|
503
503
|
type: import("vue").PropType<boolean>;
|
|
@@ -681,9 +681,9 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
681
681
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
682
682
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
683
683
|
readonly effect?: "light" | "dark" | undefined;
|
|
684
|
+
readonly visible?: boolean | null | undefined;
|
|
684
685
|
readonly teleported?: boolean | undefined;
|
|
685
686
|
readonly open?: boolean | undefined;
|
|
686
|
-
readonly visible?: boolean | null | undefined;
|
|
687
687
|
readonly trigger?: import("vft/es/vft").TooltipTriggerType | undefined;
|
|
688
688
|
readonly arrowOffset?: number | undefined;
|
|
689
689
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -731,7 +731,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
731
731
|
$el: any;
|
|
732
732
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
733
733
|
role: {
|
|
734
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
734
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
735
735
|
};
|
|
736
736
|
showArrow: {
|
|
737
737
|
type: import("vue").PropType<boolean>;
|
|
@@ -915,7 +915,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
915
915
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
916
916
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
917
917
|
role: {
|
|
918
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
918
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
919
919
|
};
|
|
920
920
|
showArrow: {
|
|
921
921
|
type: import("vue").PropType<boolean>;
|
|
@@ -1100,9 +1100,9 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
1100
1100
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
1101
1101
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
1102
1102
|
readonly effect?: "light" | "dark" | undefined;
|
|
1103
|
+
readonly visible?: boolean | null | undefined;
|
|
1103
1104
|
readonly teleported?: boolean | undefined;
|
|
1104
1105
|
readonly open?: boolean | undefined;
|
|
1105
|
-
readonly visible?: boolean | null | undefined;
|
|
1106
1106
|
readonly trigger?: import("vft/es/vft").TooltipTriggerType | undefined;
|
|
1107
1107
|
readonly arrowOffset?: number | undefined;
|
|
1108
1108
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -1150,7 +1150,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
1150
1150
|
$el: any;
|
|
1151
1151
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1152
1152
|
role: {
|
|
1153
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1153
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1154
1154
|
};
|
|
1155
1155
|
showArrow: {
|
|
1156
1156
|
type: import("vue").PropType<boolean>;
|
|
@@ -1334,7 +1334,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
1334
1334
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
1335
1335
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1336
1336
|
role: {
|
|
1337
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1337
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1338
1338
|
};
|
|
1339
1339
|
showArrow: {
|
|
1340
1340
|
type: import("vue").PropType<boolean>;
|
|
@@ -1518,9 +1518,9 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
1518
1518
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
1519
1519
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
1520
1520
|
readonly effect?: "light" | "dark" | undefined;
|
|
1521
|
+
readonly visible?: boolean | null | undefined;
|
|
1521
1522
|
readonly teleported?: boolean | undefined;
|
|
1522
1523
|
readonly open?: boolean | undefined;
|
|
1523
|
-
readonly visible?: boolean | null | undefined;
|
|
1524
1524
|
readonly trigger?: import("vft/es/vft").TooltipTriggerType | undefined;
|
|
1525
1525
|
readonly arrowOffset?: number | undefined;
|
|
1526
1526
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -1568,7 +1568,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
1568
1568
|
$el: any;
|
|
1569
1569
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1570
1570
|
role: {
|
|
1571
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1571
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1572
1572
|
};
|
|
1573
1573
|
showArrow: {
|
|
1574
1574
|
type: import("vue").PropType<boolean>;
|
|
@@ -1752,7 +1752,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
1752
1752
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
1753
1753
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1754
1754
|
role: {
|
|
1755
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1755
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1756
1756
|
};
|
|
1757
1757
|
showArrow: {
|
|
1758
1758
|
type: import("vue").PropType<boolean>;
|
|
@@ -2241,7 +2241,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
2241
2241
|
Tooltip: SFCWithInstall<{
|
|
2242
2242
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
2243
2243
|
role: {
|
|
2244
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
2244
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
2245
2245
|
};
|
|
2246
2246
|
showArrow: {
|
|
2247
2247
|
type: import("vue").PropType<boolean>;
|
|
@@ -2412,7 +2412,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
2412
2412
|
Defaults: {};
|
|
2413
2413
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
2414
2414
|
role: {
|
|
2415
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
2415
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
2416
2416
|
};
|
|
2417
2417
|
showArrow: {
|
|
2418
2418
|
type: import("vue").PropType<boolean>;
|
|
@@ -2573,7 +2573,7 @@ export declare const VftSelect: SFCWithInstall<import("vue").DefineComponent<imp
|
|
|
2573
2573
|
__isSuspense?: never;
|
|
2574
2574
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2575
2575
|
role: {
|
|
2576
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
2576
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
2577
2577
|
};
|
|
2578
2578
|
showArrow: {
|
|
2579
2579
|
type: import("vue").PropType<boolean>;
|
|
@@ -259,9 +259,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
259
259
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
260
260
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
261
261
|
readonly effect?: "light" | "dark" | undefined;
|
|
262
|
+
readonly visible?: boolean | null | undefined;
|
|
262
263
|
readonly teleported?: boolean | undefined;
|
|
263
264
|
readonly open?: boolean | undefined;
|
|
264
|
-
readonly visible?: boolean | null | undefined;
|
|
265
265
|
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
266
266
|
readonly arrowOffset?: number | undefined;
|
|
267
267
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -309,7 +309,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
309
309
|
$el: any;
|
|
310
310
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
311
311
|
role: {
|
|
312
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
312
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
313
313
|
};
|
|
314
314
|
showArrow: {
|
|
315
315
|
type: import("vue").PropType<boolean>;
|
|
@@ -493,7 +493,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
493
493
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
494
494
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
495
495
|
role: {
|
|
496
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
496
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
497
497
|
};
|
|
498
498
|
showArrow: {
|
|
499
499
|
type: import("vue").PropType<boolean>;
|
|
@@ -677,9 +677,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
677
677
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
678
678
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
679
679
|
readonly effect?: "light" | "dark" | undefined;
|
|
680
|
+
readonly visible?: boolean | null | undefined;
|
|
680
681
|
readonly teleported?: boolean | undefined;
|
|
681
682
|
readonly open?: boolean | undefined;
|
|
682
|
-
readonly visible?: boolean | null | undefined;
|
|
683
683
|
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
684
684
|
readonly arrowOffset?: number | undefined;
|
|
685
685
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -727,7 +727,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
727
727
|
$el: any;
|
|
728
728
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
729
729
|
role: {
|
|
730
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
730
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
731
731
|
};
|
|
732
732
|
showArrow: {
|
|
733
733
|
type: import("vue").PropType<boolean>;
|
|
@@ -911,7 +911,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
911
911
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
912
912
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
913
913
|
role: {
|
|
914
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
914
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
915
915
|
};
|
|
916
916
|
showArrow: {
|
|
917
917
|
type: import("vue").PropType<boolean>;
|
|
@@ -1096,9 +1096,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1096
1096
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
1097
1097
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
1098
1098
|
readonly effect?: "light" | "dark" | undefined;
|
|
1099
|
+
readonly visible?: boolean | null | undefined;
|
|
1099
1100
|
readonly teleported?: boolean | undefined;
|
|
1100
1101
|
readonly open?: boolean | undefined;
|
|
1101
|
-
readonly visible?: boolean | null | undefined;
|
|
1102
1102
|
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
1103
1103
|
readonly arrowOffset?: number | undefined;
|
|
1104
1104
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -1146,7 +1146,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1146
1146
|
$el: any;
|
|
1147
1147
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1148
1148
|
role: {
|
|
1149
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1149
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1150
1150
|
};
|
|
1151
1151
|
showArrow: {
|
|
1152
1152
|
type: import("vue").PropType<boolean>;
|
|
@@ -1330,7 +1330,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1330
1330
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
1331
1331
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1332
1332
|
role: {
|
|
1333
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1333
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1334
1334
|
};
|
|
1335
1335
|
showArrow: {
|
|
1336
1336
|
type: import("vue").PropType<boolean>;
|
|
@@ -1514,9 +1514,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1514
1514
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
1515
1515
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
1516
1516
|
readonly effect?: "light" | "dark" | undefined;
|
|
1517
|
+
readonly visible?: boolean | null | undefined;
|
|
1517
1518
|
readonly teleported?: boolean | undefined;
|
|
1518
1519
|
readonly open?: boolean | undefined;
|
|
1519
|
-
readonly visible?: boolean | null | undefined;
|
|
1520
1520
|
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
1521
1521
|
readonly arrowOffset?: number | undefined;
|
|
1522
1522
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -1564,7 +1564,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1564
1564
|
$el: any;
|
|
1565
1565
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1566
1566
|
role: {
|
|
1567
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1567
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1568
1568
|
};
|
|
1569
1569
|
showArrow: {
|
|
1570
1570
|
type: import("vue").PropType<boolean>;
|
|
@@ -1748,7 +1748,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1748
1748
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
1749
1749
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1750
1750
|
role: {
|
|
1751
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1751
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1752
1752
|
};
|
|
1753
1753
|
showArrow: {
|
|
1754
1754
|
type: import("vue").PropType<boolean>;
|
|
@@ -2237,7 +2237,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2237
2237
|
Tooltip: import("vft/es/utils").SFCWithInstall<{
|
|
2238
2238
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
2239
2239
|
role: {
|
|
2240
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
2240
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
2241
2241
|
};
|
|
2242
2242
|
showArrow: {
|
|
2243
2243
|
type: import("vue").PropType<boolean>;
|
|
@@ -2408,7 +2408,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2408
2408
|
Defaults: {};
|
|
2409
2409
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
2410
2410
|
role: {
|
|
2411
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
2411
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
2412
2412
|
};
|
|
2413
2413
|
showArrow: {
|
|
2414
2414
|
type: import("vue").PropType<boolean>;
|
|
@@ -2569,7 +2569,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2569
2569
|
__isSuspense?: never;
|
|
2570
2570
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2571
2571
|
role: {
|
|
2572
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
2572
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
2573
2573
|
};
|
|
2574
2574
|
showArrow: {
|
|
2575
2575
|
type: import("vue").PropType<boolean>;
|
|
@@ -103,9 +103,9 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
103
103
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
104
104
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
105
105
|
readonly effect?: "light" | "dark" | undefined;
|
|
106
|
+
readonly visible?: boolean | null | undefined;
|
|
106
107
|
readonly teleported?: boolean | undefined;
|
|
107
108
|
readonly open?: boolean | undefined;
|
|
108
|
-
readonly visible?: boolean | null | undefined;
|
|
109
109
|
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
110
110
|
readonly arrowOffset?: number | undefined;
|
|
111
111
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -153,7 +153,7 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
153
153
|
$el: any;
|
|
154
154
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
155
155
|
role: {
|
|
156
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
156
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
157
157
|
};
|
|
158
158
|
showArrow: {
|
|
159
159
|
type: import("vue").PropType<boolean>;
|
|
@@ -337,7 +337,7 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
337
337
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
338
338
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
339
339
|
role: {
|
|
340
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
340
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
341
341
|
};
|
|
342
342
|
showArrow: {
|
|
343
343
|
type: import("vue").PropType<boolean>;
|
|
@@ -521,9 +521,9 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
521
521
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
522
522
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
523
523
|
readonly effect?: "light" | "dark" | undefined;
|
|
524
|
+
readonly visible?: boolean | null | undefined;
|
|
524
525
|
readonly teleported?: boolean | undefined;
|
|
525
526
|
readonly open?: boolean | undefined;
|
|
526
|
-
readonly visible?: boolean | null | undefined;
|
|
527
527
|
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
528
528
|
readonly arrowOffset?: number | undefined;
|
|
529
529
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -571,7 +571,7 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
571
571
|
$el: any;
|
|
572
572
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
573
573
|
role: {
|
|
574
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
574
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
575
575
|
};
|
|
576
576
|
showArrow: {
|
|
577
577
|
type: import("vue").PropType<boolean>;
|
|
@@ -755,7 +755,7 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
755
755
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
756
756
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
757
757
|
role: {
|
|
758
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
758
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
759
759
|
};
|
|
760
760
|
showArrow: {
|
|
761
761
|
type: import("vue").PropType<boolean>;
|
|
@@ -940,9 +940,9 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
940
940
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
941
941
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
942
942
|
readonly effect?: "light" | "dark" | undefined;
|
|
943
|
+
readonly visible?: boolean | null | undefined;
|
|
943
944
|
readonly teleported?: boolean | undefined;
|
|
944
945
|
readonly open?: boolean | undefined;
|
|
945
|
-
readonly visible?: boolean | null | undefined;
|
|
946
946
|
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
947
947
|
readonly arrowOffset?: number | undefined;
|
|
948
948
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -990,7 +990,7 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
990
990
|
$el: any;
|
|
991
991
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
992
992
|
role: {
|
|
993
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
993
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
994
994
|
};
|
|
995
995
|
showArrow: {
|
|
996
996
|
type: import("vue").PropType<boolean>;
|
|
@@ -1174,7 +1174,7 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
1174
1174
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
1175
1175
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1176
1176
|
role: {
|
|
1177
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1177
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1178
1178
|
};
|
|
1179
1179
|
showArrow: {
|
|
1180
1180
|
type: import("vue").PropType<boolean>;
|
|
@@ -1358,9 +1358,9 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
1358
1358
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
1359
1359
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
1360
1360
|
readonly effect?: "light" | "dark" | undefined;
|
|
1361
|
+
readonly visible?: boolean | null | undefined;
|
|
1361
1362
|
readonly teleported?: boolean | undefined;
|
|
1362
1363
|
readonly open?: boolean | undefined;
|
|
1363
|
-
readonly visible?: boolean | null | undefined;
|
|
1364
1364
|
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
1365
1365
|
readonly arrowOffset?: number | undefined;
|
|
1366
1366
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -1408,7 +1408,7 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
1408
1408
|
$el: any;
|
|
1409
1409
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1410
1410
|
role: {
|
|
1411
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1411
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1412
1412
|
};
|
|
1413
1413
|
showArrow: {
|
|
1414
1414
|
type: import("vue").PropType<boolean>;
|
|
@@ -1592,7 +1592,7 @@ declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
|
1592
1592
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
1593
1593
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1594
1594
|
role: {
|
|
1595
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1595
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1596
1596
|
};
|
|
1597
1597
|
showArrow: {
|
|
1598
1598
|
type: import("vue").PropType<boolean>;
|
|
@@ -24,5 +24,6 @@ import 'vft/es/components/button/style/css';
|
|
|
24
24
|
import 'vft/es/components/form/style/css';
|
|
25
25
|
import 'vft/es/components/form-item/style/css';
|
|
26
26
|
import 'vft/es/components/time-select/style/css';
|
|
27
|
+
import 'vft/es/components/tree/style/css';
|
|
27
28
|
import 'vft/es/components/tree-select/style/css';
|
|
28
29
|
import 'vft/theme-style/vft-super-form.css';
|
|
@@ -25,5 +25,6 @@ import 'vft/es/components/form/style';
|
|
|
25
25
|
import 'vft/es/components/form-item/style';
|
|
26
26
|
import 'vft/es/components/button/style';
|
|
27
27
|
import 'vft/es/components/time-select/style';
|
|
28
|
+
import 'vft/es/components/tree/style';
|
|
28
29
|
import 'vft/es/components/tree-select/style';
|
|
29
30
|
import 'vft/theme-style/src/super-form.scss';
|