@opentinyvue/vue-floating-button 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 +4 -4
- package/src/index.d.ts +3 -0
- package/src/mobile-first.vue.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-floating-button",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.24.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"module": "./lib/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
11
|
-
"@opentinyvue/vue-common": "~3.
|
|
12
|
-
"@opentinyvue/vue-icon": "~3.
|
|
10
|
+
"@opentinyvue/vue-renderless": "~3.24.0",
|
|
11
|
+
"@opentinyvue/vue-common": "~3.24.0",
|
|
12
|
+
"@opentinyvue/vue-icon": "~3.24.0"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"types": "index.d.ts",
|
package/src/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export declare const floatingButtonProps: {
|
|
|
44
44
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
45
45
|
tiny_renderless: FunctionConstructor;
|
|
46
46
|
tiny_theme: StringConstructor;
|
|
47
|
+
tiny_mcp_config: ObjectConstructor;
|
|
47
48
|
tiny_chart_theme: ObjectConstructor;
|
|
48
49
|
};
|
|
49
50
|
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
@@ -92,6 +93,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
92
93
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
93
94
|
tiny_renderless: FunctionConstructor;
|
|
94
95
|
tiny_theme: StringConstructor;
|
|
96
|
+
tiny_mcp_config: ObjectConstructor;
|
|
95
97
|
tiny_chart_theme: ObjectConstructor;
|
|
96
98
|
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
97
99
|
[key: string]: any;
|
|
@@ -141,6 +143,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
141
143
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
142
144
|
tiny_renderless: FunctionConstructor;
|
|
143
145
|
tiny_theme: StringConstructor;
|
|
146
|
+
tiny_mcp_config: ObjectConstructor;
|
|
144
147
|
tiny_chart_theme: ObjectConstructor;
|
|
145
148
|
}>>, {
|
|
146
149
|
icon: string | Record<string, any>;
|
|
@@ -9,6 +9,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
9
9
|
_constants?: any;
|
|
10
10
|
tiny_theme?: any;
|
|
11
11
|
tiny_chart_theme?: any;
|
|
12
|
+
tiny_mcp_config?: any;
|
|
12
13
|
resetTime?: any;
|
|
13
14
|
backgroundColor?: any;
|
|
14
15
|
animated?: any;
|
|
@@ -36,6 +37,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
36
37
|
_constants?: any;
|
|
37
38
|
tiny_theme?: any;
|
|
38
39
|
tiny_chart_theme?: any;
|
|
40
|
+
tiny_mcp_config?: any;
|
|
39
41
|
resetTime?: any;
|
|
40
42
|
backgroundColor?: any;
|
|
41
43
|
animated?: any;
|
|
@@ -56,6 +58,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
56
58
|
readonly _constants?: any;
|
|
57
59
|
readonly tiny_theme?: any;
|
|
58
60
|
readonly tiny_chart_theme?: any;
|
|
61
|
+
readonly tiny_mcp_config?: any;
|
|
59
62
|
readonly resetTime?: any;
|
|
60
63
|
readonly backgroundColor?: any;
|
|
61
64
|
readonly animated?: any;
|