@das-fed/upf-ui 6.4.0-dev.134 → 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/cascader/index.js +25 -25
- package/packages/components/cascader/index.js.gz +0 -0
- package/packages/components/cascader/style.css +1 -1
- package/packages/components/cascader/style.css.gz +0 -0
- package/packages/components/form-item/index.js +711 -708
- package/packages/components/form-item/index.js.gz +0 -0
- package/packages/components/form-item/src/hooks/use-form.d.ts +1 -0
- package/packages/components/form-item/style.css +1 -1
- package/packages/components/form-item/style.css.gz +0 -0
- package/packages/components/tree-select/index.js +403 -337
- 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.d.ts +16 -2
- package/packages/components/tree-v2/index.js +2073 -2022
- package/packages/components/tree-v2/index.js.gz +0 -0
- package/packages/components/tree-v2/src/App.vue.d.ts +4 -0
- package/packages/components/tree-v2/src/type.d.ts +1 -0
- package/packages/components/tree-v2/style.css +1 -1
- package/packages/components/tree-v2/style.css.gz +0 -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 & {
|
|
@@ -10,6 +10,8 @@ declare const DasTreeV2: import("@das-fed/upf-utils").SFCWithInstall<{
|
|
|
10
10
|
resetLazyLoad: () => Promise<boolean>;
|
|
11
11
|
autoExpand: () => Promise<boolean>;
|
|
12
12
|
searchClear: () => void;
|
|
13
|
+
lazyData: import("vue").Ref<any[], any[]>;
|
|
14
|
+
lazyDataNextTick: (val: string | string[]) => Promise<unknown>;
|
|
13
15
|
filterSeach: () => void;
|
|
14
16
|
handleSearch: () => Promise<void>;
|
|
15
17
|
getGrandChildrenFn: (data: any) => Promise<any>;
|
|
@@ -57,6 +59,8 @@ declare const DasTreeV2: import("@das-fed/upf-utils").SFCWithInstall<{
|
|
|
57
59
|
resetLazyLoad: () => Promise<boolean>;
|
|
58
60
|
autoExpand: () => Promise<boolean>;
|
|
59
61
|
searchClear: () => void;
|
|
62
|
+
lazyData: import("vue").Ref<any[], any[]>;
|
|
63
|
+
lazyDataNextTick: (val: string | string[]) => Promise<unknown>;
|
|
60
64
|
filterSeach: () => void;
|
|
61
65
|
handleSearch: () => Promise<void>;
|
|
62
66
|
getGrandChildrenFn: (data: any) => Promise<any>;
|
|
@@ -97,6 +101,8 @@ declare const DasTreeV2: import("@das-fed/upf-utils").SFCWithInstall<{
|
|
|
97
101
|
resetLazyLoad: () => Promise<boolean>;
|
|
98
102
|
autoExpand: () => Promise<boolean>;
|
|
99
103
|
searchClear: () => void;
|
|
104
|
+
lazyData: import("vue").Ref<any[], any[]>;
|
|
105
|
+
lazyDataNextTick: (val: string | string[]) => Promise<unknown>;
|
|
100
106
|
filterSeach: () => void;
|
|
101
107
|
handleSearch: () => Promise<void>;
|
|
102
108
|
getGrandChildrenFn: (data: any) => Promise<any>;
|
|
@@ -238,6 +244,8 @@ declare const DasTreeV2Ref: () => import("vue").Ref<({
|
|
|
238
244
|
resetLazyLoad: () => Promise<boolean>;
|
|
239
245
|
autoExpand: () => Promise<boolean>;
|
|
240
246
|
searchClear: () => void;
|
|
247
|
+
lazyData: import("vue").Ref<any[], any[]>;
|
|
248
|
+
lazyDataNextTick: (val: string | string[]) => Promise<unknown>;
|
|
241
249
|
filterSeach: () => void;
|
|
242
250
|
handleSearch: () => Promise<void>;
|
|
243
251
|
getGrandChildrenFn: (data: any) => Promise<any>;
|
|
@@ -310,7 +318,7 @@ declare const DasTreeV2Ref: () => import("vue").Ref<({
|
|
|
310
318
|
overlayZIndex: string;
|
|
311
319
|
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
312
320
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
313
|
-
}>, "findSelectableParentNode" | "filterSeach" | "handleSearch" | "treeRef" | "treeIsEmpty" | "childLinkParent" | "parentLinkChild" | "resetLazyLoad" | "autoExpand" | "searchClear" | "getGrandChildrenFn" | "setData" | ("props" | "data" | "modelValue" | "nodeKey" | "draggable" | "currentNodeKey" | "defaultExpandedKeys" | "defaultExpandedPaths" | "defaultExpandRoot" | "expandOnClickNode" | "checkStrictly" | "operationsLayout" | "maxNodeLevel" | "showFilterInput" | "inputOptions" | "emptyText" | "searchEmptyText" | "rootNodeId" | "renderDom" | "overlayZIndex")> & import("vue").ShallowUnwrapRef<{
|
|
321
|
+
}>, "findSelectableParentNode" | "filterSeach" | "handleSearch" | "treeRef" | "treeIsEmpty" | "childLinkParent" | "parentLinkChild" | "resetLazyLoad" | "autoExpand" | "searchClear" | "lazyData" | "lazyDataNextTick" | "getGrandChildrenFn" | "setData" | ("props" | "data" | "modelValue" | "nodeKey" | "draggable" | "currentNodeKey" | "defaultExpandedKeys" | "defaultExpandedPaths" | "defaultExpandRoot" | "expandOnClickNode" | "checkStrictly" | "operationsLayout" | "maxNodeLevel" | "showFilterInput" | "inputOptions" | "emptyText" | "searchEmptyText" | "rootNodeId" | "renderDom" | "overlayZIndex")> & import("vue").ShallowUnwrapRef<{
|
|
314
322
|
treeRef: import("vue").Ref<any, any>;
|
|
315
323
|
treeIsEmpty: import("vue").ComputedRef<boolean>;
|
|
316
324
|
findSelectableParentNode: (node: any, parentIdProps?: string) => any;
|
|
@@ -319,6 +327,8 @@ declare const DasTreeV2Ref: () => import("vue").Ref<({
|
|
|
319
327
|
resetLazyLoad: () => Promise<boolean>;
|
|
320
328
|
autoExpand: () => Promise<boolean>;
|
|
321
329
|
searchClear: () => void;
|
|
330
|
+
lazyData: import("vue").Ref<any[], any[]>;
|
|
331
|
+
lazyDataNextTick: (val: string | string[]) => Promise<unknown>;
|
|
322
332
|
filterSeach: () => void;
|
|
323
333
|
handleSearch: () => Promise<void>;
|
|
324
334
|
getGrandChildrenFn: (data: any) => Promise<any>;
|
|
@@ -433,6 +443,8 @@ declare const DasTreeV2Ref: () => import("vue").Ref<({
|
|
|
433
443
|
resetLazyLoad: () => Promise<boolean>;
|
|
434
444
|
autoExpand: () => Promise<boolean>;
|
|
435
445
|
searchClear: () => void;
|
|
446
|
+
lazyData: import("vue").Ref<any[], any[]>;
|
|
447
|
+
lazyDataNextTick: (val: string | string[]) => Promise<unknown>;
|
|
436
448
|
filterSeach: () => void;
|
|
437
449
|
handleSearch: () => Promise<void>;
|
|
438
450
|
getGrandChildrenFn: (data: any) => Promise<any>;
|
|
@@ -505,7 +517,7 @@ declare const DasTreeV2Ref: () => import("vue").Ref<({
|
|
|
505
517
|
overlayZIndex: string;
|
|
506
518
|
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
507
519
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
508
|
-
}>, "findSelectableParentNode" | "filterSeach" | "handleSearch" | "treeRef" | "treeIsEmpty" | "childLinkParent" | "parentLinkChild" | "resetLazyLoad" | "autoExpand" | "searchClear" | "getGrandChildrenFn" | "setData" | ("props" | "data" | "modelValue" | "nodeKey" | "draggable" | "currentNodeKey" | "defaultExpandedKeys" | "defaultExpandedPaths" | "defaultExpandRoot" | "expandOnClickNode" | "checkStrictly" | "operationsLayout" | "maxNodeLevel" | "showFilterInput" | "inputOptions" | "emptyText" | "searchEmptyText" | "rootNodeId" | "renderDom" | "overlayZIndex")> & import("vue").ShallowUnwrapRef<{
|
|
520
|
+
}>, "findSelectableParentNode" | "filterSeach" | "handleSearch" | "treeRef" | "treeIsEmpty" | "childLinkParent" | "parentLinkChild" | "resetLazyLoad" | "autoExpand" | "searchClear" | "lazyData" | "lazyDataNextTick" | "getGrandChildrenFn" | "setData" | ("props" | "data" | "modelValue" | "nodeKey" | "draggable" | "currentNodeKey" | "defaultExpandedKeys" | "defaultExpandedPaths" | "defaultExpandRoot" | "expandOnClickNode" | "checkStrictly" | "operationsLayout" | "maxNodeLevel" | "showFilterInput" | "inputOptions" | "emptyText" | "searchEmptyText" | "rootNodeId" | "renderDom" | "overlayZIndex")> & import("vue").ShallowUnwrapRef<{
|
|
509
521
|
treeRef: import("vue").Ref<any, any>;
|
|
510
522
|
treeIsEmpty: import("vue").ComputedRef<boolean>;
|
|
511
523
|
findSelectableParentNode: (node: any, parentIdProps?: string) => any;
|
|
@@ -514,6 +526,8 @@ declare const DasTreeV2Ref: () => import("vue").Ref<({
|
|
|
514
526
|
resetLazyLoad: () => Promise<boolean>;
|
|
515
527
|
autoExpand: () => Promise<boolean>;
|
|
516
528
|
searchClear: () => void;
|
|
529
|
+
lazyData: import("vue").Ref<any[], any[]>;
|
|
530
|
+
lazyDataNextTick: (val: string | string[]) => Promise<unknown>;
|
|
517
531
|
filterSeach: () => void;
|
|
518
532
|
handleSearch: () => Promise<void>;
|
|
519
533
|
getGrandChildrenFn: (data: any) => Promise<any>;
|