@opentinyvue/vue-base-select 3.27.0 → 3.29.0
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/lib/index.js +31 -8
- package/lib/mobile-first.js +251 -205
- package/lib/pc.js +174 -184
- package/package.json +18 -18
- package/src/index.d.ts +59 -6
- package/src/mobile-first.vue.d.ts +32 -13
- package/src/pc.vue.d.ts +18 -3
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-base-select",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.29.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opentinyvue/vue-button": "~3.
|
|
12
|
-
"@opentinyvue/vue-checkbox": "~3.
|
|
13
|
-
"@opentinyvue/vue-common": "~3.
|
|
14
|
-
"@opentinyvue/vue-directive": "~3.
|
|
15
|
-
"@opentinyvue/vue-filter-box": "~3.
|
|
16
|
-
"@opentinyvue/vue-icon": "~3.
|
|
17
|
-
"@opentinyvue/vue-input": "~3.
|
|
18
|
-
"@opentinyvue/vue-locale": "~3.
|
|
19
|
-
"@opentinyvue/vue-option": "~3.
|
|
20
|
-
"@opentinyvue/vue-recycle-scroller": "~3.
|
|
21
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
22
|
-
"@opentinyvue/vue-scrollbar": "~3.
|
|
23
|
-
"@opentinyvue/vue-select-dropdown": "~3.
|
|
24
|
-
"@opentinyvue/vue-tag": "~3.
|
|
25
|
-
"@opentinyvue/vue-theme": "~3.
|
|
26
|
-
"@opentinyvue/vue-tooltip": "~3.
|
|
27
|
-
"@opentinyvue/vue-tree": "~3.
|
|
11
|
+
"@opentinyvue/vue-button": "~3.29.0",
|
|
12
|
+
"@opentinyvue/vue-checkbox": "~3.29.0",
|
|
13
|
+
"@opentinyvue/vue-common": "~3.29.0",
|
|
14
|
+
"@opentinyvue/vue-directive": "~3.29.0",
|
|
15
|
+
"@opentinyvue/vue-filter-box": "~3.29.0",
|
|
16
|
+
"@opentinyvue/vue-icon": "~3.29.0",
|
|
17
|
+
"@opentinyvue/vue-input": "~3.29.0",
|
|
18
|
+
"@opentinyvue/vue-locale": "~3.29.0",
|
|
19
|
+
"@opentinyvue/vue-option": "~3.29.0",
|
|
20
|
+
"@opentinyvue/vue-recycle-scroller": "~3.29.0",
|
|
21
|
+
"@opentinyvue/vue-renderless": "~3.29.0",
|
|
22
|
+
"@opentinyvue/vue-scrollbar": "~3.29.0",
|
|
23
|
+
"@opentinyvue/vue-select-dropdown": "~3.29.0",
|
|
24
|
+
"@opentinyvue/vue-tag": "~3.29.0",
|
|
25
|
+
"@opentinyvue/vue-theme": "~3.29.0",
|
|
26
|
+
"@opentinyvue/vue-tooltip": "~3.29.0",
|
|
27
|
+
"@opentinyvue/vue-tree": "~3.29.0"
|
|
28
28
|
},
|
|
29
29
|
"types": "index.d.ts",
|
|
30
30
|
"scripts": {
|
package/src/index.d.ts
CHANGED
|
@@ -211,9 +211,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
211
211
|
};
|
|
212
212
|
dropdownIcon: {
|
|
213
213
|
type: (StringConstructor | ObjectConstructor)[];
|
|
214
|
-
default:
|
|
215
|
-
[key: string]: any;
|
|
216
|
-
}>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>>;
|
|
214
|
+
default: string;
|
|
217
215
|
};
|
|
218
216
|
disabledTooltipContent: StringConstructor;
|
|
219
217
|
hoverExpand: {
|
|
@@ -265,10 +263,27 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
265
263
|
type: StringConstructor;
|
|
266
264
|
default: () => any;
|
|
267
265
|
};
|
|
266
|
+
initLabel: {
|
|
267
|
+
type: StringConstructor;
|
|
268
|
+
default: string;
|
|
269
|
+
};
|
|
268
270
|
blank: {
|
|
269
271
|
type: BooleanConstructor;
|
|
270
272
|
default: boolean;
|
|
271
273
|
};
|
|
274
|
+
tooltipConfig: {
|
|
275
|
+
type: ObjectConstructor;
|
|
276
|
+
default(): {};
|
|
277
|
+
};
|
|
278
|
+
showEmptyValue: BooleanConstructor;
|
|
279
|
+
dropdownHeight: {
|
|
280
|
+
type: StringConstructor;
|
|
281
|
+
default: string;
|
|
282
|
+
};
|
|
283
|
+
stopPropagation: {
|
|
284
|
+
type: BooleanConstructor;
|
|
285
|
+
default: undefined;
|
|
286
|
+
};
|
|
272
287
|
searchable: {
|
|
273
288
|
type: BooleanConstructor;
|
|
274
289
|
default: boolean;
|
|
@@ -314,6 +329,14 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
314
329
|
type: BooleanConstructor;
|
|
315
330
|
default: boolean;
|
|
316
331
|
};
|
|
332
|
+
maxTagWidth: {
|
|
333
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
334
|
+
default: null;
|
|
335
|
+
};
|
|
336
|
+
autoSelect: {
|
|
337
|
+
type: BooleanConstructor;
|
|
338
|
+
default: boolean;
|
|
339
|
+
};
|
|
317
340
|
tiny_mode: StringConstructor;
|
|
318
341
|
tiny_mode_root: BooleanConstructor;
|
|
319
342
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
@@ -525,9 +548,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
525
548
|
};
|
|
526
549
|
dropdownIcon: {
|
|
527
550
|
type: (StringConstructor | ObjectConstructor)[];
|
|
528
|
-
default:
|
|
529
|
-
[key: string]: any;
|
|
530
|
-
}>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>>;
|
|
551
|
+
default: string;
|
|
531
552
|
};
|
|
532
553
|
disabledTooltipContent: StringConstructor;
|
|
533
554
|
hoverExpand: {
|
|
@@ -579,10 +600,27 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
579
600
|
type: StringConstructor;
|
|
580
601
|
default: () => any;
|
|
581
602
|
};
|
|
603
|
+
initLabel: {
|
|
604
|
+
type: StringConstructor;
|
|
605
|
+
default: string;
|
|
606
|
+
};
|
|
582
607
|
blank: {
|
|
583
608
|
type: BooleanConstructor;
|
|
584
609
|
default: boolean;
|
|
585
610
|
};
|
|
611
|
+
tooltipConfig: {
|
|
612
|
+
type: ObjectConstructor;
|
|
613
|
+
default(): {};
|
|
614
|
+
};
|
|
615
|
+
showEmptyValue: BooleanConstructor;
|
|
616
|
+
dropdownHeight: {
|
|
617
|
+
type: StringConstructor;
|
|
618
|
+
default: string;
|
|
619
|
+
};
|
|
620
|
+
stopPropagation: {
|
|
621
|
+
type: BooleanConstructor;
|
|
622
|
+
default: undefined;
|
|
623
|
+
};
|
|
586
624
|
searchable: {
|
|
587
625
|
type: BooleanConstructor;
|
|
588
626
|
default: boolean;
|
|
@@ -628,6 +666,14 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
628
666
|
type: BooleanConstructor;
|
|
629
667
|
default: boolean;
|
|
630
668
|
};
|
|
669
|
+
maxTagWidth: {
|
|
670
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
671
|
+
default: null;
|
|
672
|
+
};
|
|
673
|
+
autoSelect: {
|
|
674
|
+
type: BooleanConstructor;
|
|
675
|
+
default: boolean;
|
|
676
|
+
};
|
|
631
677
|
tiny_mode: StringConstructor;
|
|
632
678
|
tiny_mode_root: BooleanConstructor;
|
|
633
679
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
@@ -652,6 +698,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
652
698
|
clearable: boolean;
|
|
653
699
|
autocomplete: string;
|
|
654
700
|
displayOnly: boolean;
|
|
701
|
+
showEmptyValue: boolean;
|
|
655
702
|
placeholder: string;
|
|
656
703
|
multiple: boolean;
|
|
657
704
|
dropStyle: Record<string, any>;
|
|
@@ -690,6 +737,10 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
690
737
|
keepFocus: boolean;
|
|
691
738
|
topCreate: boolean;
|
|
692
739
|
topCreateText: string;
|
|
740
|
+
initLabel: string;
|
|
741
|
+
tooltipConfig: Record<string, any>;
|
|
742
|
+
dropdownHeight: string;
|
|
743
|
+
stopPropagation: boolean;
|
|
693
744
|
searchable: boolean;
|
|
694
745
|
showEmptyImage: boolean;
|
|
695
746
|
InputBoxType: string;
|
|
@@ -701,5 +752,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
701
752
|
maxVisibleRows: number;
|
|
702
753
|
allText: string;
|
|
703
754
|
showAllTextTag: boolean;
|
|
755
|
+
maxTagWidth: string | number;
|
|
756
|
+
autoSelect: boolean;
|
|
704
757
|
}, {}>;
|
|
705
758
|
export default _default;
|
|
@@ -17,6 +17,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
17
17
|
tiny_theme?: any;
|
|
18
18
|
tiny_chart_theme?: any;
|
|
19
19
|
tiny_mcp_config?: any;
|
|
20
|
+
shape?: any;
|
|
20
21
|
modelValue?: any;
|
|
21
22
|
tabindex?: any;
|
|
22
23
|
popperClass?: any;
|
|
@@ -30,10 +31,11 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
30
31
|
clearable?: any;
|
|
31
32
|
autocomplete?: any;
|
|
32
33
|
displayOnly?: any;
|
|
34
|
+
showEmptyValue?: any;
|
|
35
|
+
inputBoxType?: any;
|
|
33
36
|
placeholder?: any;
|
|
34
37
|
multiple?: any;
|
|
35
38
|
dropStyle?: any;
|
|
36
|
-
shape?: any;
|
|
37
39
|
blank?: any;
|
|
38
40
|
showTips?: any;
|
|
39
41
|
delay?: any;
|
|
@@ -57,9 +59,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
57
59
|
multipleLimit?: any;
|
|
58
60
|
hideDrop?: any;
|
|
59
61
|
copyable?: any;
|
|
60
|
-
renderType?: any;
|
|
61
|
-
gridOp?: any;
|
|
62
|
-
treeOp?: any;
|
|
63
62
|
cacheOp?: any;
|
|
64
63
|
isDropInheritWidth?: any;
|
|
65
64
|
tagSelectable?: any;
|
|
@@ -77,8 +76,15 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
77
76
|
extraQueryParams?: any;
|
|
78
77
|
updateDelay?: any;
|
|
79
78
|
closeByMask?: any;
|
|
79
|
+
initLabel?: any;
|
|
80
|
+
tagType?: any;
|
|
81
|
+
clearNoMatchValue?: any;
|
|
80
82
|
showProportion?: any;
|
|
83
|
+
clickExpand?: any;
|
|
84
|
+
maxVisibleRows?: any;
|
|
81
85
|
allText?: any;
|
|
86
|
+
showAllTextTag?: any;
|
|
87
|
+
maxTagWidth?: any;
|
|
82
88
|
showOverflowTooltip?: any;
|
|
83
89
|
showDropdown?: any;
|
|
84
90
|
expandTags?: any;
|
|
@@ -91,7 +97,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
91
97
|
dp: (props: any) => void;
|
|
92
98
|
gcls: (key: any) => any;
|
|
93
99
|
m: (...cssClasses: any[]) => string;
|
|
94
|
-
}, any, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible-change" | "change" | "blur" | "focus" | "clear" | "update:modelValue" | "confirm" | "remove-tag" | "dropdown-click" | "handleDropdownClick")[], "visible-change" | "change" | "blur" | "focus" | "clear" | "update:modelValue" | "confirm" | "remove-tag" | "dropdown-click" | "handleDropdownClick", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
100
|
+
}, any, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible-change" | "change" | "blur" | "focus" | "clear" | "update:modelValue" | "confirm" | "remove-tag" | "dropdown-click" | "handleDropdownClick" | "top-create-click")[], "visible-change" | "change" | "blur" | "focus" | "clear" | "update:modelValue" | "confirm" | "remove-tag" | "dropdown-click" | "handleDropdownClick" | "top-create-click", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
95
101
|
name?: any;
|
|
96
102
|
label?: any;
|
|
97
103
|
disabled?: any;
|
|
@@ -110,6 +116,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
110
116
|
tiny_theme?: any;
|
|
111
117
|
tiny_chart_theme?: any;
|
|
112
118
|
tiny_mcp_config?: any;
|
|
119
|
+
shape?: any;
|
|
113
120
|
modelValue?: any;
|
|
114
121
|
tabindex?: any;
|
|
115
122
|
popperClass?: any;
|
|
@@ -123,10 +130,11 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
123
130
|
clearable?: any;
|
|
124
131
|
autocomplete?: any;
|
|
125
132
|
displayOnly?: any;
|
|
133
|
+
showEmptyValue?: any;
|
|
134
|
+
inputBoxType?: any;
|
|
126
135
|
placeholder?: any;
|
|
127
136
|
multiple?: any;
|
|
128
137
|
dropStyle?: any;
|
|
129
|
-
shape?: any;
|
|
130
138
|
blank?: any;
|
|
131
139
|
showTips?: any;
|
|
132
140
|
delay?: any;
|
|
@@ -150,9 +158,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
150
158
|
multipleLimit?: any;
|
|
151
159
|
hideDrop?: any;
|
|
152
160
|
copyable?: any;
|
|
153
|
-
renderType?: any;
|
|
154
|
-
gridOp?: any;
|
|
155
|
-
treeOp?: any;
|
|
156
161
|
cacheOp?: any;
|
|
157
162
|
isDropInheritWidth?: any;
|
|
158
163
|
tagSelectable?: any;
|
|
@@ -170,8 +175,15 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
170
175
|
extraQueryParams?: any;
|
|
171
176
|
updateDelay?: any;
|
|
172
177
|
closeByMask?: any;
|
|
178
|
+
initLabel?: any;
|
|
179
|
+
tagType?: any;
|
|
180
|
+
clearNoMatchValue?: any;
|
|
173
181
|
showProportion?: any;
|
|
182
|
+
clickExpand?: any;
|
|
183
|
+
maxVisibleRows?: any;
|
|
174
184
|
allText?: any;
|
|
185
|
+
showAllTextTag?: any;
|
|
186
|
+
maxTagWidth?: any;
|
|
175
187
|
showOverflowTooltip?: any;
|
|
176
188
|
showDropdown?: any;
|
|
177
189
|
expandTags?: any;
|
|
@@ -186,6 +198,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
186
198
|
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
187
199
|
"onDropdown-click"?: ((...args: any[]) => any) | undefined;
|
|
188
200
|
onHandleDropdownClick?: ((...args: any[]) => any) | undefined;
|
|
201
|
+
"onTop-create-click"?: ((...args: any[]) => any) | undefined;
|
|
189
202
|
}, {
|
|
190
203
|
readonly name?: any;
|
|
191
204
|
readonly label?: any;
|
|
@@ -205,6 +218,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
205
218
|
readonly tiny_theme?: any;
|
|
206
219
|
readonly tiny_chart_theme?: any;
|
|
207
220
|
readonly tiny_mcp_config?: any;
|
|
221
|
+
readonly shape?: any;
|
|
208
222
|
readonly modelValue?: any;
|
|
209
223
|
readonly tabindex?: any;
|
|
210
224
|
readonly popperClass?: any;
|
|
@@ -218,10 +232,11 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
218
232
|
readonly clearable?: any;
|
|
219
233
|
readonly autocomplete?: any;
|
|
220
234
|
readonly displayOnly?: any;
|
|
235
|
+
readonly showEmptyValue?: any;
|
|
236
|
+
readonly inputBoxType?: any;
|
|
221
237
|
readonly placeholder?: any;
|
|
222
238
|
readonly multiple?: any;
|
|
223
239
|
readonly dropStyle?: any;
|
|
224
|
-
readonly shape?: any;
|
|
225
240
|
readonly blank?: any;
|
|
226
241
|
readonly showTips?: any;
|
|
227
242
|
readonly delay?: any;
|
|
@@ -245,9 +260,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
245
260
|
readonly multipleLimit?: any;
|
|
246
261
|
readonly hideDrop?: any;
|
|
247
262
|
readonly copyable?: any;
|
|
248
|
-
readonly renderType?: any;
|
|
249
|
-
readonly gridOp?: any;
|
|
250
|
-
readonly treeOp?: any;
|
|
251
263
|
readonly cacheOp?: any;
|
|
252
264
|
readonly isDropInheritWidth?: any;
|
|
253
265
|
readonly tagSelectable?: any;
|
|
@@ -265,8 +277,15 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
265
277
|
readonly extraQueryParams?: any;
|
|
266
278
|
readonly updateDelay?: any;
|
|
267
279
|
readonly closeByMask?: any;
|
|
280
|
+
readonly initLabel?: any;
|
|
281
|
+
readonly tagType?: any;
|
|
282
|
+
readonly clearNoMatchValue?: any;
|
|
268
283
|
readonly showProportion?: any;
|
|
284
|
+
readonly clickExpand?: any;
|
|
285
|
+
readonly maxVisibleRows?: any;
|
|
269
286
|
readonly allText?: any;
|
|
287
|
+
readonly showAllTextTag?: any;
|
|
288
|
+
readonly maxTagWidth?: any;
|
|
270
289
|
readonly showOverflowTooltip?: any;
|
|
271
290
|
readonly showDropdown?: any;
|
|
272
291
|
readonly expandTags?: any;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
16
16
|
tiny_theme?: any;
|
|
17
17
|
tiny_chart_theme?: any;
|
|
18
18
|
tiny_mcp_config?: any;
|
|
19
|
+
shape?: any;
|
|
19
20
|
modelValue?: any;
|
|
20
21
|
tabindex?: any;
|
|
21
22
|
trim?: any;
|
|
@@ -30,11 +31,11 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
30
31
|
clearable?: any;
|
|
31
32
|
autocomplete?: any;
|
|
32
33
|
displayOnly?: any;
|
|
34
|
+
showEmptyValue?: any;
|
|
33
35
|
inputBoxType?: any;
|
|
34
36
|
placeholder?: any;
|
|
35
37
|
multiple?: any;
|
|
36
38
|
dropStyle?: any;
|
|
37
|
-
shape?: any;
|
|
38
39
|
blank?: any;
|
|
39
40
|
showTips?: any;
|
|
40
41
|
delay?: any;
|
|
@@ -76,6 +77,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
76
77
|
keepFocus?: any;
|
|
77
78
|
topCreate?: any;
|
|
78
79
|
topCreateText?: any;
|
|
80
|
+
initLabel?: any;
|
|
81
|
+
tooltipConfig?: any;
|
|
82
|
+
stopPropagation?: any;
|
|
79
83
|
searchable?: any;
|
|
80
84
|
showEmptyImage?: any;
|
|
81
85
|
tagType?: any;
|
|
@@ -86,6 +90,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
86
90
|
maxVisibleRows?: any;
|
|
87
91
|
allText?: any;
|
|
88
92
|
showAllTextTag?: any;
|
|
93
|
+
maxTagWidth?: any;
|
|
89
94
|
showOverflowTooltip?: any;
|
|
90
95
|
showDropdown?: any;
|
|
91
96
|
expandTags?: any;
|
|
@@ -116,6 +121,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
116
121
|
tiny_theme?: any;
|
|
117
122
|
tiny_chart_theme?: any;
|
|
118
123
|
tiny_mcp_config?: any;
|
|
124
|
+
shape?: any;
|
|
119
125
|
modelValue?: any;
|
|
120
126
|
tabindex?: any;
|
|
121
127
|
trim?: any;
|
|
@@ -130,11 +136,11 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
130
136
|
clearable?: any;
|
|
131
137
|
autocomplete?: any;
|
|
132
138
|
displayOnly?: any;
|
|
139
|
+
showEmptyValue?: any;
|
|
133
140
|
inputBoxType?: any;
|
|
134
141
|
placeholder?: any;
|
|
135
142
|
multiple?: any;
|
|
136
143
|
dropStyle?: any;
|
|
137
|
-
shape?: any;
|
|
138
144
|
blank?: any;
|
|
139
145
|
showTips?: any;
|
|
140
146
|
delay?: any;
|
|
@@ -176,6 +182,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
176
182
|
keepFocus?: any;
|
|
177
183
|
topCreate?: any;
|
|
178
184
|
topCreateText?: any;
|
|
185
|
+
initLabel?: any;
|
|
186
|
+
tooltipConfig?: any;
|
|
187
|
+
stopPropagation?: any;
|
|
179
188
|
searchable?: any;
|
|
180
189
|
showEmptyImage?: any;
|
|
181
190
|
tagType?: any;
|
|
@@ -186,6 +195,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
186
195
|
maxVisibleRows?: any;
|
|
187
196
|
allText?: any;
|
|
188
197
|
showAllTextTag?: any;
|
|
198
|
+
maxTagWidth?: any;
|
|
189
199
|
showOverflowTooltip?: any;
|
|
190
200
|
showDropdown?: any;
|
|
191
201
|
expandTags?: any;
|
|
@@ -218,6 +228,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
218
228
|
readonly tiny_theme?: any;
|
|
219
229
|
readonly tiny_chart_theme?: any;
|
|
220
230
|
readonly tiny_mcp_config?: any;
|
|
231
|
+
readonly shape?: any;
|
|
221
232
|
readonly modelValue?: any;
|
|
222
233
|
readonly tabindex?: any;
|
|
223
234
|
readonly trim?: any;
|
|
@@ -232,11 +243,11 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
232
243
|
readonly clearable?: any;
|
|
233
244
|
readonly autocomplete?: any;
|
|
234
245
|
readonly displayOnly?: any;
|
|
246
|
+
readonly showEmptyValue?: any;
|
|
235
247
|
readonly inputBoxType?: any;
|
|
236
248
|
readonly placeholder?: any;
|
|
237
249
|
readonly multiple?: any;
|
|
238
250
|
readonly dropStyle?: any;
|
|
239
|
-
readonly shape?: any;
|
|
240
251
|
readonly blank?: any;
|
|
241
252
|
readonly showTips?: any;
|
|
242
253
|
readonly delay?: any;
|
|
@@ -278,6 +289,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
278
289
|
readonly keepFocus?: any;
|
|
279
290
|
readonly topCreate?: any;
|
|
280
291
|
readonly topCreateText?: any;
|
|
292
|
+
readonly initLabel?: any;
|
|
293
|
+
readonly tooltipConfig?: any;
|
|
294
|
+
readonly stopPropagation?: any;
|
|
281
295
|
readonly searchable?: any;
|
|
282
296
|
readonly showEmptyImage?: any;
|
|
283
297
|
readonly tagType?: any;
|
|
@@ -288,6 +302,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
288
302
|
readonly maxVisibleRows?: any;
|
|
289
303
|
readonly allText?: any;
|
|
290
304
|
readonly showAllTextTag?: any;
|
|
305
|
+
readonly maxTagWidth?: any;
|
|
291
306
|
readonly showOverflowTooltip?: any;
|
|
292
307
|
readonly showDropdown?: any;
|
|
293
308
|
readonly expandTags?: any;
|