@opentinyvue/vue-calendar-view 2.25.0 → 2.26.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.
@@ -98,7 +98,10 @@ var render = function render2() {
98
98
  var _h = _vm.$createElement;
99
99
  var _c = _vm._self._c || _h;
100
100
  return _c("div", {
101
- staticClass: "w-full h-auto",
101
+ staticClass: "w-full h-auto overflow-auto",
102
+ style: {
103
+ "height": _vm.height ? parseInt(_vm.height) + "px" : "auto"
104
+ },
102
105
  attrs: {
103
106
  "data-tag": "tiny-calendar-view"
104
107
  }
@@ -492,8 +495,8 @@ function __vue2_injectStyles(context) {
492
495
  this[o] = __cssModules[o];
493
496
  }
494
497
  }
495
- var mobileFirst = /* @__PURE__ */ function() {
498
+ var mobileFirst = /* @__PURE__ */ (function() {
496
499
  return __component__.exports;
497
- }();
500
+ })();
498
501
 
499
502
  export { mobileFirst as default };
package/lib/pc.js CHANGED
@@ -44,7 +44,7 @@ var render = function render2() {
44
44
  return _c("div", {
45
45
  staticClass: "tiny-calendar-view",
46
46
  style: {
47
- "height": typeof _vm.height === "number" ? _vm.height + "px" : _vm.height
47
+ "height": _vm.height ? parseInt(_vm.height) + "px" : "auto"
48
48
  }
49
49
  }, [_c("div", {
50
50
  staticClass: "tiny-calendar-view__header"
@@ -351,8 +351,8 @@ function __vue2_injectStyles(context) {
351
351
  this[o] = __cssModules[o];
352
352
  }
353
353
  }
354
- var pc = /* @__PURE__ */ function() {
354
+ var pc = /* @__PURE__ */ (function() {
355
355
  return __component__.exports;
356
- }();
356
+ })();
357
357
 
358
358
  export { pc as default };
package/package.json CHANGED
@@ -1,24 +1,24 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-calendar-view",
3
- "version": "2.25.0",
3
+ "type": "module",
4
+ "version": "2.26.0",
4
5
  "description": "",
6
+ "license": "MIT",
7
+ "sideEffects": false,
5
8
  "main": "./lib/index.js",
6
9
  "module": "./lib/index.js",
7
- "sideEffects": false,
8
- "type": "module",
9
10
  "dependencies": {
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"
11
+ "@opentinyvue/vue-button": "~2.26.0",
12
+ "@opentinyvue/vue-common": "~2.26.0",
13
+ "@opentinyvue/vue-date-picker": "~2.26.0",
14
+ "@opentinyvue/vue-icon": "~2.26.0",
15
+ "@opentinyvue/vue-radio-button": "~2.26.0",
16
+ "@opentinyvue/vue-radio-group": "~2.26.0",
17
+ "@opentinyvue/vue-renderless": "~3.26.0",
18
+ "@opentinyvue/vue-slider-button": "~2.26.0",
19
+ "@opentinyvue/vue-slider-button-group": "~2.26.0",
20
+ "@opentinyvue/vue-theme": "~3.26.0",
21
+ "@opentinyvue/vue-tooltip": "~2.26.0"
21
22
  },
22
- "license": "MIT",
23
23
  "types": "index.d.ts"
24
24
  }