@opentinyvue/vue-base-select 3.22.2 → 3.23.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 +1 -1
- package/lib/mobile-first.js +17 -17
- package/lib/pc.js +18 -18
- package/package.json +18 -18
- package/src/index.d.ts +29 -29
- package/src/mobile-first.vue.d.ts +104 -104
- package/src/pc.vue.d.ts +97 -97
package/lib/index.js
CHANGED
package/lib/mobile-first.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { renderless, api } from '@opentinyvue/vue-renderless/select/vue';
|
|
2
2
|
import { defineComponent, directive, props, setup } from '@opentinyvue/vue-common';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
3
|
+
import Tag from '@opentinyvue/vue-tag';
|
|
4
|
+
import Input from '@opentinyvue/vue-input';
|
|
5
|
+
import Option from '@opentinyvue/vue-option';
|
|
6
|
+
import Scrollbar from '@opentinyvue/vue-scrollbar';
|
|
7
|
+
import SelectDropdown from '@opentinyvue/vue-select-dropdown';
|
|
8
8
|
import { Clickoutside } from '@opentinyvue/vue-directive';
|
|
9
9
|
import { iconClose, iconCopy, iconHalfselect, iconCheck, iconCheckedSur, iconLoading, iconChevronRight } from '@opentinyvue/vue-icon';
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
10
|
+
import Tree from '@opentinyvue/vue-tree';
|
|
11
|
+
import Tooltip from '@opentinyvue/vue-tooltip';
|
|
12
|
+
import FilterBox from '@opentinyvue/vue-filter-box';
|
|
13
13
|
import RecycleScroller from '@opentinyvue/vue-recycle-scroller';
|
|
14
14
|
import { resolveComponent, resolveDirective, withDirectives, openBlock, createElementBlock, mergeProps, withModifiers, createElementVNode, normalizeStyle, normalizeClass, createBlock, createCommentVNode, withCtx, createVNode, createSlots, renderSlot, createTextVNode, toDisplayString, Fragment, renderList, withKeys, vModelText, resolveDynamicComponent, vShow, Transition } from 'vue';
|
|
15
15
|
|
|
@@ -57,7 +57,7 @@ function _extends() {
|
|
|
57
57
|
}
|
|
58
58
|
var classes = {
|
|
59
59
|
"caret": "text-base rotate-0 transition-transform duration-300 fill-color-text-placeholder cursor-pointer ",
|
|
60
|
-
"select-tags": "absolute leading-normal whitespace-normal sm:pl-3 pr-2 z-[1] top-1/2 -translate-y-2/4 flex items-center flex-wrap [&_[data-tag=tiny-tag]]:my-0.5 [&_[data-tag=tiny-tag]]:h-7 [&_[data-tag=tiny-tag]]:
|
|
60
|
+
"select-tags": "absolute leading-normal whitespace-normal sm:pl-3 pr-2 z-[1] top-1/2 -translate-y-2/4 flex items-center flex-wrap [&_[data-tag=tiny-tag]]:my-0.5 [&_[data-tag=tiny-tag]]:h-7 [&_[data-tag=tiny-tag]]:sm:h-5 [&_[data-tag=tiny-tag]_svg]:shrink-0",
|
|
61
61
|
"tags-text": "inline-block w-full whitespace-nowrap text-ellipsis overflow-hidden align-bottom",
|
|
62
62
|
"tag-info": "whitespace-nowrap text-ellipsis overflow-hidden inline-flex justify-start items-center border-transparent text-color-text-primary"
|
|
63
63
|
};
|
|
@@ -87,16 +87,16 @@ var _sfc_main = defineComponent({
|
|
|
87
87
|
}
|
|
88
88
|
}),
|
|
89
89
|
components: {
|
|
90
|
-
TinyTag,
|
|
91
|
-
TinyInput,
|
|
92
|
-
TinyOption,
|
|
93
|
-
TinyTree,
|
|
94
|
-
TinyScrollbar,
|
|
95
|
-
TinyFilterBox,
|
|
96
|
-
TinyTooltip,
|
|
90
|
+
TinyTag: Tag,
|
|
91
|
+
TinyInput: Input,
|
|
92
|
+
TinyOption: Option,
|
|
93
|
+
TinyTree: Tree,
|
|
94
|
+
TinyScrollbar: Scrollbar,
|
|
95
|
+
TinyFilterBox: FilterBox,
|
|
96
|
+
TinyTooltip: Tooltip,
|
|
97
97
|
IconClose: iconClose(),
|
|
98
98
|
IconCopy: iconCopy(),
|
|
99
|
-
TinySelectDropdown,
|
|
99
|
+
TinySelectDropdown: SelectDropdown,
|
|
100
100
|
IconHalfselect: iconHalfselect(),
|
|
101
101
|
IconCheck: iconCheck(),
|
|
102
102
|
IconCheckedSur: iconCheckedSur(),
|
package/lib/pc.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { renderless, api } from '@opentinyvue/vue-renderless/base-select/vue';
|
|
2
2
|
import { defineComponent, directive, props, setup } from '@opentinyvue/vue-common';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
3
|
+
import Tag from '@opentinyvue/vue-tag';
|
|
4
|
+
import Input from '@opentinyvue/vue-input';
|
|
5
|
+
import Option from '@opentinyvue/vue-option';
|
|
6
|
+
import Scrollbar from '@opentinyvue/vue-scrollbar';
|
|
7
|
+
import SelectDropdown from '@opentinyvue/vue-select-dropdown';
|
|
8
|
+
import Button from '@opentinyvue/vue-button';
|
|
9
9
|
import { Clickoutside } from '@opentinyvue/vue-directive';
|
|
10
10
|
import { IconClose, IconCopy, iconAddCircle, iconLoadingShadow, IconHalfselect, IconCheck, IconCheckedSur, IconSearch, IconDeltaDown, IconEllipsis, IconChevronUp } from '@opentinyvue/vue-icon';
|
|
11
|
-
import
|
|
12
|
-
import
|
|
11
|
+
import Tooltip from '@opentinyvue/vue-tooltip';
|
|
12
|
+
import FilterBox from '@opentinyvue/vue-filter-box';
|
|
13
13
|
import RecycleScroller from '@opentinyvue/vue-recycle-scroller';
|
|
14
|
-
import
|
|
14
|
+
import Checkbox from '@opentinyvue/vue-checkbox';
|
|
15
15
|
import '@opentinyvue/vue-theme/select/index.css';
|
|
16
16
|
import '@opentinyvue/vue-theme/base-select/index.css';
|
|
17
17
|
import { resolveComponent, resolveDirective, withDirectives, openBlock, createElementBlock, mergeProps, withModifiers, createElementVNode, normalizeStyle, normalizeClass, renderSlot, createBlock, createCommentVNode, withCtx, createVNode, createTextVNode, toDisplayString, Fragment, renderList, createSlots, withKeys, vShow, vModelText, resolveDynamicComponent, Transition } from 'vue';
|
|
@@ -75,27 +75,27 @@ var _sfc_main = defineComponent({
|
|
|
75
75
|
}
|
|
76
76
|
}),
|
|
77
77
|
components: {
|
|
78
|
-
TinyTag,
|
|
79
|
-
TinyInput,
|
|
80
|
-
TinyOption,
|
|
81
|
-
TinyButton,
|
|
78
|
+
TinyTag: Tag,
|
|
79
|
+
TinyInput: Input,
|
|
80
|
+
TinyOption: Option,
|
|
81
|
+
TinyButton: Button,
|
|
82
82
|
IconClose: IconClose(),
|
|
83
|
-
TinyScrollbar,
|
|
83
|
+
TinyScrollbar: Scrollbar,
|
|
84
84
|
IconCopy: IconCopy(),
|
|
85
85
|
IconAddCircle: iconAddCircle(),
|
|
86
86
|
IconLoadingShadow: iconLoadingShadow(),
|
|
87
|
-
TinySelectDropdown,
|
|
87
|
+
TinySelectDropdown: SelectDropdown,
|
|
88
88
|
IconHalfselect: IconHalfselect(),
|
|
89
89
|
IconCheck: IconCheck(),
|
|
90
90
|
IconCheckedSur: IconCheckedSur(),
|
|
91
|
-
TinyFilterBox,
|
|
92
|
-
TinyTooltip,
|
|
91
|
+
TinyFilterBox: FilterBox,
|
|
92
|
+
TinyTooltip: Tooltip,
|
|
93
93
|
TinyRecycleScroller: RecycleScroller,
|
|
94
94
|
// tiny 新增,
|
|
95
95
|
IconSearch: IconSearch(),
|
|
96
96
|
IconDeltaDown: IconDeltaDown(),
|
|
97
97
|
// 默认下拉图标
|
|
98
|
-
TinyCheckbox,
|
|
98
|
+
TinyCheckbox: Checkbox,
|
|
99
99
|
IconEllipsis: IconEllipsis(),
|
|
100
100
|
IconChevronUp: IconChevronUp()
|
|
101
101
|
},
|
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.23.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.23.0",
|
|
12
|
+
"@opentinyvue/vue-checkbox": "~3.23.0",
|
|
13
|
+
"@opentinyvue/vue-common": "~3.23.0",
|
|
14
|
+
"@opentinyvue/vue-directive": "~3.23.0",
|
|
15
|
+
"@opentinyvue/vue-filter-box": "~3.23.0",
|
|
16
|
+
"@opentinyvue/vue-icon": "~3.23.0",
|
|
17
|
+
"@opentinyvue/vue-input": "~3.23.0",
|
|
18
|
+
"@opentinyvue/vue-locale": "~3.23.0",
|
|
19
|
+
"@opentinyvue/vue-option": "~3.23.0",
|
|
20
|
+
"@opentinyvue/vue-recycle-scroller": "~3.23.0",
|
|
21
|
+
"@opentinyvue/vue-renderless": "~3.23.0",
|
|
22
|
+
"@opentinyvue/vue-scrollbar": "~3.23.0",
|
|
23
|
+
"@opentinyvue/vue-select-dropdown": "~3.23.0",
|
|
24
|
+
"@opentinyvue/vue-tag": "~3.23.0",
|
|
25
|
+
"@opentinyvue/vue-theme": "~3.23.0",
|
|
26
|
+
"@opentinyvue/vue-tooltip": "~3.23.0",
|
|
27
|
+
"@opentinyvue/vue-tree": "~3.23.0"
|
|
28
28
|
},
|
|
29
29
|
"types": "index.d.ts",
|
|
30
30
|
"scripts": {
|
package/src/index.d.ts
CHANGED
|
@@ -210,7 +210,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
210
210
|
default: boolean;
|
|
211
211
|
};
|
|
212
212
|
dropdownIcon: {
|
|
213
|
-
type: (
|
|
213
|
+
type: (StringConstructor | ObjectConstructor)[];
|
|
214
214
|
default: () => import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
215
215
|
[key: string]: any;
|
|
216
216
|
}>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>>;
|
|
@@ -220,14 +220,14 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
220
220
|
type: BooleanConstructor;
|
|
221
221
|
default: boolean;
|
|
222
222
|
};
|
|
223
|
-
optimization: (
|
|
223
|
+
optimization: (BooleanConstructor | ObjectConstructor)[];
|
|
224
224
|
displayOnly: {
|
|
225
225
|
type: BooleanConstructor;
|
|
226
226
|
default: boolean;
|
|
227
227
|
};
|
|
228
228
|
initQuery: FunctionConstructor;
|
|
229
229
|
extraQueryParams: {
|
|
230
|
-
type: (
|
|
230
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | NumberConstructor | ArrayConstructor)[];
|
|
231
231
|
default: string;
|
|
232
232
|
};
|
|
233
233
|
updateDelay: {
|
|
@@ -523,7 +523,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
523
523
|
default: boolean;
|
|
524
524
|
};
|
|
525
525
|
dropdownIcon: {
|
|
526
|
-
type: (
|
|
526
|
+
type: (StringConstructor | ObjectConstructor)[];
|
|
527
527
|
default: () => import("@vue/reactivity").Raw<import("@vue/runtime-core").DefineComponent<{}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
528
528
|
[key: string]: any;
|
|
529
529
|
}>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>>;
|
|
@@ -533,14 +533,14 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
533
533
|
type: BooleanConstructor;
|
|
534
534
|
default: boolean;
|
|
535
535
|
};
|
|
536
|
-
optimization: (
|
|
536
|
+
optimization: (BooleanConstructor | ObjectConstructor)[];
|
|
537
537
|
displayOnly: {
|
|
538
538
|
type: BooleanConstructor;
|
|
539
539
|
default: boolean;
|
|
540
540
|
};
|
|
541
541
|
initQuery: FunctionConstructor;
|
|
542
542
|
extraQueryParams: {
|
|
543
|
-
type: (
|
|
543
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | NumberConstructor | ArrayConstructor)[];
|
|
544
544
|
default: string;
|
|
545
545
|
};
|
|
546
546
|
updateDelay: {
|
|
@@ -636,44 +636,44 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
636
636
|
}>>, {
|
|
637
637
|
disabled: boolean;
|
|
638
638
|
loading: boolean;
|
|
639
|
-
valueField: string;
|
|
640
|
-
multiple: boolean;
|
|
641
|
-
remote: boolean;
|
|
642
|
-
textField: string;
|
|
643
|
-
remoteConfig: Record<string, any>;
|
|
644
|
-
multipleLimit: number;
|
|
645
|
-
treeOp: Record<string, any>;
|
|
646
639
|
placement: string;
|
|
647
640
|
tiny_mode_root: boolean;
|
|
648
641
|
_constants: Record<string, any>;
|
|
649
642
|
tabindex: string;
|
|
643
|
+
trim: boolean;
|
|
644
|
+
popperAppendToBody: boolean;
|
|
645
|
+
textField: string;
|
|
646
|
+
valueField: string;
|
|
647
|
+
popperOptions: Record<string, any>;
|
|
650
648
|
readonly: boolean;
|
|
651
649
|
hoverExpand: boolean;
|
|
652
650
|
clearable: boolean;
|
|
653
651
|
autocomplete: string;
|
|
654
652
|
displayOnly: boolean;
|
|
655
|
-
isDropInheritWidth: boolean;
|
|
656
|
-
popperOptions: Record<string, any>;
|
|
657
|
-
closeByMask: boolean;
|
|
658
|
-
searchPlaceholder: string;
|
|
659
|
-
delay: number;
|
|
660
653
|
placeholder: string;
|
|
661
|
-
|
|
654
|
+
multiple: boolean;
|
|
662
655
|
dropStyle: Record<string, any>;
|
|
663
|
-
|
|
656
|
+
blank: boolean;
|
|
657
|
+
showTips: boolean;
|
|
658
|
+
delay: number;
|
|
659
|
+
remote: boolean;
|
|
660
|
+
remoteConfig: Record<string, any>;
|
|
664
661
|
showCheck: boolean;
|
|
665
662
|
showAlloption: boolean;
|
|
666
|
-
showProportion: boolean;
|
|
667
|
-
hideDrop: boolean;
|
|
668
|
-
valueKey: string;
|
|
669
663
|
filterable: boolean;
|
|
670
664
|
allowCreate: boolean;
|
|
671
665
|
collapseTags: boolean;
|
|
672
666
|
reserveKeyword: boolean;
|
|
673
667
|
automaticDropdown: boolean;
|
|
674
668
|
defaultFirstOption: boolean;
|
|
675
|
-
|
|
669
|
+
valueKey: string;
|
|
670
|
+
searchPlaceholder: string;
|
|
671
|
+
multipleLimit: number;
|
|
672
|
+
hideDrop: boolean;
|
|
673
|
+
copyable: boolean;
|
|
676
674
|
gridOp: Record<string, any>;
|
|
675
|
+
treeOp: Record<string, any>;
|
|
676
|
+
isDropInheritWidth: boolean;
|
|
677
677
|
tagSelectable: boolean;
|
|
678
678
|
selectConfig: Record<string, any>;
|
|
679
679
|
radioConfig: Record<string, any>;
|
|
@@ -684,20 +684,20 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
684
684
|
dropdownIcon: string | Record<string, any>;
|
|
685
685
|
extraQueryParams: string | number | boolean | Record<string, any> | unknown[];
|
|
686
686
|
updateDelay: number;
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
trim: boolean;
|
|
687
|
+
closeByMask: boolean;
|
|
688
|
+
keepFocus: boolean;
|
|
690
689
|
topCreate: boolean;
|
|
691
690
|
topCreateText: string;
|
|
692
|
-
keepFocus: boolean;
|
|
693
691
|
searchable: boolean;
|
|
694
692
|
showEmptyImage: boolean;
|
|
693
|
+
InputBoxType: string;
|
|
695
694
|
tagType: string;
|
|
696
695
|
clearNoMatchValue: boolean;
|
|
697
696
|
showLimitText: boolean;
|
|
697
|
+
showProportion: boolean;
|
|
698
698
|
clickExpand: boolean;
|
|
699
699
|
maxVisibleRows: number;
|
|
700
|
+
allText: string;
|
|
700
701
|
showAllTextTag: boolean;
|
|
701
|
-
InputBoxType: string;
|
|
702
702
|
}, {}>;
|
|
703
703
|
export default _default;
|
|
@@ -1,26 +1,13 @@
|
|
|
1
1
|
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
-
|
|
2
|
+
name?: any;
|
|
3
3
|
label?: any;
|
|
4
|
-
title?: any;
|
|
5
4
|
disabled?: any;
|
|
5
|
+
size?: any;
|
|
6
|
+
title?: any;
|
|
6
7
|
id?: any;
|
|
7
8
|
dataset?: any;
|
|
8
9
|
options?: any;
|
|
9
|
-
name?: any;
|
|
10
10
|
loading?: any;
|
|
11
|
-
valueField?: any;
|
|
12
|
-
modelValue?: any;
|
|
13
|
-
multiple?: any;
|
|
14
|
-
filterMethod?: any;
|
|
15
|
-
remote?: any;
|
|
16
|
-
remoteMethod?: any;
|
|
17
|
-
textField?: any;
|
|
18
|
-
optimization?: any;
|
|
19
|
-
remoteConfig?: any;
|
|
20
|
-
shape?: any;
|
|
21
|
-
renderType?: any;
|
|
22
|
-
multipleLimit?: any;
|
|
23
|
-
treeOp?: any;
|
|
24
11
|
placement?: any;
|
|
25
12
|
tiny_mode?: any;
|
|
26
13
|
tiny_mode_root?: any;
|
|
@@ -29,43 +16,51 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
29
16
|
_constants?: any;
|
|
30
17
|
tiny_theme?: any;
|
|
31
18
|
tiny_chart_theme?: any;
|
|
19
|
+
modelValue?: any;
|
|
32
20
|
tabindex?: any;
|
|
21
|
+
popperClass?: any;
|
|
22
|
+
popperAppendToBody?: any;
|
|
23
|
+
textField?: any;
|
|
24
|
+
tip?: any;
|
|
25
|
+
valueField?: any;
|
|
26
|
+
popperOptions?: any;
|
|
33
27
|
readonly?: any;
|
|
34
28
|
hoverExpand?: any;
|
|
35
29
|
clearable?: any;
|
|
36
30
|
autocomplete?: any;
|
|
37
31
|
displayOnly?: any;
|
|
38
|
-
isDropInheritWidth?: any;
|
|
39
|
-
popperOptions?: any;
|
|
40
|
-
closeByMask?: any;
|
|
41
|
-
searchPlaceholder?: any;
|
|
42
|
-
popperClass?: any;
|
|
43
|
-
delay?: any;
|
|
44
|
-
tip?: any;
|
|
45
32
|
placeholder?: any;
|
|
46
|
-
|
|
33
|
+
multiple?: any;
|
|
47
34
|
dropStyle?: any;
|
|
48
|
-
|
|
35
|
+
shape?: any;
|
|
36
|
+
blank?: any;
|
|
37
|
+
showTips?: any;
|
|
38
|
+
delay?: any;
|
|
39
|
+
remote?: any;
|
|
40
|
+
remoteConfig?: any;
|
|
49
41
|
showCheck?: any;
|
|
50
42
|
showAlloption?: any;
|
|
51
|
-
showProportion?: any;
|
|
52
|
-
hideDrop?: any;
|
|
53
|
-
showOverflowTooltip?: any;
|
|
54
|
-
valueKey?: any;
|
|
55
43
|
noDataText?: any;
|
|
56
44
|
filterable?: any;
|
|
57
45
|
loadingText?: any;
|
|
58
46
|
noMatchText?: any;
|
|
59
47
|
allowCreate?: any;
|
|
60
48
|
collapseTags?: any;
|
|
49
|
+
remoteMethod?: any;
|
|
50
|
+
filterMethod?: any;
|
|
61
51
|
reserveKeyword?: any;
|
|
62
52
|
automaticDropdown?: any;
|
|
63
53
|
defaultFirstOption?: any;
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
54
|
+
valueKey?: any;
|
|
55
|
+
searchPlaceholder?: any;
|
|
56
|
+
multipleLimit?: any;
|
|
57
|
+
hideDrop?: any;
|
|
58
|
+
copyable?: any;
|
|
59
|
+
renderType?: any;
|
|
67
60
|
gridOp?: any;
|
|
61
|
+
treeOp?: any;
|
|
68
62
|
cacheOp?: any;
|
|
63
|
+
isDropInheritWidth?: any;
|
|
69
64
|
tagSelectable?: any;
|
|
70
65
|
selectConfig?: any;
|
|
71
66
|
radioConfig?: any;
|
|
@@ -76,11 +71,16 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
76
71
|
ignoreEnter?: any;
|
|
77
72
|
dropdownIcon?: any;
|
|
78
73
|
disabledTooltipContent?: any;
|
|
74
|
+
optimization?: any;
|
|
79
75
|
initQuery?: any;
|
|
80
76
|
extraQueryParams?: any;
|
|
81
77
|
updateDelay?: any;
|
|
82
|
-
|
|
78
|
+
closeByMask?: any;
|
|
79
|
+
showProportion?: any;
|
|
83
80
|
allText?: any;
|
|
81
|
+
showOverflowTooltip?: any;
|
|
82
|
+
showDropdown?: any;
|
|
83
|
+
expandTags?: any;
|
|
84
84
|
}>, {
|
|
85
85
|
t: (this: any, path: any, options?: any) => any;
|
|
86
86
|
vm: any;
|
|
@@ -90,29 +90,16 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
90
90
|
dp: (props: any) => void;
|
|
91
91
|
gcls: (key: any) => any;
|
|
92
92
|
m: (...cssClasses: any[]) => string;
|
|
93
|
-
}, any, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("change" | "
|
|
94
|
-
|
|
93
|
+
}, 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<{
|
|
94
|
+
name?: any;
|
|
95
95
|
label?: any;
|
|
96
|
-
title?: any;
|
|
97
96
|
disabled?: any;
|
|
97
|
+
size?: any;
|
|
98
|
+
title?: any;
|
|
98
99
|
id?: any;
|
|
99
100
|
dataset?: any;
|
|
100
101
|
options?: any;
|
|
101
|
-
name?: any;
|
|
102
102
|
loading?: any;
|
|
103
|
-
valueField?: any;
|
|
104
|
-
modelValue?: any;
|
|
105
|
-
multiple?: any;
|
|
106
|
-
filterMethod?: any;
|
|
107
|
-
remote?: any;
|
|
108
|
-
remoteMethod?: any;
|
|
109
|
-
textField?: any;
|
|
110
|
-
optimization?: any;
|
|
111
|
-
remoteConfig?: any;
|
|
112
|
-
shape?: any;
|
|
113
|
-
renderType?: any;
|
|
114
|
-
multipleLimit?: any;
|
|
115
|
-
treeOp?: any;
|
|
116
103
|
placement?: any;
|
|
117
104
|
tiny_mode?: any;
|
|
118
105
|
tiny_mode_root?: any;
|
|
@@ -121,43 +108,51 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
121
108
|
_constants?: any;
|
|
122
109
|
tiny_theme?: any;
|
|
123
110
|
tiny_chart_theme?: any;
|
|
111
|
+
modelValue?: any;
|
|
124
112
|
tabindex?: any;
|
|
113
|
+
popperClass?: any;
|
|
114
|
+
popperAppendToBody?: any;
|
|
115
|
+
textField?: any;
|
|
116
|
+
tip?: any;
|
|
117
|
+
valueField?: any;
|
|
118
|
+
popperOptions?: any;
|
|
125
119
|
readonly?: any;
|
|
126
120
|
hoverExpand?: any;
|
|
127
121
|
clearable?: any;
|
|
128
122
|
autocomplete?: any;
|
|
129
123
|
displayOnly?: any;
|
|
130
|
-
isDropInheritWidth?: any;
|
|
131
|
-
popperOptions?: any;
|
|
132
|
-
closeByMask?: any;
|
|
133
|
-
searchPlaceholder?: any;
|
|
134
|
-
popperClass?: any;
|
|
135
|
-
delay?: any;
|
|
136
|
-
tip?: any;
|
|
137
124
|
placeholder?: any;
|
|
138
|
-
|
|
125
|
+
multiple?: any;
|
|
139
126
|
dropStyle?: any;
|
|
140
|
-
|
|
127
|
+
shape?: any;
|
|
128
|
+
blank?: any;
|
|
129
|
+
showTips?: any;
|
|
130
|
+
delay?: any;
|
|
131
|
+
remote?: any;
|
|
132
|
+
remoteConfig?: any;
|
|
141
133
|
showCheck?: any;
|
|
142
134
|
showAlloption?: any;
|
|
143
|
-
showProportion?: any;
|
|
144
|
-
hideDrop?: any;
|
|
145
|
-
showOverflowTooltip?: any;
|
|
146
|
-
valueKey?: any;
|
|
147
135
|
noDataText?: any;
|
|
148
136
|
filterable?: any;
|
|
149
137
|
loadingText?: any;
|
|
150
138
|
noMatchText?: any;
|
|
151
139
|
allowCreate?: any;
|
|
152
140
|
collapseTags?: any;
|
|
141
|
+
remoteMethod?: any;
|
|
142
|
+
filterMethod?: any;
|
|
153
143
|
reserveKeyword?: any;
|
|
154
144
|
automaticDropdown?: any;
|
|
155
145
|
defaultFirstOption?: any;
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
146
|
+
valueKey?: any;
|
|
147
|
+
searchPlaceholder?: any;
|
|
148
|
+
multipleLimit?: any;
|
|
149
|
+
hideDrop?: any;
|
|
150
|
+
copyable?: any;
|
|
151
|
+
renderType?: any;
|
|
159
152
|
gridOp?: any;
|
|
153
|
+
treeOp?: any;
|
|
160
154
|
cacheOp?: any;
|
|
155
|
+
isDropInheritWidth?: any;
|
|
161
156
|
tagSelectable?: any;
|
|
162
157
|
selectConfig?: any;
|
|
163
158
|
radioConfig?: any;
|
|
@@ -168,45 +163,37 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
168
163
|
ignoreEnter?: any;
|
|
169
164
|
dropdownIcon?: any;
|
|
170
165
|
disabledTooltipContent?: any;
|
|
166
|
+
optimization?: any;
|
|
171
167
|
initQuery?: any;
|
|
172
168
|
extraQueryParams?: any;
|
|
173
169
|
updateDelay?: any;
|
|
174
|
-
|
|
170
|
+
closeByMask?: any;
|
|
171
|
+
showProportion?: any;
|
|
175
172
|
allText?: any;
|
|
173
|
+
showOverflowTooltip?: any;
|
|
174
|
+
showDropdown?: any;
|
|
175
|
+
expandTags?: any;
|
|
176
176
|
}>>> & {
|
|
177
177
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
178
178
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
179
179
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
180
|
-
|
|
180
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
181
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
181
182
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
183
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
184
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
182
185
|
"onDropdown-click"?: ((...args: any[]) => any) | undefined;
|
|
183
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
184
186
|
onHandleDropdownClick?: ((...args: any[]) => any) | undefined;
|
|
185
|
-
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
186
|
-
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
187
187
|
}, {
|
|
188
|
-
readonly
|
|
188
|
+
readonly name?: any;
|
|
189
189
|
readonly label?: any;
|
|
190
|
-
readonly title?: any;
|
|
191
190
|
readonly disabled?: any;
|
|
191
|
+
readonly size?: any;
|
|
192
|
+
readonly title?: any;
|
|
192
193
|
readonly id?: any;
|
|
193
194
|
readonly dataset?: any;
|
|
194
195
|
readonly options?: any;
|
|
195
|
-
readonly name?: any;
|
|
196
196
|
readonly loading?: any;
|
|
197
|
-
readonly valueField?: any;
|
|
198
|
-
readonly modelValue?: any;
|
|
199
|
-
readonly multiple?: any;
|
|
200
|
-
readonly filterMethod?: any;
|
|
201
|
-
readonly remote?: any;
|
|
202
|
-
readonly remoteMethod?: any;
|
|
203
|
-
readonly textField?: any;
|
|
204
|
-
readonly optimization?: any;
|
|
205
|
-
readonly remoteConfig?: any;
|
|
206
|
-
readonly shape?: any;
|
|
207
|
-
readonly renderType?: any;
|
|
208
|
-
readonly multipleLimit?: any;
|
|
209
|
-
readonly treeOp?: any;
|
|
210
197
|
readonly placement?: any;
|
|
211
198
|
readonly tiny_mode?: any;
|
|
212
199
|
readonly tiny_mode_root?: any;
|
|
@@ -215,43 +202,51 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
215
202
|
readonly _constants?: any;
|
|
216
203
|
readonly tiny_theme?: any;
|
|
217
204
|
readonly tiny_chart_theme?: any;
|
|
205
|
+
readonly modelValue?: any;
|
|
218
206
|
readonly tabindex?: any;
|
|
207
|
+
readonly popperClass?: any;
|
|
208
|
+
readonly popperAppendToBody?: any;
|
|
209
|
+
readonly textField?: any;
|
|
210
|
+
readonly tip?: any;
|
|
211
|
+
readonly valueField?: any;
|
|
212
|
+
readonly popperOptions?: any;
|
|
219
213
|
readonly readonly?: any;
|
|
220
214
|
readonly hoverExpand?: any;
|
|
221
215
|
readonly clearable?: any;
|
|
222
216
|
readonly autocomplete?: any;
|
|
223
217
|
readonly displayOnly?: any;
|
|
224
|
-
readonly isDropInheritWidth?: any;
|
|
225
|
-
readonly popperOptions?: any;
|
|
226
|
-
readonly closeByMask?: any;
|
|
227
|
-
readonly searchPlaceholder?: any;
|
|
228
|
-
readonly popperClass?: any;
|
|
229
|
-
readonly delay?: any;
|
|
230
|
-
readonly tip?: any;
|
|
231
218
|
readonly placeholder?: any;
|
|
232
|
-
readonly
|
|
219
|
+
readonly multiple?: any;
|
|
233
220
|
readonly dropStyle?: any;
|
|
234
|
-
readonly
|
|
221
|
+
readonly shape?: any;
|
|
222
|
+
readonly blank?: any;
|
|
223
|
+
readonly showTips?: any;
|
|
224
|
+
readonly delay?: any;
|
|
225
|
+
readonly remote?: any;
|
|
226
|
+
readonly remoteConfig?: any;
|
|
235
227
|
readonly showCheck?: any;
|
|
236
228
|
readonly showAlloption?: any;
|
|
237
|
-
readonly showProportion?: any;
|
|
238
|
-
readonly hideDrop?: any;
|
|
239
|
-
readonly showOverflowTooltip?: any;
|
|
240
|
-
readonly valueKey?: any;
|
|
241
229
|
readonly noDataText?: any;
|
|
242
230
|
readonly filterable?: any;
|
|
243
231
|
readonly loadingText?: any;
|
|
244
232
|
readonly noMatchText?: any;
|
|
245
233
|
readonly allowCreate?: any;
|
|
246
234
|
readonly collapseTags?: any;
|
|
235
|
+
readonly remoteMethod?: any;
|
|
236
|
+
readonly filterMethod?: any;
|
|
247
237
|
readonly reserveKeyword?: any;
|
|
248
238
|
readonly automaticDropdown?: any;
|
|
249
239
|
readonly defaultFirstOption?: any;
|
|
250
|
-
readonly
|
|
251
|
-
readonly
|
|
252
|
-
readonly
|
|
240
|
+
readonly valueKey?: any;
|
|
241
|
+
readonly searchPlaceholder?: any;
|
|
242
|
+
readonly multipleLimit?: any;
|
|
243
|
+
readonly hideDrop?: any;
|
|
244
|
+
readonly copyable?: any;
|
|
245
|
+
readonly renderType?: any;
|
|
253
246
|
readonly gridOp?: any;
|
|
247
|
+
readonly treeOp?: any;
|
|
254
248
|
readonly cacheOp?: any;
|
|
249
|
+
readonly isDropInheritWidth?: any;
|
|
255
250
|
readonly tagSelectable?: any;
|
|
256
251
|
readonly selectConfig?: any;
|
|
257
252
|
readonly radioConfig?: any;
|
|
@@ -262,10 +257,15 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
262
257
|
readonly ignoreEnter?: any;
|
|
263
258
|
readonly dropdownIcon?: any;
|
|
264
259
|
readonly disabledTooltipContent?: any;
|
|
260
|
+
readonly optimization?: any;
|
|
265
261
|
readonly initQuery?: any;
|
|
266
262
|
readonly extraQueryParams?: any;
|
|
267
263
|
readonly updateDelay?: any;
|
|
268
|
-
readonly
|
|
264
|
+
readonly closeByMask?: any;
|
|
265
|
+
readonly showProportion?: any;
|
|
269
266
|
readonly allText?: any;
|
|
267
|
+
readonly showOverflowTooltip?: any;
|
|
268
|
+
readonly showDropdown?: any;
|
|
269
|
+
readonly expandTags?: any;
|
|
270
270
|
}, {}>;
|
|
271
271
|
export default _default;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,23 +1,12 @@
|
|
|
1
1
|
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
-
|
|
2
|
+
name?: any;
|
|
3
3
|
label?: any;
|
|
4
4
|
disabled?: any;
|
|
5
|
+
size?: any;
|
|
5
6
|
id?: any;
|
|
6
7
|
dataset?: any;
|
|
7
8
|
options?: any;
|
|
8
|
-
name?: any;
|
|
9
9
|
loading?: any;
|
|
10
|
-
valueField?: any;
|
|
11
|
-
modelValue?: any;
|
|
12
|
-
multiple?: any;
|
|
13
|
-
filterMethod?: any;
|
|
14
|
-
remote?: any;
|
|
15
|
-
remoteMethod?: any;
|
|
16
|
-
textField?: any;
|
|
17
|
-
optimization?: any;
|
|
18
|
-
remoteConfig?: any;
|
|
19
|
-
shape?: any;
|
|
20
|
-
multipleLimit?: any;
|
|
21
10
|
placement?: any;
|
|
22
11
|
tiny_mode?: any;
|
|
23
12
|
tiny_mode_root?: any;
|
|
@@ -26,41 +15,49 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
26
15
|
_constants?: any;
|
|
27
16
|
tiny_theme?: any;
|
|
28
17
|
tiny_chart_theme?: any;
|
|
18
|
+
modelValue?: any;
|
|
29
19
|
tabindex?: any;
|
|
20
|
+
trim?: any;
|
|
21
|
+
popperClass?: any;
|
|
22
|
+
popperAppendToBody?: any;
|
|
23
|
+
textField?: any;
|
|
24
|
+
tip?: any;
|
|
25
|
+
valueField?: any;
|
|
26
|
+
popperOptions?: any;
|
|
30
27
|
readonly?: any;
|
|
31
28
|
hoverExpand?: any;
|
|
32
29
|
clearable?: any;
|
|
33
30
|
autocomplete?: any;
|
|
34
31
|
displayOnly?: any;
|
|
35
32
|
inputBoxType?: any;
|
|
36
|
-
isDropInheritWidth?: any;
|
|
37
|
-
popperOptions?: any;
|
|
38
|
-
popperClass?: any;
|
|
39
|
-
delay?: any;
|
|
40
|
-
tip?: any;
|
|
41
33
|
placeholder?: any;
|
|
42
|
-
|
|
34
|
+
multiple?: any;
|
|
43
35
|
dropStyle?: any;
|
|
44
|
-
|
|
36
|
+
shape?: any;
|
|
37
|
+
blank?: any;
|
|
38
|
+
showTips?: any;
|
|
39
|
+
delay?: any;
|
|
40
|
+
remote?: any;
|
|
41
|
+
remoteConfig?: any;
|
|
45
42
|
showCheck?: any;
|
|
46
43
|
showAlloption?: any;
|
|
47
|
-
showProportion?: any;
|
|
48
|
-
hideDrop?: any;
|
|
49
|
-
showOverflowTooltip?: any;
|
|
50
|
-
valueKey?: any;
|
|
51
44
|
noDataText?: any;
|
|
52
45
|
filterable?: any;
|
|
53
46
|
loadingText?: any;
|
|
54
47
|
noMatchText?: any;
|
|
55
48
|
allowCreate?: any;
|
|
56
49
|
collapseTags?: any;
|
|
50
|
+
remoteMethod?: any;
|
|
51
|
+
filterMethod?: any;
|
|
57
52
|
reserveKeyword?: any;
|
|
58
53
|
automaticDropdown?: any;
|
|
59
54
|
defaultFirstOption?: any;
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
55
|
+
valueKey?: any;
|
|
56
|
+
multipleLimit?: any;
|
|
57
|
+
hideDrop?: any;
|
|
58
|
+
copyable?: any;
|
|
63
59
|
cacheOp?: any;
|
|
60
|
+
isDropInheritWidth?: any;
|
|
64
61
|
tagSelectable?: any;
|
|
65
62
|
selectConfig?: any;
|
|
66
63
|
radioConfig?: any;
|
|
@@ -71,23 +68,26 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
71
68
|
ignoreEnter?: any;
|
|
72
69
|
dropdownIcon?: any;
|
|
73
70
|
disabledTooltipContent?: any;
|
|
71
|
+
optimization?: any;
|
|
74
72
|
initQuery?: any;
|
|
75
73
|
extraQueryParams?: any;
|
|
76
74
|
updateDelay?: any;
|
|
77
|
-
|
|
78
|
-
allText?: any;
|
|
79
|
-
trim?: any;
|
|
75
|
+
keepFocus?: any;
|
|
80
76
|
topCreate?: any;
|
|
81
77
|
topCreateText?: any;
|
|
82
|
-
keepFocus?: any;
|
|
83
78
|
searchable?: any;
|
|
84
79
|
showEmptyImage?: any;
|
|
85
80
|
tagType?: any;
|
|
86
81
|
clearNoMatchValue?: any;
|
|
87
82
|
showLimitText?: any;
|
|
83
|
+
showProportion?: any;
|
|
88
84
|
clickExpand?: any;
|
|
89
85
|
maxVisibleRows?: any;
|
|
86
|
+
allText?: any;
|
|
90
87
|
showAllTextTag?: any;
|
|
88
|
+
showOverflowTooltip?: any;
|
|
89
|
+
showDropdown?: any;
|
|
90
|
+
expandTags?: any;
|
|
91
91
|
}>, {
|
|
92
92
|
t: (this: any, path: any, options?: any) => any;
|
|
93
93
|
vm: any;
|
|
@@ -97,26 +97,15 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
97
97
|
dp: (props: any) => void;
|
|
98
98
|
gcls: (key: any) => any;
|
|
99
99
|
m: (...cssClasses: any[]) => string;
|
|
100
|
-
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("change" | "
|
|
101
|
-
|
|
100
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible-change" | "change" | "blur" | "focus" | "clear" | "update:modelValue" | "remove-tag" | "dropdown-click" | "handleDropdownClick" | "top-create-click")[], "visible-change" | "change" | "blur" | "focus" | "clear" | "update:modelValue" | "remove-tag" | "dropdown-click" | "handleDropdownClick" | "top-create-click", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
101
|
+
name?: any;
|
|
102
102
|
label?: any;
|
|
103
103
|
disabled?: any;
|
|
104
|
+
size?: any;
|
|
104
105
|
id?: any;
|
|
105
106
|
dataset?: any;
|
|
106
107
|
options?: any;
|
|
107
|
-
name?: any;
|
|
108
108
|
loading?: any;
|
|
109
|
-
valueField?: any;
|
|
110
|
-
modelValue?: any;
|
|
111
|
-
multiple?: any;
|
|
112
|
-
filterMethod?: any;
|
|
113
|
-
remote?: any;
|
|
114
|
-
remoteMethod?: any;
|
|
115
|
-
textField?: any;
|
|
116
|
-
optimization?: any;
|
|
117
|
-
remoteConfig?: any;
|
|
118
|
-
shape?: any;
|
|
119
|
-
multipleLimit?: any;
|
|
120
109
|
placement?: any;
|
|
121
110
|
tiny_mode?: any;
|
|
122
111
|
tiny_mode_root?: any;
|
|
@@ -125,41 +114,49 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
125
114
|
_constants?: any;
|
|
126
115
|
tiny_theme?: any;
|
|
127
116
|
tiny_chart_theme?: any;
|
|
117
|
+
modelValue?: any;
|
|
128
118
|
tabindex?: any;
|
|
119
|
+
trim?: any;
|
|
120
|
+
popperClass?: any;
|
|
121
|
+
popperAppendToBody?: any;
|
|
122
|
+
textField?: any;
|
|
123
|
+
tip?: any;
|
|
124
|
+
valueField?: any;
|
|
125
|
+
popperOptions?: any;
|
|
129
126
|
readonly?: any;
|
|
130
127
|
hoverExpand?: any;
|
|
131
128
|
clearable?: any;
|
|
132
129
|
autocomplete?: any;
|
|
133
130
|
displayOnly?: any;
|
|
134
131
|
inputBoxType?: any;
|
|
135
|
-
isDropInheritWidth?: any;
|
|
136
|
-
popperOptions?: any;
|
|
137
|
-
popperClass?: any;
|
|
138
|
-
delay?: any;
|
|
139
|
-
tip?: any;
|
|
140
132
|
placeholder?: any;
|
|
141
|
-
|
|
133
|
+
multiple?: any;
|
|
142
134
|
dropStyle?: any;
|
|
143
|
-
|
|
135
|
+
shape?: any;
|
|
136
|
+
blank?: any;
|
|
137
|
+
showTips?: any;
|
|
138
|
+
delay?: any;
|
|
139
|
+
remote?: any;
|
|
140
|
+
remoteConfig?: any;
|
|
144
141
|
showCheck?: any;
|
|
145
142
|
showAlloption?: any;
|
|
146
|
-
showProportion?: any;
|
|
147
|
-
hideDrop?: any;
|
|
148
|
-
showOverflowTooltip?: any;
|
|
149
|
-
valueKey?: any;
|
|
150
143
|
noDataText?: any;
|
|
151
144
|
filterable?: any;
|
|
152
145
|
loadingText?: any;
|
|
153
146
|
noMatchText?: any;
|
|
154
147
|
allowCreate?: any;
|
|
155
148
|
collapseTags?: any;
|
|
149
|
+
remoteMethod?: any;
|
|
150
|
+
filterMethod?: any;
|
|
156
151
|
reserveKeyword?: any;
|
|
157
152
|
automaticDropdown?: any;
|
|
158
153
|
defaultFirstOption?: any;
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
154
|
+
valueKey?: any;
|
|
155
|
+
multipleLimit?: any;
|
|
156
|
+
hideDrop?: any;
|
|
157
|
+
copyable?: any;
|
|
162
158
|
cacheOp?: any;
|
|
159
|
+
isDropInheritWidth?: any;
|
|
163
160
|
tagSelectable?: any;
|
|
164
161
|
selectConfig?: any;
|
|
165
162
|
radioConfig?: any;
|
|
@@ -170,54 +167,46 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
170
167
|
ignoreEnter?: any;
|
|
171
168
|
dropdownIcon?: any;
|
|
172
169
|
disabledTooltipContent?: any;
|
|
170
|
+
optimization?: any;
|
|
173
171
|
initQuery?: any;
|
|
174
172
|
extraQueryParams?: any;
|
|
175
173
|
updateDelay?: any;
|
|
176
|
-
|
|
177
|
-
allText?: any;
|
|
178
|
-
trim?: any;
|
|
174
|
+
keepFocus?: any;
|
|
179
175
|
topCreate?: any;
|
|
180
176
|
topCreateText?: any;
|
|
181
|
-
keepFocus?: any;
|
|
182
177
|
searchable?: any;
|
|
183
178
|
showEmptyImage?: any;
|
|
184
179
|
tagType?: any;
|
|
185
180
|
clearNoMatchValue?: any;
|
|
186
181
|
showLimitText?: any;
|
|
182
|
+
showProportion?: any;
|
|
187
183
|
clickExpand?: any;
|
|
188
184
|
maxVisibleRows?: any;
|
|
185
|
+
allText?: any;
|
|
189
186
|
showAllTextTag?: any;
|
|
187
|
+
showOverflowTooltip?: any;
|
|
188
|
+
showDropdown?: any;
|
|
189
|
+
expandTags?: any;
|
|
190
190
|
}>>> & {
|
|
191
191
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
192
192
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
193
193
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
194
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
195
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
194
196
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
197
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
195
198
|
"onDropdown-click"?: ((...args: any[]) => any) | undefined;
|
|
196
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
197
199
|
onHandleDropdownClick?: ((...args: any[]) => any) | undefined;
|
|
198
|
-
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
199
|
-
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
200
200
|
"onTop-create-click"?: ((...args: any[]) => any) | undefined;
|
|
201
201
|
}, {
|
|
202
|
-
readonly
|
|
202
|
+
readonly name?: any;
|
|
203
203
|
readonly label?: any;
|
|
204
204
|
readonly disabled?: any;
|
|
205
|
+
readonly size?: any;
|
|
205
206
|
readonly id?: any;
|
|
206
207
|
readonly dataset?: any;
|
|
207
208
|
readonly options?: any;
|
|
208
|
-
readonly name?: any;
|
|
209
209
|
readonly loading?: any;
|
|
210
|
-
readonly valueField?: any;
|
|
211
|
-
readonly modelValue?: any;
|
|
212
|
-
readonly multiple?: any;
|
|
213
|
-
readonly filterMethod?: any;
|
|
214
|
-
readonly remote?: any;
|
|
215
|
-
readonly remoteMethod?: any;
|
|
216
|
-
readonly textField?: any;
|
|
217
|
-
readonly optimization?: any;
|
|
218
|
-
readonly remoteConfig?: any;
|
|
219
|
-
readonly shape?: any;
|
|
220
|
-
readonly multipleLimit?: any;
|
|
221
210
|
readonly placement?: any;
|
|
222
211
|
readonly tiny_mode?: any;
|
|
223
212
|
readonly tiny_mode_root?: any;
|
|
@@ -226,41 +215,49 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
226
215
|
readonly _constants?: any;
|
|
227
216
|
readonly tiny_theme?: any;
|
|
228
217
|
readonly tiny_chart_theme?: any;
|
|
218
|
+
readonly modelValue?: any;
|
|
229
219
|
readonly tabindex?: any;
|
|
220
|
+
readonly trim?: any;
|
|
221
|
+
readonly popperClass?: any;
|
|
222
|
+
readonly popperAppendToBody?: any;
|
|
223
|
+
readonly textField?: any;
|
|
224
|
+
readonly tip?: any;
|
|
225
|
+
readonly valueField?: any;
|
|
226
|
+
readonly popperOptions?: any;
|
|
230
227
|
readonly readonly?: any;
|
|
231
228
|
readonly hoverExpand?: any;
|
|
232
229
|
readonly clearable?: any;
|
|
233
230
|
readonly autocomplete?: any;
|
|
234
231
|
readonly displayOnly?: any;
|
|
235
232
|
readonly inputBoxType?: any;
|
|
236
|
-
readonly isDropInheritWidth?: any;
|
|
237
|
-
readonly popperOptions?: any;
|
|
238
|
-
readonly popperClass?: any;
|
|
239
|
-
readonly delay?: any;
|
|
240
|
-
readonly tip?: any;
|
|
241
233
|
readonly placeholder?: any;
|
|
242
|
-
readonly
|
|
234
|
+
readonly multiple?: any;
|
|
243
235
|
readonly dropStyle?: any;
|
|
244
|
-
readonly
|
|
236
|
+
readonly shape?: any;
|
|
237
|
+
readonly blank?: any;
|
|
238
|
+
readonly showTips?: any;
|
|
239
|
+
readonly delay?: any;
|
|
240
|
+
readonly remote?: any;
|
|
241
|
+
readonly remoteConfig?: any;
|
|
245
242
|
readonly showCheck?: any;
|
|
246
243
|
readonly showAlloption?: any;
|
|
247
|
-
readonly showProportion?: any;
|
|
248
|
-
readonly hideDrop?: any;
|
|
249
|
-
readonly showOverflowTooltip?: any;
|
|
250
|
-
readonly valueKey?: any;
|
|
251
244
|
readonly noDataText?: any;
|
|
252
245
|
readonly filterable?: any;
|
|
253
246
|
readonly loadingText?: any;
|
|
254
247
|
readonly noMatchText?: any;
|
|
255
248
|
readonly allowCreate?: any;
|
|
256
249
|
readonly collapseTags?: any;
|
|
250
|
+
readonly remoteMethod?: any;
|
|
251
|
+
readonly filterMethod?: any;
|
|
257
252
|
readonly reserveKeyword?: any;
|
|
258
253
|
readonly automaticDropdown?: any;
|
|
259
254
|
readonly defaultFirstOption?: any;
|
|
260
|
-
readonly
|
|
261
|
-
readonly
|
|
262
|
-
readonly
|
|
255
|
+
readonly valueKey?: any;
|
|
256
|
+
readonly multipleLimit?: any;
|
|
257
|
+
readonly hideDrop?: any;
|
|
258
|
+
readonly copyable?: any;
|
|
263
259
|
readonly cacheOp?: any;
|
|
260
|
+
readonly isDropInheritWidth?: any;
|
|
264
261
|
readonly tagSelectable?: any;
|
|
265
262
|
readonly selectConfig?: any;
|
|
266
263
|
readonly radioConfig?: any;
|
|
@@ -271,22 +268,25 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
271
268
|
readonly ignoreEnter?: any;
|
|
272
269
|
readonly dropdownIcon?: any;
|
|
273
270
|
readonly disabledTooltipContent?: any;
|
|
271
|
+
readonly optimization?: any;
|
|
274
272
|
readonly initQuery?: any;
|
|
275
273
|
readonly extraQueryParams?: any;
|
|
276
274
|
readonly updateDelay?: any;
|
|
277
|
-
readonly
|
|
278
|
-
readonly allText?: any;
|
|
279
|
-
readonly trim?: any;
|
|
275
|
+
readonly keepFocus?: any;
|
|
280
276
|
readonly topCreate?: any;
|
|
281
277
|
readonly topCreateText?: any;
|
|
282
|
-
readonly keepFocus?: any;
|
|
283
278
|
readonly searchable?: any;
|
|
284
279
|
readonly showEmptyImage?: any;
|
|
285
280
|
readonly tagType?: any;
|
|
286
281
|
readonly clearNoMatchValue?: any;
|
|
287
282
|
readonly showLimitText?: any;
|
|
283
|
+
readonly showProportion?: any;
|
|
288
284
|
readonly clickExpand?: any;
|
|
289
285
|
readonly maxVisibleRows?: any;
|
|
286
|
+
readonly allText?: any;
|
|
290
287
|
readonly showAllTextTag?: any;
|
|
288
|
+
readonly showOverflowTooltip?: any;
|
|
289
|
+
readonly showDropdown?: any;
|
|
290
|
+
readonly expandTags?: any;
|
|
291
291
|
}, {}>;
|
|
292
292
|
export default _default;
|