@opentinyvue/vue-autocomplete 3.23.0 → 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/index.js +1 -1
- package/package.json +8 -8
- package/src/index.d.ts +3 -0
- package/src/pc.vue.d.ts +3 -0
package/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-autocomplete",
|
|
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-common": "~3.
|
|
12
|
-
"@opentinyvue/vue-directive": "~3.
|
|
13
|
-
"@opentinyvue/vue-icon": "~3.
|
|
14
|
-
"@opentinyvue/vue-input": "~3.
|
|
15
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
16
|
-
"@opentinyvue/vue-scrollbar": "~3.
|
|
17
|
-
"@opentinyvue/vue-theme": "~3.
|
|
11
|
+
"@opentinyvue/vue-common": "~3.24.0",
|
|
12
|
+
"@opentinyvue/vue-directive": "~3.24.0",
|
|
13
|
+
"@opentinyvue/vue-icon": "~3.24.0",
|
|
14
|
+
"@opentinyvue/vue-input": "~3.24.0",
|
|
15
|
+
"@opentinyvue/vue-renderless": "~3.24.0",
|
|
16
|
+
"@opentinyvue/vue-scrollbar": "~3.24.0",
|
|
17
|
+
"@opentinyvue/vue-theme": "~3.24.0"
|
|
18
18
|
},
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"scripts": {
|
package/src/index.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ export declare const autoCompleteProps: {
|
|
|
67
67
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
68
68
|
tiny_renderless: FunctionConstructor;
|
|
69
69
|
tiny_theme: StringConstructor;
|
|
70
|
+
tiny_mcp_config: ObjectConstructor;
|
|
70
71
|
tiny_chart_theme: ObjectConstructor;
|
|
71
72
|
};
|
|
72
73
|
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
@@ -138,6 +139,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
138
139
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
139
140
|
tiny_renderless: FunctionConstructor;
|
|
140
141
|
tiny_theme: StringConstructor;
|
|
142
|
+
tiny_mcp_config: ObjectConstructor;
|
|
141
143
|
tiny_chart_theme: ObjectConstructor;
|
|
142
144
|
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
143
145
|
[key: string]: any;
|
|
@@ -210,6 +212,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
210
212
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
211
213
|
tiny_renderless: FunctionConstructor;
|
|
212
214
|
tiny_theme: StringConstructor;
|
|
215
|
+
tiny_mcp_config: ObjectConstructor;
|
|
213
216
|
tiny_chart_theme: ObjectConstructor;
|
|
214
217
|
}>>, {
|
|
215
218
|
disabled: boolean;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
11
11
|
_constants?: any;
|
|
12
12
|
tiny_theme?: any;
|
|
13
13
|
tiny_chart_theme?: any;
|
|
14
|
+
tiny_mcp_config?: any;
|
|
14
15
|
modelValue?: any;
|
|
15
16
|
tabindex?: any;
|
|
16
17
|
suffixIcon?: any;
|
|
@@ -55,6 +56,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
55
56
|
_constants?: any;
|
|
56
57
|
tiny_theme?: any;
|
|
57
58
|
tiny_chart_theme?: any;
|
|
59
|
+
tiny_mcp_config?: any;
|
|
58
60
|
modelValue?: any;
|
|
59
61
|
tabindex?: any;
|
|
60
62
|
suffixIcon?: any;
|
|
@@ -97,6 +99,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
97
99
|
readonly _constants?: any;
|
|
98
100
|
readonly tiny_theme?: any;
|
|
99
101
|
readonly tiny_chart_theme?: any;
|
|
102
|
+
readonly tiny_mcp_config?: any;
|
|
100
103
|
readonly modelValue?: any;
|
|
101
104
|
readonly tabindex?: any;
|
|
102
105
|
readonly suffixIcon?: any;
|