mali-ui-plus 1.0.140 → 1.0.142

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.
Binary file
@@ -69314,6 +69314,16 @@ function extendMethod(instance, xGrid) {
69314
69314
  recalculate(refull) {
69315
69315
  return xGrid.value.recalculate(refull);
69316
69316
  },
69317
+ exportData(options) {
69318
+ return xGrid.value.exportData(Object.assign({
69319
+ type: 'xlsx',
69320
+ original: true,
69321
+ isColgroup: true,
69322
+ isHeader: true,
69323
+ isFooter: true,
69324
+ useStyle: true
69325
+ }, options));
69326
+ },
69317
69327
  updateStatus(slotParams) {
69318
69328
  return xGrid.value.updateStatus(slotParams);
69319
69329
  }
@@ -69655,10 +69665,14 @@ const MlTablevue_type_script_lang_ts_setup_true_hoisted_4 = {
69655
69665
  emit('checkbox-all', params);
69656
69666
  };
69657
69667
  const cellClickEvent = params => {
69658
- emit('cell-click', params);
69668
+ if (!params.triggerCheckbox) {
69669
+ emit('cell-click', params);
69670
+ }
69659
69671
  };
69660
69672
  const cellDblclickEvent = params => {
69661
- emit('cell-dblclick', params);
69673
+ if (!params.triggerCheckbox) {
69674
+ emit('cell-dblclick', params);
69675
+ }
69662
69676
  };
69663
69677
  const sortChangeEvent = params => {
69664
69678
  emit('sort-change', params);
@@ -70538,10 +70552,14 @@ const MlGridvue_type_script_lang_ts_setup_true_hoisted_15 = {
70538
70552
  emit('checkbox-all', params);
70539
70553
  };
70540
70554
  const cellClickEvent = params => {
70541
- emit('cell-click', params);
70555
+ if (!params.triggerCheckbox) {
70556
+ emit('cell-click', params);
70557
+ }
70542
70558
  };
70543
70559
  const cellDblclickEvent = params => {
70544
- emit('cell-dblclick', params);
70560
+ if (!params.triggerCheckbox) {
70561
+ emit('cell-dblclick', params);
70562
+ }
70545
70563
  };
70546
70564
  const sortChangeEvent = params => {
70547
70565
  emit('sort-change', params);
@@ -71418,7 +71436,7 @@ const _hoisted_21 = ["src"];
71418
71436
  return fieldMaps.value.fileName || 'fileName';
71419
71437
  });
71420
71438
  const sizeField = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(() => {
71421
- return fieldMaps.value.sizeField || 'fileSize';
71439
+ return fieldMaps.value.fileSize || 'fileSize';
71422
71440
  });
71423
71441
  const previewImgStyles = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(() => {
71424
71442
  const {
@@ -75811,7 +75829,7 @@ function index_config(options) {
75811
75829
  return config_0;
75812
75830
  }
75813
75831
  const MaliUI = {
75814
- version: "1.0.139",
75832
+ version: "1.0.141",
75815
75833
  install: index_install,
75816
75834
  config: index_config,
75817
75835
  renderer: index_esm.renderer,