@opentinyvue/vue-card 3.23.0 → 3.25.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 +10 -10
- 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,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-card",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.25.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-renderless": "~3.
|
|
11
|
-
"@opentinyvue/vue-common": "~3.
|
|
12
|
-
"@opentinyvue/vue-dropdown": "~3.
|
|
13
|
-
"@opentinyvue/vue-dropdown-menu": "~3.
|
|
14
|
-
"@opentinyvue/vue-dropdown-item": "~3.
|
|
15
|
-
"@opentinyvue/vue-icon": "~3.
|
|
16
|
-
"@opentinyvue/vue-radio": "~3.
|
|
17
|
-
"@opentinyvue/vue-checkbox": "~3.
|
|
18
|
-
"@opentinyvue/vue-theme": "~3.
|
|
10
|
+
"@opentinyvue/vue-renderless": "~3.25.0",
|
|
11
|
+
"@opentinyvue/vue-common": "~3.25.0",
|
|
12
|
+
"@opentinyvue/vue-dropdown": "~3.25.0",
|
|
13
|
+
"@opentinyvue/vue-dropdown-menu": "~3.25.0",
|
|
14
|
+
"@opentinyvue/vue-dropdown-item": "~3.25.0",
|
|
15
|
+
"@opentinyvue/vue-icon": "~3.25.0",
|
|
16
|
+
"@opentinyvue/vue-radio": "~3.25.0",
|
|
17
|
+
"@opentinyvue/vue-checkbox": "~3.25.0",
|
|
18
|
+
"@opentinyvue/vue-theme": "~3.25.0"
|
|
19
19
|
},
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"types": "index.d.ts"
|
package/src/index.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export declare const cardProps: {
|
|
|
55
55
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
56
56
|
tiny_renderless: FunctionConstructor;
|
|
57
57
|
tiny_theme: StringConstructor;
|
|
58
|
+
tiny_mcp_config: ObjectConstructor;
|
|
58
59
|
tiny_chart_theme: ObjectConstructor;
|
|
59
60
|
};
|
|
60
61
|
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
@@ -114,6 +115,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
114
115
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
115
116
|
tiny_renderless: FunctionConstructor;
|
|
116
117
|
tiny_theme: StringConstructor;
|
|
118
|
+
tiny_mcp_config: ObjectConstructor;
|
|
117
119
|
tiny_chart_theme: ObjectConstructor;
|
|
118
120
|
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
119
121
|
[key: string]: any;
|
|
@@ -174,6 +176,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
174
176
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
175
177
|
tiny_renderless: FunctionConstructor;
|
|
176
178
|
tiny_theme: StringConstructor;
|
|
179
|
+
tiny_mcp_config: ObjectConstructor;
|
|
177
180
|
tiny_chart_theme: ObjectConstructor;
|
|
178
181
|
}>>, {
|
|
179
182
|
disabled: boolean;
|
|
@@ -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
|
modelValue?: any;
|
|
19
20
|
autoWidth?: any;
|
|
20
21
|
status?: any;
|
|
@@ -46,6 +47,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
46
47
|
_constants?: any;
|
|
47
48
|
tiny_theme?: any;
|
|
48
49
|
tiny_chart_theme?: any;
|
|
50
|
+
tiny_mcp_config?: any;
|
|
49
51
|
modelValue?: any;
|
|
50
52
|
autoWidth?: any;
|
|
51
53
|
status?: any;
|
|
@@ -73,6 +75,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
73
75
|
readonly _constants?: any;
|
|
74
76
|
readonly tiny_theme?: any;
|
|
75
77
|
readonly tiny_chart_theme?: any;
|
|
78
|
+
readonly tiny_mcp_config?: any;
|
|
76
79
|
readonly modelValue?: any;
|
|
77
80
|
readonly autoWidth?: any;
|
|
78
81
|
readonly status?: 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
|
modelValue?: any;
|
|
19
20
|
autoWidth?: any;
|
|
20
21
|
status?: any;
|
|
@@ -47,6 +48,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
47
48
|
_constants?: any;
|
|
48
49
|
tiny_theme?: any;
|
|
49
50
|
tiny_chart_theme?: any;
|
|
51
|
+
tiny_mcp_config?: any;
|
|
50
52
|
modelValue?: any;
|
|
51
53
|
autoWidth?: any;
|
|
52
54
|
status?: any;
|
|
@@ -75,6 +77,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
75
77
|
readonly _constants?: any;
|
|
76
78
|
readonly tiny_theme?: any;
|
|
77
79
|
readonly tiny_chart_theme?: any;
|
|
80
|
+
readonly tiny_mcp_config?: any;
|
|
78
81
|
readonly modelValue?: any;
|
|
79
82
|
readonly autoWidth?: any;
|
|
80
83
|
readonly status?: any;
|