@opentinyvue/vue-dialog-box 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 +6 -6
- package/src/index.d.ts +3 -0
- package/src/mobile-first.vue.d.ts +3 -0
- package/src/pc.vue.d.ts +3 -0
package/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-dialog-box",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.24.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentinyvue/vue-common": "~3.
|
|
11
|
-
"@opentinyvue/vue-icon": "~3.
|
|
12
|
-
"@opentinyvue/vue-action-sheet": "~3.
|
|
13
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
14
|
-
"@opentinyvue/vue-theme": "~3.
|
|
10
|
+
"@opentinyvue/vue-common": "~3.24.0",
|
|
11
|
+
"@opentinyvue/vue-icon": "~3.24.0",
|
|
12
|
+
"@opentinyvue/vue-action-sheet": "~3.24.0",
|
|
13
|
+
"@opentinyvue/vue-renderless": "~3.24.0",
|
|
14
|
+
"@opentinyvue/vue-theme": "~3.24.0"
|
|
15
15
|
},
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"types": "index.d.ts",
|
package/src/index.d.ts
CHANGED
|
@@ -140,6 +140,7 @@ export declare const dialogBoxProps: {
|
|
|
140
140
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
141
141
|
tiny_renderless: FunctionConstructor;
|
|
142
142
|
tiny_theme: StringConstructor;
|
|
143
|
+
tiny_mcp_config: ObjectConstructor;
|
|
143
144
|
tiny_chart_theme: ObjectConstructor;
|
|
144
145
|
};
|
|
145
146
|
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
@@ -261,6 +262,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
261
262
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
262
263
|
tiny_renderless: FunctionConstructor;
|
|
263
264
|
tiny_theme: StringConstructor;
|
|
265
|
+
tiny_mcp_config: ObjectConstructor;
|
|
264
266
|
tiny_chart_theme: ObjectConstructor;
|
|
265
267
|
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
266
268
|
[key: string]: any;
|
|
@@ -383,6 +385,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
383
385
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
384
386
|
tiny_renderless: FunctionConstructor;
|
|
385
387
|
tiny_theme: StringConstructor;
|
|
388
|
+
tiny_mcp_config: ObjectConstructor;
|
|
386
389
|
tiny_chart_theme: ObjectConstructor;
|
|
387
390
|
}>>, {
|
|
388
391
|
width: string;
|
|
@@ -14,6 +14,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
14
14
|
_constants?: any;
|
|
15
15
|
tiny_theme?: any;
|
|
16
16
|
tiny_chart_theme?: any;
|
|
17
|
+
tiny_mcp_config?: any;
|
|
17
18
|
maxHeight?: any;
|
|
18
19
|
showClose?: any;
|
|
19
20
|
showHeader?: 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
|
maxHeight?: any;
|
|
59
61
|
showClose?: any;
|
|
60
62
|
showHeader?: any;
|
|
@@ -100,6 +102,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
100
102
|
readonly _constants?: any;
|
|
101
103
|
readonly tiny_theme?: any;
|
|
102
104
|
readonly tiny_chart_theme?: any;
|
|
105
|
+
readonly tiny_mcp_config?: any;
|
|
103
106
|
readonly maxHeight?: any;
|
|
104
107
|
readonly showClose?: any;
|
|
105
108
|
readonly showHeader?: any;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
15
15
|
_constants?: any;
|
|
16
16
|
tiny_theme?: any;
|
|
17
17
|
tiny_chart_theme?: any;
|
|
18
|
+
tiny_mcp_config?: any;
|
|
18
19
|
maxHeight?: any;
|
|
19
20
|
showClose?: any;
|
|
20
21
|
showHeader?: any;
|
|
@@ -49,6 +50,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
49
50
|
_constants?: any;
|
|
50
51
|
tiny_theme?: any;
|
|
51
52
|
tiny_chart_theme?: any;
|
|
53
|
+
tiny_mcp_config?: any;
|
|
52
54
|
maxHeight?: any;
|
|
53
55
|
showClose?: any;
|
|
54
56
|
showHeader?: 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 maxHeight?: any;
|
|
101
104
|
readonly showClose?: any;
|
|
102
105
|
readonly showHeader?: any;
|