@opentinyvue/vue-base-select 3.22.2 → 3.24.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/mobile-first.js +17 -17
- package/lib/pc.js +18 -18
- package/package.json +18 -18
- package/src/index.d.ts +31 -29
- package/src/mobile-first.vue.d.ts +107 -104
- package/src/pc.vue.d.ts +100 -97
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.24.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.24.0",
|
|
12
|
+
"@opentinyvue/vue-checkbox": "~3.24.0",
|
|
13
|
+
"@opentinyvue/vue-common": "~3.24.0",
|
|
14
|
+
"@opentinyvue/vue-directive": "~3.24.0",
|
|
15
|
+
"@opentinyvue/vue-filter-box": "~3.24.0",
|
|
16
|
+
"@opentinyvue/vue-icon": "~3.24.0",
|
|
17
|
+
"@opentinyvue/vue-input": "~3.24.0",
|
|
18
|
+
"@opentinyvue/vue-locale": "~3.24.0",
|
|
19
|
+
"@opentinyvue/vue-option": "~3.24.0",
|
|
20
|
+
"@opentinyvue/vue-recycle-scroller": "~3.24.0",
|
|
21
|
+
"@opentinyvue/vue-renderless": "~3.24.0",
|
|
22
|
+
"@opentinyvue/vue-scrollbar": "~3.24.0",
|
|
23
|
+
"@opentinyvue/vue-select-dropdown": "~3.24.0",
|
|
24
|
+
"@opentinyvue/vue-tag": "~3.24.0",
|
|
25
|
+
"@opentinyvue/vue-theme": "~3.24.0",
|
|
26
|
+
"@opentinyvue/vue-tooltip": "~3.24.0",
|
|
27
|
+
"@opentinyvue/vue-tree": "~3.24.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: {
|
|
@@ -319,6 +319,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
319
319
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
320
320
|
tiny_renderless: FunctionConstructor;
|
|
321
321
|
tiny_theme: StringConstructor;
|
|
322
|
+
tiny_mcp_config: ObjectConstructor;
|
|
322
323
|
tiny_chart_theme: ObjectConstructor;
|
|
323
324
|
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
324
325
|
[key: string]: any;
|
|
@@ -523,7 +524,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
523
524
|
default: boolean;
|
|
524
525
|
};
|
|
525
526
|
dropdownIcon: {
|
|
526
|
-
type: (
|
|
527
|
+
type: (StringConstructor | ObjectConstructor)[];
|
|
527
528
|
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
529
|
[key: string]: any;
|
|
529
530
|
}>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>>;
|
|
@@ -533,14 +534,14 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
533
534
|
type: BooleanConstructor;
|
|
534
535
|
default: boolean;
|
|
535
536
|
};
|
|
536
|
-
optimization: (
|
|
537
|
+
optimization: (BooleanConstructor | ObjectConstructor)[];
|
|
537
538
|
displayOnly: {
|
|
538
539
|
type: BooleanConstructor;
|
|
539
540
|
default: boolean;
|
|
540
541
|
};
|
|
541
542
|
initQuery: FunctionConstructor;
|
|
542
543
|
extraQueryParams: {
|
|
543
|
-
type: (
|
|
544
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | NumberConstructor | ArrayConstructor)[];
|
|
544
545
|
default: string;
|
|
545
546
|
};
|
|
546
547
|
updateDelay: {
|
|
@@ -632,48 +633,49 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
632
633
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
633
634
|
tiny_renderless: FunctionConstructor;
|
|
634
635
|
tiny_theme: StringConstructor;
|
|
636
|
+
tiny_mcp_config: ObjectConstructor;
|
|
635
637
|
tiny_chart_theme: ObjectConstructor;
|
|
636
638
|
}>>, {
|
|
637
639
|
disabled: boolean;
|
|
638
640
|
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
641
|
placement: string;
|
|
647
642
|
tiny_mode_root: boolean;
|
|
648
643
|
_constants: Record<string, any>;
|
|
649
644
|
tabindex: string;
|
|
645
|
+
trim: boolean;
|
|
646
|
+
popperAppendToBody: boolean;
|
|
647
|
+
textField: string;
|
|
648
|
+
valueField: string;
|
|
649
|
+
popperOptions: Record<string, any>;
|
|
650
650
|
readonly: boolean;
|
|
651
651
|
hoverExpand: boolean;
|
|
652
652
|
clearable: boolean;
|
|
653
653
|
autocomplete: string;
|
|
654
654
|
displayOnly: boolean;
|
|
655
|
-
isDropInheritWidth: boolean;
|
|
656
|
-
popperOptions: Record<string, any>;
|
|
657
|
-
closeByMask: boolean;
|
|
658
|
-
searchPlaceholder: string;
|
|
659
|
-
delay: number;
|
|
660
655
|
placeholder: string;
|
|
661
|
-
|
|
656
|
+
multiple: boolean;
|
|
662
657
|
dropStyle: Record<string, any>;
|
|
663
|
-
|
|
658
|
+
blank: boolean;
|
|
659
|
+
showTips: boolean;
|
|
660
|
+
delay: number;
|
|
661
|
+
remote: boolean;
|
|
662
|
+
remoteConfig: Record<string, any>;
|
|
664
663
|
showCheck: boolean;
|
|
665
664
|
showAlloption: boolean;
|
|
666
|
-
showProportion: boolean;
|
|
667
|
-
hideDrop: boolean;
|
|
668
|
-
valueKey: string;
|
|
669
665
|
filterable: boolean;
|
|
670
666
|
allowCreate: boolean;
|
|
671
667
|
collapseTags: boolean;
|
|
672
668
|
reserveKeyword: boolean;
|
|
673
669
|
automaticDropdown: boolean;
|
|
674
670
|
defaultFirstOption: boolean;
|
|
675
|
-
|
|
671
|
+
valueKey: string;
|
|
672
|
+
searchPlaceholder: string;
|
|
673
|
+
multipleLimit: number;
|
|
674
|
+
hideDrop: boolean;
|
|
675
|
+
copyable: boolean;
|
|
676
676
|
gridOp: Record<string, any>;
|
|
677
|
+
treeOp: Record<string, any>;
|
|
678
|
+
isDropInheritWidth: boolean;
|
|
677
679
|
tagSelectable: boolean;
|
|
678
680
|
selectConfig: Record<string, any>;
|
|
679
681
|
radioConfig: Record<string, any>;
|
|
@@ -684,20 +686,20 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
684
686
|
dropdownIcon: string | Record<string, any>;
|
|
685
687
|
extraQueryParams: string | number | boolean | Record<string, any> | unknown[];
|
|
686
688
|
updateDelay: number;
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
trim: boolean;
|
|
689
|
+
closeByMask: boolean;
|
|
690
|
+
keepFocus: boolean;
|
|
690
691
|
topCreate: boolean;
|
|
691
692
|
topCreateText: string;
|
|
692
|
-
keepFocus: boolean;
|
|
693
693
|
searchable: boolean;
|
|
694
694
|
showEmptyImage: boolean;
|
|
695
|
+
InputBoxType: string;
|
|
695
696
|
tagType: string;
|
|
696
697
|
clearNoMatchValue: boolean;
|
|
697
698
|
showLimitText: boolean;
|
|
699
|
+
showProportion: boolean;
|
|
698
700
|
clickExpand: boolean;
|
|
699
701
|
maxVisibleRows: number;
|
|
702
|
+
allText: string;
|
|
700
703
|
showAllTextTag: boolean;
|
|
701
|
-
InputBoxType: string;
|
|
702
704
|
}, {}>;
|
|
703
705
|
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,52 @@ 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
|
+
tiny_mcp_config?: any;
|
|
20
|
+
modelValue?: any;
|
|
32
21
|
tabindex?: any;
|
|
22
|
+
popperClass?: any;
|
|
23
|
+
popperAppendToBody?: any;
|
|
24
|
+
textField?: any;
|
|
25
|
+
tip?: any;
|
|
26
|
+
valueField?: any;
|
|
27
|
+
popperOptions?: any;
|
|
33
28
|
readonly?: any;
|
|
34
29
|
hoverExpand?: any;
|
|
35
30
|
clearable?: any;
|
|
36
31
|
autocomplete?: any;
|
|
37
32
|
displayOnly?: any;
|
|
38
|
-
isDropInheritWidth?: any;
|
|
39
|
-
popperOptions?: any;
|
|
40
|
-
closeByMask?: any;
|
|
41
|
-
searchPlaceholder?: any;
|
|
42
|
-
popperClass?: any;
|
|
43
|
-
delay?: any;
|
|
44
|
-
tip?: any;
|
|
45
33
|
placeholder?: any;
|
|
46
|
-
|
|
34
|
+
multiple?: any;
|
|
47
35
|
dropStyle?: any;
|
|
48
|
-
|
|
36
|
+
shape?: any;
|
|
37
|
+
blank?: any;
|
|
38
|
+
showTips?: any;
|
|
39
|
+
delay?: any;
|
|
40
|
+
remote?: any;
|
|
41
|
+
remoteConfig?: any;
|
|
49
42
|
showCheck?: any;
|
|
50
43
|
showAlloption?: any;
|
|
51
|
-
showProportion?: any;
|
|
52
|
-
hideDrop?: any;
|
|
53
|
-
showOverflowTooltip?: any;
|
|
54
|
-
valueKey?: any;
|
|
55
44
|
noDataText?: any;
|
|
56
45
|
filterable?: any;
|
|
57
46
|
loadingText?: any;
|
|
58
47
|
noMatchText?: any;
|
|
59
48
|
allowCreate?: any;
|
|
60
49
|
collapseTags?: any;
|
|
50
|
+
remoteMethod?: any;
|
|
51
|
+
filterMethod?: any;
|
|
61
52
|
reserveKeyword?: any;
|
|
62
53
|
automaticDropdown?: any;
|
|
63
54
|
defaultFirstOption?: any;
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
55
|
+
valueKey?: any;
|
|
56
|
+
searchPlaceholder?: any;
|
|
57
|
+
multipleLimit?: any;
|
|
58
|
+
hideDrop?: any;
|
|
59
|
+
copyable?: any;
|
|
60
|
+
renderType?: any;
|
|
67
61
|
gridOp?: any;
|
|
62
|
+
treeOp?: any;
|
|
68
63
|
cacheOp?: any;
|
|
64
|
+
isDropInheritWidth?: any;
|
|
69
65
|
tagSelectable?: any;
|
|
70
66
|
selectConfig?: any;
|
|
71
67
|
radioConfig?: any;
|
|
@@ -76,11 +72,16 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
76
72
|
ignoreEnter?: any;
|
|
77
73
|
dropdownIcon?: any;
|
|
78
74
|
disabledTooltipContent?: any;
|
|
75
|
+
optimization?: any;
|
|
79
76
|
initQuery?: any;
|
|
80
77
|
extraQueryParams?: any;
|
|
81
78
|
updateDelay?: any;
|
|
82
|
-
|
|
79
|
+
closeByMask?: any;
|
|
80
|
+
showProportion?: any;
|
|
83
81
|
allText?: any;
|
|
82
|
+
showOverflowTooltip?: any;
|
|
83
|
+
showDropdown?: any;
|
|
84
|
+
expandTags?: any;
|
|
84
85
|
}>, {
|
|
85
86
|
t: (this: any, path: any, options?: any) => any;
|
|
86
87
|
vm: any;
|
|
@@ -90,29 +91,16 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
90
91
|
dp: (props: any) => void;
|
|
91
92
|
gcls: (key: any) => any;
|
|
92
93
|
m: (...cssClasses: any[]) => string;
|
|
93
|
-
}, any, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("change" | "
|
|
94
|
-
|
|
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<{
|
|
95
|
+
name?: any;
|
|
95
96
|
label?: any;
|
|
96
|
-
title?: any;
|
|
97
97
|
disabled?: any;
|
|
98
|
+
size?: any;
|
|
99
|
+
title?: any;
|
|
98
100
|
id?: any;
|
|
99
101
|
dataset?: any;
|
|
100
102
|
options?: any;
|
|
101
|
-
name?: any;
|
|
102
103
|
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
104
|
placement?: any;
|
|
117
105
|
tiny_mode?: any;
|
|
118
106
|
tiny_mode_root?: any;
|
|
@@ -121,43 +109,52 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
121
109
|
_constants?: any;
|
|
122
110
|
tiny_theme?: any;
|
|
123
111
|
tiny_chart_theme?: any;
|
|
112
|
+
tiny_mcp_config?: any;
|
|
113
|
+
modelValue?: any;
|
|
124
114
|
tabindex?: any;
|
|
115
|
+
popperClass?: any;
|
|
116
|
+
popperAppendToBody?: any;
|
|
117
|
+
textField?: any;
|
|
118
|
+
tip?: any;
|
|
119
|
+
valueField?: any;
|
|
120
|
+
popperOptions?: any;
|
|
125
121
|
readonly?: any;
|
|
126
122
|
hoverExpand?: any;
|
|
127
123
|
clearable?: any;
|
|
128
124
|
autocomplete?: any;
|
|
129
125
|
displayOnly?: any;
|
|
130
|
-
isDropInheritWidth?: any;
|
|
131
|
-
popperOptions?: any;
|
|
132
|
-
closeByMask?: any;
|
|
133
|
-
searchPlaceholder?: any;
|
|
134
|
-
popperClass?: any;
|
|
135
|
-
delay?: any;
|
|
136
|
-
tip?: any;
|
|
137
126
|
placeholder?: any;
|
|
138
|
-
|
|
127
|
+
multiple?: any;
|
|
139
128
|
dropStyle?: any;
|
|
140
|
-
|
|
129
|
+
shape?: any;
|
|
130
|
+
blank?: any;
|
|
131
|
+
showTips?: any;
|
|
132
|
+
delay?: any;
|
|
133
|
+
remote?: any;
|
|
134
|
+
remoteConfig?: any;
|
|
141
135
|
showCheck?: any;
|
|
142
136
|
showAlloption?: any;
|
|
143
|
-
showProportion?: any;
|
|
144
|
-
hideDrop?: any;
|
|
145
|
-
showOverflowTooltip?: any;
|
|
146
|
-
valueKey?: any;
|
|
147
137
|
noDataText?: any;
|
|
148
138
|
filterable?: any;
|
|
149
139
|
loadingText?: any;
|
|
150
140
|
noMatchText?: any;
|
|
151
141
|
allowCreate?: any;
|
|
152
142
|
collapseTags?: any;
|
|
143
|
+
remoteMethod?: any;
|
|
144
|
+
filterMethod?: any;
|
|
153
145
|
reserveKeyword?: any;
|
|
154
146
|
automaticDropdown?: any;
|
|
155
147
|
defaultFirstOption?: any;
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
148
|
+
valueKey?: any;
|
|
149
|
+
searchPlaceholder?: any;
|
|
150
|
+
multipleLimit?: any;
|
|
151
|
+
hideDrop?: any;
|
|
152
|
+
copyable?: any;
|
|
153
|
+
renderType?: any;
|
|
159
154
|
gridOp?: any;
|
|
155
|
+
treeOp?: any;
|
|
160
156
|
cacheOp?: any;
|
|
157
|
+
isDropInheritWidth?: any;
|
|
161
158
|
tagSelectable?: any;
|
|
162
159
|
selectConfig?: any;
|
|
163
160
|
radioConfig?: any;
|
|
@@ -168,45 +165,37 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
168
165
|
ignoreEnter?: any;
|
|
169
166
|
dropdownIcon?: any;
|
|
170
167
|
disabledTooltipContent?: any;
|
|
168
|
+
optimization?: any;
|
|
171
169
|
initQuery?: any;
|
|
172
170
|
extraQueryParams?: any;
|
|
173
171
|
updateDelay?: any;
|
|
174
|
-
|
|
172
|
+
closeByMask?: any;
|
|
173
|
+
showProportion?: any;
|
|
175
174
|
allText?: any;
|
|
175
|
+
showOverflowTooltip?: any;
|
|
176
|
+
showDropdown?: any;
|
|
177
|
+
expandTags?: any;
|
|
176
178
|
}>>> & {
|
|
177
179
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
178
180
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
179
181
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
180
|
-
|
|
182
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
183
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
181
184
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
185
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
186
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
182
187
|
"onDropdown-click"?: ((...args: any[]) => any) | undefined;
|
|
183
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
184
188
|
onHandleDropdownClick?: ((...args: any[]) => any) | undefined;
|
|
185
|
-
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
186
|
-
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
187
189
|
}, {
|
|
188
|
-
readonly
|
|
190
|
+
readonly name?: any;
|
|
189
191
|
readonly label?: any;
|
|
190
|
-
readonly title?: any;
|
|
191
192
|
readonly disabled?: any;
|
|
193
|
+
readonly size?: any;
|
|
194
|
+
readonly title?: any;
|
|
192
195
|
readonly id?: any;
|
|
193
196
|
readonly dataset?: any;
|
|
194
197
|
readonly options?: any;
|
|
195
|
-
readonly name?: any;
|
|
196
198
|
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
199
|
readonly placement?: any;
|
|
211
200
|
readonly tiny_mode?: any;
|
|
212
201
|
readonly tiny_mode_root?: any;
|
|
@@ -215,43 +204,52 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
215
204
|
readonly _constants?: any;
|
|
216
205
|
readonly tiny_theme?: any;
|
|
217
206
|
readonly tiny_chart_theme?: any;
|
|
207
|
+
readonly tiny_mcp_config?: any;
|
|
208
|
+
readonly modelValue?: any;
|
|
218
209
|
readonly tabindex?: any;
|
|
210
|
+
readonly popperClass?: any;
|
|
211
|
+
readonly popperAppendToBody?: any;
|
|
212
|
+
readonly textField?: any;
|
|
213
|
+
readonly tip?: any;
|
|
214
|
+
readonly valueField?: any;
|
|
215
|
+
readonly popperOptions?: any;
|
|
219
216
|
readonly readonly?: any;
|
|
220
217
|
readonly hoverExpand?: any;
|
|
221
218
|
readonly clearable?: any;
|
|
222
219
|
readonly autocomplete?: any;
|
|
223
220
|
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
221
|
readonly placeholder?: any;
|
|
232
|
-
readonly
|
|
222
|
+
readonly multiple?: any;
|
|
233
223
|
readonly dropStyle?: any;
|
|
234
|
-
readonly
|
|
224
|
+
readonly shape?: any;
|
|
225
|
+
readonly blank?: any;
|
|
226
|
+
readonly showTips?: any;
|
|
227
|
+
readonly delay?: any;
|
|
228
|
+
readonly remote?: any;
|
|
229
|
+
readonly remoteConfig?: any;
|
|
235
230
|
readonly showCheck?: any;
|
|
236
231
|
readonly showAlloption?: any;
|
|
237
|
-
readonly showProportion?: any;
|
|
238
|
-
readonly hideDrop?: any;
|
|
239
|
-
readonly showOverflowTooltip?: any;
|
|
240
|
-
readonly valueKey?: any;
|
|
241
232
|
readonly noDataText?: any;
|
|
242
233
|
readonly filterable?: any;
|
|
243
234
|
readonly loadingText?: any;
|
|
244
235
|
readonly noMatchText?: any;
|
|
245
236
|
readonly allowCreate?: any;
|
|
246
237
|
readonly collapseTags?: any;
|
|
238
|
+
readonly remoteMethod?: any;
|
|
239
|
+
readonly filterMethod?: any;
|
|
247
240
|
readonly reserveKeyword?: any;
|
|
248
241
|
readonly automaticDropdown?: any;
|
|
249
242
|
readonly defaultFirstOption?: any;
|
|
250
|
-
readonly
|
|
251
|
-
readonly
|
|
252
|
-
readonly
|
|
243
|
+
readonly valueKey?: any;
|
|
244
|
+
readonly searchPlaceholder?: any;
|
|
245
|
+
readonly multipleLimit?: any;
|
|
246
|
+
readonly hideDrop?: any;
|
|
247
|
+
readonly copyable?: any;
|
|
248
|
+
readonly renderType?: any;
|
|
253
249
|
readonly gridOp?: any;
|
|
250
|
+
readonly treeOp?: any;
|
|
254
251
|
readonly cacheOp?: any;
|
|
252
|
+
readonly isDropInheritWidth?: any;
|
|
255
253
|
readonly tagSelectable?: any;
|
|
256
254
|
readonly selectConfig?: any;
|
|
257
255
|
readonly radioConfig?: any;
|
|
@@ -262,10 +260,15 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
262
260
|
readonly ignoreEnter?: any;
|
|
263
261
|
readonly dropdownIcon?: any;
|
|
264
262
|
readonly disabledTooltipContent?: any;
|
|
263
|
+
readonly optimization?: any;
|
|
265
264
|
readonly initQuery?: any;
|
|
266
265
|
readonly extraQueryParams?: any;
|
|
267
266
|
readonly updateDelay?: any;
|
|
268
|
-
readonly
|
|
267
|
+
readonly closeByMask?: any;
|
|
268
|
+
readonly showProportion?: any;
|
|
269
269
|
readonly allText?: any;
|
|
270
|
+
readonly showOverflowTooltip?: any;
|
|
271
|
+
readonly showDropdown?: any;
|
|
272
|
+
readonly expandTags?: any;
|
|
270
273
|
}, {}>;
|
|
271
274
|
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,50 @@ 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
|
+
tiny_mcp_config?: any;
|
|
19
|
+
modelValue?: any;
|
|
29
20
|
tabindex?: any;
|
|
21
|
+
trim?: any;
|
|
22
|
+
popperClass?: any;
|
|
23
|
+
popperAppendToBody?: any;
|
|
24
|
+
textField?: any;
|
|
25
|
+
tip?: any;
|
|
26
|
+
valueField?: any;
|
|
27
|
+
popperOptions?: any;
|
|
30
28
|
readonly?: any;
|
|
31
29
|
hoverExpand?: any;
|
|
32
30
|
clearable?: any;
|
|
33
31
|
autocomplete?: any;
|
|
34
32
|
displayOnly?: any;
|
|
35
33
|
inputBoxType?: any;
|
|
36
|
-
isDropInheritWidth?: any;
|
|
37
|
-
popperOptions?: any;
|
|
38
|
-
popperClass?: any;
|
|
39
|
-
delay?: any;
|
|
40
|
-
tip?: any;
|
|
41
34
|
placeholder?: any;
|
|
42
|
-
|
|
35
|
+
multiple?: any;
|
|
43
36
|
dropStyle?: any;
|
|
44
|
-
|
|
37
|
+
shape?: any;
|
|
38
|
+
blank?: any;
|
|
39
|
+
showTips?: any;
|
|
40
|
+
delay?: any;
|
|
41
|
+
remote?: any;
|
|
42
|
+
remoteConfig?: any;
|
|
45
43
|
showCheck?: any;
|
|
46
44
|
showAlloption?: any;
|
|
47
|
-
showProportion?: any;
|
|
48
|
-
hideDrop?: any;
|
|
49
|
-
showOverflowTooltip?: any;
|
|
50
|
-
valueKey?: any;
|
|
51
45
|
noDataText?: any;
|
|
52
46
|
filterable?: any;
|
|
53
47
|
loadingText?: any;
|
|
54
48
|
noMatchText?: any;
|
|
55
49
|
allowCreate?: any;
|
|
56
50
|
collapseTags?: any;
|
|
51
|
+
remoteMethod?: any;
|
|
52
|
+
filterMethod?: any;
|
|
57
53
|
reserveKeyword?: any;
|
|
58
54
|
automaticDropdown?: any;
|
|
59
55
|
defaultFirstOption?: any;
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
56
|
+
valueKey?: any;
|
|
57
|
+
multipleLimit?: any;
|
|
58
|
+
hideDrop?: any;
|
|
59
|
+
copyable?: any;
|
|
63
60
|
cacheOp?: any;
|
|
61
|
+
isDropInheritWidth?: any;
|
|
64
62
|
tagSelectable?: any;
|
|
65
63
|
selectConfig?: any;
|
|
66
64
|
radioConfig?: any;
|
|
@@ -71,23 +69,26 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
71
69
|
ignoreEnter?: any;
|
|
72
70
|
dropdownIcon?: any;
|
|
73
71
|
disabledTooltipContent?: any;
|
|
72
|
+
optimization?: any;
|
|
74
73
|
initQuery?: any;
|
|
75
74
|
extraQueryParams?: any;
|
|
76
75
|
updateDelay?: any;
|
|
77
|
-
|
|
78
|
-
allText?: any;
|
|
79
|
-
trim?: any;
|
|
76
|
+
keepFocus?: any;
|
|
80
77
|
topCreate?: any;
|
|
81
78
|
topCreateText?: any;
|
|
82
|
-
keepFocus?: any;
|
|
83
79
|
searchable?: any;
|
|
84
80
|
showEmptyImage?: any;
|
|
85
81
|
tagType?: any;
|
|
86
82
|
clearNoMatchValue?: any;
|
|
87
83
|
showLimitText?: any;
|
|
84
|
+
showProportion?: any;
|
|
88
85
|
clickExpand?: any;
|
|
89
86
|
maxVisibleRows?: any;
|
|
87
|
+
allText?: any;
|
|
90
88
|
showAllTextTag?: any;
|
|
89
|
+
showOverflowTooltip?: any;
|
|
90
|
+
showDropdown?: any;
|
|
91
|
+
expandTags?: any;
|
|
91
92
|
}>, {
|
|
92
93
|
t: (this: any, path: any, options?: any) => any;
|
|
93
94
|
vm: any;
|
|
@@ -97,26 +98,15 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
97
98
|
dp: (props: any) => void;
|
|
98
99
|
gcls: (key: any) => any;
|
|
99
100
|
m: (...cssClasses: any[]) => string;
|
|
100
|
-
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("change" | "
|
|
101
|
-
|
|
101
|
+
}, 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<{
|
|
102
|
+
name?: any;
|
|
102
103
|
label?: any;
|
|
103
104
|
disabled?: any;
|
|
105
|
+
size?: any;
|
|
104
106
|
id?: any;
|
|
105
107
|
dataset?: any;
|
|
106
108
|
options?: any;
|
|
107
|
-
name?: any;
|
|
108
109
|
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
110
|
placement?: any;
|
|
121
111
|
tiny_mode?: any;
|
|
122
112
|
tiny_mode_root?: any;
|
|
@@ -125,41 +115,50 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
125
115
|
_constants?: any;
|
|
126
116
|
tiny_theme?: any;
|
|
127
117
|
tiny_chart_theme?: any;
|
|
118
|
+
tiny_mcp_config?: any;
|
|
119
|
+
modelValue?: any;
|
|
128
120
|
tabindex?: any;
|
|
121
|
+
trim?: any;
|
|
122
|
+
popperClass?: any;
|
|
123
|
+
popperAppendToBody?: any;
|
|
124
|
+
textField?: any;
|
|
125
|
+
tip?: any;
|
|
126
|
+
valueField?: any;
|
|
127
|
+
popperOptions?: any;
|
|
129
128
|
readonly?: any;
|
|
130
129
|
hoverExpand?: any;
|
|
131
130
|
clearable?: any;
|
|
132
131
|
autocomplete?: any;
|
|
133
132
|
displayOnly?: any;
|
|
134
133
|
inputBoxType?: any;
|
|
135
|
-
isDropInheritWidth?: any;
|
|
136
|
-
popperOptions?: any;
|
|
137
|
-
popperClass?: any;
|
|
138
|
-
delay?: any;
|
|
139
|
-
tip?: any;
|
|
140
134
|
placeholder?: any;
|
|
141
|
-
|
|
135
|
+
multiple?: any;
|
|
142
136
|
dropStyle?: any;
|
|
143
|
-
|
|
137
|
+
shape?: any;
|
|
138
|
+
blank?: any;
|
|
139
|
+
showTips?: any;
|
|
140
|
+
delay?: any;
|
|
141
|
+
remote?: any;
|
|
142
|
+
remoteConfig?: any;
|
|
144
143
|
showCheck?: any;
|
|
145
144
|
showAlloption?: any;
|
|
146
|
-
showProportion?: any;
|
|
147
|
-
hideDrop?: any;
|
|
148
|
-
showOverflowTooltip?: any;
|
|
149
|
-
valueKey?: any;
|
|
150
145
|
noDataText?: any;
|
|
151
146
|
filterable?: any;
|
|
152
147
|
loadingText?: any;
|
|
153
148
|
noMatchText?: any;
|
|
154
149
|
allowCreate?: any;
|
|
155
150
|
collapseTags?: any;
|
|
151
|
+
remoteMethod?: any;
|
|
152
|
+
filterMethod?: any;
|
|
156
153
|
reserveKeyword?: any;
|
|
157
154
|
automaticDropdown?: any;
|
|
158
155
|
defaultFirstOption?: any;
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
156
|
+
valueKey?: any;
|
|
157
|
+
multipleLimit?: any;
|
|
158
|
+
hideDrop?: any;
|
|
159
|
+
copyable?: any;
|
|
162
160
|
cacheOp?: any;
|
|
161
|
+
isDropInheritWidth?: any;
|
|
163
162
|
tagSelectable?: any;
|
|
164
163
|
selectConfig?: any;
|
|
165
164
|
radioConfig?: any;
|
|
@@ -170,54 +169,46 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
170
169
|
ignoreEnter?: any;
|
|
171
170
|
dropdownIcon?: any;
|
|
172
171
|
disabledTooltipContent?: any;
|
|
172
|
+
optimization?: any;
|
|
173
173
|
initQuery?: any;
|
|
174
174
|
extraQueryParams?: any;
|
|
175
175
|
updateDelay?: any;
|
|
176
|
-
|
|
177
|
-
allText?: any;
|
|
178
|
-
trim?: any;
|
|
176
|
+
keepFocus?: any;
|
|
179
177
|
topCreate?: any;
|
|
180
178
|
topCreateText?: any;
|
|
181
|
-
keepFocus?: any;
|
|
182
179
|
searchable?: any;
|
|
183
180
|
showEmptyImage?: any;
|
|
184
181
|
tagType?: any;
|
|
185
182
|
clearNoMatchValue?: any;
|
|
186
183
|
showLimitText?: any;
|
|
184
|
+
showProportion?: any;
|
|
187
185
|
clickExpand?: any;
|
|
188
186
|
maxVisibleRows?: any;
|
|
187
|
+
allText?: any;
|
|
189
188
|
showAllTextTag?: any;
|
|
189
|
+
showOverflowTooltip?: any;
|
|
190
|
+
showDropdown?: any;
|
|
191
|
+
expandTags?: any;
|
|
190
192
|
}>>> & {
|
|
191
193
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
192
194
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
193
195
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
196
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
197
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
194
198
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
199
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
195
200
|
"onDropdown-click"?: ((...args: any[]) => any) | undefined;
|
|
196
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
197
201
|
onHandleDropdownClick?: ((...args: any[]) => any) | undefined;
|
|
198
|
-
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
199
|
-
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
200
202
|
"onTop-create-click"?: ((...args: any[]) => any) | undefined;
|
|
201
203
|
}, {
|
|
202
|
-
readonly
|
|
204
|
+
readonly name?: any;
|
|
203
205
|
readonly label?: any;
|
|
204
206
|
readonly disabled?: any;
|
|
207
|
+
readonly size?: any;
|
|
205
208
|
readonly id?: any;
|
|
206
209
|
readonly dataset?: any;
|
|
207
210
|
readonly options?: any;
|
|
208
|
-
readonly name?: any;
|
|
209
211
|
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
212
|
readonly placement?: any;
|
|
222
213
|
readonly tiny_mode?: any;
|
|
223
214
|
readonly tiny_mode_root?: any;
|
|
@@ -226,41 +217,50 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
226
217
|
readonly _constants?: any;
|
|
227
218
|
readonly tiny_theme?: any;
|
|
228
219
|
readonly tiny_chart_theme?: any;
|
|
220
|
+
readonly tiny_mcp_config?: any;
|
|
221
|
+
readonly modelValue?: any;
|
|
229
222
|
readonly tabindex?: any;
|
|
223
|
+
readonly trim?: any;
|
|
224
|
+
readonly popperClass?: any;
|
|
225
|
+
readonly popperAppendToBody?: any;
|
|
226
|
+
readonly textField?: any;
|
|
227
|
+
readonly tip?: any;
|
|
228
|
+
readonly valueField?: any;
|
|
229
|
+
readonly popperOptions?: any;
|
|
230
230
|
readonly readonly?: any;
|
|
231
231
|
readonly hoverExpand?: any;
|
|
232
232
|
readonly clearable?: any;
|
|
233
233
|
readonly autocomplete?: any;
|
|
234
234
|
readonly displayOnly?: any;
|
|
235
235
|
readonly inputBoxType?: any;
|
|
236
|
-
readonly isDropInheritWidth?: any;
|
|
237
|
-
readonly popperOptions?: any;
|
|
238
|
-
readonly popperClass?: any;
|
|
239
|
-
readonly delay?: any;
|
|
240
|
-
readonly tip?: any;
|
|
241
236
|
readonly placeholder?: any;
|
|
242
|
-
readonly
|
|
237
|
+
readonly multiple?: any;
|
|
243
238
|
readonly dropStyle?: any;
|
|
244
|
-
readonly
|
|
239
|
+
readonly shape?: any;
|
|
240
|
+
readonly blank?: any;
|
|
241
|
+
readonly showTips?: any;
|
|
242
|
+
readonly delay?: any;
|
|
243
|
+
readonly remote?: any;
|
|
244
|
+
readonly remoteConfig?: any;
|
|
245
245
|
readonly showCheck?: any;
|
|
246
246
|
readonly showAlloption?: any;
|
|
247
|
-
readonly showProportion?: any;
|
|
248
|
-
readonly hideDrop?: any;
|
|
249
|
-
readonly showOverflowTooltip?: any;
|
|
250
|
-
readonly valueKey?: any;
|
|
251
247
|
readonly noDataText?: any;
|
|
252
248
|
readonly filterable?: any;
|
|
253
249
|
readonly loadingText?: any;
|
|
254
250
|
readonly noMatchText?: any;
|
|
255
251
|
readonly allowCreate?: any;
|
|
256
252
|
readonly collapseTags?: any;
|
|
253
|
+
readonly remoteMethod?: any;
|
|
254
|
+
readonly filterMethod?: any;
|
|
257
255
|
readonly reserveKeyword?: any;
|
|
258
256
|
readonly automaticDropdown?: any;
|
|
259
257
|
readonly defaultFirstOption?: any;
|
|
260
|
-
readonly
|
|
261
|
-
readonly
|
|
262
|
-
readonly
|
|
258
|
+
readonly valueKey?: any;
|
|
259
|
+
readonly multipleLimit?: any;
|
|
260
|
+
readonly hideDrop?: any;
|
|
261
|
+
readonly copyable?: any;
|
|
263
262
|
readonly cacheOp?: any;
|
|
263
|
+
readonly isDropInheritWidth?: any;
|
|
264
264
|
readonly tagSelectable?: any;
|
|
265
265
|
readonly selectConfig?: any;
|
|
266
266
|
readonly radioConfig?: any;
|
|
@@ -271,22 +271,25 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
271
271
|
readonly ignoreEnter?: any;
|
|
272
272
|
readonly dropdownIcon?: any;
|
|
273
273
|
readonly disabledTooltipContent?: any;
|
|
274
|
+
readonly optimization?: any;
|
|
274
275
|
readonly initQuery?: any;
|
|
275
276
|
readonly extraQueryParams?: any;
|
|
276
277
|
readonly updateDelay?: any;
|
|
277
|
-
readonly
|
|
278
|
-
readonly allText?: any;
|
|
279
|
-
readonly trim?: any;
|
|
278
|
+
readonly keepFocus?: any;
|
|
280
279
|
readonly topCreate?: any;
|
|
281
280
|
readonly topCreateText?: any;
|
|
282
|
-
readonly keepFocus?: any;
|
|
283
281
|
readonly searchable?: any;
|
|
284
282
|
readonly showEmptyImage?: any;
|
|
285
283
|
readonly tagType?: any;
|
|
286
284
|
readonly clearNoMatchValue?: any;
|
|
287
285
|
readonly showLimitText?: any;
|
|
286
|
+
readonly showProportion?: any;
|
|
288
287
|
readonly clickExpand?: any;
|
|
289
288
|
readonly maxVisibleRows?: any;
|
|
289
|
+
readonly allText?: any;
|
|
290
290
|
readonly showAllTextTag?: any;
|
|
291
|
+
readonly showOverflowTooltip?: any;
|
|
292
|
+
readonly showDropdown?: any;
|
|
293
|
+
readonly expandTags?: any;
|
|
291
294
|
}, {}>;
|
|
292
295
|
export default _default;
|