evui 3.1.49 → 3.1.50
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/dist/evui.common.js
CHANGED
|
@@ -7805,7 +7805,7 @@ $({ target: 'Number', stat: true }, {
|
|
|
7805
7805
|
/***/ "9224":
|
|
7806
7806
|
/***/ (function(module) {
|
|
7807
7807
|
|
|
7808
|
-
module.exports = JSON.parse("{\"a\":\"3.1.
|
|
7808
|
+
module.exports = JSON.parse("{\"a\":\"3.1.50\"}");
|
|
7809
7809
|
|
|
7810
7810
|
/***/ }),
|
|
7811
7811
|
|
|
@@ -30954,14 +30954,18 @@ var modules = {
|
|
|
30954
30954
|
var gdataColor = null;
|
|
30955
30955
|
var odataColor = null;
|
|
30956
30956
|
|
|
30957
|
-
if (gdata) {
|
|
30958
|
-
gdataValue =
|
|
30959
|
-
gdataColor =
|
|
30957
|
+
if (gdata !== null && _typeof(gdata) === 'object') {
|
|
30958
|
+
gdataValue = gdata.value;
|
|
30959
|
+
gdataColor = gdata.color;
|
|
30960
|
+
} else {
|
|
30961
|
+
gdataValue = gdata;
|
|
30960
30962
|
}
|
|
30961
30963
|
|
|
30962
|
-
if (odata) {
|
|
30963
|
-
odataValue =
|
|
30964
|
-
odataColor =
|
|
30964
|
+
if (odata !== null && _typeof(odata) === 'object') {
|
|
30965
|
+
odataValue = odata.value;
|
|
30966
|
+
odataColor = odata.color;
|
|
30967
|
+
} else {
|
|
30968
|
+
odataValue = odata;
|
|
30965
30969
|
}
|
|
30966
30970
|
|
|
30967
30971
|
if (this.options.horizontal) {
|