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
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
import { Property } from 'csstype';
|
|
2
|
-
import { LewSize, LewTreeDataSource, LewTrigger } from '../../../..';
|
|
3
|
-
import { ExtractPublicPropTypes, PropType } from 'vue';
|
|
4
|
-
export declare const treeSelectMultipleModel: {
|
|
5
|
-
modelValue: {
|
|
6
|
-
type: StringConstructor;
|
|
7
|
-
default: undefined;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
export declare const treeSelectMultipleProps: {
|
|
11
|
-
dataSource: {
|
|
12
|
-
type: PropType<LewTreeDataSource[]>;
|
|
13
|
-
typePopKeys: string[];
|
|
14
|
-
validator: (value: any[] | undefined) => boolean;
|
|
15
|
-
};
|
|
16
|
-
width: {
|
|
17
|
-
type: PropType<Property.Width>;
|
|
18
|
-
default: string;
|
|
19
|
-
validator: (value: string | number | undefined) => boolean;
|
|
20
|
-
};
|
|
21
|
-
defaultValue: {
|
|
22
|
-
type: StringConstructor;
|
|
23
|
-
validator: (value: any) => boolean;
|
|
24
|
-
};
|
|
25
|
-
placeholder: {
|
|
26
|
-
type: StringConstructor;
|
|
27
|
-
defaultLocale: boolean;
|
|
28
|
-
validator: (value: any) => boolean;
|
|
29
|
-
};
|
|
30
|
-
size: {
|
|
31
|
-
type: PropType<LewSize>;
|
|
32
|
-
default: string;
|
|
33
|
-
typeValues: LewSize[];
|
|
34
|
-
validator: (value: any) => boolean;
|
|
35
|
-
};
|
|
36
|
-
disabled: {
|
|
37
|
-
type: BooleanConstructor;
|
|
38
|
-
default: boolean;
|
|
39
|
-
validator: (value: any) => boolean;
|
|
40
|
-
};
|
|
41
|
-
clearable: {
|
|
42
|
-
type: BooleanConstructor;
|
|
43
|
-
default: boolean;
|
|
44
|
-
validator: (value: any) => boolean;
|
|
45
|
-
};
|
|
46
|
-
checkable: {
|
|
47
|
-
type: BooleanConstructor;
|
|
48
|
-
default: boolean;
|
|
49
|
-
validator: (value: any) => boolean;
|
|
50
|
-
};
|
|
51
|
-
showAllLevels: {
|
|
52
|
-
type: BooleanConstructor;
|
|
53
|
-
default: boolean;
|
|
54
|
-
validator: (value: any) => boolean;
|
|
55
|
-
};
|
|
56
|
-
showCheckIcon: {
|
|
57
|
-
type: BooleanConstructor;
|
|
58
|
-
default: boolean;
|
|
59
|
-
validator: (value: any) => boolean;
|
|
60
|
-
};
|
|
61
|
-
showLine: {
|
|
62
|
-
type: BooleanConstructor;
|
|
63
|
-
default: boolean;
|
|
64
|
-
validator: (value: any) => boolean;
|
|
65
|
-
};
|
|
66
|
-
expandAll: {
|
|
67
|
-
type: BooleanConstructor;
|
|
68
|
-
default: boolean;
|
|
69
|
-
validator: (value: any) => boolean;
|
|
70
|
-
};
|
|
71
|
-
searchable: {
|
|
72
|
-
type: BooleanConstructor;
|
|
73
|
-
default: boolean;
|
|
74
|
-
validator: (value: any) => boolean;
|
|
75
|
-
};
|
|
76
|
-
searchDelay: {
|
|
77
|
-
type: NumberConstructor;
|
|
78
|
-
default: number;
|
|
79
|
-
validator: (value: any) => boolean;
|
|
80
|
-
};
|
|
81
|
-
readonly: {
|
|
82
|
-
type: BooleanConstructor;
|
|
83
|
-
default: boolean;
|
|
84
|
-
validator: (value: any) => boolean;
|
|
85
|
-
};
|
|
86
|
-
free: {
|
|
87
|
-
type: BooleanConstructor;
|
|
88
|
-
default: boolean;
|
|
89
|
-
validator: (value: any) => boolean;
|
|
90
|
-
};
|
|
91
|
-
trigger: {
|
|
92
|
-
type: PropType<LewTrigger>;
|
|
93
|
-
default: string;
|
|
94
|
-
typeValues: LewTrigger[];
|
|
95
|
-
validator: (value: any) => boolean;
|
|
96
|
-
};
|
|
97
|
-
keyField: {
|
|
98
|
-
type: StringConstructor;
|
|
99
|
-
default: string;
|
|
100
|
-
validator: (value: any) => boolean;
|
|
101
|
-
};
|
|
102
|
-
labelField: {
|
|
103
|
-
type: StringConstructor;
|
|
104
|
-
default: string;
|
|
105
|
-
validator: (value: any) => boolean;
|
|
106
|
-
};
|
|
107
|
-
disabledField: {
|
|
108
|
-
type: StringConstructor;
|
|
109
|
-
default: string;
|
|
110
|
-
validator: (value: any) => boolean;
|
|
111
|
-
};
|
|
112
|
-
initMethod: {
|
|
113
|
-
type: PropType<() => void>;
|
|
114
|
-
default: undefined;
|
|
115
|
-
validator: (value: any) => boolean;
|
|
116
|
-
};
|
|
117
|
-
initMethodId: {
|
|
118
|
-
type: StringConstructor;
|
|
119
|
-
validator: (value: any) => boolean;
|
|
120
|
-
};
|
|
121
|
-
loadMethod: {
|
|
122
|
-
type: PropType<() => void>;
|
|
123
|
-
default: undefined;
|
|
124
|
-
validator: (value: any) => boolean;
|
|
125
|
-
};
|
|
126
|
-
};
|
|
127
|
-
export type LewTreeSelectMultipleProps = ExtractPublicPropTypes<typeof treeSelectMultipleProps>;
|