iov-design 2.15.44 → 2.15.45
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/date-picker.js +22 -8
- package/lib/index.js +1 -1
- package/lib/iov-design.common.js +23 -9
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/table.css +1 -1
- package/lib/time-picker.js +22 -8
- package/lib/time-select.js +22 -8
- package/package.json +1 -1
- package/packages/date-picker/src/picker.vue +10 -4
- package/packages/theme-chalk/src/table.scss +1 -0
- package/src/index.js +1 -1
package/lib/date-picker.js
CHANGED
|
@@ -791,11 +791,20 @@ var render = function() {
|
|
|
791
791
|
false
|
|
792
792
|
)
|
|
793
793
|
),
|
|
794
|
-
_vm
|
|
795
|
-
_c(
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
794
|
+
_vm.$slots["range-separator"]
|
|
795
|
+
? _c(
|
|
796
|
+
"span",
|
|
797
|
+
{ staticClass: "el-range-separator" },
|
|
798
|
+
[_vm._t("range-separator")],
|
|
799
|
+
2
|
|
800
|
+
)
|
|
801
|
+
: _vm.rangeSeparator
|
|
802
|
+
? _c("span", { staticClass: "el-range-separator" }, [
|
|
803
|
+
_vm._v("\n " + _vm._s(_vm.rangeSeparator) + "\n ")
|
|
804
|
+
])
|
|
805
|
+
: _c("span", { staticClass: "el-range-separator" }, [
|
|
806
|
+
_c("i", { staticClass: "iov-icon-arrow-half-right" })
|
|
807
|
+
]),
|
|
799
808
|
_c(
|
|
800
809
|
"input",
|
|
801
810
|
_vm._b(
|
|
@@ -832,8 +841,7 @@ var render = function() {
|
|
|
832
841
|
class: ["el-input__icon", "el-range__icon", _vm.triggerClass]
|
|
833
842
|
})
|
|
834
843
|
: _vm._e()
|
|
835
|
-
]
|
|
836
|
-
2
|
|
844
|
+
]
|
|
837
845
|
)
|
|
838
846
|
}
|
|
839
847
|
var staticRenderFns = []
|
|
@@ -960,6 +968,12 @@ var merge_default = /*#__PURE__*/__webpack_require__.n(merge_);
|
|
|
960
968
|
//
|
|
961
969
|
//
|
|
962
970
|
//
|
|
971
|
+
//
|
|
972
|
+
//
|
|
973
|
+
//
|
|
974
|
+
//
|
|
975
|
+
//
|
|
976
|
+
//
|
|
963
977
|
|
|
964
978
|
|
|
965
979
|
|
|
@@ -1267,7 +1281,7 @@ var validator = function validator(val) {
|
|
|
1267
1281
|
defaultValue: {},
|
|
1268
1282
|
defaultTime: {},
|
|
1269
1283
|
rangeSeparator: {
|
|
1270
|
-
default: '
|
|
1284
|
+
default: ''
|
|
1271
1285
|
},
|
|
1272
1286
|
pickerOptions: {},
|
|
1273
1287
|
unlinkPanels: Boolean,
|