@opentinyvue/vue-cascader 3.21.0 → 3.22.1
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 +6 -2
- package/lib/mobile-first.js +2 -2
- package/lib/pc.js +4 -5
- package/package.json +14 -14
- package/src/index.d.ts +13 -0
- package/src/mobile-first.vue.d.ts +15 -14
- package/src/pc-first.vue.d.ts +11 -11
- package/src/pc.vue.d.ts +14 -11
package/lib/index.js
CHANGED
|
@@ -7,7 +7,7 @@ function _extends() {
|
|
|
7
7
|
return n;
|
|
8
8
|
}, _extends.apply(null, arguments);
|
|
9
9
|
}
|
|
10
|
-
import { defineComponent, $
|
|
10
|
+
import { defineComponent, $props, $setup, $prefix } from "@opentinyvue/vue-common";
|
|
11
11
|
import PcTemplate from "./pc.js";
|
|
12
12
|
import MobileFirstTemplate from "./mobile-first.js";
|
|
13
13
|
import { t } from "@opentinyvue/vue-locale";
|
|
@@ -118,6 +118,10 @@ var cascaderProps = _extends({}, $props, {
|
|
|
118
118
|
blank: {
|
|
119
119
|
type: Boolean,
|
|
120
120
|
default: false
|
|
121
|
+
},
|
|
122
|
+
changeCompat: {
|
|
123
|
+
type: Boolean,
|
|
124
|
+
default: false
|
|
121
125
|
}
|
|
122
126
|
});
|
|
123
127
|
var Cascader = defineComponent({
|
|
@@ -132,7 +136,7 @@ var Cascader = defineComponent({
|
|
|
132
136
|
});
|
|
133
137
|
}
|
|
134
138
|
});
|
|
135
|
-
var version = "3.
|
|
139
|
+
var version = "3.undefined";
|
|
136
140
|
Cascader.model = {
|
|
137
141
|
prop: "modelValue",
|
|
138
142
|
event: "update:modelValue"
|
package/lib/mobile-first.js
CHANGED
|
@@ -3,7 +3,7 @@ import Input from '@opentinyvue/vue-input';
|
|
|
3
3
|
import { IconClose, IconChevronDown, IconChevronUp, IconYes, IconChevronRight } from '@opentinyvue/vue-icon';
|
|
4
4
|
import CascaderMobile from '@opentinyvue/vue-cascader-mobile';
|
|
5
5
|
import { renderless, api } from '@opentinyvue/vue-renderless/cascader/vue';
|
|
6
|
-
import Clickoutside from '@opentinyvue/vue-
|
|
6
|
+
import { Clickoutside } from '@opentinyvue/vue-directive';
|
|
7
7
|
import Scrollbar from '@opentinyvue/vue-scrollbar';
|
|
8
8
|
import CascaderPanel from '@opentinyvue/vue-cascader-panel';
|
|
9
9
|
import Tooltip from '@opentinyvue/vue-tooltip';
|
|
@@ -311,7 +311,7 @@ var _sfc_main = defineComponent({
|
|
|
311
311
|
TinyInput: Input,
|
|
312
312
|
IconChevronRight: IconChevronRight()
|
|
313
313
|
},
|
|
314
|
-
emits: ["update:modelValue", "change", "visible-change", "focus", "blur", "expand-change", "active-item-change", "remove-tag", "created"],
|
|
314
|
+
emits: ["update:modelValue", "change", "visible-change", "focus", "blur", "expand-change", "active-item-change", "remove-tag", "created", "changeCompat"],
|
|
315
315
|
setup: function setup2(props2, ctx) {
|
|
316
316
|
var bp = useBreakpoint().current;
|
|
317
317
|
var visible = hooks.ref(false);
|
package/lib/pc.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { renderless, api } from '@opentinyvue/vue-renderless/cascader/vue';
|
|
2
2
|
import { defineComponent, props, directive, setup } from '@opentinyvue/vue-common';
|
|
3
|
-
import Clickoutside from '@opentinyvue/vue-
|
|
4
|
-
import { HighlightQuery } from '@opentinyvue/vue-directive';
|
|
3
|
+
import { Clickoutside, HighlightQuery } from '@opentinyvue/vue-directive';
|
|
5
4
|
import Input from '@opentinyvue/vue-input';
|
|
6
5
|
import Tag from '@opentinyvue/vue-tag';
|
|
7
6
|
import Scrollbar from '@opentinyvue/vue-scrollbar';
|
|
@@ -55,7 +54,7 @@ function _extends() {
|
|
|
55
54
|
}, _extends.apply(null, arguments);
|
|
56
55
|
}
|
|
57
56
|
var _sfc_main = defineComponent({
|
|
58
|
-
props: [].concat(props, ["modelValue", "options", "props", "size", "placeholder", "disabled", "clearable", "filterable", "filterMethod", "separator", "showAllLevels", "collapseTags", "debounce", "beforeFilter", "popperClass", "placement", "popperOptions", "visibleArrow", "offset", "boundariesPadding", "arrowOffset", "popperAppendToBody", "autoSize", "displayOnly", "shape", "label", "tip", "hoverExpand", "blank"]),
|
|
57
|
+
props: [].concat(props, ["modelValue", "options", "props", "size", "placeholder", "disabled", "clearable", "filterable", "filterMethod", "separator", "showAllLevels", "collapseTags", "debounce", "beforeFilter", "popperClass", "placement", "popperOptions", "visibleArrow", "offset", "boundariesPadding", "arrowOffset", "popperAppendToBody", "autoSize", "displayOnly", "shape", "label", "tip", "hoverExpand", "blank", "changeCompat"]),
|
|
59
58
|
emits: ["update:modelValue", "change", "visible-change", "focus", "blur", "expand-change", "active-item-change", "remove-tag", "created"],
|
|
60
59
|
directives: _extends({}, directive({
|
|
61
60
|
Clickoutside
|
|
@@ -153,9 +152,9 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
153
152
|
}, null, 8, ["show-close", "placeholder", "disabled", "label", "tip", "value", "drop-down-visible", "blank"])) : createCommentVNode("v-if", true), createElementVNode("div", _hoisted_1, [_ctx.shape !== "filter" ? (openBlock(), createBlock(_component_tiny_input, {
|
|
154
153
|
key: 0,
|
|
155
154
|
ref: "input",
|
|
156
|
-
"model-value": _ctx.state.multiple
|
|
155
|
+
"model-value": _ctx.state.multiple && _ctx.filterable ? "" : _ctx.state.inputValues,
|
|
157
156
|
size: _ctx.state.realSize,
|
|
158
|
-
placeholder: _ctx.state.placeholder,
|
|
157
|
+
placeholder: _ctx.state.multiple && _ctx.filterable ? "" : _ctx.state.placeholder,
|
|
159
158
|
readonly: _ctx.state.readonly,
|
|
160
159
|
disabled: _ctx.state.isDisabled,
|
|
161
160
|
"display-only": _ctx.displayOnly,
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-cascader",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.22.1",
|
|
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-cascader-mobile": "~3.
|
|
12
|
-
"@opentinyvue/vue-cascader-panel": "~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-renderless": "~3.
|
|
20
|
-
"@opentinyvue/vue-scrollbar": "~3.
|
|
21
|
-
"@opentinyvue/vue-tag": "~3.
|
|
22
|
-
"@opentinyvue/vue-theme": "~3.
|
|
23
|
-
"@opentinyvue/vue-tooltip": "~3.
|
|
11
|
+
"@opentinyvue/vue-cascader-mobile": "~3.22.0",
|
|
12
|
+
"@opentinyvue/vue-cascader-panel": "~3.22.0",
|
|
13
|
+
"@opentinyvue/vue-common": "~3.22.0",
|
|
14
|
+
"@opentinyvue/vue-directive": "~3.22.0",
|
|
15
|
+
"@opentinyvue/vue-filter-box": "~3.22.0",
|
|
16
|
+
"@opentinyvue/vue-icon": "~3.22.0",
|
|
17
|
+
"@opentinyvue/vue-input": "~3.22.0",
|
|
18
|
+
"@opentinyvue/vue-locale": "~3.22.0",
|
|
19
|
+
"@opentinyvue/vue-renderless": "~3.22.0",
|
|
20
|
+
"@opentinyvue/vue-scrollbar": "~3.22.0",
|
|
21
|
+
"@opentinyvue/vue-tag": "~3.22.0",
|
|
22
|
+
"@opentinyvue/vue-theme": "~3.22.0",
|
|
23
|
+
"@opentinyvue/vue-tooltip": "~3.22.0"
|
|
24
24
|
},
|
|
25
25
|
"types": "index.d.ts",
|
|
26
26
|
"scripts": {
|
package/src/index.d.ts
CHANGED
|
@@ -85,6 +85,10 @@ export declare const cascaderProps: {
|
|
|
85
85
|
type: BooleanConstructor;
|
|
86
86
|
default: boolean;
|
|
87
87
|
};
|
|
88
|
+
changeCompat: {
|
|
89
|
+
type: BooleanConstructor;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
88
92
|
tiny_mode: StringConstructor;
|
|
89
93
|
tiny_mode_root: BooleanConstructor;
|
|
90
94
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
@@ -179,6 +183,10 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
179
183
|
type: BooleanConstructor;
|
|
180
184
|
default: boolean;
|
|
181
185
|
};
|
|
186
|
+
changeCompat: {
|
|
187
|
+
type: BooleanConstructor;
|
|
188
|
+
default: boolean;
|
|
189
|
+
};
|
|
182
190
|
tiny_mode: StringConstructor;
|
|
183
191
|
tiny_mode_root: BooleanConstructor;
|
|
184
192
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
@@ -274,6 +282,10 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
274
282
|
type: BooleanConstructor;
|
|
275
283
|
default: boolean;
|
|
276
284
|
};
|
|
285
|
+
changeCompat: {
|
|
286
|
+
type: BooleanConstructor;
|
|
287
|
+
default: boolean;
|
|
288
|
+
};
|
|
277
289
|
tiny_mode: StringConstructor;
|
|
278
290
|
tiny_mode_root: BooleanConstructor;
|
|
279
291
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
@@ -292,6 +304,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
292
304
|
displayOnly: boolean;
|
|
293
305
|
placeholder: string;
|
|
294
306
|
blank: boolean;
|
|
307
|
+
changeCompat: boolean;
|
|
295
308
|
filterable: boolean;
|
|
296
309
|
collapseTags: boolean;
|
|
297
310
|
debounce: number;
|
|
@@ -3,8 +3,11 @@ declare const _default: hooks.DefineComponent<Readonly<{
|
|
|
3
3
|
props?: any;
|
|
4
4
|
label?: any;
|
|
5
5
|
disabled?: any;
|
|
6
|
-
title?: any;
|
|
7
6
|
size?: any;
|
|
7
|
+
title?: any;
|
|
8
|
+
options?: any;
|
|
9
|
+
offset?: any;
|
|
10
|
+
placement?: any;
|
|
8
11
|
tiny_mode?: any;
|
|
9
12
|
tiny_mode_root?: any;
|
|
10
13
|
tiny_template?: any;
|
|
@@ -15,13 +18,10 @@ declare const _default: hooks.DefineComponent<Readonly<{
|
|
|
15
18
|
modelValue?: any;
|
|
16
19
|
visibleArrow?: any;
|
|
17
20
|
arrowOffset?: any;
|
|
18
|
-
placement?: any;
|
|
19
21
|
popperClass?: any;
|
|
20
22
|
popperAppendToBody?: any;
|
|
21
|
-
options?: any;
|
|
22
23
|
tip?: any;
|
|
23
24
|
showHeader?: any;
|
|
24
|
-
offset?: any;
|
|
25
25
|
boundariesPadding?: any;
|
|
26
26
|
popperOptions?: any;
|
|
27
27
|
hoverExpand?: any;
|
|
@@ -77,12 +77,15 @@ declare const _default: hooks.DefineComponent<Readonly<{
|
|
|
77
77
|
}>;
|
|
78
78
|
updateValue: (value: any) => void;
|
|
79
79
|
updateText: (value: any) => void;
|
|
80
|
-
}, unknown, {}, {}, hooks.ComponentOptionsMixin, hooks.ComponentOptionsMixin, ("visible-change" | "
|
|
80
|
+
}, unknown, {}, {}, hooks.ComponentOptionsMixin, hooks.ComponentOptionsMixin, ("visible-change" | "change" | "blur" | "focus" | "created" | "update:modelValue" | "changeCompat" | "remove-tag" | "expand-change" | "active-item-change")[], "visible-change" | "change" | "blur" | "focus" | "created" | "update:modelValue" | "changeCompat" | "remove-tag" | "expand-change" | "active-item-change", hooks.PublicProps, Readonly<hooks.ExtractPropTypes<Readonly<{
|
|
81
81
|
props?: any;
|
|
82
82
|
label?: any;
|
|
83
83
|
disabled?: any;
|
|
84
|
-
title?: any;
|
|
85
84
|
size?: any;
|
|
85
|
+
title?: any;
|
|
86
|
+
options?: any;
|
|
87
|
+
offset?: any;
|
|
88
|
+
placement?: any;
|
|
86
89
|
tiny_mode?: any;
|
|
87
90
|
tiny_mode_root?: any;
|
|
88
91
|
tiny_template?: any;
|
|
@@ -93,13 +96,10 @@ declare const _default: hooks.DefineComponent<Readonly<{
|
|
|
93
96
|
modelValue?: any;
|
|
94
97
|
visibleArrow?: any;
|
|
95
98
|
arrowOffset?: any;
|
|
96
|
-
placement?: any;
|
|
97
99
|
popperClass?: any;
|
|
98
100
|
popperAppendToBody?: any;
|
|
99
|
-
options?: any;
|
|
100
101
|
tip?: any;
|
|
101
102
|
showHeader?: any;
|
|
102
|
-
offset?: any;
|
|
103
103
|
boundariesPadding?: any;
|
|
104
104
|
popperOptions?: any;
|
|
105
105
|
hoverExpand?: any;
|
|
@@ -117,8 +117,8 @@ declare const _default: hooks.DefineComponent<Readonly<{
|
|
|
117
117
|
autoSize?: any;
|
|
118
118
|
levelTitle?: any;
|
|
119
119
|
}>>> & {
|
|
120
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
121
120
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
121
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
122
122
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
123
123
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
124
124
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -126,12 +126,16 @@ declare const _default: hooks.DefineComponent<Readonly<{
|
|
|
126
126
|
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
127
127
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
128
128
|
"onActive-item-change"?: ((...args: any[]) => any) | undefined;
|
|
129
|
+
onChangeCompat?: ((...args: any[]) => any) | undefined;
|
|
129
130
|
}, {
|
|
130
131
|
readonly props?: any;
|
|
131
132
|
readonly label?: any;
|
|
132
133
|
readonly disabled?: any;
|
|
133
|
-
readonly title?: any;
|
|
134
134
|
readonly size?: any;
|
|
135
|
+
readonly title?: any;
|
|
136
|
+
readonly options?: any;
|
|
137
|
+
readonly offset?: any;
|
|
138
|
+
readonly placement?: any;
|
|
135
139
|
readonly tiny_mode?: any;
|
|
136
140
|
readonly tiny_mode_root?: any;
|
|
137
141
|
readonly tiny_template?: any;
|
|
@@ -142,13 +146,10 @@ declare const _default: hooks.DefineComponent<Readonly<{
|
|
|
142
146
|
readonly modelValue?: any;
|
|
143
147
|
readonly visibleArrow?: any;
|
|
144
148
|
readonly arrowOffset?: any;
|
|
145
|
-
readonly placement?: any;
|
|
146
149
|
readonly popperClass?: any;
|
|
147
150
|
readonly popperAppendToBody?: any;
|
|
148
|
-
readonly options?: any;
|
|
149
151
|
readonly tip?: any;
|
|
150
152
|
readonly showHeader?: any;
|
|
151
|
-
readonly offset?: any;
|
|
152
153
|
readonly boundariesPadding?: any;
|
|
153
154
|
readonly popperOptions?: any;
|
|
154
155
|
readonly hoverExpand?: any;
|
package/src/pc-first.vue.d.ts
CHANGED
|
@@ -3,6 +3,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
3
3
|
label?: any;
|
|
4
4
|
disabled?: any;
|
|
5
5
|
size?: any;
|
|
6
|
+
options?: any;
|
|
7
|
+
offset?: any;
|
|
8
|
+
placement?: any;
|
|
6
9
|
tiny_mode?: any;
|
|
7
10
|
tiny_mode_root?: any;
|
|
8
11
|
tiny_template?: any;
|
|
@@ -13,12 +16,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
13
16
|
modelValue?: any;
|
|
14
17
|
visibleArrow?: any;
|
|
15
18
|
arrowOffset?: any;
|
|
16
|
-
placement?: any;
|
|
17
19
|
popperClass?: any;
|
|
18
20
|
popperAppendToBody?: any;
|
|
19
|
-
options?: any;
|
|
20
21
|
tip?: any;
|
|
21
|
-
offset?: any;
|
|
22
22
|
boundariesPadding?: any;
|
|
23
23
|
popperOptions?: any;
|
|
24
24
|
hoverExpand?: any;
|
|
@@ -43,11 +43,14 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
43
43
|
dp: (props: any) => void;
|
|
44
44
|
gcls: (key: any) => any;
|
|
45
45
|
m: (...cssClasses: any[]) => string;
|
|
46
|
-
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible-change" | "
|
|
46
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible-change" | "change" | "blur" | "focus" | "created" | "update:modelValue" | "remove-tag" | "expand-change" | "active-item-change")[], "visible-change" | "change" | "blur" | "focus" | "created" | "update:modelValue" | "remove-tag" | "expand-change" | "active-item-change", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
47
47
|
props?: any;
|
|
48
48
|
label?: any;
|
|
49
49
|
disabled?: any;
|
|
50
50
|
size?: any;
|
|
51
|
+
options?: any;
|
|
52
|
+
offset?: any;
|
|
53
|
+
placement?: any;
|
|
51
54
|
tiny_mode?: any;
|
|
52
55
|
tiny_mode_root?: any;
|
|
53
56
|
tiny_template?: any;
|
|
@@ -58,12 +61,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
58
61
|
modelValue?: any;
|
|
59
62
|
visibleArrow?: any;
|
|
60
63
|
arrowOffset?: any;
|
|
61
|
-
placement?: any;
|
|
62
64
|
popperClass?: any;
|
|
63
65
|
popperAppendToBody?: any;
|
|
64
|
-
options?: any;
|
|
65
66
|
tip?: any;
|
|
66
|
-
offset?: any;
|
|
67
67
|
boundariesPadding?: any;
|
|
68
68
|
popperOptions?: any;
|
|
69
69
|
hoverExpand?: any;
|
|
@@ -80,8 +80,8 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
80
80
|
beforeFilter?: any;
|
|
81
81
|
autoSize?: any;
|
|
82
82
|
}>>> & {
|
|
83
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
84
83
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
84
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
85
85
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
86
86
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
87
87
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -94,6 +94,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
94
94
|
readonly label?: any;
|
|
95
95
|
readonly disabled?: any;
|
|
96
96
|
readonly size?: any;
|
|
97
|
+
readonly options?: any;
|
|
98
|
+
readonly offset?: any;
|
|
99
|
+
readonly placement?: any;
|
|
97
100
|
readonly tiny_mode?: any;
|
|
98
101
|
readonly tiny_mode_root?: any;
|
|
99
102
|
readonly tiny_template?: any;
|
|
@@ -104,12 +107,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
104
107
|
readonly modelValue?: any;
|
|
105
108
|
readonly visibleArrow?: any;
|
|
106
109
|
readonly arrowOffset?: any;
|
|
107
|
-
readonly placement?: any;
|
|
108
110
|
readonly popperClass?: any;
|
|
109
111
|
readonly popperAppendToBody?: any;
|
|
110
|
-
readonly options?: any;
|
|
111
112
|
readonly tip?: any;
|
|
112
|
-
readonly offset?: any;
|
|
113
113
|
readonly boundariesPadding?: any;
|
|
114
114
|
readonly popperOptions?: any;
|
|
115
115
|
readonly hoverExpand?: any;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -3,6 +3,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
3
3
|
label?: any;
|
|
4
4
|
disabled?: any;
|
|
5
5
|
size?: any;
|
|
6
|
+
options?: any;
|
|
7
|
+
offset?: any;
|
|
8
|
+
placement?: any;
|
|
6
9
|
tiny_mode?: any;
|
|
7
10
|
tiny_mode_root?: any;
|
|
8
11
|
tiny_template?: any;
|
|
@@ -13,12 +16,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
13
16
|
modelValue?: any;
|
|
14
17
|
visibleArrow?: any;
|
|
15
18
|
arrowOffset?: any;
|
|
16
|
-
placement?: any;
|
|
17
19
|
popperClass?: any;
|
|
18
20
|
popperAppendToBody?: any;
|
|
19
|
-
options?: any;
|
|
20
21
|
tip?: any;
|
|
21
|
-
offset?: any;
|
|
22
22
|
boundariesPadding?: any;
|
|
23
23
|
popperOptions?: any;
|
|
24
24
|
hoverExpand?: any;
|
|
@@ -27,6 +27,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
27
27
|
placeholder?: any;
|
|
28
28
|
shape?: any;
|
|
29
29
|
blank?: any;
|
|
30
|
+
changeCompat?: any;
|
|
30
31
|
filterable?: any;
|
|
31
32
|
collapseTags?: any;
|
|
32
33
|
filterMethod?: any;
|
|
@@ -44,11 +45,14 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
44
45
|
dp: (props: any) => void;
|
|
45
46
|
gcls: (key: any) => any;
|
|
46
47
|
m: (...cssClasses: any[]) => string;
|
|
47
|
-
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible-change" | "
|
|
48
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible-change" | "change" | "blur" | "focus" | "created" | "update:modelValue" | "remove-tag" | "expand-change" | "active-item-change")[], "visible-change" | "change" | "blur" | "focus" | "created" | "update:modelValue" | "remove-tag" | "expand-change" | "active-item-change", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
48
49
|
props?: any;
|
|
49
50
|
label?: any;
|
|
50
51
|
disabled?: any;
|
|
51
52
|
size?: any;
|
|
53
|
+
options?: any;
|
|
54
|
+
offset?: any;
|
|
55
|
+
placement?: any;
|
|
52
56
|
tiny_mode?: any;
|
|
53
57
|
tiny_mode_root?: any;
|
|
54
58
|
tiny_template?: any;
|
|
@@ -59,12 +63,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
59
63
|
modelValue?: any;
|
|
60
64
|
visibleArrow?: any;
|
|
61
65
|
arrowOffset?: any;
|
|
62
|
-
placement?: any;
|
|
63
66
|
popperClass?: any;
|
|
64
67
|
popperAppendToBody?: any;
|
|
65
|
-
options?: any;
|
|
66
68
|
tip?: any;
|
|
67
|
-
offset?: any;
|
|
68
69
|
boundariesPadding?: any;
|
|
69
70
|
popperOptions?: any;
|
|
70
71
|
hoverExpand?: any;
|
|
@@ -73,6 +74,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
73
74
|
placeholder?: any;
|
|
74
75
|
shape?: any;
|
|
75
76
|
blank?: any;
|
|
77
|
+
changeCompat?: any;
|
|
76
78
|
filterable?: any;
|
|
77
79
|
collapseTags?: any;
|
|
78
80
|
filterMethod?: any;
|
|
@@ -82,8 +84,8 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
82
84
|
beforeFilter?: any;
|
|
83
85
|
autoSize?: any;
|
|
84
86
|
}>>> & {
|
|
85
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
86
87
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
87
89
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
88
90
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
89
91
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -96,6 +98,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
96
98
|
readonly label?: any;
|
|
97
99
|
readonly disabled?: any;
|
|
98
100
|
readonly size?: any;
|
|
101
|
+
readonly options?: any;
|
|
102
|
+
readonly offset?: any;
|
|
103
|
+
readonly placement?: any;
|
|
99
104
|
readonly tiny_mode?: any;
|
|
100
105
|
readonly tiny_mode_root?: any;
|
|
101
106
|
readonly tiny_template?: any;
|
|
@@ -106,12 +111,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
106
111
|
readonly modelValue?: any;
|
|
107
112
|
readonly visibleArrow?: any;
|
|
108
113
|
readonly arrowOffset?: any;
|
|
109
|
-
readonly placement?: any;
|
|
110
114
|
readonly popperClass?: any;
|
|
111
115
|
readonly popperAppendToBody?: any;
|
|
112
|
-
readonly options?: any;
|
|
113
116
|
readonly tip?: any;
|
|
114
|
-
readonly offset?: any;
|
|
115
117
|
readonly boundariesPadding?: any;
|
|
116
118
|
readonly popperOptions?: any;
|
|
117
119
|
readonly hoverExpand?: any;
|
|
@@ -120,6 +122,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
120
122
|
readonly placeholder?: any;
|
|
121
123
|
readonly shape?: any;
|
|
122
124
|
readonly blank?: any;
|
|
125
|
+
readonly changeCompat?: any;
|
|
123
126
|
readonly filterable?: any;
|
|
124
127
|
readonly collapseTags?: any;
|
|
125
128
|
readonly filterMethod?: any;
|