@opentinyvue/vue-autocomplete 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 +2 -2
- package/lib/pc.js +1 -1
- package/package.json +8 -7
- package/src/index.d.ts +1 -1
- package/src/pc.vue.d.ts +4 -4
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 "@opentinyvue/vue-theme/autocomplete/index.css";
|
|
13
13
|
var template = function template2(mode) {
|
|
@@ -110,7 +110,7 @@ var Autocomplete = defineComponent({
|
|
|
110
110
|
});
|
|
111
111
|
}
|
|
112
112
|
});
|
|
113
|
-
var version = "3.
|
|
113
|
+
var version = "3.undefined";
|
|
114
114
|
Autocomplete.model = {
|
|
115
115
|
prop: "modelValue",
|
|
116
116
|
event: "update:modelValue"
|
package/lib/pc.js
CHANGED
|
@@ -2,7 +2,7 @@ import { renderless, api } from '@opentinyvue/vue-renderless/autocomplete/vue';
|
|
|
2
2
|
import { defineComponent, directive, props, setup } from '@opentinyvue/vue-common';
|
|
3
3
|
import Scrollbar from '@opentinyvue/vue-scrollbar';
|
|
4
4
|
import Input from '@opentinyvue/vue-input';
|
|
5
|
-
import Clickoutside from '@opentinyvue/vue-
|
|
5
|
+
import { Clickoutside } from '@opentinyvue/vue-directive';
|
|
6
6
|
import { IconLoadingShadow } from '@opentinyvue/vue-icon';
|
|
7
7
|
import { resolveComponent, resolveDirective, withDirectives, openBlock, createElementBlock, normalizeClass, createBlock, mergeProps, withKeys, withModifiers, createSlots, withCtx, renderSlot, createVNode, Transition, createElementVNode, normalizeStyle, Fragment, renderList, createTextVNode, toDisplayString, vShow } from 'vue';
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-autocomplete",
|
|
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-common": "~3.
|
|
12
|
-
"@opentinyvue/vue-
|
|
13
|
-
"@opentinyvue/vue-
|
|
14
|
-
"@opentinyvue/vue-
|
|
15
|
-
"@opentinyvue/vue-
|
|
16
|
-
"@opentinyvue/vue-
|
|
11
|
+
"@opentinyvue/vue-common": "~3.22.0",
|
|
12
|
+
"@opentinyvue/vue-directive": "~3.22.0",
|
|
13
|
+
"@opentinyvue/vue-icon": "~3.22.0",
|
|
14
|
+
"@opentinyvue/vue-input": "~3.22.0",
|
|
15
|
+
"@opentinyvue/vue-renderless": "~3.22.0",
|
|
16
|
+
"@opentinyvue/vue-scrollbar": "~3.22.0",
|
|
17
|
+
"@opentinyvue/vue-theme": "~3.22.0"
|
|
17
18
|
},
|
|
18
19
|
"types": "index.d.ts",
|
|
19
20
|
"scripts": {
|
package/src/index.d.ts
CHANGED
|
@@ -213,9 +213,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
213
213
|
tiny_chart_theme: ObjectConstructor;
|
|
214
214
|
}>>, {
|
|
215
215
|
disabled: boolean;
|
|
216
|
+
placement: string;
|
|
216
217
|
tiny_mode_root: boolean;
|
|
217
218
|
_constants: Record<string, any>;
|
|
218
|
-
placement: string;
|
|
219
219
|
popperAppendToBody: boolean;
|
|
220
220
|
autofocus: boolean;
|
|
221
221
|
clearable: boolean;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
3
3
|
label?: any;
|
|
4
4
|
disabled?: any;
|
|
5
5
|
size?: any;
|
|
6
|
+
placement?: any;
|
|
6
7
|
tiny_mode?: any;
|
|
7
8
|
tiny_mode_root?: any;
|
|
8
9
|
tiny_template?: any;
|
|
@@ -13,7 +14,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
13
14
|
modelValue?: any;
|
|
14
15
|
tabindex?: any;
|
|
15
16
|
suffixIcon?: any;
|
|
16
|
-
placement?: any;
|
|
17
17
|
popperClass?: any;
|
|
18
18
|
popperAppendToBody?: any;
|
|
19
19
|
autofocus?: any;
|
|
@@ -42,11 +42,12 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
42
42
|
dp: (props: any) => void;
|
|
43
43
|
gcls: (key: any) => any;
|
|
44
44
|
m: (...cssClasses: any[]) => string;
|
|
45
|
-
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("select" | "blur" | "focus" | "clear" | "
|
|
45
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("select" | "blur" | "focus" | "clear" | "created" | "update:modelValue")[], "select" | "blur" | "focus" | "clear" | "created" | "update:modelValue", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
46
46
|
name?: any;
|
|
47
47
|
label?: any;
|
|
48
48
|
disabled?: any;
|
|
49
49
|
size?: any;
|
|
50
|
+
placement?: any;
|
|
50
51
|
tiny_mode?: any;
|
|
51
52
|
tiny_mode_root?: any;
|
|
52
53
|
tiny_template?: any;
|
|
@@ -57,7 +58,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
57
58
|
modelValue?: any;
|
|
58
59
|
tabindex?: any;
|
|
59
60
|
suffixIcon?: any;
|
|
60
|
-
placement?: any;
|
|
61
61
|
popperClass?: any;
|
|
62
62
|
popperAppendToBody?: any;
|
|
63
63
|
autofocus?: any;
|
|
@@ -89,6 +89,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
89
89
|
readonly label?: any;
|
|
90
90
|
readonly disabled?: any;
|
|
91
91
|
readonly size?: any;
|
|
92
|
+
readonly placement?: any;
|
|
92
93
|
readonly tiny_mode?: any;
|
|
93
94
|
readonly tiny_mode_root?: any;
|
|
94
95
|
readonly tiny_template?: any;
|
|
@@ -99,7 +100,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
99
100
|
readonly modelValue?: any;
|
|
100
101
|
readonly tabindex?: any;
|
|
101
102
|
readonly suffixIcon?: any;
|
|
102
|
-
readonly placement?: any;
|
|
103
103
|
readonly popperClass?: any;
|
|
104
104
|
readonly popperAppendToBody?: any;
|
|
105
105
|
readonly autofocus?: any;
|