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.
@@ -1,4 +0,0 @@
1
- export declare const treeSelectMultipleEmits: {
2
- readonly change: (value?: string) => string | undefined;
3
- readonly clear: () => void;
4
- };
@@ -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>;
@@ -1,5 +0,0 @@
1
- export declare const textTrimEmits: {
2
- readonly click: (event: MouseEvent) => MouseEvent;
3
- readonly mouseenter: () => boolean;
4
- readonly mouseleave: () => boolean;
5
- };