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.
@@ -11217,7 +11217,7 @@ $({ target: 'Number', stat: true }, {
11217
11217
  /***/ "9224":
11218
11218
  /***/ (function(module) {
11219
11219
 
11220
- module.exports = JSON.parse("{\"a\":\"3.4.83\"}");
11220
+ module.exports = JSON.parse("{\"a\":\"3.4.84\"}");
11221
11221
 
11222
11222
  /***/ }),
11223
11223
 
@@ -36619,6 +36619,8 @@ var uses_storeEvent = function storeEvent(params) {
36619
36619
  });
36620
36620
 
36621
36621
  if (isMakeIndex) {
36622
+ var _props$uncheckable, _props$disabledRows;
36623
+
36622
36624
  var store = [];
36623
36625
  var hasUnChecked = false;
36624
36626
  rows.forEach(function (row, idx) {
@@ -36643,6 +36645,11 @@ var uses_storeEvent = function storeEvent(params) {
36643
36645
  var disabled = props.disabledRows.includes(row);
36644
36646
  store.push([idx, checked, row, selected, expanded, uncheckable, disabled]);
36645
36647
  });
36648
+
36649
+ 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))) {
36650
+ hasUnChecked = true;
36651
+ }
36652
+
36646
36653
  checkInfo.isHeaderChecked = rows.length > 0 ? !hasUnChecked : false;
36647
36654
  checkInfo.isHeaderIndeterminate = hasUnChecked && !!checkInfo.checkedRows.length;
36648
36655
  checkInfo.isHeaderUncheckable = rows.every(function (row) {
@@ -41190,7 +41197,7 @@ var TIME_INTERVALS = {
41190
41197
  },
41191
41198
  month: {
41192
41199
  common: true,
41193
- size: 2.628e9,
41200
+ size: 2.6784e9,
41194
41201
  steps: [1, 2, 3]
41195
41202
  },
41196
41203
  quarter: {
@@ -46382,7 +46389,7 @@ var scale_time_category_TimeCategoryScale = /*#__PURE__*/function (_Scale) {
46382
46389
  for (ix = 0; ix < oriSteps; ix += count) {
46383
46390
  var _this$options, _this$options$selectL, _this$options2, _this$options2$select, _selectLabelInfo$data;
46384
46391
 
46385
- ticks[ix] = axisMin + ix * stepValue;
46392
+ ticks[ix] = dayjs_min_default()(axisMin).valueOf() + ix * stepValue;
46386
46393
  labelCenter = Math.round(startPoint + graphGap * ix);
46387
46394
  linePosition = labelCenter + aliasPixel;
46388
46395
  var prev = void 0;