vft 0.0.498 → 0.0.500
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 +4 -4
- package/es/components/autocomplete/index.d.ts +12 -12
- package/es/components/carousel/use-carousel.js +1 -1
- package/es/components/config-provider/hooks/use-global-config.js +3 -3
- package/es/components/input/input.vue2.js +4 -4
- package/es/components/input-tag/composables/use-input-tag.js +1 -1
- package/es/components/popper/index.d.ts +3 -3
- package/es/components/select/index.d.ts +11 -11
- package/es/components/select/select.vue.d.ts +11 -11
- package/es/components/select/useSelect.d.ts +8 -8
- 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 +265 -249
- package/es/components/super-form/types.d.ts +3 -1
- 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/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 +4 -4
- package/lib/components/autocomplete/index.d.ts +12 -12
- package/lib/components/input/input.vue2.cjs +1 -1
- package/lib/components/popper/index.d.ts +3 -3
- package/lib/components/select/index.d.ts +11 -11
- package/lib/components/select/select.vue.d.ts +11 -11
- package/lib/components/select/useSelect.d.ts +8 -8
- 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/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/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 +6 -6
- package/theme-style/index.css +1 -1
- package/theme-style/src/icon-text.scss +1 -1
- package/theme-style/vft-icon-text.css +1 -1
- package/web-types.json +1 -1
|
@@ -112,7 +112,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
112
112
|
$el: any;
|
|
113
113
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
114
114
|
role: {
|
|
115
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
115
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
116
116
|
};
|
|
117
117
|
showArrow: {
|
|
118
118
|
type: import("vue").PropType<boolean>;
|
|
@@ -296,7 +296,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
296
296
|
$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;
|
|
297
297
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
298
298
|
role: {
|
|
299
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
299
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
300
300
|
};
|
|
301
301
|
showArrow: {
|
|
302
302
|
type: import("vue").PropType<boolean>;
|
|
@@ -530,7 +530,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
530
530
|
$el: any;
|
|
531
531
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
532
532
|
role: {
|
|
533
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
533
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
534
534
|
};
|
|
535
535
|
showArrow: {
|
|
536
536
|
type: import("vue").PropType<boolean>;
|
|
@@ -714,7 +714,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
714
714
|
$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;
|
|
715
715
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
716
716
|
role: {
|
|
717
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
717
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
718
718
|
};
|
|
719
719
|
showArrow: {
|
|
720
720
|
type: import("vue").PropType<boolean>;
|
|
@@ -135,7 +135,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
135
135
|
$el: any;
|
|
136
136
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
137
137
|
role: {
|
|
138
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
138
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
139
139
|
};
|
|
140
140
|
showArrow: {
|
|
141
141
|
type: import("vue").PropType<boolean>;
|
|
@@ -319,7 +319,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
319
319
|
$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;
|
|
320
320
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
321
321
|
role: {
|
|
322
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
322
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
323
323
|
};
|
|
324
324
|
showArrow: {
|
|
325
325
|
type: import("vue").PropType<boolean>;
|
|
@@ -553,7 +553,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
553
553
|
$el: any;
|
|
554
554
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
555
555
|
role: {
|
|
556
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
556
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
557
557
|
};
|
|
558
558
|
showArrow: {
|
|
559
559
|
type: import("vue").PropType<boolean>;
|
|
@@ -737,7 +737,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
737
737
|
$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;
|
|
738
738
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
739
739
|
role: {
|
|
740
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
740
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
741
741
|
};
|
|
742
742
|
showArrow: {
|
|
743
743
|
type: import("vue").PropType<boolean>;
|
|
@@ -1056,7 +1056,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
1056
1056
|
$el: any;
|
|
1057
1057
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1058
1058
|
role: {
|
|
1059
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1059
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1060
1060
|
};
|
|
1061
1061
|
showArrow: {
|
|
1062
1062
|
type: import("vue").PropType<boolean>;
|
|
@@ -1240,7 +1240,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
1240
1240
|
$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;
|
|
1241
1241
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1242
1242
|
role: {
|
|
1243
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1243
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1244
1244
|
};
|
|
1245
1245
|
showArrow: {
|
|
1246
1246
|
type: import("vue").PropType<boolean>;
|
|
@@ -1474,7 +1474,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
1474
1474
|
$el: any;
|
|
1475
1475
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1476
1476
|
role: {
|
|
1477
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1477
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1478
1478
|
};
|
|
1479
1479
|
showArrow: {
|
|
1480
1480
|
type: import("vue").PropType<boolean>;
|
|
@@ -1658,7 +1658,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
1658
1658
|
$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;
|
|
1659
1659
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1660
1660
|
role: {
|
|
1661
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1661
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1662
1662
|
};
|
|
1663
1663
|
showArrow: {
|
|
1664
1664
|
type: import("vue").PropType<boolean>;
|
|
@@ -1966,7 +1966,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
1966
1966
|
$el: any;
|
|
1967
1967
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1968
1968
|
role: {
|
|
1969
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
1969
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
1970
1970
|
};
|
|
1971
1971
|
showArrow: {
|
|
1972
1972
|
type: import("vue").PropType<boolean>;
|
|
@@ -2150,7 +2150,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
2150
2150
|
$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;
|
|
2151
2151
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2152
2152
|
role: {
|
|
2153
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
2153
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
2154
2154
|
};
|
|
2155
2155
|
showArrow: {
|
|
2156
2156
|
type: import("vue").PropType<boolean>;
|
|
@@ -2384,7 +2384,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
2384
2384
|
$el: any;
|
|
2385
2385
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2386
2386
|
role: {
|
|
2387
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
2387
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
2388
2388
|
};
|
|
2389
2389
|
showArrow: {
|
|
2390
2390
|
type: import("vue").PropType<boolean>;
|
|
@@ -2568,7 +2568,7 @@ export declare const VftAutocomplete: import("vft/es/utils").SFCWithInstall<{
|
|
|
2568
2568
|
$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;
|
|
2569
2569
|
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2570
2570
|
role: {
|
|
2571
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
2571
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
2572
2572
|
};
|
|
2573
2573
|
showArrow: {
|
|
2574
2574
|
type: import("vue").PropType<boolean>;
|
|
@@ -11,7 +11,7 @@ import "../../hooks/use-model-toggle/index.js";
|
|
|
11
11
|
import { useOrderedChildren as ge } from "../../hooks/use-ordered-children/index.js";
|
|
12
12
|
import "@popperjs/core";
|
|
13
13
|
import "../../hooks/use-z-index/index.js";
|
|
14
|
-
import {
|
|
14
|
+
import { CAROUSEL_ITEM_NAME as H, carouselContextKey as Se } from "./constants.js";
|
|
15
15
|
const L = 300, ze = (t, O, M) => {
|
|
16
16
|
const {
|
|
17
17
|
children: o,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { keysOf as f } from "@vft/utils";
|
|
2
2
|
import "@vueuse/core";
|
|
3
3
|
import { debugWarn as v } from "../../../utils/error.js";
|
|
4
|
-
import { getCurrentInstance as l, computed as i, unref as p, provide as
|
|
4
|
+
import { ref as g, getCurrentInstance as l, computed as i, unref as p, provide as C, inject as x } from "vue";
|
|
5
5
|
import "lodash-es";
|
|
6
6
|
import "../../form/index.js";
|
|
7
7
|
import { namespaceContextKey as I, useNamespace as b, defaultNamespace as y } from "../../../hooks/use-namespace/index.js";
|
|
@@ -9,7 +9,7 @@ import "../../../hooks/use-model-toggle/index.js";
|
|
|
9
9
|
import "@popperjs/core";
|
|
10
10
|
import { zIndexContextKey as G, useZIndex as z, defaultInitialZIndex as K } from "../../../hooks/use-z-index/index.js";
|
|
11
11
|
import { configProviderContextKey as m } from "../constants.js";
|
|
12
|
-
const a =
|
|
12
|
+
const a = g();
|
|
13
13
|
function d(o, e = void 0) {
|
|
14
14
|
const n = l() ? x(m, a) : a;
|
|
15
15
|
return o ? i(() => n?.value?.[o] ?? e) : n;
|
|
@@ -27,7 +27,7 @@ function B(o) {
|
|
|
27
27
|
};
|
|
28
28
|
}
|
|
29
29
|
const S = (o, e, n = !1) => {
|
|
30
|
-
const t = !!l(), r = t ? d() : void 0, u = e?.provide ?? (t ?
|
|
30
|
+
const t = !!l(), r = t ? d() : void 0, u = e?.provide ?? (t ? C : void 0);
|
|
31
31
|
if (!u) {
|
|
32
32
|
v(
|
|
33
33
|
"provideGlobalConfig",
|
|
@@ -13,8 +13,8 @@ import "../../hooks/use-z-index/index.js";
|
|
|
13
13
|
import { UPDATE_MODEL_EVENT as Q } from "@vft/constants";
|
|
14
14
|
import { useAttrs as Ze, useCursor as _e } from "@vft/use";
|
|
15
15
|
import { calcTextareaHeight as he } from "./utils.js";
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
16
|
+
import { useFormSize as et, useFormDisabled as tt } from "../form/hooks/use-form-common-props.js";
|
|
17
|
+
import { useFormItem as at, useFormItemInputId as nt } from "../form/hooks/use-form-item.js";
|
|
18
18
|
const ot = ["role"], lt = ["id", "type", "disabled", "formatter", "parser", "readonly", "autocomplete", "tabindex", "aria-label", "placeholder", "form"], st = ["id", "tabindex", "disabled", "readonly", "autocomplete", "aria-label", "placeholder", "form"], It = /* @__PURE__ */ Oe({
|
|
19
19
|
__name: "input",
|
|
20
20
|
props: {
|
|
@@ -85,9 +85,9 @@ const ot = ["role"], lt = ["id", "type", "disabled", "formatter", "parser", "rea
|
|
|
85
85
|
n.is("focus", v.value)
|
|
86
86
|
]), d = Ze({
|
|
87
87
|
excludeKeys: l(() => Object.keys(X.value))
|
|
88
|
-
}), { form: Ce, formItem: F } =
|
|
88
|
+
}), { form: Ce, formItem: F } = at(), { inputId: Y } = nt(we.props, {
|
|
89
89
|
formItemContext: F
|
|
90
|
-
}), ke =
|
|
90
|
+
}), ke = et(), x = tt(), n = ye("input"), Z = ye("textarea"), M = H(), p = H(), v = S(!1), N = S(!1), C = S(!1), K = S(!1), _ = S(), O = H(e.inputStyle), k = l(() => M.value || p.value), T = l(() => G(e.prefixIcon, "icon", { size: 16 })), ee = l(() => G(e.suffixIcon, "icon", { size: 16 })), Ie = l(() => G(e.clearIcon, "icon", {
|
|
91
91
|
icon: "icon-circle-close",
|
|
92
92
|
size: 16
|
|
93
93
|
})), te = l(() => Ce?.statusIcon ?? !1), I = l(() => F?.validateState || ""), ae = l(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { shallowRef as B, ref as L, computed as c, watch as G } from "vue";
|
|
2
2
|
import { EVENT_CODE as g } from "../../../constants/aria.js";
|
|
3
|
-
import { CHANGE_EVENT as i,
|
|
3
|
+
import { CHANGE_EVENT as i, INPUT_EVENT as H, UPDATE_MODEL_EVENT as d } from "../../../constants/event.js";
|
|
4
4
|
import "@vueuse/core";
|
|
5
5
|
import { isUndefined as K } from "@vft/utils";
|
|
6
6
|
import { debugWarn as C } from "../../../utils/error.js";
|
|
@@ -5,7 +5,7 @@ export { VftPopperArrow, VftPopperContent, VftPopperTrigger };
|
|
|
5
5
|
export declare const VftPopper: import("vft/es/utils").SFCWithInstall<{
|
|
6
6
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
7
7
|
role: {
|
|
8
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
8
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
9
9
|
};
|
|
10
10
|
}>> & Readonly<{}>, {
|
|
11
11
|
triggerRef: import("vue").Ref<import("./constants").Measurable | undefined>;
|
|
@@ -22,7 +22,7 @@ export declare const VftPopper: import("vft/es/utils").SFCWithInstall<{
|
|
|
22
22
|
Defaults: {};
|
|
23
23
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
24
24
|
role: {
|
|
25
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
25
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
26
26
|
};
|
|
27
27
|
}>> & Readonly<{}>, {
|
|
28
28
|
triggerRef: import("vue").Ref<import("./constants").Measurable | undefined>;
|
|
@@ -36,7 +36,7 @@ export declare const VftPopper: import("vft/es/utils").SFCWithInstall<{
|
|
|
36
36
|
__isSuspense?: never;
|
|
37
37
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
38
38
|
role: {
|
|
39
|
-
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "
|
|
39
|
+
type: import("vue").PropType<"tree" | "dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation">;
|
|
40
40
|
};
|
|
41
41
|
}>> & Readonly<{}>, {
|
|
42
42
|
triggerRef: import("vue").Ref<import("./constants").Measurable | 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>;
|
|
@@ -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>;
|
|
@@ -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>;
|
|
@@ -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>;
|
|
@@ -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>;
|
|
@@ -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>;
|
|
@@ -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>;
|
|
@@ -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>;
|
|
@@ -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>;
|
|
@@ -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>;
|
|
@@ -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>;
|
|
@@ -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';
|