evui 3.4.83 → 3.4.84

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.umd.js CHANGED
@@ -11226,7 +11226,7 @@ $({ target: 'Number', stat: true }, {
11226
11226
  /***/ "9224":
11227
11227
  /***/ (function(module) {
11228
11228
 
11229
- module.exports = JSON.parse("{\"a\":\"3.4.83\"}");
11229
+ module.exports = JSON.parse("{\"a\":\"3.4.84\"}");
11230
11230
 
11231
11231
  /***/ }),
11232
11232
 
@@ -36628,6 +36628,8 @@ var uses_storeEvent = function storeEvent(params) {
36628
36628
  });
36629
36629
 
36630
36630
  if (isMakeIndex) {
36631
+ var _props$uncheckable, _props$disabledRows;
36632
+
36631
36633
  var store = [];
36632
36634
  var hasUnChecked = false;
36633
36635
  rows.forEach(function (row, idx) {
@@ -36652,6 +36654,11 @@ var uses_storeEvent = function storeEvent(params) {
36652
36654
  var disabled = props.disabledRows.includes(row);
36653
36655
  store.push([idx, checked, row, selected, expanded, uncheckable, disabled]);
36654
36656
  });
36657
+
36658
+ if (rows.length !== props.checked.length && (rows.length === ((_props$uncheckable = props.uncheckable) === null || _props$uncheckable === void 0 ? void 0 : _props$uncheckable.length) || rows.length === ((_props$disabledRows = props.disabledRows) === null || _props$disabledRows === void 0 ? void 0 : _props$disabledRows.length))) {
36659
+ hasUnChecked = true;
36660
+ }
36661
+
36655
36662
  checkInfo.isHeaderChecked = rows.length > 0 ? !hasUnChecked : false;
36656
36663
  checkInfo.isHeaderIndeterminate = hasUnChecked && !!checkInfo.checkedRows.length;
36657
36664
  checkInfo.isHeaderUncheckable = rows.every(function (row) {
@@ -41199,7 +41206,7 @@ var TIME_INTERVALS = {
41199
41206
  },
41200
41207
  month: {
41201
41208
  common: true,
41202
- size: 2.628e9,
41209
+ size: 2.6784e9,
41203
41210
  steps: [1, 2, 3]
41204
41211
  },
41205
41212
  quarter: {
@@ -46391,7 +46398,7 @@ var scale_time_category_TimeCategoryScale = /*#__PURE__*/function (_Scale) {
46391
46398
  for (ix = 0; ix < oriSteps; ix += count) {
46392
46399
  var _this$options, _this$options$selectL, _this$options2, _this$options2$select, _selectLabelInfo$data;
46393
46400
 
46394
- ticks[ix] = axisMin + ix * stepValue;
46401
+ ticks[ix] = dayjs_min_default()(axisMin).valueOf() + ix * stepValue;
46395
46402
  labelCenter = Math.round(startPoint + graphGap * ix);
46396
46403
  linePosition = labelCenter + aliasPixel;
46397
46404
  var prev = void 0;