hrsass-components 2.0.6 → 2.0.7
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/hrsass-components.js +6 -2
- package/lib/hrsass-components.min.js +1 -1
- package/package.json +1 -1
- package/rollup.build.css +5246 -0
package/lib/hrsass-components.js
CHANGED
|
@@ -65,7 +65,7 @@ var contentStyle = _interopDefault(require('!!raw-loader!tinymce/skins/content/d
|
|
|
65
65
|
var SvgPanZoom = _interopDefault(require('svg-pan-zoom'));
|
|
66
66
|
var saveSvgAsPng = require('save-svg-as-png');
|
|
67
67
|
|
|
68
|
-
var version = "2.0.
|
|
68
|
+
var version = "2.0.7";
|
|
69
69
|
|
|
70
70
|
/**
|
|
71
71
|
* 版本号
|
|
@@ -4896,7 +4896,11 @@ var TableToolbar = {
|
|
|
4896
4896
|
reset: function reset(dataVal, slots) {
|
|
4897
4897
|
var _this3 = this;
|
|
4898
4898
|
dataVal.map(function (item) {
|
|
4899
|
-
|
|
4899
|
+
if (item.controlType === "DATERANGE") {
|
|
4900
|
+
_this3.$set(item, "value", ["", ""]);
|
|
4901
|
+
} else {
|
|
4902
|
+
_this3.$set(item, "value", undefined);
|
|
4903
|
+
}
|
|
4900
4904
|
});
|
|
4901
4905
|
slots["default"] && this.$emit("reset");
|
|
4902
4906
|
this.$nextTick(function () {
|