@opentinyvue/vue-calendar-view 2.23.0 → 2.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/lib/pc.js +3 -3
- package/package.json +12 -12
- package/src/index.d.ts +1 -0
package/lib/index.js
CHANGED
package/lib/pc.js
CHANGED
|
@@ -48,11 +48,11 @@ var render = function render2() {
|
|
|
48
48
|
}
|
|
49
49
|
}, [_c("div", {
|
|
50
50
|
staticClass: "tiny-calendar-view__header"
|
|
51
|
-
}, [_c("div", [_c("tiny-button", {
|
|
51
|
+
}, [_c("div", [_vm.showBackToday ? _c("tiny-button", {
|
|
52
52
|
on: {
|
|
53
53
|
"click": _vm.toToday
|
|
54
54
|
}
|
|
55
|
-
}, [_vm._v(_vm._s(_vm.t("ui.calendarView.backToday")))])], 1), _c("tiny-date-picker", {
|
|
55
|
+
}, [_vm._v(_vm._s(_vm.t("ui.calendarView.backToday")))]) : _vm._e()], 1), _c("tiny-date-picker", {
|
|
56
56
|
staticClass: "tiny-calendar-view__picker",
|
|
57
57
|
attrs: {
|
|
58
58
|
"type": "month",
|
|
@@ -327,7 +327,7 @@ var __vue2_script = defineComponent({
|
|
|
327
327
|
TinyDatePicker: DatePicker,
|
|
328
328
|
TinyTooltip: Tooltip
|
|
329
329
|
},
|
|
330
|
-
props: [].concat(props, ["modelValue", "showMark", "showNewSchedule", "setDayBgColor", "disabled", "mode", "modes", "year", "month", "dayTimes", "events", "height", "markColor", "multiSelect", "showTipTime"]),
|
|
330
|
+
props: [].concat(props, ["modelValue", "showMark", "showNewSchedule", "setDayBgColor", "disabled", "mode", "modes", "year", "month", "dayTimes", "events", "height", "markColor", "multiSelect", "showBackToday", "showTipTime"]),
|
|
331
331
|
setup: function setup$1(props2, context) {
|
|
332
332
|
return setup({
|
|
333
333
|
props: props2,
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-calendar-view",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.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-common": "~2.
|
|
11
|
-
"@opentinyvue/vue-icon": "~2.
|
|
12
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
13
|
-
"@opentinyvue/vue-tooltip": "~2.
|
|
14
|
-
"@opentinyvue/vue-button": "~2.
|
|
15
|
-
"@opentinyvue/vue-date-picker": "~2.
|
|
16
|
-
"@opentinyvue/vue-radio-button": "~2.
|
|
17
|
-
"@opentinyvue/vue-radio-group": "~2.
|
|
18
|
-
"@opentinyvue/vue-slider-button": "~2.
|
|
19
|
-
"@opentinyvue/vue-slider-button-group": "~2.
|
|
20
|
-
"@opentinyvue/vue-theme": "~3.
|
|
10
|
+
"@opentinyvue/vue-common": "~2.25.0",
|
|
11
|
+
"@opentinyvue/vue-icon": "~2.25.0",
|
|
12
|
+
"@opentinyvue/vue-renderless": "~3.25.0",
|
|
13
|
+
"@opentinyvue/vue-tooltip": "~2.25.0",
|
|
14
|
+
"@opentinyvue/vue-button": "~2.25.0",
|
|
15
|
+
"@opentinyvue/vue-date-picker": "~2.25.0",
|
|
16
|
+
"@opentinyvue/vue-radio-button": "~2.25.0",
|
|
17
|
+
"@opentinyvue/vue-radio-group": "~2.25.0",
|
|
18
|
+
"@opentinyvue/vue-slider-button": "~2.25.0",
|
|
19
|
+
"@opentinyvue/vue-slider-button-group": "~2.25.0",
|
|
20
|
+
"@opentinyvue/vue-theme": "~3.25.0"
|
|
21
21
|
},
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"types": "index.d.ts"
|
package/src/index.d.ts
CHANGED
|
@@ -74,6 +74,7 @@ export declare const calendarViewProps: {
|
|
|
74
74
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
75
75
|
tiny_renderless: FunctionConstructor;
|
|
76
76
|
tiny_theme: StringConstructor;
|
|
77
|
+
tiny_mcp_config: ObjectConstructor;
|
|
77
78
|
tiny_chart_theme: ObjectConstructor;
|
|
78
79
|
};
|
|
79
80
|
declare const _default: any;
|