mali-ui-plus 1.0.56 → 1.0.58
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/mali-ui-plus.common.js +151 -106
- package/lib/mali-ui-plus.css +1 -1
- package/lib/mali-ui-plus.umd.js +151 -106
- package/lib/mali-ui-plus.umd.min.js +4 -4
- package/package.json +5 -5
- package/style/all.scss +8 -0
- package/style/base.scss +0 -2
- package/style/element-plus.scss +0 -0
- package/style/modules/approval.scss +0 -0
- package/style/modules/button.scss +105 -0
- package/style/modules/calendar.scss +0 -0
- package/style/variable.scss +15 -13
- package/style/vxe-table.scss +7 -7
- package/style/antv.scss +0 -17
|
@@ -19164,6 +19164,9 @@ var GlobalConfig = {
|
|
|
19164
19164
|
// rowConfig: {
|
|
19165
19165
|
// keyField: '_X_ROW_KEY' // 行数据的唯一主键字段名
|
|
19166
19166
|
// },
|
|
19167
|
+
resizeConfig: {
|
|
19168
|
+
refreshDelay: 250
|
|
19169
|
+
},
|
|
19167
19170
|
radioConfig: {
|
|
19168
19171
|
// trigger: 'default'
|
|
19169
19172
|
strict: true
|
|
@@ -19492,7 +19495,7 @@ var GlobalConfig = {
|
|
|
19492
19495
|
;// CONCATENATED MODULE: ./node_modules/vxe-table/es/tools/log.js
|
|
19493
19496
|
|
|
19494
19497
|
function getLog(message, params) {
|
|
19495
|
-
return "[vxe-table v".concat("4.3.
|
|
19498
|
+
return "[vxe-table v".concat("4.3.13", "] ").concat(conf.i18n(message, params));
|
|
19496
19499
|
}
|
|
19497
19500
|
function outLog(type) {
|
|
19498
19501
|
return function (message, params) {
|
|
@@ -19805,7 +19808,7 @@ function updateCellTitle(overflowElem, column) {
|
|
|
19805
19808
|
*/
|
|
19806
19809
|
function getEventTargetNode(evnt, container, queryCls, queryMethod) {
|
|
19807
19810
|
var targetElem;
|
|
19808
|
-
var target = evnt.target;
|
|
19811
|
+
var target = evnt.target.shadowRoot && evnt.composed ? evnt.composedPath()[0] || evnt.target : evnt.target;
|
|
19809
19812
|
while (target && target.nodeType && target !== document) {
|
|
19810
19813
|
if (queryCls && hasClass(target, queryCls) && (!queryMethod || queryMethod(target))) {
|
|
19811
19814
|
targetElem = target;
|
|
@@ -21092,7 +21095,7 @@ var config = new VXETableConfig();
|
|
|
21092
21095
|
var v = 'v4';
|
|
21093
21096
|
var VXETable = {
|
|
21094
21097
|
v: v,
|
|
21095
|
-
version: "4.3.
|
|
21098
|
+
version: "4.3.13",
|
|
21096
21099
|
setup: setup,
|
|
21097
21100
|
interceptor: interceptor,
|
|
21098
21101
|
renderer: renderer,
|
|
@@ -22418,7 +22421,6 @@ var editHook = {
|
|
|
22418
22421
|
* @param {Row} row 指定行
|
|
22419
22422
|
*/
|
|
22420
22423
|
insertAt: function (records, row) {
|
|
22421
|
-
var _a;
|
|
22422
22424
|
var treeConfig = props.treeConfig;
|
|
22423
22425
|
var mergeList = reactData.mergeList,
|
|
22424
22426
|
editStore = reactData.editStore;
|
|
@@ -22434,9 +22436,9 @@ var editHook = {
|
|
|
22434
22436
|
if (!xe_utils_default().isArray(records)) {
|
|
22435
22437
|
records = [records];
|
|
22436
22438
|
}
|
|
22437
|
-
var newRecords = records.map(function (record) {
|
|
22438
|
-
return
|
|
22439
|
-
});
|
|
22439
|
+
var newRecords = $xetable.defineField(records.map(function (record) {
|
|
22440
|
+
return Object.assign({}, record);
|
|
22441
|
+
}));
|
|
22440
22442
|
if (!row) {
|
|
22441
22443
|
// 如果为虚拟树
|
|
22442
22444
|
if (treeConfig && transform) {
|
|
@@ -22538,13 +22540,20 @@ var editHook = {
|
|
|
22538
22540
|
}
|
|
22539
22541
|
}
|
|
22540
22542
|
}
|
|
22541
|
-
|
|
22542
|
-
|
|
22543
|
+
var insertList = editStore.insertList,
|
|
22544
|
+
insertMaps = editStore.insertMaps;
|
|
22545
|
+
newRecords.forEach(function (newRow) {
|
|
22546
|
+
var rowid = getRowid($xetable, newRow);
|
|
22547
|
+
insertMaps[rowid] = newRow;
|
|
22548
|
+
});
|
|
22549
|
+
insertList.unshift.apply(insertList, newRecords);
|
|
22543
22550
|
$xetable.cacheRowMap();
|
|
22551
|
+
$xetable.updateScrollYStatus();
|
|
22544
22552
|
$xetable.handleTableData(treeConfig && transform);
|
|
22545
22553
|
if (!(treeConfig && transform)) {
|
|
22546
22554
|
$xetable.updateAfterDataIndex();
|
|
22547
22555
|
}
|
|
22556
|
+
$xetable.updateFooter();
|
|
22548
22557
|
$xetable.checkSelectionStatus();
|
|
22549
22558
|
if (reactData.scrollYLoad) {
|
|
22550
22559
|
$xetable.updateScrollYSpace();
|
|
@@ -22578,7 +22587,8 @@ var editHook = {
|
|
|
22578
22587
|
var transform = treeOpts.transform;
|
|
22579
22588
|
var actived = editStore.actived,
|
|
22580
22589
|
removeList = editStore.removeList,
|
|
22581
|
-
insertList = editStore.insertList
|
|
22590
|
+
insertList = editStore.insertList,
|
|
22591
|
+
insertMaps = editStore.insertMaps;
|
|
22582
22592
|
var checkField = checkboxOpts.checkField;
|
|
22583
22593
|
var rest = [];
|
|
22584
22594
|
if (!rows) {
|
|
@@ -22654,10 +22664,12 @@ var editHook = {
|
|
|
22654
22664
|
}
|
|
22655
22665
|
// 从新增中移除已删除的数据
|
|
22656
22666
|
rows.forEach(function (row) {
|
|
22667
|
+
var rowid = getRowid($xetable, row);
|
|
22657
22668
|
var iIndex = $xetable.findRowIndexOf(insertList, row);
|
|
22658
22669
|
if (iIndex > -1) {
|
|
22659
22670
|
insertList.splice(iIndex, 1);
|
|
22660
22671
|
}
|
|
22672
|
+
delete insertMaps[rowid];
|
|
22661
22673
|
});
|
|
22662
22674
|
$xetable.updateFooter();
|
|
22663
22675
|
$xetable.cacheRowMap();
|
|
@@ -22722,33 +22734,16 @@ var editHook = {
|
|
|
22722
22734
|
* 获取新增的临时数据
|
|
22723
22735
|
*/
|
|
22724
22736
|
getInsertRecords: function () {
|
|
22725
|
-
var treeConfig = props.treeConfig;
|
|
22726
22737
|
var editStore = reactData.editStore;
|
|
22727
|
-
var
|
|
22728
|
-
tableFullData = internalData.tableFullData;
|
|
22729
|
-
var treeOpts = computeTreeOpts.value;
|
|
22738
|
+
var fullAllDataRowIdData = internalData.fullAllDataRowIdData;
|
|
22730
22739
|
var insertList = editStore.insertList;
|
|
22731
22740
|
var insertRecords = [];
|
|
22732
|
-
|
|
22733
|
-
|
|
22734
|
-
if (
|
|
22735
|
-
|
|
22736
|
-
var rowid = getRowid($xetable, row);
|
|
22737
|
-
var matchObj = xe_utils_default().findTree(tableFullTreeData, function (item) {
|
|
22738
|
-
return rowid === getRowid($xetable, item);
|
|
22739
|
-
}, treeOpts);
|
|
22740
|
-
if (matchObj) {
|
|
22741
|
-
insertRecords.push(row);
|
|
22742
|
-
}
|
|
22743
|
-
});
|
|
22744
|
-
} else {
|
|
22745
|
-
insertList.forEach(function (row) {
|
|
22746
|
-
if ($xetable.findRowIndexOf(tableFullData, row) > -1) {
|
|
22747
|
-
insertRecords.push(row);
|
|
22748
|
-
}
|
|
22749
|
-
});
|
|
22741
|
+
insertList.forEach(function (row) {
|
|
22742
|
+
var rowid = getRowid($xetable, row);
|
|
22743
|
+
if (fullAllDataRowIdData[rowid]) {
|
|
22744
|
+
insertRecords.push(row);
|
|
22750
22745
|
}
|
|
22751
|
-
}
|
|
22746
|
+
});
|
|
22752
22747
|
return insertRecords;
|
|
22753
22748
|
},
|
|
22754
22749
|
/**
|
|
@@ -30292,11 +30287,9 @@ var tableExportHook = {
|
|
|
30292
30287
|
visible: true
|
|
30293
30288
|
});
|
|
30294
30289
|
// 默认参数
|
|
30295
|
-
|
|
30296
|
-
|
|
30297
|
-
|
|
30298
|
-
}, defOpts);
|
|
30299
|
-
}
|
|
30290
|
+
Object.assign(exportParams, {
|
|
30291
|
+
mode: selectRecords.length ? 'selected' : 'current'
|
|
30292
|
+
}, defOpts);
|
|
30300
30293
|
if (modes.indexOf(exportParams.mode) === -1) {
|
|
30301
30294
|
exportParams.mode = modes[0];
|
|
30302
30295
|
}
|
|
@@ -30832,7 +30825,7 @@ var tableKeyboardHook = {
|
|
|
30832
30825
|
});
|
|
30833
30826
|
} else {
|
|
30834
30827
|
$xetable.setAllCheckboxRow(false);
|
|
30835
|
-
$xetable.
|
|
30828
|
+
$xetable.handleCheckedCheckboxRow(rangeRows, true, false);
|
|
30836
30829
|
}
|
|
30837
30830
|
triggerEvent_1('change', evnt);
|
|
30838
30831
|
}
|
|
@@ -32855,6 +32848,8 @@ dynamicApp.component('VxeTableColgroup', src_group);
|
|
|
32855
32848
|
},
|
|
32856
32849
|
// 是否自动根据状态属性去更新响应式表格宽高
|
|
32857
32850
|
syncResize: [Boolean, String, Number],
|
|
32851
|
+
// 响应式布局配置项
|
|
32852
|
+
resizeConfig: Object,
|
|
32858
32853
|
// 列配置信息
|
|
32859
32854
|
columnConfig: Object,
|
|
32860
32855
|
// 行配置信息
|
|
@@ -32929,7 +32924,7 @@ dynamicApp.component('VxeTableColgroup', src_group);
|
|
|
32929
32924
|
params: Object
|
|
32930
32925
|
});
|
|
32931
32926
|
;// CONCATENATED MODULE: ./node_modules/vxe-table/es/table/src/emits.js
|
|
32932
|
-
/* harmony default export */ var emits = (['update:data', 'keydown-start', 'keydown', 'keydown-end', 'paste', 'copy', 'cut', 'current-change', 'radio-change', 'checkbox-change', 'checkbox-all', 'checkbox-range-start', 'checkbox-range-change', 'checkbox-range-end', 'cell-click', 'cell-dblclick', 'cell-menu', 'cell-mouseenter', 'cell-mouseleave', 'cell-selected', 'header-cell-click', 'header-cell-dblclick', 'header-cell-menu', 'footer-cell-click', 'footer-cell-dblclick', 'footer-cell-menu', 'clear-merge', 'sort-change', 'clear-sort', 'filter-change', 'filter-visible', 'clear-filter', 'resizable-change', 'toggle-row-expand', 'toggle-tree-expand', 'menu-click', 'edit-closed', 'edit-actived', 'edit-disabled', 'valid-error', 'scroll', 'custom', 'change-fnr', 'open-fnr', 'fnr-change', 'fnr-find', 'fnr-find-all', 'fnr-replace', 'fnr-replace-all', 'cell-area-copy', 'cell-area-cut', 'cell-area-paste', 'cell-area-merge', 'clear-cell-area-merge', 'header-cell-area-selection', 'cell-area-selection-start', 'cell-area-selection-drag', 'cell-area-selection-end', 'cell-area-extension-start', 'cell-area-extension-drag', 'cell-area-extension-end', 'cell-area-arrows-start', 'cell-area-arrows-end', 'active-cell-change-start', 'active-cell-change-end']);
|
|
32927
|
+
/* harmony default export */ var emits = (['update:data', 'keydown-start', 'keydown', 'keydown-end', 'paste', 'copy', 'cut', 'current-change', 'radio-change', 'checkbox-change', 'checkbox-all', 'checkbox-range-start', 'checkbox-range-change', 'checkbox-range-end', 'cell-click', 'cell-dblclick', 'cell-menu', 'cell-mouseenter', 'cell-mouseleave', 'cell-selected', 'header-cell-click', 'header-cell-dblclick', 'header-cell-menu', 'footer-cell-click', 'footer-cell-dblclick', 'footer-cell-menu', 'clear-merge', 'sort-change', 'clear-sort', 'filter-change', 'filter-visible', 'clear-filter', 'resizable-change', 'toggle-row-expand', 'toggle-tree-expand', 'menu-click', 'edit-closed', 'edit-actived', 'edit-disabled', 'valid-error', 'scroll', 'custom', 'change-fnr', 'open-fnr', 'fnr-change', 'fnr-find', 'fnr-find-all', 'fnr-replace', 'fnr-replace-all', 'cell-area-copy', 'cell-area-cut', 'cell-area-paste', 'cell-area-merge', 'clear-cell-area-merge', 'header-cell-area-selection', 'cell-area-selection-start', 'cell-area-selection-drag', 'cell-area-selection-end', 'cell-area-extension-start', 'cell-area-extension-drag', 'cell-area-extension-end', 'cell-area-selection-all-start', 'cell-area-selection-all-end', 'cell-area-arrows-start', 'cell-area-arrows-end', 'active-cell-change-start', 'active-cell-change-end']);
|
|
32933
32928
|
;// CONCATENATED MODULE: ./node_modules/vxe-table/es/grid/src/grid.js
|
|
32934
32929
|
|
|
32935
32930
|
var grid_assign = undefined && undefined.__assign || function () {
|
|
@@ -33798,6 +33793,7 @@ var gridComponentEmits = grid_spreadArray(grid_spreadArray([], emits, true), ['p
|
|
|
33798
33793
|
status: true
|
|
33799
33794
|
};
|
|
33800
33795
|
}).catch(function () {
|
|
33796
|
+
reactData.tableLoading = false;
|
|
33801
33797
|
return {
|
|
33802
33798
|
status: false
|
|
33803
33799
|
};
|
|
@@ -34534,7 +34530,7 @@ var toolbar_assign = undefined && undefined.__assign || function () {
|
|
|
34534
34530
|
code: code,
|
|
34535
34531
|
button: item,
|
|
34536
34532
|
$table: $xetable,
|
|
34537
|
-
$grid: $
|
|
34533
|
+
$grid: $xegrid,
|
|
34538
34534
|
$event: evnt
|
|
34539
34535
|
};
|
|
34540
34536
|
if (commandMethod) {
|
|
@@ -34555,7 +34551,7 @@ var toolbar_assign = undefined && undefined.__assign || function () {
|
|
|
34555
34551
|
code: code,
|
|
34556
34552
|
tool: item,
|
|
34557
34553
|
$table: $xetable,
|
|
34558
|
-
$grid: $
|
|
34554
|
+
$grid: $xegrid,
|
|
34559
34555
|
$event: evnt
|
|
34560
34556
|
};
|
|
34561
34557
|
if (commandMethod) {
|
|
@@ -39470,7 +39466,6 @@ var lineOffsetSizes = {
|
|
|
39470
39466
|
var hasFixedColumn = tableReactData.hasFixedColumn,
|
|
39471
39467
|
treeExpandeds = tableReactData.treeExpandeds,
|
|
39472
39468
|
scrollYLoad = tableReactData.scrollYLoad,
|
|
39473
|
-
editStore = tableReactData.editStore,
|
|
39474
39469
|
rowExpandeds = tableReactData.rowExpandeds,
|
|
39475
39470
|
expandColumn = tableReactData.expandColumn,
|
|
39476
39471
|
selectRow = tableReactData.selectRow;
|
|
@@ -39535,7 +39530,7 @@ var lineOffsetSizes = {
|
|
|
39535
39530
|
// 处理新增状态
|
|
39536
39531
|
var isNewRow = false;
|
|
39537
39532
|
if (editConfig) {
|
|
39538
|
-
isNewRow = $xetable.
|
|
39533
|
+
isNewRow = $xetable.isInsertByRow(row);
|
|
39539
39534
|
}
|
|
39540
39535
|
if (treeConfig && !scrollYLoad && !transform && treeExpandeds.length) {
|
|
39541
39536
|
rowChildren = row[treeOpts.children];
|
|
@@ -39900,7 +39895,8 @@ var lineOffsetSizes = {
|
|
|
39900
39895
|
// const isMergeRightFixedExceeded = computeIsMergeRightFixedExceeded.value
|
|
39901
39896
|
// 如果是使用优化模式
|
|
39902
39897
|
if (fixedType) {
|
|
39903
|
-
|
|
39898
|
+
// 如果存在展开行使用全量渲染
|
|
39899
|
+
if (!tableReactData.expandColumn && (scrollYLoad || (allColumnOverflow ? isAllOverflow : allColumnOverflow))) {
|
|
39904
39900
|
if (!mergeList.length && !spanMethod && !(keyboardConfig && keyboardOpts.isMerge)) {
|
|
39905
39901
|
tableColumn = fixedColumn;
|
|
39906
39902
|
} else {
|
|
@@ -40592,7 +40588,8 @@ function mergeFooterMethod(mergeFooterList, _rowIndex, _columnIndex) {
|
|
|
40592
40588
|
var columnOpts = computeColumnOpts.value;
|
|
40593
40589
|
// 如果是使用优化模式
|
|
40594
40590
|
if (fixedType) {
|
|
40595
|
-
|
|
40591
|
+
// 如果存在展开行使用全量渲染
|
|
40592
|
+
if (!tableReactData.expandColumn && (scrollXLoad || allColumnFooterOverflow)) {
|
|
40596
40593
|
if (!mergeFooterList.length || !footerSpanMethod) {
|
|
40597
40594
|
tableColumn = fixedColumn;
|
|
40598
40595
|
} else {
|
|
@@ -40963,7 +40960,9 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
40963
40960
|
column: null
|
|
40964
40961
|
},
|
|
40965
40962
|
insertList: [],
|
|
40966
|
-
|
|
40963
|
+
insertMaps: {},
|
|
40964
|
+
removeList: [],
|
|
40965
|
+
removeMaps: {}
|
|
40967
40966
|
},
|
|
40968
40967
|
// 存放 tooltip 相关信息
|
|
40969
40968
|
tooltipStore: {
|
|
@@ -41139,6 +41138,9 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
41139
41138
|
var computeRowOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(function () {
|
|
41140
41139
|
return Object.assign({}, conf.table.rowConfig, props.rowConfig);
|
|
41141
41140
|
});
|
|
41141
|
+
var computeResizeleOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(function () {
|
|
41142
|
+
return Object.assign({}, conf.table.resizeConfig, props.resizeConfig);
|
|
41143
|
+
});
|
|
41142
41144
|
var computeResizableOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(function () {
|
|
41143
41145
|
return Object.assign({}, conf.table.resizableConfig, props.resizableConfig);
|
|
41144
41146
|
});
|
|
@@ -41318,6 +41320,7 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
41318
41320
|
computeSYOpts: computeSYOpts,
|
|
41319
41321
|
computeColumnOpts: computeColumnOpts,
|
|
41320
41322
|
computeRowOpts: computeRowOpts,
|
|
41323
|
+
computeResizeleOpts: computeResizeleOpts,
|
|
41321
41324
|
computeResizableOpts: computeResizableOpts,
|
|
41322
41325
|
computeSeqOpts: computeSeqOpts,
|
|
41323
41326
|
computeRadioOpts: computeRadioOpts,
|
|
@@ -42345,7 +42348,8 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
42345
42348
|
var renderColumnList = tableColumn;
|
|
42346
42349
|
// 如果是使用优化模式
|
|
42347
42350
|
if (fixedType) {
|
|
42348
|
-
|
|
42351
|
+
// 如果存在展开行使用全量渲染
|
|
42352
|
+
if (!reactData.expandColumn && (scrollYLoad || (allColumnOverflow ? isAllOverflow : allColumnOverflow))) {
|
|
42349
42353
|
if (!mergeList.length && !spanMethod && !(keyboardConfig && keyboardOpts.isMerge)) {
|
|
42350
42354
|
renderColumnList = fixedColumn;
|
|
42351
42355
|
} else {
|
|
@@ -42371,7 +42375,8 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
42371
42375
|
var renderColumnList = tableColumn;
|
|
42372
42376
|
// 如果是使用优化模式
|
|
42373
42377
|
if (fixedType) {
|
|
42374
|
-
|
|
42378
|
+
// 如果存在展开行使用全量渲染
|
|
42379
|
+
if (!reactData.expandColumn && (scrollXLoad || allColumnFooterOverflow)) {
|
|
42375
42380
|
if (!mergeFooterList.length || !footerSpanMethod) {
|
|
42376
42381
|
renderColumnList = fixedColumn;
|
|
42377
42382
|
} else {
|
|
@@ -43012,7 +43017,9 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
43012
43017
|
scrollXStore.startIndex = 0;
|
|
43013
43018
|
scrollXStore.endIndex = 1;
|
|
43014
43019
|
editStore.insertList = [];
|
|
43020
|
+
editStore.insertMaps = {};
|
|
43015
43021
|
editStore.removeList = [];
|
|
43022
|
+
editStore.removeMaps = {};
|
|
43016
43023
|
var sYLoad = updateScrollYStatus(fullData);
|
|
43017
43024
|
reactData.scrollYLoad = sYLoad;
|
|
43018
43025
|
// 全量数据
|
|
@@ -43283,8 +43290,9 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
43283
43290
|
var sYOpts = computeSYOpts.value;
|
|
43284
43291
|
var treeOpts = computeTreeOpts.value;
|
|
43285
43292
|
var transform = treeOpts.transform;
|
|
43293
|
+
var allList = fullData || internalData.tableFullData;
|
|
43286
43294
|
// 如果gt为0,则总是启用
|
|
43287
|
-
var scrollYLoad = (transform || !treeConfig) && !!sYOpts.enabled && sYOpts.gt > -1 && (sYOpts.gt === 0 || sYOpts.gt <
|
|
43295
|
+
var scrollYLoad = (transform || !treeConfig) && !!sYOpts.enabled && sYOpts.gt > -1 && (sYOpts.gt === 0 || sYOpts.gt < allList.length);
|
|
43288
43296
|
reactData.scrollYLoad = scrollYLoad;
|
|
43289
43297
|
return scrollYLoad;
|
|
43290
43298
|
};
|
|
@@ -43820,7 +43828,8 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
43820
43828
|
*/
|
|
43821
43829
|
isInsertByRow: function (row) {
|
|
43822
43830
|
var editStore = reactData.editStore;
|
|
43823
|
-
|
|
43831
|
+
var rowid = getRowid($xetable, row);
|
|
43832
|
+
return editStore.insertList.length && editStore.insertMaps[rowid];
|
|
43824
43833
|
},
|
|
43825
43834
|
/**
|
|
43826
43835
|
* 删除所有新增的临时数据
|
|
@@ -44038,6 +44047,28 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
44038
44047
|
}
|
|
44039
44048
|
return tablePrivateMethods.handleCustom();
|
|
44040
44049
|
},
|
|
44050
|
+
setColumnWidth: function (fieldOrColumn, width) {
|
|
44051
|
+
var column = handleFieldOrColumn($xetable, fieldOrColumn);
|
|
44052
|
+
if (column) {
|
|
44053
|
+
var colWidth = xe_utils_default().toInteger(width);
|
|
44054
|
+
var rdWidth = colWidth;
|
|
44055
|
+
if (isScale(width)) {
|
|
44056
|
+
var tableBody = refTableBody.value;
|
|
44057
|
+
var bodyElem = tableBody ? tableBody.$el : null;
|
|
44058
|
+
var bodyWidth = bodyElem ? bodyElem.clientWidth - 1 : 0;
|
|
44059
|
+
rdWidth = Math.floor(colWidth * bodyWidth);
|
|
44060
|
+
}
|
|
44061
|
+
column.renderWidth = rdWidth;
|
|
44062
|
+
}
|
|
44063
|
+
return (0,external_commonjs_vue_commonjs2_vue_root_Vue_.nextTick)();
|
|
44064
|
+
},
|
|
44065
|
+
getColumnWidth: function (fieldOrColumn) {
|
|
44066
|
+
var column = handleFieldOrColumn($xetable, fieldOrColumn);
|
|
44067
|
+
if (column) {
|
|
44068
|
+
return column.renderWidth;
|
|
44069
|
+
}
|
|
44070
|
+
return 0;
|
|
44071
|
+
},
|
|
44041
44072
|
/**
|
|
44042
44073
|
* 手动重置列的显示隐藏、列宽拖动的状态;
|
|
44043
44074
|
* 如果为 true 则重置所有状态
|
|
@@ -45743,47 +45774,52 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
45743
45774
|
},
|
|
45744
45775
|
/**
|
|
45745
45776
|
* 定义行数据中的列属性,如果不存在则定义
|
|
45746
|
-
* @param {Row}
|
|
45777
|
+
* @param {Row} records 行数据
|
|
45747
45778
|
*/
|
|
45748
|
-
defineField: function (
|
|
45779
|
+
defineField: function (records) {
|
|
45749
45780
|
var treeConfig = props.treeConfig;
|
|
45750
45781
|
var expandOpts = computeExpandOpts.value;
|
|
45751
45782
|
var treeOpts = computeTreeOpts.value;
|
|
45752
45783
|
var radioOpts = computeRadioOpts.value;
|
|
45753
45784
|
var checkboxOpts = computeCheckboxOpts.value;
|
|
45754
45785
|
var rowkey = getRowkey($xetable);
|
|
45755
|
-
|
|
45756
|
-
|
|
45757
|
-
|
|
45758
|
-
|
|
45759
|
-
|
|
45760
|
-
|
|
45761
|
-
|
|
45762
|
-
|
|
45763
|
-
|
|
45764
|
-
|
|
45765
|
-
|
|
45766
|
-
|
|
45767
|
-
|
|
45786
|
+
if (!xe_utils_default().isArray(records)) {
|
|
45787
|
+
records = [records];
|
|
45788
|
+
}
|
|
45789
|
+
return records.map(function (record) {
|
|
45790
|
+
internalData.tableFullColumn.forEach(function (column) {
|
|
45791
|
+
var field = column.field,
|
|
45792
|
+
editRender = column.editRender;
|
|
45793
|
+
if (field && !xe_utils_default().has(record, field) && !record[field]) {
|
|
45794
|
+
var cellValue = null;
|
|
45795
|
+
if (editRender) {
|
|
45796
|
+
var defaultValue = editRender.defaultValue;
|
|
45797
|
+
if (xe_utils_default().isFunction(defaultValue)) {
|
|
45798
|
+
cellValue = defaultValue({
|
|
45799
|
+
column: column
|
|
45800
|
+
});
|
|
45801
|
+
} else if (!xe_utils_default().isUndefined(defaultValue)) {
|
|
45802
|
+
cellValue = defaultValue;
|
|
45803
|
+
}
|
|
45768
45804
|
}
|
|
45805
|
+
xe_utils_default().set(record, field, cellValue);
|
|
45806
|
+
}
|
|
45807
|
+
});
|
|
45808
|
+
var otherFields = [radioOpts.labelField, checkboxOpts.checkField, checkboxOpts.labelField, expandOpts.labelField];
|
|
45809
|
+
otherFields.forEach(function (key) {
|
|
45810
|
+
if (key && eqEmptyValue(xe_utils_default().get(record, key))) {
|
|
45811
|
+
xe_utils_default().set(record, key, null);
|
|
45769
45812
|
}
|
|
45770
|
-
|
|
45813
|
+
});
|
|
45814
|
+
if (treeConfig && treeOpts.lazy && xe_utils_default().isUndefined(record[treeOpts.children])) {
|
|
45815
|
+
record[treeOpts.children] = null;
|
|
45771
45816
|
}
|
|
45772
|
-
|
|
45773
|
-
|
|
45774
|
-
|
|
45775
|
-
if (key && eqEmptyValue(xe_utils_default().get(record, key))) {
|
|
45776
|
-
xe_utils_default().set(record, key, null);
|
|
45817
|
+
// 必须有行数据的唯一主键,可以自行设置;也可以默认生成一个随机数
|
|
45818
|
+
if (eqEmptyValue(xe_utils_default().get(record, rowkey))) {
|
|
45819
|
+
xe_utils_default().set(record, rowkey, getRowUniqueId());
|
|
45777
45820
|
}
|
|
45821
|
+
return record;
|
|
45778
45822
|
});
|
|
45779
|
-
if (treeConfig && treeOpts.lazy && xe_utils_default().isUndefined(record[treeOpts.children])) {
|
|
45780
|
-
record[treeOpts.children] = null;
|
|
45781
|
-
}
|
|
45782
|
-
// 必须有行数据的唯一主键,可以自行设置;也可以默认生成一个随机数
|
|
45783
|
-
if (eqEmptyValue(xe_utils_default().get(record, rowkey))) {
|
|
45784
|
-
xe_utils_default().set(record, rowkey, getRowUniqueId());
|
|
45785
|
-
}
|
|
45786
|
-
return record;
|
|
45787
45823
|
},
|
|
45788
45824
|
handleTableData: function (force) {
|
|
45789
45825
|
var scrollYLoad = reactData.scrollYLoad;
|
|
@@ -46670,6 +46706,7 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
46670
46706
|
return rowToVisible($xetable, row);
|
|
46671
46707
|
});
|
|
46672
46708
|
},
|
|
46709
|
+
updateScrollYStatus: updateScrollYStatus,
|
|
46673
46710
|
// 更新横向 X 可视渲染上下剩余空间大小
|
|
46674
46711
|
updateScrollXSpace: function () {
|
|
46675
46712
|
var isGroup = reactData.isGroup,
|
|
@@ -46797,6 +46834,7 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
46797
46834
|
internalData.tZindex = nextZIndex();
|
|
46798
46835
|
}
|
|
46799
46836
|
},
|
|
46837
|
+
handleCheckedCheckboxRow: handleCheckedCheckboxRow,
|
|
46800
46838
|
/**
|
|
46801
46839
|
* 行 hover 事件
|
|
46802
46840
|
*/
|
|
@@ -47182,9 +47220,15 @@ var visibleStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_VISIBLE';
|
|
|
47182
47220
|
updateStyle();
|
|
47183
47221
|
});
|
|
47184
47222
|
if (props.autoResize) {
|
|
47223
|
+
var resizeOpts = computeResizeleOpts.value;
|
|
47185
47224
|
var el = refElem.value;
|
|
47186
47225
|
var parentEl = tablePrivateMethods.getParentElem();
|
|
47187
|
-
resizeObserver = createResizeEvent(function () {
|
|
47226
|
+
resizeObserver = createResizeEvent(resizeOpts.refreshDelay ? xe_utils_default().throttle(function () {
|
|
47227
|
+
tableMethods.recalculate(true);
|
|
47228
|
+
}, resizeOpts.refreshDelay, {
|
|
47229
|
+
leading: true,
|
|
47230
|
+
trailing: true
|
|
47231
|
+
}) : function () {
|
|
47188
47232
|
if (props.autoResize) {
|
|
47189
47233
|
tableMethods.recalculate(true);
|
|
47190
47234
|
}
|
|
@@ -48186,17 +48230,10 @@ const MlCol_exports_ = MlColvue_type_script_lang_ts_setup_true;
|
|
|
48186
48230
|
}));
|
|
48187
48231
|
;// CONCATENATED MODULE: ./components/ml-button/MlButton.vue?vue&type=script&lang=ts&setup=true
|
|
48188
48232
|
|
|
48189
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-button/MlButton.vue?vue&type=style&index=0&id=6e8e30aa&lang=scss
|
|
48190
|
-
// extracted by mini-css-extract-plugin
|
|
48191
|
-
|
|
48192
|
-
;// CONCATENATED MODULE: ./components/ml-button/MlButton.vue?vue&type=style&index=0&id=6e8e30aa&lang=scss
|
|
48193
|
-
|
|
48194
48233
|
;// CONCATENATED MODULE: ./components/ml-button/MlButton.vue
|
|
48195
48234
|
|
|
48196
48235
|
|
|
48197
48236
|
|
|
48198
|
-
;
|
|
48199
|
-
|
|
48200
48237
|
const MlButton_exports_ = MlButtonvue_type_script_lang_ts_setup_true;
|
|
48201
48238
|
|
|
48202
48239
|
/* harmony default export */ var MlButton = (MlButton_exports_);
|
|
@@ -48483,7 +48520,7 @@ const MlTextareavue_type_script_lang_ts_setup_true_hoisted_1 = {
|
|
|
48483
48520
|
},
|
|
48484
48521
|
maxLength: {
|
|
48485
48522
|
type: Number,
|
|
48486
|
-
default:
|
|
48523
|
+
default: 200
|
|
48487
48524
|
},
|
|
48488
48525
|
placeholder: {
|
|
48489
48526
|
type: String,
|
|
@@ -48577,10 +48614,10 @@ const MlTextareavue_type_script_lang_ts_setup_true_hoisted_1 = {
|
|
|
48577
48614
|
}));
|
|
48578
48615
|
;// CONCATENATED MODULE: ./components/ml-textarea/MlTextarea.vue?vue&type=script&lang=ts&setup=true
|
|
48579
48616
|
|
|
48580
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-textarea/MlTextarea.vue?vue&type=style&index=0&id=
|
|
48617
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-textarea/MlTextarea.vue?vue&type=style&index=0&id=40b46ee6&lang=scss
|
|
48581
48618
|
// extracted by mini-css-extract-plugin
|
|
48582
48619
|
|
|
48583
|
-
;// CONCATENATED MODULE: ./components/ml-textarea/MlTextarea.vue?vue&type=style&index=0&id=
|
|
48620
|
+
;// CONCATENATED MODULE: ./components/ml-textarea/MlTextarea.vue?vue&type=style&index=0&id=40b46ee6&lang=scss
|
|
48584
48621
|
|
|
48585
48622
|
;// CONCATENATED MODULE: ./components/ml-textarea/MlTextarea.vue
|
|
48586
48623
|
|
|
@@ -58824,9 +58861,9 @@ function normalizeProps(props) {
|
|
|
58824
58861
|
|
|
58825
58862
|
// These tag configs are shared between compiler-dom and runtime-dom, so they
|
|
58826
58863
|
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element
|
|
58827
|
-
const HTML_TAGS = (/* unused pure expression or super */ null && ('html,body,base,head,link,meta,style,title,address,article,aside,footer,' + 'header,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,' + 'figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,' + 'data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,' + 'time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,' + 'canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,' + 'th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,' + 'option,output,progress,select,textarea,details,dialog,menu,' + 'summary,template,blockquote,iframe,tfoot'));
|
|
58864
|
+
const HTML_TAGS = (/* unused pure expression or super */ null && ('html,body,base,head,link,meta,style,title,address,article,aside,footer,' + 'header,hgroup,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,' + 'figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,' + 'data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,' + 'time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,' + 'canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,' + 'th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,' + 'option,output,progress,select,textarea,details,dialog,menu,' + 'summary,template,blockquote,iframe,tfoot'));
|
|
58828
58865
|
// https://developer.mozilla.org/en-US/docs/Web/SVG/Element
|
|
58829
|
-
const SVG_TAGS = (/* unused pure expression or super */ null && ('svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,' + 'defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,' + 'feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,' + '
|
|
58866
|
+
const SVG_TAGS = (/* unused pure expression or super */ null && ('svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,' + 'defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,' + 'feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,' + 'feDistantLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,' + 'feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,' + 'fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,' + 'foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,' + 'mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,' + 'polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,' + 'text,textPath,title,tspan,unknown,use,view'));
|
|
58830
58867
|
const VOID_TAGS = 'area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr';
|
|
58831
58868
|
/**
|
|
58832
58869
|
* Compiler only.
|
|
@@ -59047,6 +59084,7 @@ const shared_esm_bundler_isArray = Array.isArray;
|
|
|
59047
59084
|
const isMap = val => toTypeString(val) === '[object Map]';
|
|
59048
59085
|
const isSet = val => toTypeString(val) === '[object Set]';
|
|
59049
59086
|
const isDate = val => toTypeString(val) === '[object Date]';
|
|
59087
|
+
const isRegExp = val => toTypeString(val) === '[object RegExp]';
|
|
59050
59088
|
const shared_esm_bundler_isFunction = val => typeof val === 'function';
|
|
59051
59089
|
const shared_esm_bundler_isString = val => typeof val === 'string';
|
|
59052
59090
|
const isSymbol = val => typeof val === 'symbol';
|
|
@@ -59107,10 +59145,22 @@ const def = (obj, key, value) => {
|
|
|
59107
59145
|
value
|
|
59108
59146
|
});
|
|
59109
59147
|
};
|
|
59110
|
-
|
|
59148
|
+
/**
|
|
59149
|
+
* "123-foo" will be parsed to 123
|
|
59150
|
+
* This is used for the .number modifier in v-model
|
|
59151
|
+
*/
|
|
59152
|
+
const looseToNumber = val => {
|
|
59111
59153
|
const n = parseFloat(val);
|
|
59112
59154
|
return isNaN(n) ? val : n;
|
|
59113
59155
|
};
|
|
59156
|
+
/**
|
|
59157
|
+
* Only conerces number-like strings
|
|
59158
|
+
* "123-foo" will be returned as-is
|
|
59159
|
+
*/
|
|
59160
|
+
const toNumber = val => {
|
|
59161
|
+
const n = shared_esm_bundler_isString(val) ? Number(val) : NaN;
|
|
59162
|
+
return isNaN(n) ? val : n;
|
|
59163
|
+
};
|
|
59114
59164
|
let _globalThis;
|
|
59115
59165
|
const getGlobalThis = () => {
|
|
59116
59166
|
return _globalThis || (_globalThis = typeof globalThis !== 'undefined' ? globalThis : typeof self !== 'undefined' ? self : typeof window !== 'undefined' ? window : typeof __webpack_require__.g !== 'undefined' ? __webpack_require__.g : {});
|
|
@@ -67589,9 +67639,7 @@ const MlTablevue_type_script_lang_ts_setup_true_hoisted_4 = {
|
|
|
67589
67639
|
};
|
|
67590
67640
|
if (props.showTool) {
|
|
67591
67641
|
opts.zoom = true;
|
|
67592
|
-
|
|
67593
|
-
opts.custom = true;
|
|
67594
|
-
}
|
|
67642
|
+
opts.custom = true;
|
|
67595
67643
|
}
|
|
67596
67644
|
return {
|
|
67597
67645
|
...opts,
|
|
@@ -67845,10 +67893,10 @@ const MlTablevue_type_script_lang_ts_setup_true_hoisted_4 = {
|
|
|
67845
67893
|
}));
|
|
67846
67894
|
;// CONCATENATED MODULE: ./components/ml-table/MlTable.vue?vue&type=script&lang=ts&setup=true
|
|
67847
67895
|
|
|
67848
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-table/MlTable.vue?vue&type=style&index=0&id=
|
|
67896
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-table/MlTable.vue?vue&type=style&index=0&id=752722b6&lang=scss
|
|
67849
67897
|
// extracted by mini-css-extract-plugin
|
|
67850
67898
|
|
|
67851
|
-
;// CONCATENATED MODULE: ./components/ml-table/MlTable.vue?vue&type=style&index=0&id=
|
|
67899
|
+
;// CONCATENATED MODULE: ./components/ml-table/MlTable.vue?vue&type=style&index=0&id=752722b6&lang=scss
|
|
67852
67900
|
|
|
67853
67901
|
;// CONCATENATED MODULE: ./components/ml-table/MlTable.vue
|
|
67854
67902
|
|
|
@@ -68212,9 +68260,7 @@ const MlGridvue_type_script_lang_ts_setup_true_hoisted_26 = {
|
|
|
68212
68260
|
};
|
|
68213
68261
|
if (props.showTool) {
|
|
68214
68262
|
opts.zoom = true;
|
|
68215
|
-
|
|
68216
|
-
opts.custom = true;
|
|
68217
|
-
}
|
|
68263
|
+
opts.custom = true;
|
|
68218
68264
|
}
|
|
68219
68265
|
return {
|
|
68220
68266
|
...opts,
|
|
@@ -68888,10 +68934,10 @@ const MlGridvue_type_script_lang_ts_setup_true_hoisted_26 = {
|
|
|
68888
68934
|
}));
|
|
68889
68935
|
;// CONCATENATED MODULE: ./components/ml-table/MlGrid.vue?vue&type=script&lang=ts&setup=true
|
|
68890
68936
|
|
|
68891
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-table/MlGrid.vue?vue&type=style&index=0&id=
|
|
68937
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-table/MlGrid.vue?vue&type=style&index=0&id=dbca7880&lang=scss
|
|
68892
68938
|
// extracted by mini-css-extract-plugin
|
|
68893
68939
|
|
|
68894
|
-
;// CONCATENATED MODULE: ./components/ml-table/MlGrid.vue?vue&type=style&index=0&id=
|
|
68940
|
+
;// CONCATENATED MODULE: ./components/ml-table/MlGrid.vue?vue&type=style&index=0&id=dbca7880&lang=scss
|
|
68895
68941
|
|
|
68896
68942
|
;// CONCATENATED MODULE: ./components/ml-table/MlGrid.vue
|
|
68897
68943
|
|
|
@@ -72878,7 +72924,6 @@ VXETable.setup({
|
|
|
72878
72924
|
|
|
72879
72925
|
|
|
72880
72926
|
|
|
72881
|
-
|
|
72882
72927
|
// import MlPasswordInput from './components/ml-input/MlPasswordInput.vue'
|
|
72883
72928
|
// import MlAutoInput from './components/ml-input/MlAutoInput.vue'
|
|
72884
72929
|
|
|
@@ -73052,7 +73097,7 @@ function index_config(options) {
|
|
|
73052
73097
|
return config_0;
|
|
73053
73098
|
}
|
|
73054
73099
|
const MaliUI = {
|
|
73055
|
-
version: "1.0.
|
|
73100
|
+
version: "1.0.57",
|
|
73056
73101
|
install: index_install,
|
|
73057
73102
|
config: index_config,
|
|
73058
73103
|
renderer: index_esm.renderer,
|