@das-fed/upf-ui 6.4.0-dev.135 → 6.4.0-dev.136
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/package.json +5 -5
- package/packages/components/tree-select/index.js +403 -338
- package/packages/components/tree-select/index.js.gz +0 -0
- package/packages/components/tree-select/src/App.vue.d.ts +10 -6
- package/packages/components/tree-select/src/type.d.ts +3 -0
- package/packages/components/tree-v2/index.js +1831 -1804
- package/packages/components/tree-v2/index.js.gz +0 -0
- package/packages/components/tree-v2/src/type.d.ts +1 -0
|
Binary file
|
|
@@ -6755,15 +6755,19 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
6755
6755
|
showSelectDom: boolean;
|
|
6756
6756
|
poppverHeight: number | string;
|
|
6757
6757
|
showTextStrict: boolean;
|
|
6758
|
+
virtual: boolean;
|
|
6758
6759
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
6759
|
-
prefix?: ((props: {}) => any) | undefined;
|
|
6760
|
-
suffix?: ((props: {}) => any) | undefined;
|
|
6761
|
-
prepend?: ((props: {}) => any) | undefined;
|
|
6762
|
-
append?: ((props: {}) => any) | undefined;
|
|
6763
|
-
default?: ((props: {
|
|
6760
|
+
prefix?: (((props: {}) => any) & ((props: {}) => any)) | undefined;
|
|
6761
|
+
suffix?: (((props: {}) => any) & ((props: {}) => any)) | undefined;
|
|
6762
|
+
prepend?: (((props: {}) => any) & ((props: {}) => any)) | undefined;
|
|
6763
|
+
append?: (((props: {}) => any) & ((props: {}) => any)) | undefined;
|
|
6764
|
+
default?: (((props: {
|
|
6764
6765
|
node: any;
|
|
6765
6766
|
data: any;
|
|
6766
|
-
}) => any)
|
|
6767
|
+
}) => any) & ((props: {
|
|
6768
|
+
node: any;
|
|
6769
|
+
data: any;
|
|
6770
|
+
}) => any)) | undefined;
|
|
6767
6771
|
}>;
|
|
6768
6772
|
export default _default;
|
|
6769
6773
|
type __VLS_WithSlots<T, S> = T & {
|