@opentinyvue/vue-calendar 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 +8 -8
- package/src/index.d.ts +6 -2
- package/src/pc.vue.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-calendar",
|
|
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-renderless": "~3.
|
|
13
|
-
"@opentinyvue/vue-tooltip": "~3.
|
|
14
|
-
"@opentinyvue/vue-popover": "~3.
|
|
15
|
-
"@opentinyvue/vue-theme": "~3.
|
|
16
|
-
"@opentinyvue/vue-button": "~3.
|
|
10
|
+
"@opentinyvue/vue-common": "~3.24.0",
|
|
11
|
+
"@opentinyvue/vue-icon": "~3.24.0",
|
|
12
|
+
"@opentinyvue/vue-renderless": "~3.24.0",
|
|
13
|
+
"@opentinyvue/vue-tooltip": "~3.24.0",
|
|
14
|
+
"@opentinyvue/vue-popover": "~3.24.0",
|
|
15
|
+
"@opentinyvue/vue-theme": "~3.24.0",
|
|
16
|
+
"@opentinyvue/vue-button": "~3.24.0"
|
|
17
17
|
},
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"types": "index.d.ts",
|
package/src/index.d.ts
CHANGED
|
@@ -37,9 +37,11 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
37
37
|
tiny_mode_root: BooleanConstructor;
|
|
38
38
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
39
39
|
tiny_renderless: FunctionConstructor;
|
|
40
|
-
|
|
40
|
+
/**
|
|
41
41
|
* @property {Boolean} [showSelected=false] - 显示选中的日期
|
|
42
42
|
*/
|
|
43
|
+
tiny_theme: StringConstructor;
|
|
44
|
+
tiny_mcp_config: ObjectConstructor;
|
|
43
45
|
tiny_chart_theme: ObjectConstructor;
|
|
44
46
|
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
45
47
|
[key: string]: any;
|
|
@@ -82,9 +84,11 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
82
84
|
tiny_mode_root: BooleanConstructor;
|
|
83
85
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
84
86
|
tiny_renderless: FunctionConstructor;
|
|
85
|
-
|
|
87
|
+
/**
|
|
86
88
|
* @property {Boolean} [showSelected=false] - 显示选中的日期
|
|
87
89
|
*/
|
|
90
|
+
tiny_theme: StringConstructor;
|
|
91
|
+
tiny_mcp_config: ObjectConstructor;
|
|
88
92
|
tiny_chart_theme: ObjectConstructor;
|
|
89
93
|
}>>, {
|
|
90
94
|
year: number;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -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
|
events?: any;
|
|
13
14
|
showSelected?: any;
|
|
14
15
|
}>, {
|
|
@@ -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
|
events?: any;
|
|
35
37
|
showSelected?: any;
|
|
36
38
|
}>>>, {
|
|
@@ -44,6 +46,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
44
46
|
readonly _constants?: any;
|
|
45
47
|
readonly tiny_theme?: any;
|
|
46
48
|
readonly tiny_chart_theme?: any;
|
|
49
|
+
readonly tiny_mcp_config?: any;
|
|
47
50
|
readonly events?: any;
|
|
48
51
|
readonly showSelected?: any;
|
|
49
52
|
}, {}>;
|