lew-ui 2.7.67 → 2.7.69
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/components/data/tree/src/LewTree.vue.d.ts +26 -11
- package/dist/components/data/tree/src/LewTreeItem.vue.d.ts +1 -1
- package/dist/components/data/tree/src/types.d.ts +31 -0
- package/dist/components/form/tree-select/src/LewTreeSelect.vue.d.ts +1435 -293
- package/dist/components/form/tree-select/src/emits.d.ts +1 -1
- package/dist/components/form/tree-select/src/props.d.ts +11 -1
- package/dist/components/general/text-trim/index.d.ts +0 -1
- package/dist/components/general/text-trim/src/LewTextTrim.vue.d.ts +2 -10
- package/dist/components/navigation/action-box/src/LewActionBox.vue.d.ts +4 -0
- package/dist/components/navigation/action-box/src/props.d.ts +2 -0
- package/dist/index.css +1 -1
- package/dist/index.js +613 -605
- package/dist/index.umd.cjs +6 -6
- package/package.json +1 -1
- package/dist/components/form/tree-select-multiple/index.d.ts +0 -3
- package/dist/components/form/tree-select-multiple/src/LewTreeSelectMultiple.vue.d.ts +0 -1331
- package/dist/components/form/tree-select-multiple/src/emits.d.ts +0 -4
- package/dist/components/form/tree-select-multiple/src/props.d.ts +0 -127
- package/dist/components/general/text-trim/src/emits.d.ts +0 -5
|
@@ -3,7 +3,7 @@ import { LewSize, LewTreeDataSource, LewTrigger } from '../../../..';
|
|
|
3
3
|
import { ExtractPublicPropTypes, PropType } from 'vue';
|
|
4
4
|
export declare const treeSelectModel: {
|
|
5
5
|
modelValue: {
|
|
6
|
-
type: StringConstructor;
|
|
6
|
+
type: (StringConstructor | ArrayConstructor)[];
|
|
7
7
|
default: undefined;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
@@ -43,11 +43,21 @@ export declare const treeSelectProps: {
|
|
|
43
43
|
default: boolean;
|
|
44
44
|
validator: (value: any) => boolean;
|
|
45
45
|
};
|
|
46
|
+
multiple: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
default: boolean;
|
|
49
|
+
validator: (value: any) => boolean;
|
|
50
|
+
};
|
|
46
51
|
checkable: {
|
|
47
52
|
type: BooleanConstructor;
|
|
48
53
|
default: boolean;
|
|
49
54
|
validator: (value: any) => boolean;
|
|
50
55
|
};
|
|
56
|
+
onlyLeafSelectable: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
validator: (value: any) => boolean;
|
|
60
|
+
};
|
|
51
61
|
showAllLevels: {
|
|
52
62
|
type: BooleanConstructor;
|
|
53
63
|
default: boolean;
|
|
@@ -50,11 +50,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
50
50
|
type: NumberConstructor;
|
|
51
51
|
validator: (value: any) => boolean;
|
|
52
52
|
};
|
|
53
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
54
|
-
click: (event: MouseEvent) => any;
|
|
55
|
-
mouseenter: () => any;
|
|
56
|
-
mouseleave: () => any;
|
|
57
|
-
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
53
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
58
54
|
text: {
|
|
59
55
|
type: StringConstructor;
|
|
60
56
|
validator: (value: any) => boolean;
|
|
@@ -93,11 +89,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
93
89
|
type: NumberConstructor;
|
|
94
90
|
validator: (value: any) => boolean;
|
|
95
91
|
};
|
|
96
|
-
}>> & Readonly<{
|
|
97
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
98
|
-
onMouseenter?: (() => any) | undefined;
|
|
99
|
-
onMouseleave?: (() => any) | undefined;
|
|
100
|
-
}>, {
|
|
92
|
+
}>> & Readonly<{}>, {
|
|
101
93
|
offset: [number, number];
|
|
102
94
|
textAlign: import("csstype").Property.TextAlign;
|
|
103
95
|
allowHTML: boolean;
|
|
@@ -23,10 +23,12 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
23
23
|
};
|
|
24
24
|
dropdownLabel: {
|
|
25
25
|
type: null;
|
|
26
|
+
typePopKeys: string[];
|
|
26
27
|
default: string;
|
|
27
28
|
};
|
|
28
29
|
dropdownIcon: {
|
|
29
30
|
type: null;
|
|
31
|
+
typePopKeys: string[];
|
|
30
32
|
};
|
|
31
33
|
iconOnly: {
|
|
32
34
|
type: BooleanConstructor;
|
|
@@ -57,10 +59,12 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
57
59
|
};
|
|
58
60
|
dropdownLabel: {
|
|
59
61
|
type: null;
|
|
62
|
+
typePopKeys: string[];
|
|
60
63
|
default: string;
|
|
61
64
|
};
|
|
62
65
|
dropdownIcon: {
|
|
63
66
|
type: null;
|
|
67
|
+
typePopKeys: string[];
|
|
64
68
|
};
|
|
65
69
|
iconOnly: {
|
|
66
70
|
type: BooleanConstructor;
|