mali-ui-plus 1.0.183 → 1.1.0

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/env/index.js CHANGED
@@ -159,7 +159,7 @@ function getBuildSuccessMsg (description) {
159
159
  return `
160
160
  # <font color="info">${[getCustomName(process.env.VUE_APP_CUSTOM_MODULE), description, '-', getEnvName(process.env.VUE_APP_MODE), '已更新'].join('')}</font>
161
161
  >> 构建时间:<font color="comment">${XEUtils.toDateString(XEUtils.toStringDate(process.env.VUE_APP_PUBLISH_DATE, 'yyyyMMddHHmmss'), 'yyyy-MM-dd HH:mm:ss')}</font>
162
- >> 访问地址:[${process.env.VUE_APP_URL}](${process.env.VUE_APP_URL})
162
+ ${process.env.VUE_APP_URL ? `>> 访问地址:[${process.env.VUE_APP_URL}](${process.env.VUE_APP_URL})` : ''}
163
163
  <font color="comment">-自动化发版</font>
164
164
  `
165
165
  }
@@ -10083,7 +10083,7 @@ var GlobalConfig = {
10083
10083
  ;// CONCATENATED MODULE: ./node_modules/vxe-table/es/tools/log.js
10084
10084
 
10085
10085
  function getLog(message, params) {
10086
- return "[vxe-table v".concat("4.5.0-beta.22", "] ").concat(conf.i18n(message, params));
10086
+ return "[vxe-table v".concat("4.5.1", "] ").concat(conf.i18n(message, params));
10087
10087
  }
10088
10088
  function outLog(type) {
10089
10089
  return function (message, params) {
@@ -11845,7 +11845,7 @@ var config = new VXETableConfig();
11845
11845
  var v = 'v4';
11846
11846
  var VXETable = {
11847
11847
  v: v,
11848
- version: "4.5.0-beta.22",
11848
+ version: "4.5.1",
11849
11849
  setup: setup,
11850
11850
  interceptor: interceptor,
11851
11851
  renderer: renderer,
@@ -35734,7 +35734,7 @@ var orderStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_ORDER';
35734
35734
  return selectRadioRow;
35735
35735
  }
35736
35736
  } else {
35737
- if (!afterFullRowMaps[rowid]) {
35737
+ if (afterFullRowMaps[rowid]) {
35738
35738
  return selectRadioRow;
35739
35739
  }
35740
35740
  }
@@ -54915,6 +54915,15 @@ const _hoisted_4 = {
54915
54915
  }
54916
54916
  return opts;
54917
54917
  });
54918
+ const treeOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(() => {
54919
+ const opts = Object.assign({}, props.treeConfig);
54920
+ if (opts.children) {
54921
+ opts.childrenField = opts.children;
54922
+ } else if (opts.childrenField) {
54923
+ opts.children = opts.childrenField;
54924
+ }
54925
+ return opts;
54926
+ });
54918
54927
  const seqOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(() => {
54919
54928
  return Object.assign({}, props.seqConfig);
54920
54929
  });
@@ -55136,7 +55145,7 @@ const _hoisted_4 = {
55136
55145
  mergeFooterItems: __props.mergeFooterItems,
55137
55146
  printConfig: __props.printConfig,
55138
55147
  menuConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(menuOpts),
55139
- treeConfig: __props.treeConfig,
55148
+ treeConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(treeOpts),
55140
55149
  seqConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(seqOpts),
55141
55150
  sortConfig: __props.sortConfig,
55142
55151
  filterConfig: __props.filterConfig,
@@ -55499,6 +55508,15 @@ const _hoisted_15 = {
55499
55508
  }
55500
55509
  return opts;
55501
55510
  });
55511
+ const treeOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(() => {
55512
+ const opts = Object.assign({}, props.treeConfig);
55513
+ if (opts.children) {
55514
+ opts.childrenField = opts.children;
55515
+ } else if (opts.childrenField) {
55516
+ opts.children = opts.childrenField;
55517
+ }
55518
+ return opts;
55519
+ });
55502
55520
  const seqOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(() => {
55503
55521
  return Object.assign({
55504
55522
  seqMethod: ({
@@ -56057,7 +56075,7 @@ const _hoisted_15 = {
56057
56075
  mergeFooterItems: __props.mergeFooterItems,
56058
56076
  printConfig: __props.printConfig,
56059
56077
  menuConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(menuOpts),
56060
- treeConfig: __props.treeConfig,
56078
+ treeConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(treeOpts),
56061
56079
  seqConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(seqOpts),
56062
56080
  sortConfig: __props.sortConfig,
56063
56081
  filterConfig: __props.filterConfig,
@@ -61516,7 +61534,7 @@ function index_config(options) {
61516
61534
  return config_0;
61517
61535
  }
61518
61536
  const MaliUI = {
61519
- version: "1.0.181",
61537
+ version: "1.1.0",
61520
61538
  install: index_install,
61521
61539
  config: index_config,
61522
61540
  renderer: {
@@ -10093,7 +10093,7 @@ var GlobalConfig = {
10093
10093
  ;// CONCATENATED MODULE: ./node_modules/vxe-table/es/tools/log.js
10094
10094
 
10095
10095
  function getLog(message, params) {
10096
- return "[vxe-table v".concat("4.5.0-beta.22", "] ").concat(conf.i18n(message, params));
10096
+ return "[vxe-table v".concat("4.5.1", "] ").concat(conf.i18n(message, params));
10097
10097
  }
10098
10098
  function outLog(type) {
10099
10099
  return function (message, params) {
@@ -11855,7 +11855,7 @@ var config = new VXETableConfig();
11855
11855
  var v = 'v4';
11856
11856
  var VXETable = {
11857
11857
  v: v,
11858
- version: "4.5.0-beta.22",
11858
+ version: "4.5.1",
11859
11859
  setup: setup,
11860
11860
  interceptor: interceptor,
11861
11861
  renderer: renderer,
@@ -35744,7 +35744,7 @@ var orderStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_ORDER';
35744
35744
  return selectRadioRow;
35745
35745
  }
35746
35746
  } else {
35747
- if (!afterFullRowMaps[rowid]) {
35747
+ if (afterFullRowMaps[rowid]) {
35748
35748
  return selectRadioRow;
35749
35749
  }
35750
35750
  }
@@ -54925,6 +54925,15 @@ const _hoisted_4 = {
54925
54925
  }
54926
54926
  return opts;
54927
54927
  });
54928
+ const treeOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(() => {
54929
+ const opts = Object.assign({}, props.treeConfig);
54930
+ if (opts.children) {
54931
+ opts.childrenField = opts.children;
54932
+ } else if (opts.childrenField) {
54933
+ opts.children = opts.childrenField;
54934
+ }
54935
+ return opts;
54936
+ });
54928
54937
  const seqOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(() => {
54929
54938
  return Object.assign({}, props.seqConfig);
54930
54939
  });
@@ -55146,7 +55155,7 @@ const _hoisted_4 = {
55146
55155
  mergeFooterItems: __props.mergeFooterItems,
55147
55156
  printConfig: __props.printConfig,
55148
55157
  menuConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(menuOpts),
55149
- treeConfig: __props.treeConfig,
55158
+ treeConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(treeOpts),
55150
55159
  seqConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(seqOpts),
55151
55160
  sortConfig: __props.sortConfig,
55152
55161
  filterConfig: __props.filterConfig,
@@ -55509,6 +55518,15 @@ const _hoisted_15 = {
55509
55518
  }
55510
55519
  return opts;
55511
55520
  });
55521
+ const treeOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(() => {
55522
+ const opts = Object.assign({}, props.treeConfig);
55523
+ if (opts.children) {
55524
+ opts.childrenField = opts.children;
55525
+ } else if (opts.childrenField) {
55526
+ opts.children = opts.childrenField;
55527
+ }
55528
+ return opts;
55529
+ });
55512
55530
  const seqOpts = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.computed)(() => {
55513
55531
  return Object.assign({
55514
55532
  seqMethod: ({
@@ -56067,7 +56085,7 @@ const _hoisted_15 = {
56067
56085
  mergeFooterItems: __props.mergeFooterItems,
56068
56086
  printConfig: __props.printConfig,
56069
56087
  menuConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(menuOpts),
56070
- treeConfig: __props.treeConfig,
56088
+ treeConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(treeOpts),
56071
56089
  seqConfig: (0,external_commonjs_vue_commonjs2_vue_root_Vue_.unref)(seqOpts),
56072
56090
  sortConfig: __props.sortConfig,
56073
56091
  filterConfig: __props.filterConfig,
@@ -61526,7 +61544,7 @@ function index_config(options) {
61526
61544
  return config_0;
61527
61545
  }
61528
61546
  const MaliUI = {
61529
- version: "1.0.181",
61547
+ version: "1.1.0",
61530
61548
  install: index_install,
61531
61549
  config: index_config,
61532
61550
  renderer: {