@opentinyvue/vue-image-viewer 3.22.1 → 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/package.json +10 -10
- package/src/index.d.ts +2 -0
- package/src/mobile-first.vue.d.ts +3 -0
- package/src/pc.vue.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-image-viewer",
|
|
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/utils": "~3.
|
|
12
|
-
"@opentinyvue/vue-action-sheet": "~3.
|
|
13
|
-
"@opentinyvue/vue-common": "~3.
|
|
14
|
-
"@opentinyvue/vue-dropdown": "~3.
|
|
15
|
-
"@opentinyvue/vue-dropdown-item": "~3.
|
|
16
|
-
"@opentinyvue/vue-dropdown-menu": "~3.
|
|
17
|
-
"@opentinyvue/vue-icon": "~3.
|
|
18
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
19
|
-
"@opentinyvue/vue-theme": "~3.
|
|
11
|
+
"@opentinyvue/utils": "~3.24.0",
|
|
12
|
+
"@opentinyvue/vue-action-sheet": "~3.24.0",
|
|
13
|
+
"@opentinyvue/vue-common": "~3.24.0",
|
|
14
|
+
"@opentinyvue/vue-dropdown": "~3.24.0",
|
|
15
|
+
"@opentinyvue/vue-dropdown-item": "~3.24.0",
|
|
16
|
+
"@opentinyvue/vue-dropdown-menu": "~3.24.0",
|
|
17
|
+
"@opentinyvue/vue-icon": "~3.24.0",
|
|
18
|
+
"@opentinyvue/vue-renderless": "~3.24.0",
|
|
19
|
+
"@opentinyvue/vue-theme": "~3.24.0"
|
|
20
20
|
},
|
|
21
21
|
"types": "index.d.ts",
|
|
22
22
|
"scripts": {
|
package/src/index.d.ts
CHANGED
|
@@ -98,6 +98,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
98
98
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
99
99
|
tiny_renderless: FunctionConstructor;
|
|
100
100
|
tiny_theme: StringConstructor;
|
|
101
|
+
tiny_mcp_config: ObjectConstructor;
|
|
101
102
|
tiny_chart_theme: ObjectConstructor;
|
|
102
103
|
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
103
104
|
[key: string]: any;
|
|
@@ -201,6 +202,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
201
202
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
202
203
|
tiny_renderless: FunctionConstructor;
|
|
203
204
|
tiny_theme: StringConstructor;
|
|
205
|
+
tiny_mcp_config: ObjectConstructor;
|
|
204
206
|
tiny_chart_theme: ObjectConstructor;
|
|
205
207
|
}>>, {
|
|
206
208
|
zIndex: number;
|
|
@@ -8,6 +8,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
8
8
|
_constants?: any;
|
|
9
9
|
tiny_theme?: any;
|
|
10
10
|
tiny_chart_theme?: any;
|
|
11
|
+
tiny_mcp_config?: any;
|
|
11
12
|
urlList?: any;
|
|
12
13
|
showIndex?: any;
|
|
13
14
|
onSwitch?: any;
|
|
@@ -27,6 +28,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
27
28
|
_constants?: any;
|
|
28
29
|
tiny_theme?: any;
|
|
29
30
|
tiny_chart_theme?: any;
|
|
31
|
+
tiny_mcp_config?: any;
|
|
30
32
|
urlList?: any;
|
|
31
33
|
showIndex?: any;
|
|
32
34
|
onSwitch?: any;
|
|
@@ -52,6 +54,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
52
54
|
readonly _constants?: any;
|
|
53
55
|
readonly tiny_theme?: any;
|
|
54
56
|
readonly tiny_chart_theme?: any;
|
|
57
|
+
readonly tiny_mcp_config?: any;
|
|
55
58
|
readonly urlList?: any;
|
|
56
59
|
readonly showIndex?: any;
|
|
57
60
|
readonly onSwitch?: any;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
8
8
|
_constants?: any;
|
|
9
9
|
tiny_theme?: any;
|
|
10
10
|
tiny_chart_theme?: any;
|
|
11
|
+
tiny_mcp_config?: any;
|
|
11
12
|
urlList?: any;
|
|
12
13
|
showIndex?: any;
|
|
13
14
|
onSwitch?: any;
|
|
@@ -31,6 +32,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
31
32
|
_constants?: any;
|
|
32
33
|
tiny_theme?: any;
|
|
33
34
|
tiny_chart_theme?: any;
|
|
35
|
+
tiny_mcp_config?: any;
|
|
34
36
|
urlList?: any;
|
|
35
37
|
showIndex?: any;
|
|
36
38
|
onSwitch?: any;
|
|
@@ -51,6 +53,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
51
53
|
readonly _constants?: any;
|
|
52
54
|
readonly tiny_theme?: any;
|
|
53
55
|
readonly tiny_chart_theme?: any;
|
|
56
|
+
readonly tiny_mcp_config?: any;
|
|
54
57
|
readonly urlList?: any;
|
|
55
58
|
readonly showIndex?: any;
|
|
56
59
|
readonly onSwitch?: any;
|