@vxe-ui/core 3.2.9 → 3.2.11

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/es/index.esm.js CHANGED
@@ -16,6 +16,7 @@ import { clipboard } from './src/clipboard';
16
16
  import { permission } from './src/permission';
17
17
  import { log } from './src/log';
18
18
  import { globalMixins } from './src/mixins';
19
+ import { getSlotVNs } from './src/vm';
19
20
  import XEUtils from 'xe-utils';
20
21
  const installedPlugins = [];
21
22
  export function use(Plugin, options) {
@@ -44,6 +45,20 @@ export function renderEmptyElement(_vm) {
44
45
  const { _e } = _vm;
45
46
  return _e();
46
47
  }
48
+ export function checkVersion(version, pVersion, sVersion) {
49
+ if (version) {
50
+ const vRest = `${version}`.match(/(\d+).(\d+).(\d+)/);
51
+ if (vRest) {
52
+ const pV = XEUtils.toNumber(vRest[1]);
53
+ if (sVersion) {
54
+ const sV = XEUtils.toNumber(vRest[2]);
55
+ return pV >= pVersion && sV >= sVersion;
56
+ }
57
+ return pV >= pVersion;
58
+ }
59
+ }
60
+ return false;
61
+ }
47
62
  export const VxeUI = Object.assign(VxeCore, {
48
63
  renderEmptyElement,
49
64
  setTheme,
@@ -77,6 +92,8 @@ export const VxeUI = Object.assign(VxeCore, {
77
92
  getComponent,
78
93
  hasComponent,
79
94
  globalMixins,
95
+ getSlotVNs,
96
+ checkVersion,
80
97
  use
81
98
  });
82
99
  setTheme();
@@ -97,5 +114,6 @@ export * from './src/clipboard';
97
114
  export * from './src/permission';
98
115
  export * from './src/dataStore';
99
116
  export * from './src/mixins';
117
+ export * from './src/vm';
100
118
  export * from './src/log';
101
119
  export default VxeUI;
package/es/src/core.js CHANGED
@@ -1,4 +1,4 @@
1
- export const coreVersion = "3.2.9";
1
+ export const coreVersion = "3.2.11";
2
2
  export const VxeCore = {
3
3
  coreVersion,
4
4
  uiVersion: '',
package/es/src/log.js CHANGED
@@ -6,7 +6,7 @@ function createLog(type, name) {
6
6
  return msg;
7
7
  };
8
8
  }
9
- const version = "3.2.9";
9
+ const version = "3.2.11";
10
10
  export const log = {
11
11
  create: createLog,
12
12
  warn: createLog('warn', `v${version}`),
@@ -9,9 +9,11 @@ var _exportNames = {
9
9
  component: true,
10
10
  hasComponent: true,
11
11
  renderEmptyElement: true,
12
+ checkVersion: true,
12
13
  VxeUI: true
13
14
  };
14
15
  exports.VxeUI = void 0;
16
+ exports.checkVersion = checkVersion;
15
17
  exports.component = component;
16
18
  exports.default = void 0;
17
19
  exports.getComponent = getComponent;
@@ -234,6 +236,18 @@ Object.keys(_mixins).forEach(function (key) {
234
236
  }
235
237
  });
236
238
  });
239
+ var _vm2 = require("./src/vm");
240
+ Object.keys(_vm2).forEach(function (key) {
241
+ if (key === "default" || key === "__esModule") return;
242
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
243
+ if (key in exports && exports[key] === _vm2[key]) return;
244
+ Object.defineProperty(exports, key, {
245
+ enumerable: true,
246
+ get: function () {
247
+ return _vm2[key];
248
+ }
249
+ });
250
+ });
237
251
  var _xeUtils = _interopRequireDefault(require("xe-utils"));
238
252
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
239
253
  const installedPlugins = [];
@@ -265,6 +279,20 @@ function renderEmptyElement(_vm) {
265
279
  } = _vm;
266
280
  return _e();
267
281
  }
282
+ function checkVersion(version, pVersion, sVersion) {
283
+ if (version) {
284
+ const vRest = `${version}`.match(/(\d+).(\d+).(\d+)/);
285
+ if (vRest) {
286
+ const pV = _xeUtils.default.toNumber(vRest[1]);
287
+ if (sVersion) {
288
+ const sV = _xeUtils.default.toNumber(vRest[2]);
289
+ return pV >= pVersion && sV >= sVersion;
290
+ }
291
+ return pV >= pVersion;
292
+ }
293
+ }
294
+ return false;
295
+ }
268
296
  const VxeUI = exports.VxeUI = Object.assign(_core.VxeCore, {
269
297
  renderEmptyElement,
270
298
  setTheme: _theme.setTheme,
@@ -298,6 +326,8 @@ const VxeUI = exports.VxeUI = Object.assign(_core.VxeCore, {
298
326
  getComponent,
299
327
  hasComponent,
300
328
  globalMixins: _mixins.globalMixins,
329
+ getSlotVNs: _vm2.getSlotVNs,
330
+ checkVersion,
301
331
  use
302
332
  });
303
333
  (0, _theme.setTheme)();
package/lib/index.umd.js CHANGED
@@ -2412,6 +2412,7 @@ __webpack_require__.d(__webpack_exports__, {
2412
2412
  GLOBAL_EVENT_KEYS: function() { return /* reexport */ GLOBAL_EVENT_KEYS; },
2413
2413
  VxeCore: function() { return /* reexport */ VxeCore; },
2414
2414
  VxeUI: function() { return /* reexport */ VxeUI; },
2415
+ checkVersion: function() { return /* reexport */ checkVersion; },
2415
2416
  clipboard: function() { return /* reexport */ clipboard; },
2416
2417
  commands: function() { return /* reexport */ commands; },
2417
2418
  component: function() { return /* reexport */ component; },
@@ -2424,6 +2425,7 @@ __webpack_require__.d(__webpack_exports__, {
2424
2425
  getI18n: function() { return /* reexport */ getI18n; },
2425
2426
  getIcon: function() { return /* reexport */ getIcon; },
2426
2427
  getLanguage: function() { return /* reexport */ getLanguage; },
2428
+ getSlotVNs: function() { return /* reexport */ getSlotVNs; },
2427
2429
  getTheme: function() { return /* reexport */ getTheme; },
2428
2430
  globalEvents: function() { return /* reexport */ globalEvents; },
2429
2431
  globalMixins: function() { return /* reexport */ globalMixins; },
@@ -2471,7 +2473,7 @@ if (typeof window !== 'undefined') {
2471
2473
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
2472
2474
  var es_array_push = __webpack_require__(4114);
2473
2475
  ;// ./packages/src/core.ts
2474
- const coreVersion = "3.2.9";
2476
+ const coreVersion = "3.2.11";
2475
2477
  const VxeCore = {
2476
2478
  coreVersion,
2477
2479
  uiVersion: '',
@@ -3105,7 +3107,7 @@ function createLog(type, name) {
3105
3107
  return msg;
3106
3108
  };
3107
3109
  }
3108
- const version = "3.2.9";
3110
+ const version = "3.2.11";
3109
3111
  const log = {
3110
3112
  create: createLog,
3111
3113
  warn: createLog('warn', `v${version}`),
@@ -3578,6 +3580,7 @@ const globalMixins = {
3578
3580
 
3579
3581
 
3580
3582
 
3583
+
3581
3584
 
3582
3585
  const installedPlugins = [];
3583
3586
  function use(Plugin, options) {
@@ -3608,6 +3611,20 @@ function renderEmptyElement(_vm) {
3608
3611
  } = _vm;
3609
3612
  return _e();
3610
3613
  }
3614
+ function checkVersion(version, pVersion, sVersion) {
3615
+ if (version) {
3616
+ const vRest = `${version}`.match(/(\d+).(\d+).(\d+)/);
3617
+ if (vRest) {
3618
+ const pV = external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_default().toNumber(vRest[1]);
3619
+ if (sVersion) {
3620
+ const sV = external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_default().toNumber(vRest[2]);
3621
+ return pV >= pVersion && sV >= sVersion;
3622
+ }
3623
+ return pV >= pVersion;
3624
+ }
3625
+ }
3626
+ return false;
3627
+ }
3611
3628
  const VxeUI = Object.assign(VxeCore, {
3612
3629
  renderEmptyElement,
3613
3630
  setTheme: setTheme,
@@ -3641,6 +3658,8 @@ const VxeUI = Object.assign(VxeCore, {
3641
3658
  getComponent,
3642
3659
  hasComponent,
3643
3660
  globalMixins: globalMixins,
3661
+ getSlotVNs: getSlotVNs,
3662
+ checkVersion,
3644
3663
  use
3645
3664
  });
3646
3665
  setTheme();
@@ -3662,6 +3681,7 @@ setTheme();
3662
3681
 
3663
3682
 
3664
3683
 
3684
+
3665
3685
  /* harmony default export */ var packages_0 = (VxeUI);
3666
3686
  ;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
3667
3687
 
@@ -1 +1 @@
1
- ((t,e)=>{"object"==typeof exports&&"object"==typeof module?module.exports=e(require("vue"),require("xe-utils")):"function"==typeof define&&define.amd?define([,"xe-utils"],e):"object"==typeof exports?exports.VxeUI=e(require("vue"),require("xe-utils")):t.VxeUI=e(t.Vue,t.XEUtils)})("undefined"!=typeof self?self:this,function(St,jt){{var Pt={9274:function(t){t.exports=St},8871:function(t){t.exports=jt},9306:function(t,e,n){var r=n(4901),o=n(6823),i=TypeError;t.exports=function(t){if(r(t))return t;throw new i(o(t)+" is not a function")}},679:function(t,e,n){var r=n(1625),o=TypeError;t.exports=function(t,e){if(r(e,t))return t;throw new o("Incorrect invocation")}},8551:function(t,e,n){var r=n(34),o=String,i=TypeError;t.exports=function(t){if(r(t))return t;throw new i(o(t)+" is not an object")}},9617:function(t,e,n){function r(c){return function(t,e,n){var r=a(t),o=f(r);if(0!==o){var i,u=s(n,o);if(c&&e!=e){for(;u<o;)if((i=r[u++])!=i)return!0}else for(;u<o;u++)if((c||u in r)&&r[u]===e)return c||u||0}return!c&&-1}}var a=n(5397),s=n(5610),f=n(6198);t.exports={includes:r(!0),indexOf:r(!1)}},4527:function(t,e,n){var r=n(3724),o=n(4376),i=TypeError,u=Object.getOwnPropertyDescriptor,n=r&&!function(){if(void 0!==this)return 1;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}();t.exports=n?function(t,e){if(o(t)&&!u(t,"length").writable)throw new i("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e}},2195:function(t,e,n){var n=n(9504),r=n({}.toString),o=n("".slice);t.exports=function(t){return o(r(t),8,-1)}},6955:function(t,e,n){var r=n(2140),o=n(4901),i=n(2195),u=n(8227)("toStringTag"),c=Object,a="Arguments"===i(function(){return arguments}());t.exports=r?i:function(t){var e;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=((t,e)=>{try{return t[e]}catch(t){}})(t=c(t),u))?e:a?i(t):"Object"===(e=i(t))&&o(t.callee)?"Arguments":e}},7740:function(t,e,n){var a=n(9297),s=n(5031),f=n(7347),l=n(4913);t.exports=function(t,e,n){for(var r=s(e),o=l.f,i=f.f,u=0;u<r.length;u++){var c=r[u];a(t,c)||n&&a(n,c)||o(t,c,i(e,c))}}},2211:function(t,e,n){n=n(9039);t.exports=!n(function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})},6699:function(t,e,n){var r=n(3724),o=n(4913),i=n(6980);t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},6980:function(t){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},4659:function(t,e,n){var r=n(3724),o=n(4913),i=n(6980);t.exports=function(t,e,n){r?o.f(t,e,i(0,n)):t[e]=n}},2106:function(t,e,n){var r=n(283),o=n(4913);t.exports=function(t,e,n){return n.get&&r(n.get,e,{getter:!0}),n.set&&r(n.set,e,{setter:!0}),o.f(t,e,n)}},6840:function(t,e,n){var u=n(4901),c=n(4913),a=n(283),s=n(9433);t.exports=function(t,e,n,r){var o=(r=r||{}).enumerable,i=void 0!==r.name?r.name:e;if(u(n)&&a(n,i,r),r.global)o?t[e]=n:s(e,n);else{try{r.unsafe?t[e]&&(o=!0):delete t[e]}catch(t){}o?t[e]=n:c.f(t,e,{value:n,enumerable:!1,configurable:!r.nonConfigurable,writable:!r.nonWritable})}return t}},9433:function(t,e,n){var r=n(4576),o=Object.defineProperty;t.exports=function(e,n){try{o(r,e,{value:n,configurable:!0,writable:!0})}catch(t){r[e]=n}return n}},3724:function(t,e,n){n=n(9039);t.exports=!n(function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})},4055:function(t,e,n){var r=n(4576),n=n(34),o=r.document,i=n(o)&&n(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},6837:function(t){var e=TypeError;t.exports=function(t){if(9007199254740991<t)throw e("Maximum allowed index exceeded");return t}},8727:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2839:function(t,e,n){n=n(4576).navigator,n=n&&n.userAgent;t.exports=n?String(n):""},9519:function(t,e,n){var r,o,i=n(4576),n=n(2839),u=i.process,i=i.Deno,u=u&&u.versions||i&&i.version,i=u&&u.v8;!(o=i?0<(r=i.split("."))[0]&&r[0]<4?1:+(r[0]+r[1]):o)&&n&&(!(r=n.match(/Edge\/(\d+)/))||74<=r[1])&&(r=n.match(/Chrome\/(\d+)/))&&(o=+r[1]),t.exports=o},6518:function(t,e,n){var s=n(4576),f=n(7347).f,l=n(6699),p=n(6840),d=n(9433),h=n(7740),v=n(2796);t.exports=function(t,e){var n,r,o,i=t.target,u=t.global,c=t.stat,a=u?s:c?s[i]||d(i,{}):s[i]&&s[i].prototype;if(a)for(n in e){if(r=e[n],o=t.dontCallGetSet?(o=f(a,n))&&o.value:a[n],!v(u?n:i+(c?".":"#")+n,t.forced)&&void 0!==o){if(typeof r==typeof o)continue;h(r,o)}(t.sham||o&&o.sham)&&l(r,"sham",!0),p(a,n,r,t)}}},9039:function(t){t.exports=function(t){try{return!!t()}catch(t){return!0}}},6080:function(t,e,n){var r=n(7476),o=n(9306),i=n(616),u=r(r.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?u(t,e):function(){return t.apply(e,arguments)}}},616:function(t,e,n){n=n(9039);t.exports=!n(function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})},9565:function(t,e,n){var n=n(616),r=Function.prototype.call;t.exports=n?r.bind(r):function(){return r.apply(r,arguments)}},350:function(t,e,n){var r=n(3724),n=n(9297),o=Function.prototype,i=r&&Object.getOwnPropertyDescriptor,n=n(o,"name"),u=n&&"something"===function(){}.name,r=n&&(!r||i(o,"name").configurable);t.exports={EXISTS:n,PROPER:u,CONFIGURABLE:r}},7476:function(t,e,n){var r=n(2195),o=n(9504);t.exports=function(t){if("Function"===r(t))return o(t)}},9504:function(t,e,n){var n=n(616),r=Function.prototype,o=r.call,r=n&&r.bind.bind(o,o);t.exports=n?r:function(t){return function(){return o.apply(t,arguments)}}},7751:function(t,e,n){var r=n(4576),o=n(4901);t.exports=function(t,e){return arguments.length<2?(n=r[t],o(n)?n:void 0):r[t]&&r[t][e];var n}},1767:function(t){t.exports=function(t){return{iterator:t,next:t.next,done:!1}}},851:function(t,e,n){var r=n(6955),o=n(5966),i=n(4117),u=n(6269),c=n(8227)("iterator");t.exports=function(t){if(!i(t))return o(t,c)||o(t,"@@iterator")||u[r(t)]}},81:function(t,e,n){var r=n(9565),o=n(9306),i=n(8551),u=n(6823),c=n(851),a=TypeError;t.exports=function(t,e){e=arguments.length<2?c(t):e;if(o(e))return i(r(e,t));throw new a(u(t)+" is not iterable")}},5966:function(t,e,n){var r=n(9306),o=n(4117);t.exports=function(t,e){t=t[e];return o(t)?void 0:r(t)}},4576:function(t,e,n){function r(t){return t&&t.Math===Math&&t}t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n.g&&n.g)||r("object"==typeof this&&this)||function(){return this}()||Function("return this")()},9297:function(t,e,n){var r=n(9504),o=n(8981),i=r({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},421:function(t){t.exports={}},397:function(t,e,n){n=n(7751);t.exports=n("document","documentElement")},5917:function(t,e,n){var r=n(3724),o=n(9039),i=n(4055);t.exports=!r&&!o(function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a})},7055:function(t,e,n){var r=n(9504),o=n(9039),i=n(2195),u=Object,c=r("".split);t.exports=o(function(){return!u("z").propertyIsEnumerable(0)})?function(t){return"String"===i(t)?c(t,""):u(t)}:u},3706:function(t,e,n){var r=n(9504),o=n(4901),n=n(7629),i=r(Function.toString);o(n.inspectSource)||(n.inspectSource=function(t){return i(t)}),t.exports=n.inspectSource},1181:function(t,e,n){var r,o,i,u,c=n(8622),a=n(4576),s=n(34),f=n(6699),l=n(9297),p=n(7629),d=n(6119),n=n(421),h="Object already initialized",v=a.TypeError,a=a.WeakMap,g=c||p.state?((i=p.state||(p.state=new a)).get=i.get,i.has=i.has,i.set=i.set,r=function(t,e){if(i.has(t))throw new v(h);return e.facade=t,i.set(t,e),e},o=function(t){return i.get(t)||{}},function(t){return i.has(t)}):(n[u=d("state")]=!0,r=function(t,e){if(l(t,u))throw new v(h);return e.facade=t,f(t,u,e),e},o=function(t){return l(t,u)?t[u]:{}},function(t){return l(t,u)});t.exports={set:r,get:o,has:g,enforce:function(t){return g(t)?o(t):r(t,{})},getterFor:function(e){return function(t){if(s(t)&&(t=o(t)).type===e)return t;throw new v("Incompatible receiver, "+e+" required")}}}},4209:function(t,e,n){var r=n(8227),o=n(6269),i=r("iterator"),u=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||u[i]===t)}},4376:function(t,e,n){var r=n(2195);t.exports=Array.isArray||function(t){return"Array"===r(t)}},4901:function(t){var e="object"==typeof document&&document.all;t.exports=void 0===e&&void 0!==e?function(t){return"function"==typeof t||t===e}:function(t){return"function"==typeof t}},2796:function(t,e,n){function r(t,e){return(t=a[c(t)])===f||t!==s&&(i(e)?o(e):!!e)}var o=n(9039),i=n(4901),u=/#|\.prototype\./,c=r.normalize=function(t){return String(t).replace(u,".").toLowerCase()},a=r.data={},s=r.NATIVE="N",f=r.POLYFILL="P";t.exports=r},4117:function(t){t.exports=function(t){return null==t}},34:function(t,e,n){var r=n(4901);t.exports=function(t){return"object"==typeof t?null!==t:r(t)}},6395:function(t){t.exports=!1},757:function(t,e,n){var r=n(7751),o=n(4901),i=n(1625),n=n(7040),u=Object;t.exports=n?function(t){return"symbol"==typeof t}:function(t){var e=r("Symbol");return o(e)&&i(e.prototype,u(t))}},2652:function(t,e,n){function m(t,e){this.stopped=t,this.result=e}var y=n(6080),b=n(9565),x=n(8551),w=n(6823),E=n(4209),O=n(6198),S=n(1625),j=n(81),P=n(851),I=n(9539),T=TypeError,C=m.prototype;t.exports=function(t,e,n){function r(t){return i&&I(i,"normal",t),new m(!0,t)}function o(t){return p?(x(t),v?g(t[0],t[1],r):g(t[0],t[1])):v?g(t,r):g(t)}var i,u,c,a,s,f,l=n&&n.that,p=!(!n||!n.AS_ENTRIES),d=!(!n||!n.IS_RECORD),h=!(!n||!n.IS_ITERATOR),v=!(!n||!n.INTERRUPTED),g=y(e,l);if(d)i=t.iterator;else if(h)i=t;else{if(!(n=P(t)))throw new T(w(t)+" is not iterable");if(E(n)){for(u=0,c=O(t);u<c;u++)if((a=o(t[u]))&&S(C,a))return a;return new m(!1)}i=j(t,n)}for(s=(d?t:i).next;!(f=b(s,i)).done;){try{a=o(f.value)}catch(t){I(i,"throw",t)}if("object"==typeof a&&a&&S(C,a))return a}return new m(!1)}},9539:function(t,e,n){var i=n(9565),u=n(8551),c=n(5966);t.exports=function(t,e,n){var r,o;u(t);try{if(!(r=c(t,"return"))){if("throw"===e)throw n;return n}r=i(r,t)}catch(t){o=!0,r=t}if("throw"===e)throw n;if(o)throw r;return u(r),n}},7657:function(t,e,n){var r,o,i=n(9039),u=n(4901),c=n(34),a=n(2360),s=n(2787),f=n(6840),l=n(8227),n=n(6395),p=l("iterator"),l=!1;[].keys&&("next"in(o=[].keys())?(s=s(s(o)))!==Object.prototype&&(r=s):l=!0),!c(r)||i(function(){var t={};return r[p].call(t)!==t})?r={}:n&&(r=a(r)),u(r[p])||f(r,p,function(){return this}),t.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:l}},6269:function(t){t.exports={}},6198:function(t,e,n){var r=n(8014);t.exports=function(t){return r(t.length)}},283:function(t,e,n){var r=n(9504),o=n(9039),i=n(4901),u=n(9297),c=n(3724),a=n(350).CONFIGURABLE,s=n(3706),n=n(1181),f=n.enforce,l=n.get,p=String,d=Object.defineProperty,h=r("".slice),v=r("".replace),g=r([].join),m=c&&!o(function(){return 8!==d(function(){},"length",{value:8}).length}),y=String(String).split("String"),n=t.exports=function(t,e,n){"Symbol("===h(p(e),0,7)&&(e="["+v(p(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),n&&n.getter&&(e="get "+e),n&&n.setter&&(e="set "+e),(!u(t,"name")||a&&t.name!==e)&&(c?d(t,"name",{value:e,configurable:!0}):t.name=e),m&&n&&u(n,"arity")&&t.length!==n.arity&&d(t,"length",{value:n.arity});try{n&&u(n,"constructor")&&n.constructor?c&&d(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}n=f(t);return u(n,"source")||(n.source=g(y,"string"==typeof e?e:"")),t};Function.prototype.toString=n(function(){return i(this)&&l(this).source||s(this)},"toString")},741:function(t){var e=Math.ceil,n=Math.floor;t.exports=Math.trunc||function(t){t=+t;return(0<t?n:e)(t)}},2360:function(t,e,n){function r(){}function o(t){t.write(m("")),t.close();var e=t.parentWindow.Object;return t=null,e}var i,u=n(8551),c=n(6801),a=n(8727),s=n(421),f=n(397),l=n(4055),n=n(6119),p=">",d="<",h="prototype",v="script",g=n("IE_PROTO"),m=function(t){return d+v+p+t+d+"/"+v+p},y=function(){try{i=new ActiveXObject("htmlfile")}catch(t){}y="undefined"==typeof document||document.domain&&i?o(i):(t=l("iframe"),e="java"+v+":",t.style.display="none",f.appendChild(t),t.src=String(e),(e=t.contentWindow.document).open(),e.write(m("document.F=Object")),e.close(),e.F);for(var t,e,n=a.length;n--;)delete y[h][a[n]];return y()};s[g]=!0,t.exports=Object.create||function(t,e){var n;return null!==t?(r[h]=u(t),n=new r,r[h]=null,n[g]=t):n=y(),void 0===e?n:c.f(n,e)}},6801:function(t,e,n){var r=n(3724),o=n(8686),c=n(4913),a=n(8551),s=n(5397),f=n(1072);e.f=r&&!o?Object.defineProperties:function(t,e){a(t);for(var n,r=s(e),o=f(e),i=o.length,u=0;u<i;)c.f(t,n=o[u++],r[n]);return t}},4913:function(t,e,n){var r=n(3724),o=n(5917),i=n(8686),u=n(8551),c=n(6969),a=TypeError,s=Object.defineProperty,f=Object.getOwnPropertyDescriptor,l="enumerable",p="configurable",d="writable";e.f=r?i?function(t,e,n){var r;return u(t),e=c(e),u(n),"function"==typeof t&&"prototype"===e&&"value"in n&&d in n&&!n[d]&&(r=f(t,e))&&r[d]&&(t[e]=n.value,n={configurable:(p in n?n:r)[p],enumerable:(l in n?n:r)[l],writable:!1}),s(t,e,n)}:s:function(t,e,n){if(u(t),e=c(e),u(n),o)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw new a("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},7347:function(t,e,n){var r=n(3724),o=n(9565),i=n(8773),u=n(6980),c=n(5397),a=n(6969),s=n(9297),f=n(5917),l=Object.getOwnPropertyDescriptor;e.f=r?l:function(t,e){if(t=c(t),e=a(e),f)try{return l(t,e)}catch(t){}if(s(t,e))return u(!o(i.f,t,e),t[e])}},8480:function(t,e,n){var r=n(1828),o=n(8727).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},3717:function(t,e){e.f=Object.getOwnPropertySymbols},2787:function(t,e,n){var r=n(9297),o=n(4901),i=n(8981),u=n(6119),n=n(2211),c=u("IE_PROTO"),a=Object,s=a.prototype;t.exports=n?a.getPrototypeOf:function(t){var e,t=i(t);return r(t,c)?t[c]:(e=t.constructor,o(e)&&t instanceof e?e.prototype:t instanceof a?s:null)}},1625:function(t,e,n){n=n(9504);t.exports=n({}.isPrototypeOf)},1828:function(t,e,n){var r=n(9504),u=n(9297),c=n(5397),a=n(9617).indexOf,s=n(421),f=r([].push);t.exports=function(t,e){var n,r=c(t),o=0,i=[];for(n in r)!u(s,n)&&u(r,n)&&f(i,n);for(;e.length>o;)!u(r,n=e[o++])||~a(i,n)||f(i,n);return i}},1072:function(t,e,n){var r=n(1828),o=n(8727);t.exports=Object.keys||function(t){return r(t,o)}},8773:function(t,e){var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,o=r&&!n.call({1:2},1);e.f=o?function(t){t=r(this,t);return!!t&&t.enumerable}:n},4270:function(t,e,n){var o=n(9565),i=n(4901),u=n(34),c=TypeError;t.exports=function(t,e){var n,r;if("string"===e&&i(n=t.toString)&&!u(r=o(n,t)))return r;if(i(n=t.valueOf)&&!u(r=o(n,t)))return r;if("string"!==e&&i(n=t.toString)&&!u(r=o(n,t)))return r;throw new c("Can't convert object to primitive value")}},5031:function(t,e,n){var r=n(7751),o=n(9504),i=n(8480),u=n(3717),c=n(8551),a=o([].concat);t.exports=r("Reflect","ownKeys")||function(t){var e=i.f(c(t)),n=u.f;return n?a(e,n(t)):e}},7750:function(t,e,n){var r=n(4117),o=TypeError;t.exports=function(t){if(r(t))throw new o("Can't call method on "+t);return t}},6119:function(t,e,n){var r=n(5745),o=n(3392),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},7629:function(t,e,n){var r=n(6395),o=n(4576),n=n(9433),i="__core-js_shared__",t=t.exports=o[i]||n(i,{});(t.versions||(t.versions=[])).push({version:"3.39.0",mode:r?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.39.0/LICENSE",source:"https://github.com/zloirock/core-js"})},5745:function(t,e,n){var r=n(7629);t.exports=function(t,e){return r[t]||(r[t]=e||{})}},4495:function(t,e,n){var r=n(9519),o=n(9039),i=n(4576).String;t.exports=!!Object.getOwnPropertySymbols&&!o(function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&r&&r<41})},5610:function(t,e,n){var r=n(1291),o=Math.max,i=Math.min;t.exports=function(t,e){t=r(t);return t<0?o(t+e,0):i(t,e)}},5397:function(t,e,n){var r=n(7055),o=n(7750);t.exports=function(t){return r(o(t))}},1291:function(t,e,n){var r=n(741);t.exports=function(t){t=+t;return t!=t||0==t?0:r(t)}},8014:function(t,e,n){var r=n(1291),o=Math.min;t.exports=function(t){t=r(t);return 0<t?o(t,9007199254740991):0}},8981:function(t,e,n){var r=n(7750),o=Object;t.exports=function(t){return o(r(t))}},2777:function(t,e,n){var r=n(9565),o=n(34),i=n(757),u=n(5966),c=n(4270),n=n(8227),a=TypeError,s=n("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var n=u(t,s);if(n){if(n=r(n,t,e=void 0===e?"default":e),!o(n)||i(n))return n;throw new a("Can't convert object to primitive value")}return c(t,e=void 0===e?"number":e)}},6969:function(t,e,n){var r=n(2777),o=n(757);t.exports=function(t){t=r(t,"string");return o(t)?t:t+""}},2140:function(t,e,n){var r={};r[n(8227)("toStringTag")]="z",t.exports="[object z]"===String(r)},6823:function(t){var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},3392:function(t,e,n){var n=n(9504),r=0,o=Math.random(),i=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+i(++r+o,36)}},7040:function(t,e,n){n=n(4495);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},8686:function(t,e,n){var r=n(3724),n=n(9039);t.exports=r&&n(function(){return 42!==Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype})},8622:function(t,e,n){var r=n(4576),n=n(4901),r=r.WeakMap;t.exports=n(r)&&/native code/.test(String(r))},8227:function(t,e,n){var r=n(4576),o=n(5745),i=n(9297),u=n(3392),c=n(4495),n=n(7040),a=r.Symbol,s=o("wks"),f=n?a.for||a:a&&a.withoutSetter||u;t.exports=function(t){return i(s,t)||(s[t]=c&&i(a,t)?a[t]:f("Symbol."+t)),s[t]}},4114:function(t,e,n){var r=n(6518),i=n(8981),u=n(6198),c=n(4527),a=n(6837);r({target:"Array",proto:!0,arity:1,forced:n(9039)(function(){return 4294967297!==[].push.call({length:4294967296},1)})||!(()=>{try{Object.defineProperty([],"length",{writable:!1}).push()}catch(t){return t instanceof TypeError}})()},{push:function(t){var e=i(this),n=u(e),r=arguments.length;a(n+r);for(var o=0;o<r;o++)e[n]=arguments[o],n++;return c(e,n),n}})},8111:function(t,e,n){function r(){if(c(this,g),f(this)===g)throw new x("Abstract class Iterator not directly constructable")}function o(e,t){m?l(g,e,{configurable:!0,get:function(){return t},set:function(t){if(a(this),this===g)throw new x("You can't redefine this property");h(this,e)?this[e]=t:p(this,e,t)}}):g[e]=t}var i=n(6518),u=n(4576),c=n(679),a=n(8551),s=n(4901),f=n(2787),l=n(2106),p=n(4659),d=n(9039),h=n(9297),v=n(8227),g=n(7657).IteratorPrototype,m=n(3724),n=n(6395),y="constructor",b="Iterator",v=v("toStringTag"),x=TypeError,w=u[b],u=n||!s(w)||w.prototype!==g||!d(function(){w({})});h(g,v)||o(v,b),!u&&h(g,y)&&g[y]!==Object||o(y,r),r.prototype=g,i({global:!0,constructor:!0,forced:u},{Iterator:r})},7588:function(t,e,n){var r=n(6518),o=n(2652),i=n(9306),u=n(8551),c=n(1767);r({target:"Iterator",proto:!0,real:!0},{forEach:function(e){u(this),i(e);var t=c(this),n=0;o(t,function(t){e(t,n++)},{IS_RECORD:!0})}})},3579:function(t,e,n){var r=n(6518),o=n(2652),i=n(9306),u=n(8551),c=n(1767);r({target:"Iterator",proto:!0,real:!0},{some:function(n){u(this),i(n);var t=c(this),r=0;return o(t,function(t,e){if(n(t,r++))return e()},{IS_RECORD:!0,INTERRUPTED:!0}).stopped}})},8992:function(t,e,n){n(8111)},3949:function(t,e,n){n(7588)},7550:function(t,e,n){n(3579)}},W={};function B(t){var e=W[t];return void 0!==e||(e=W[t]={exports:{}},Pt[t].call(e.exports,e,e.exports,B)),e.exports}B.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return B.d(e,{a:e}),e},B.d=function(t,e){for(var n in e)B.o(e,n)&&!B.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},B.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),B.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},B.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},B.p="";var $={};B.r($),B.d($,{GLOBAL_EVENT_KEYS:function(){return o},VxeCore:function(){return i},VxeUI:function(){return k},clipboard:function(){return R},commands:function(){return j},component:function(){return Ut},coreVersion:function(){return t},createEvent:function(){return s},default:function(){return $t},formats:function(){return S},getComponent:function(){return Vt},getConfig:function(){return Ct},getI18n:function(){return xt},getIcon:function(){return vt},getLanguage:function(){return Ft},getTheme:function(){return ht},globalEvents:function(){return l},globalMixins:function(){return V},globalResize:function(){return h},globalStore:function(){return e},handleCheckInfo:function(){return Et},hasComponent:function(){return Wt},hasLanguage:function(){return Nt},interceptor:function(){return I},log:function(){return b},menus:function(){return O},permission:function(){return M},permissionMixin:function(){return L},renderCustomIcon:function(){return gt},renderEmptyElement:function(){return Bt},renderGlobalIcon:function(){return Mt},renderer:function(){return w},setConfig:function(){return Tt},setI18n:function(){return zt},setIcon:function(){return Rt},setLanguage:function(){return kt},setTheme:function(){return dt},sizeMixin:function(){return A},use:function(){return Dt},validators:function(){return E}}),"undefined"!=typeof window&&(pt=(pt=window.document.currentScript)&&pt.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))&&(B.p=pt[1]),B(4114);let t="3.2.9",i={coreVersion:t,uiVersion:"",tableVersion:"",designVersion:"",ganttVersion:""},z=B(8871);var G=B.n(z),X=null,q=null,H=null,K="z-index-manage",Y=null,Z="z-index-style",J={m:1e3,s:1e3};function Q(){return X||"undefined"!=typeof document&&(X=document),X}function tt(){return q=X&&!q?X.body||X.getElementsByTagName("body")[0]:q}function et(){var t;Y||!(t=Q())||(Y=t.getElementById(Z))||((Y=t.createElement("style")).id=Z,t.getElementsByTagName("head")[0].appendChild(Y)),Y&&(Y.innerHTML=":root{--dom-main"+(t="-z-index")+":"+ut()+";--dom-sub"+t+":"+ft()+"}")}function nt(){var t,e;return H||(t=Q())&&!(H=t.getElementById(K))&&(e=tt())&&((H=t.createElement("div")).id=K,H.style.display="none",e.appendChild(H),ot(J.m),at(J.s)),H}function rt(n){return function(t){var e;return t&&(t=Number(t),J[n]=t,e=nt())&&(e.dataset?e.dataset[n]=t+"":e.setAttribute("data-"+n,t+"")),et(),J[n]}}var ot=rt("m");function it(r,o){return function(t){var e=nt(),n=(n=e&&(e=e.dataset?e.dataset[r]:e.getAttribute("data-"+r))?Number(e):n)||J[r];return t?Number(t)<n?o():t:n}}var ut=it("m",ct);function ct(){return ot(ut()+1)}var at=rt("s"),st=it("s",lt);function ft(){return ut()+st()}function lt(){return at(st()+1),ft()}var pt={setCurrent:ot,getCurrent:ut,getNext:ct,setSubCurrent:at,getSubCurrent:ft,getSubNext:lt,getMax:function(){var t=0;if(Q()){var e=tt();if(e)for(var n=e.getElementsByTagName("*"),r=0;r<n.length;r++){var o=n[r];o&&o.style&&1===o.nodeType&&(o=o.style.zIndex)&&/^\d+$/.test(o)&&(t=Math.max(t,Number(o)))}}return t}},It=(et(),pt);let f={size:"",version:1,zIndex:999,resizeInterval:500},n={theme:""};function dt(t){var e,t=t&&"default"!==t?t:"light";return n.theme=t,"undefined"!=typeof document&&(e=document.documentElement)&&e.setAttribute("data-vxe-ui-theme",t),i}function ht(){return n.theme}function Tt(t){return t&&(t.zIndex&&It.setCurrent(t.zIndex),t.theme&&dt(t.theme),G().merge(f,t)),i}function Ct(t,e){return arguments.length?G().get(f,t,e):f}let e={},r={};function Rt(t){return t&&Object.assign(r,t),i}function vt(t){return arguments.length?G().get(r,t):r}function Mt(t,e){return gt(t,vt(e),e)}function gt(t,e,n){return G().isFunction(e)?t("span",{},(n=e({name:n}),G().isArray(n)?n:n?[n]:[])):t("i",{class:e})}function mt(t){return(mt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function At(t){t=((t,e)=>{if("object"!=mt(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0===n)return("string"===e?String:Number)(t);if("object"!=mt(n=n.call(t,e||"default")))return n;throw new TypeError("@@toPrimitive must return a primitive value.")})(t,"string");return"symbol"==mt(t)?t:t+""}function yt(t,e,n){(e=At(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n}let o={F2:"F2",ESCAPE:"Escape",ENTER:"Enter",TAB:"Tab",DELETE:"Delete",BACKSPACE:"Backspace",SPACEBAR:" ",CONTEXT_MENU:"ContextMenu",ARROW_UP:"ArrowUp",ARROW_DOWN:"ArrowDown",ARROW_LEFT:"ArrowLeft",ARROW_RIGHT:"ArrowRight",PAGE_UP:"PageUp",PAGE_DOWN:"PageDown",Control:"Control",R:"R",P:"P",Z:"Z",X:"X",C:"C",V:"V",M:"M"},u=(pt=G().browse(),{" ":"Spacebar",Apps:o.CONTEXT_MENU,Del:o.DELETE,Up:o.ARROW_UP,Down:o.ARROW_DOWN,Left:o.ARROW_LEFT,Right:o.ARROW_RIGHT}),c=pt.firefox?"DOMMouseScroll":"mousewheel",a=[];function bt(n){let r=n.type===c;a.forEach(({type:t,cb:e})=>{n.cancelBubble||(t===n.type||r&&"mousewheel"===t)&&e(n)})}class Ot{constructor(t,e,n){yt(this,"$event",void 0),yt(this,"type",""),yt(this,"key",""),yt(this,"code",""),(this.$event=t)&&(t.type&&(this.type=t.type),t.key&&(this.key=t.key),t.code)&&(this.code=t.code),Object.assign(this,e),G().objectEach(n,(n,r)=>{if(G().isFunction(n)){let t=null,e=!1;Object.defineProperty(this,r,{get(){return e||(e=!0,t=n()),t}})}else this[r]=n})}stopPropagation(){var t=this.$event;t&&t.stopPropagation()}preventDefault(){var t=this.$event;t&&t.preventDefault()}}let s=(t,e,n)=>(t instanceof Ot&&(t=t.$event),new Ot(t,e,n)),l={on(t,e,n){a.push({comp:t,type:e,cb:n})},off(e,n){G().remove(a,t=>t.comp===e&&t.type===n)},hasKey(t,e){t=t.key;return e=e.toLowerCase(),!(!t||e!==t.toLowerCase()&&(!u[t]||u[t].toLowerCase()!==e))}},p=void(pt.isDoc&&(pt.msie||(window.addEventListener("copy",bt,!1),window.addEventListener("cut",bt,!1),window.addEventListener("paste",bt,!1)),document.addEventListener("keydown",bt,!1),document.addEventListener("contextmenu",bt,!1),window.addEventListener("mousedown",bt,!1),window.addEventListener("blur",bt,!1),window.addEventListener("resize",bt,!1),window.addEventListener(c,G().throttle(bt,100,{leading:!0,trailing:!1}),{passive:!0,capture:!1})),B(8992),B(3949),B(7550)),d=[],N=500;function Lt(){d.length&&(d.forEach(i=>{i.tarList.forEach(t=>{var{target:e,width:n,heighe:r}=t,o=e.clientWidth,e=e.clientHeight;(o&&n!==o||e&&r!==e)&&(t.width=o,t.heighe=e,setTimeout(i.callback))})}),_t())}function _t(){clearTimeout(p),p=setTimeout(Lt,f.resizeInterval||N)}class Gt{constructor(t){yt(this,"tarList",[]),yt(this,"callback",void 0),this.callback=t}observe(e){var t;e&&(t=this.tarList,t.some(t=>t.target===e)||t.push({target:e,width:e.clientWidth,heighe:e.clientHeight}),d.length||_t(),d.some(t=>t===this)||d.push(this))}unobserve(e){G().remove(d,t=>t.tarList.some(t=>t.target===e))}disconnect(){G().remove(d,t=>t===this)}}let h={create(t){return new(window.ResizeObserver||Gt)(t)}},F=B(9274),v=B.n(F),g=new(v().extend({data(){return{language:"",langMaps:{}}}})),m=!1,y={};function xt(t,e){var{langMaps:n,language:r}=g,o=f.i18n;return o?""+(o(t,e)||""):(m||(n[r]||console.error(`[vxe core] 语言包未安装。Language not installed. https://${i.uiVersion?"vxeui.com":"vxetable.cn"}/#/start/i18n`),m=!0),!e&&y[t]?y[t]:(o=G().toFormatString(G().get(n[r],t,t),e),e||(y[t]=o),o))}function kt(t){var e=g.language,t=t||"zh-CN";return e!==t&&(g.language=t,y={}),i}function zt(t,e){var n=g.langMaps;return g.langMaps=Object.assign({},n,{[t]:Object.assign({},e)}),i}function Nt(t){var e=g.langMaps;return!!e[t]}function Ft(){var t=g.language;return t}function wt(n,r){return function(t,e){t=`[vxe ${r||""}] `+xt(t,e);return console[n](t),t}}let b={create:wt,warn:wt("warn","v3.2.9"),err:wt("error","v3.2.9")},x={},w={mixin(t){return G().each(t,(t,e)=>w.add(e,t)),w},get(t){return x[t]||null},add(r,t){if(r&&t){let n=x[r];n?(G().each(t,(t,e)=>{G().eqNull(n[e])||n[e]===t||b.warn("vxe.error.coverProp",["Renderer."+r,e])}),Object.assign(n,t)):x[r]=t}return w},forEach(t){return G().objectEach(x,t),w},delete(t){return delete x[t],w}},D=class{constructor(){yt(this,"store",{})}mixin(t){return G().each(t,(t,e)=>{this.add(e,t)}),this}has(t){return!!this.get(t)}get(t){return this.store[t]}add(n,t){var e=this.store[n];let r=G().keys(e);return G().each(t,(t,e)=>{r.includes(e)&&b.warn("vxe.error.coverProp",[n,e])}),this.store[n]=e?G().merge(e,t):t,this}delete(t){delete this.store[t]}forEach(t){G().objectEach(this.store,t)}},E=new D,O=(Object.assign(E,{_name:"Validators"}),new class{constructor(){yt(this,"store",{})}mixin(t){return G().each(t,(t,e)=>{this.add(e,t)}),this}has(t){return!!this.get(t)}get(t){return this.store[t]}add(n,t){var e=this.store[n];G().isFunction(t)&&(b.warn("vxe.error.delProp",["menus -> callback","menuMethod"]),t={menuMethod:t});let r=G().keys(e);return G().each(t,(t,e)=>{r.includes(e)&&b.warn("vxe.error.coverProp",[n,e])}),this.store[n]=e?G().merge(e,t):t,this}delete(t){delete this.store[t]}forEach(t){G().objectEach(this.store,t)}}),S=(Object.assign(O,{_name:"Menus"}),new class{constructor(){yt(this,"store",{})}mixin(t){return G().each(t,(t,e)=>{this.add(e,t)}),this}has(t){return!!this.get(t)}get(t){return this.store[t]}add(n,t){var e=this.store[n];G().isFunction(t)&&(b.warn("vxe.error.delProp",["formats -> callback","cellFormatMethod"]),t={cellFormatMethod:t});let r=G().keys(e);return G().each(t,(t,e)=>{r.includes(e)&&b.warn("vxe.error.coverProp",[n,e])}),this.store[n]=e?G().merge(e,t):t,this}delete(t){delete this.store[t]}forEach(t){G().objectEach(this.store,t)}}),j=(Object.assign(S,{_name:"Formats"}),new class{constructor(){yt(this,"store",{})}mixin(t){return G().each(t,(t,e)=>{this.add(e,t)}),this}has(t){return!!this.get(t)}get(t){return this.store[t]}add(n,t){var e=this.store[n];G().isFunction(t)&&(b.warn("vxe.error.delProp",["commands -> callback","commandMethod"]),t={commandMethod:t});let r=G().keys(e);return G().each(t,(t,e)=>{r.includes(e)&&b.warn("vxe.error.coverProp",[n,e])}),this.store[n]=e?G().merge(e,t):t,this}delete(t){delete this.store[t]}forEach(t){G().objectEach(this.store,t)}}),P=(Object.assign(j,{_name:"Commands"}),{}),I={mixin(t){return G().each(t,(t,e)=>{I.add(e,t)}),I},get(t){return P[t]||[]},add(e,n){n=(n=G().isFunction(n)?{tableInterceptorMethod:n}:n).tableInterceptorMethod;if(n){let t=P[e];-1<(t=t||(P[e]=[])).indexOf(n)&&b.warn("vxe.error.coverProp",["Interceptor",e]),t.push(n)}return I},delete(t,n){var r=P[t];if(r){let e=(n=G().isFunction(n)?{tableInterceptorMethod:n}:n)?n.tableInterceptorMethod:null;e?G().remove(r,t=>t===e):delete P[t]}}},T,C={text:"",html:""},R={getStore(){return C},setStore(t){Object.assign(C,t||{})},copy(t){let e=!1;try{var n=G().toValueString(t);r=n,T||((T=document.createElement("textarea")).id="$VxeCopy",(o=T.style).width="48px",o.height="24px",o.position="fixed",o.zIndex="0",o.left="-500px",o.top="-500px",document.body.appendChild(T)),T.value=r,T.select(),T.setSelectionRange(0,T.value.length),e=document.execCommand("copy"),T.blur(),C.text=n,C.html=""}catch(t){}var r,o;return e},getText(){return C.text||""}};function Et(t,e){let i=!0,u=!1;var c=e||f.permissionMethod;if(t&&c){i=!1;let r=!(u=!0),o=!1;var a=String(t).split("|");for(let n=0;n<a.length;n++){let t=!0,e=!1;var s=c({code:a[n]});if(G().isBoolean(s)?t=s:s&&(t=!!s.visible,e=!!s.disabled),e||o||(o=!0,u=e),t&&!r&&(r=!0,i=t),r&&o)break}}return{code:t,visible:i,disabled:u}}let M={getCheckInfo(t){return Et(t)},checkVisible(t){return Et(t).visible},checkDisable(t){return Et(t).disabled}},A=v().extend({inject:{$xeSizeInfo:{default:null}},provide(){return{$xeSizeInfo:{getSize:()=>this.computeSize}}},computed:{computeSize(){var t=this.size,e=this.$xeSizeInfo;return t||(e?e.getSize():null)}}}),L=v().extend({computed:{computePermissionInfo(){return Et(this.permissionCode,this.permissionMethod)}}}),V={sizeMixin:A,permissionMixin:L},U=[];function Dt(t,e){return t&&t.install&&-1===U.indexOf(t)&&(t.install(k,e),U.push(t)),k}let _={};function Vt(t){return _[t]||null}function Ut(t){t&&t.name&&(_[t.name]=t,_[G().kebabCase(t.name)]=t)}function Wt(t){return!!_[t]}function Bt(t){t=t._e;return t()}let k=Object.assign(i,{renderEmptyElement:Bt,setTheme:dt,getTheme:ht,setConfig:Tt,getConfig:Ct,setIcon:Rt,getIcon:vt,renderGlobalIcon:Mt,renderCustomIcon:gt,setLanguage:kt,hasLanguage:Nt,getLanguage:Ft,setI18n:zt,getI18n:xt,globalEvents:l,GLOBAL_EVENT_KEYS:o,createEvent:s,globalResize:h,renderer:w,validators:E,menus:O,formats:S,commands:j,interceptor:I,clipboard:R,log:b,permission:M,globalStore:e,component:Ut,getComponent:Vt,hasComponent:Wt,globalMixins:V,use:Dt});dt();var $t=k;return $}});
1
+ ((t,e)=>{"object"==typeof exports&&"object"==typeof module?module.exports=e(require("vue"),require("xe-utils")):"function"==typeof define&&define.amd?define([,"xe-utils"],e):"object"==typeof exports?exports.VxeUI=e(require("vue"),require("xe-utils")):t.VxeUI=e(t.Vue,t.XEUtils)})("undefined"!=typeof self?self:this,function(St,jt){{var Pt={9274:function(t){t.exports=St},8871:function(t){t.exports=jt},9306:function(t,e,n){var r=n(4901),o=n(6823),i=TypeError;t.exports=function(t){if(r(t))return t;throw new i(o(t)+" is not a function")}},679:function(t,e,n){var r=n(1625),o=TypeError;t.exports=function(t,e){if(r(e,t))return t;throw new o("Incorrect invocation")}},8551:function(t,e,n){var r=n(34),o=String,i=TypeError;t.exports=function(t){if(r(t))return t;throw new i(o(t)+" is not an object")}},9617:function(t,e,n){function r(c){return function(t,e,n){var r=a(t),o=f(r);if(0!==o){var i,u=s(n,o);if(c&&e!=e){for(;u<o;)if((i=r[u++])!=i)return!0}else for(;u<o;u++)if((c||u in r)&&r[u]===e)return c||u||0}return!c&&-1}}var a=n(5397),s=n(5610),f=n(6198);t.exports={includes:r(!0),indexOf:r(!1)}},4527:function(t,e,n){var r=n(3724),o=n(4376),i=TypeError,u=Object.getOwnPropertyDescriptor,n=r&&!function(){if(void 0!==this)return 1;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}();t.exports=n?function(t,e){if(o(t)&&!u(t,"length").writable)throw new i("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e}},2195:function(t,e,n){var n=n(9504),r=n({}.toString),o=n("".slice);t.exports=function(t){return o(r(t),8,-1)}},6955:function(t,e,n){var r=n(2140),o=n(4901),i=n(2195),u=n(8227)("toStringTag"),c=Object,a="Arguments"===i(function(){return arguments}());t.exports=r?i:function(t){var e;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=((t,e)=>{try{return t[e]}catch(t){}})(t=c(t),u))?e:a?i(t):"Object"===(e=i(t))&&o(t.callee)?"Arguments":e}},7740:function(t,e,n){var a=n(9297),s=n(5031),f=n(7347),l=n(4913);t.exports=function(t,e,n){for(var r=s(e),o=l.f,i=f.f,u=0;u<r.length;u++){var c=r[u];a(t,c)||n&&a(n,c)||o(t,c,i(e,c))}}},2211:function(t,e,n){n=n(9039);t.exports=!n(function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})},6699:function(t,e,n){var r=n(3724),o=n(4913),i=n(6980);t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},6980:function(t){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},4659:function(t,e,n){var r=n(3724),o=n(4913),i=n(6980);t.exports=function(t,e,n){r?o.f(t,e,i(0,n)):t[e]=n}},2106:function(t,e,n){var r=n(283),o=n(4913);t.exports=function(t,e,n){return n.get&&r(n.get,e,{getter:!0}),n.set&&r(n.set,e,{setter:!0}),o.f(t,e,n)}},6840:function(t,e,n){var u=n(4901),c=n(4913),a=n(283),s=n(9433);t.exports=function(t,e,n,r){var o=(r=r||{}).enumerable,i=void 0!==r.name?r.name:e;if(u(n)&&a(n,i,r),r.global)o?t[e]=n:s(e,n);else{try{r.unsafe?t[e]&&(o=!0):delete t[e]}catch(t){}o?t[e]=n:c.f(t,e,{value:n,enumerable:!1,configurable:!r.nonConfigurable,writable:!r.nonWritable})}return t}},9433:function(t,e,n){var r=n(4576),o=Object.defineProperty;t.exports=function(e,n){try{o(r,e,{value:n,configurable:!0,writable:!0})}catch(t){r[e]=n}return n}},3724:function(t,e,n){n=n(9039);t.exports=!n(function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})},4055:function(t,e,n){var r=n(4576),n=n(34),o=r.document,i=n(o)&&n(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},6837:function(t){var e=TypeError;t.exports=function(t){if(9007199254740991<t)throw e("Maximum allowed index exceeded");return t}},8727:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2839:function(t,e,n){n=n(4576).navigator,n=n&&n.userAgent;t.exports=n?String(n):""},9519:function(t,e,n){var r,o,i=n(4576),n=n(2839),u=i.process,i=i.Deno,u=u&&u.versions||i&&i.version,i=u&&u.v8;!(o=i?0<(r=i.split("."))[0]&&r[0]<4?1:+(r[0]+r[1]):o)&&n&&(!(r=n.match(/Edge\/(\d+)/))||74<=r[1])&&(r=n.match(/Chrome\/(\d+)/))&&(o=+r[1]),t.exports=o},6518:function(t,e,n){var s=n(4576),f=n(7347).f,l=n(6699),p=n(6840),d=n(9433),h=n(7740),v=n(2796);t.exports=function(t,e){var n,r,o,i=t.target,u=t.global,c=t.stat,a=u?s:c?s[i]||d(i,{}):s[i]&&s[i].prototype;if(a)for(n in e){if(r=e[n],o=t.dontCallGetSet?(o=f(a,n))&&o.value:a[n],!v(u?n:i+(c?".":"#")+n,t.forced)&&void 0!==o){if(typeof r==typeof o)continue;h(r,o)}(t.sham||o&&o.sham)&&l(r,"sham",!0),p(a,n,r,t)}}},9039:function(t){t.exports=function(t){try{return!!t()}catch(t){return!0}}},6080:function(t,e,n){var r=n(7476),o=n(9306),i=n(616),u=r(r.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?u(t,e):function(){return t.apply(e,arguments)}}},616:function(t,e,n){n=n(9039);t.exports=!n(function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})},9565:function(t,e,n){var n=n(616),r=Function.prototype.call;t.exports=n?r.bind(r):function(){return r.apply(r,arguments)}},350:function(t,e,n){var r=n(3724),n=n(9297),o=Function.prototype,i=r&&Object.getOwnPropertyDescriptor,n=n(o,"name"),u=n&&"something"===function(){}.name,r=n&&(!r||i(o,"name").configurable);t.exports={EXISTS:n,PROPER:u,CONFIGURABLE:r}},7476:function(t,e,n){var r=n(2195),o=n(9504);t.exports=function(t){if("Function"===r(t))return o(t)}},9504:function(t,e,n){var n=n(616),r=Function.prototype,o=r.call,r=n&&r.bind.bind(o,o);t.exports=n?r:function(t){return function(){return o.apply(t,arguments)}}},7751:function(t,e,n){var r=n(4576),o=n(4901);t.exports=function(t,e){return arguments.length<2?(n=r[t],o(n)?n:void 0):r[t]&&r[t][e];var n}},1767:function(t){t.exports=function(t){return{iterator:t,next:t.next,done:!1}}},851:function(t,e,n){var r=n(6955),o=n(5966),i=n(4117),u=n(6269),c=n(8227)("iterator");t.exports=function(t){if(!i(t))return o(t,c)||o(t,"@@iterator")||u[r(t)]}},81:function(t,e,n){var r=n(9565),o=n(9306),i=n(8551),u=n(6823),c=n(851),a=TypeError;t.exports=function(t,e){e=arguments.length<2?c(t):e;if(o(e))return i(r(e,t));throw new a(u(t)+" is not iterable")}},5966:function(t,e,n){var r=n(9306),o=n(4117);t.exports=function(t,e){t=t[e];return o(t)?void 0:r(t)}},4576:function(t,e,n){function r(t){return t&&t.Math===Math&&t}t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n.g&&n.g)||r("object"==typeof this&&this)||function(){return this}()||Function("return this")()},9297:function(t,e,n){var r=n(9504),o=n(8981),i=r({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},421:function(t){t.exports={}},397:function(t,e,n){n=n(7751);t.exports=n("document","documentElement")},5917:function(t,e,n){var r=n(3724),o=n(9039),i=n(4055);t.exports=!r&&!o(function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a})},7055:function(t,e,n){var r=n(9504),o=n(9039),i=n(2195),u=Object,c=r("".split);t.exports=o(function(){return!u("z").propertyIsEnumerable(0)})?function(t){return"String"===i(t)?c(t,""):u(t)}:u},3706:function(t,e,n){var r=n(9504),o=n(4901),n=n(7629),i=r(Function.toString);o(n.inspectSource)||(n.inspectSource=function(t){return i(t)}),t.exports=n.inspectSource},1181:function(t,e,n){var r,o,i,u,c=n(8622),a=n(4576),s=n(34),f=n(6699),l=n(9297),p=n(7629),d=n(6119),n=n(421),h="Object already initialized",v=a.TypeError,a=a.WeakMap,g=c||p.state?((i=p.state||(p.state=new a)).get=i.get,i.has=i.has,i.set=i.set,r=function(t,e){if(i.has(t))throw new v(h);return e.facade=t,i.set(t,e),e},o=function(t){return i.get(t)||{}},function(t){return i.has(t)}):(n[u=d("state")]=!0,r=function(t,e){if(l(t,u))throw new v(h);return e.facade=t,f(t,u,e),e},o=function(t){return l(t,u)?t[u]:{}},function(t){return l(t,u)});t.exports={set:r,get:o,has:g,enforce:function(t){return g(t)?o(t):r(t,{})},getterFor:function(e){return function(t){if(s(t)&&(t=o(t)).type===e)return t;throw new v("Incompatible receiver, "+e+" required")}}}},4209:function(t,e,n){var r=n(8227),o=n(6269),i=r("iterator"),u=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||u[i]===t)}},4376:function(t,e,n){var r=n(2195);t.exports=Array.isArray||function(t){return"Array"===r(t)}},4901:function(t){var e="object"==typeof document&&document.all;t.exports=void 0===e&&void 0!==e?function(t){return"function"==typeof t||t===e}:function(t){return"function"==typeof t}},2796:function(t,e,n){function r(t,e){return(t=a[c(t)])===f||t!==s&&(i(e)?o(e):!!e)}var o=n(9039),i=n(4901),u=/#|\.prototype\./,c=r.normalize=function(t){return String(t).replace(u,".").toLowerCase()},a=r.data={},s=r.NATIVE="N",f=r.POLYFILL="P";t.exports=r},4117:function(t){t.exports=function(t){return null==t}},34:function(t,e,n){var r=n(4901);t.exports=function(t){return"object"==typeof t?null!==t:r(t)}},6395:function(t){t.exports=!1},757:function(t,e,n){var r=n(7751),o=n(4901),i=n(1625),n=n(7040),u=Object;t.exports=n?function(t){return"symbol"==typeof t}:function(t){var e=r("Symbol");return o(e)&&i(e.prototype,u(t))}},2652:function(t,e,n){function m(t,e){this.stopped=t,this.result=e}var b=n(6080),y=n(9565),x=n(8551),w=n(6823),E=n(4209),O=n(6198),S=n(1625),j=n(81),P=n(851),I=n(9539),T=TypeError,C=m.prototype;t.exports=function(t,e,n){function r(t){return i&&I(i,"normal",t),new m(!0,t)}function o(t){return p?(x(t),v?g(t[0],t[1],r):g(t[0],t[1])):v?g(t,r):g(t)}var i,u,c,a,s,f,l=n&&n.that,p=!(!n||!n.AS_ENTRIES),d=!(!n||!n.IS_RECORD),h=!(!n||!n.IS_ITERATOR),v=!(!n||!n.INTERRUPTED),g=b(e,l);if(d)i=t.iterator;else if(h)i=t;else{if(!(n=P(t)))throw new T(w(t)+" is not iterable");if(E(n)){for(u=0,c=O(t);u<c;u++)if((a=o(t[u]))&&S(C,a))return a;return new m(!1)}i=j(t,n)}for(s=(d?t:i).next;!(f=y(s,i)).done;){try{a=o(f.value)}catch(t){I(i,"throw",t)}if("object"==typeof a&&a&&S(C,a))return a}return new m(!1)}},9539:function(t,e,n){var i=n(9565),u=n(8551),c=n(5966);t.exports=function(t,e,n){var r,o;u(t);try{if(!(r=c(t,"return"))){if("throw"===e)throw n;return n}r=i(r,t)}catch(t){o=!0,r=t}if("throw"===e)throw n;if(o)throw r;return u(r),n}},7657:function(t,e,n){var r,o,i=n(9039),u=n(4901),c=n(34),a=n(2360),s=n(2787),f=n(6840),l=n(8227),n=n(6395),p=l("iterator"),l=!1;[].keys&&("next"in(o=[].keys())?(s=s(s(o)))!==Object.prototype&&(r=s):l=!0),!c(r)||i(function(){var t={};return r[p].call(t)!==t})?r={}:n&&(r=a(r)),u(r[p])||f(r,p,function(){return this}),t.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:l}},6269:function(t){t.exports={}},6198:function(t,e,n){var r=n(8014);t.exports=function(t){return r(t.length)}},283:function(t,e,n){var r=n(9504),o=n(9039),i=n(4901),u=n(9297),c=n(3724),a=n(350).CONFIGURABLE,s=n(3706),n=n(1181),f=n.enforce,l=n.get,p=String,d=Object.defineProperty,h=r("".slice),v=r("".replace),g=r([].join),m=c&&!o(function(){return 8!==d(function(){},"length",{value:8}).length}),b=String(String).split("String"),n=t.exports=function(t,e,n){"Symbol("===h(p(e),0,7)&&(e="["+v(p(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),n&&n.getter&&(e="get "+e),n&&n.setter&&(e="set "+e),(!u(t,"name")||a&&t.name!==e)&&(c?d(t,"name",{value:e,configurable:!0}):t.name=e),m&&n&&u(n,"arity")&&t.length!==n.arity&&d(t,"length",{value:n.arity});try{n&&u(n,"constructor")&&n.constructor?c&&d(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}n=f(t);return u(n,"source")||(n.source=g(b,"string"==typeof e?e:"")),t};Function.prototype.toString=n(function(){return i(this)&&l(this).source||s(this)},"toString")},741:function(t){var e=Math.ceil,n=Math.floor;t.exports=Math.trunc||function(t){t=+t;return(0<t?n:e)(t)}},2360:function(t,e,n){function r(){}function o(t){t.write(m("")),t.close();var e=t.parentWindow.Object;return t=null,e}var i,u=n(8551),c=n(6801),a=n(8727),s=n(421),f=n(397),l=n(4055),n=n(6119),p=">",d="<",h="prototype",v="script",g=n("IE_PROTO"),m=function(t){return d+v+p+t+d+"/"+v+p},b=function(){try{i=new ActiveXObject("htmlfile")}catch(t){}b="undefined"==typeof document||document.domain&&i?o(i):(t=l("iframe"),e="java"+v+":",t.style.display="none",f.appendChild(t),t.src=String(e),(e=t.contentWindow.document).open(),e.write(m("document.F=Object")),e.close(),e.F);for(var t,e,n=a.length;n--;)delete b[h][a[n]];return b()};s[g]=!0,t.exports=Object.create||function(t,e){var n;return null!==t?(r[h]=u(t),n=new r,r[h]=null,n[g]=t):n=b(),void 0===e?n:c.f(n,e)}},6801:function(t,e,n){var r=n(3724),o=n(8686),c=n(4913),a=n(8551),s=n(5397),f=n(1072);e.f=r&&!o?Object.defineProperties:function(t,e){a(t);for(var n,r=s(e),o=f(e),i=o.length,u=0;u<i;)c.f(t,n=o[u++],r[n]);return t}},4913:function(t,e,n){var r=n(3724),o=n(5917),i=n(8686),u=n(8551),c=n(6969),a=TypeError,s=Object.defineProperty,f=Object.getOwnPropertyDescriptor,l="enumerable",p="configurable",d="writable";e.f=r?i?function(t,e,n){var r;return u(t),e=c(e),u(n),"function"==typeof t&&"prototype"===e&&"value"in n&&d in n&&!n[d]&&(r=f(t,e))&&r[d]&&(t[e]=n.value,n={configurable:(p in n?n:r)[p],enumerable:(l in n?n:r)[l],writable:!1}),s(t,e,n)}:s:function(t,e,n){if(u(t),e=c(e),u(n),o)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw new a("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},7347:function(t,e,n){var r=n(3724),o=n(9565),i=n(8773),u=n(6980),c=n(5397),a=n(6969),s=n(9297),f=n(5917),l=Object.getOwnPropertyDescriptor;e.f=r?l:function(t,e){if(t=c(t),e=a(e),f)try{return l(t,e)}catch(t){}if(s(t,e))return u(!o(i.f,t,e),t[e])}},8480:function(t,e,n){var r=n(1828),o=n(8727).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},3717:function(t,e){e.f=Object.getOwnPropertySymbols},2787:function(t,e,n){var r=n(9297),o=n(4901),i=n(8981),u=n(6119),n=n(2211),c=u("IE_PROTO"),a=Object,s=a.prototype;t.exports=n?a.getPrototypeOf:function(t){var e,t=i(t);return r(t,c)?t[c]:(e=t.constructor,o(e)&&t instanceof e?e.prototype:t instanceof a?s:null)}},1625:function(t,e,n){n=n(9504);t.exports=n({}.isPrototypeOf)},1828:function(t,e,n){var r=n(9504),u=n(9297),c=n(5397),a=n(9617).indexOf,s=n(421),f=r([].push);t.exports=function(t,e){var n,r=c(t),o=0,i=[];for(n in r)!u(s,n)&&u(r,n)&&f(i,n);for(;e.length>o;)!u(r,n=e[o++])||~a(i,n)||f(i,n);return i}},1072:function(t,e,n){var r=n(1828),o=n(8727);t.exports=Object.keys||function(t){return r(t,o)}},8773:function(t,e){var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,o=r&&!n.call({1:2},1);e.f=o?function(t){t=r(this,t);return!!t&&t.enumerable}:n},4270:function(t,e,n){var o=n(9565),i=n(4901),u=n(34),c=TypeError;t.exports=function(t,e){var n,r;if("string"===e&&i(n=t.toString)&&!u(r=o(n,t)))return r;if(i(n=t.valueOf)&&!u(r=o(n,t)))return r;if("string"!==e&&i(n=t.toString)&&!u(r=o(n,t)))return r;throw new c("Can't convert object to primitive value")}},5031:function(t,e,n){var r=n(7751),o=n(9504),i=n(8480),u=n(3717),c=n(8551),a=o([].concat);t.exports=r("Reflect","ownKeys")||function(t){var e=i.f(c(t)),n=u.f;return n?a(e,n(t)):e}},7750:function(t,e,n){var r=n(4117),o=TypeError;t.exports=function(t){if(r(t))throw new o("Can't call method on "+t);return t}},6119:function(t,e,n){var r=n(5745),o=n(3392),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},7629:function(t,e,n){var r=n(6395),o=n(4576),n=n(9433),i="__core-js_shared__",t=t.exports=o[i]||n(i,{});(t.versions||(t.versions=[])).push({version:"3.39.0",mode:r?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.39.0/LICENSE",source:"https://github.com/zloirock/core-js"})},5745:function(t,e,n){var r=n(7629);t.exports=function(t,e){return r[t]||(r[t]=e||{})}},4495:function(t,e,n){var r=n(9519),o=n(9039),i=n(4576).String;t.exports=!!Object.getOwnPropertySymbols&&!o(function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&r&&r<41})},5610:function(t,e,n){var r=n(1291),o=Math.max,i=Math.min;t.exports=function(t,e){t=r(t);return t<0?o(t+e,0):i(t,e)}},5397:function(t,e,n){var r=n(7055),o=n(7750);t.exports=function(t){return r(o(t))}},1291:function(t,e,n){var r=n(741);t.exports=function(t){t=+t;return t!=t||0==t?0:r(t)}},8014:function(t,e,n){var r=n(1291),o=Math.min;t.exports=function(t){t=r(t);return 0<t?o(t,9007199254740991):0}},8981:function(t,e,n){var r=n(7750),o=Object;t.exports=function(t){return o(r(t))}},2777:function(t,e,n){var r=n(9565),o=n(34),i=n(757),u=n(5966),c=n(4270),n=n(8227),a=TypeError,s=n("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var n=u(t,s);if(n){if(n=r(n,t,e=void 0===e?"default":e),!o(n)||i(n))return n;throw new a("Can't convert object to primitive value")}return c(t,e=void 0===e?"number":e)}},6969:function(t,e,n){var r=n(2777),o=n(757);t.exports=function(t){t=r(t,"string");return o(t)?t:t+""}},2140:function(t,e,n){var r={};r[n(8227)("toStringTag")]="z",t.exports="[object z]"===String(r)},6823:function(t){var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},3392:function(t,e,n){var n=n(9504),r=0,o=Math.random(),i=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+i(++r+o,36)}},7040:function(t,e,n){n=n(4495);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},8686:function(t,e,n){var r=n(3724),n=n(9039);t.exports=r&&n(function(){return 42!==Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype})},8622:function(t,e,n){var r=n(4576),n=n(4901),r=r.WeakMap;t.exports=n(r)&&/native code/.test(String(r))},8227:function(t,e,n){var r=n(4576),o=n(5745),i=n(9297),u=n(3392),c=n(4495),n=n(7040),a=r.Symbol,s=o("wks"),f=n?a.for||a:a&&a.withoutSetter||u;t.exports=function(t){return i(s,t)||(s[t]=c&&i(a,t)?a[t]:f("Symbol."+t)),s[t]}},4114:function(t,e,n){var r=n(6518),i=n(8981),u=n(6198),c=n(4527),a=n(6837);r({target:"Array",proto:!0,arity:1,forced:n(9039)(function(){return 4294967297!==[].push.call({length:4294967296},1)})||!(()=>{try{Object.defineProperty([],"length",{writable:!1}).push()}catch(t){return t instanceof TypeError}})()},{push:function(t){var e=i(this),n=u(e),r=arguments.length;a(n+r);for(var o=0;o<r;o++)e[n]=arguments[o],n++;return c(e,n),n}})},8111:function(t,e,n){function r(){if(c(this,g),f(this)===g)throw new x("Abstract class Iterator not directly constructable")}function o(e,t){m?l(g,e,{configurable:!0,get:function(){return t},set:function(t){if(a(this),this===g)throw new x("You can't redefine this property");h(this,e)?this[e]=t:p(this,e,t)}}):g[e]=t}var i=n(6518),u=n(4576),c=n(679),a=n(8551),s=n(4901),f=n(2787),l=n(2106),p=n(4659),d=n(9039),h=n(9297),v=n(8227),g=n(7657).IteratorPrototype,m=n(3724),n=n(6395),b="constructor",y="Iterator",v=v("toStringTag"),x=TypeError,w=u[y],u=n||!s(w)||w.prototype!==g||!d(function(){w({})});h(g,v)||o(v,y),!u&&h(g,b)&&g[b]!==Object||o(b,r),r.prototype=g,i({global:!0,constructor:!0,forced:u},{Iterator:r})},7588:function(t,e,n){var r=n(6518),o=n(2652),i=n(9306),u=n(8551),c=n(1767);r({target:"Iterator",proto:!0,real:!0},{forEach:function(e){u(this),i(e);var t=c(this),n=0;o(t,function(t){e(t,n++)},{IS_RECORD:!0})}})},3579:function(t,e,n){var r=n(6518),o=n(2652),i=n(9306),u=n(8551),c=n(1767);r({target:"Iterator",proto:!0,real:!0},{some:function(n){u(this),i(n);var t=c(this),r=0;return o(t,function(t,e){if(n(t,r++))return e()},{IS_RECORD:!0,INTERRUPTED:!0}).stopped}})},8992:function(t,e,n){n(8111)},3949:function(t,e,n){n(7588)},7550:function(t,e,n){n(3579)}},W={};function B(t){var e=W[t];return void 0!==e||(e=W[t]={exports:{}},Pt[t].call(e.exports,e,e.exports,B)),e.exports}B.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return B.d(e,{a:e}),e},B.d=function(t,e){for(var n in e)B.o(e,n)&&!B.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},B.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),B.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},B.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},B.p="";var $={};B.r($),B.d($,{GLOBAL_EVENT_KEYS:function(){return o},VxeCore:function(){return i},VxeUI:function(){return k},checkVersion:function(){return Gt},clipboard:function(){return R},commands:function(){return j},component:function(){return Wt},coreVersion:function(){return t},createEvent:function(){return s},default:function(){return Xt},formats:function(){return S},getComponent:function(){return Ut},getConfig:function(){return Rt},getI18n:function(){return xt},getIcon:function(){return vt},getLanguage:function(){return Dt},getSlotVNs:function(){return ht},getTheme:function(){return Tt},globalEvents:function(){return l},globalMixins:function(){return V},globalResize:function(){return h},globalStore:function(){return e},handleCheckInfo:function(){return Et},hasComponent:function(){return Bt},hasLanguage:function(){return Ft},interceptor:function(){return I},log:function(){return y},menus:function(){return O},permission:function(){return M},permissionMixin:function(){return L},renderCustomIcon:function(){return gt},renderEmptyElement:function(){return $t},renderGlobalIcon:function(){return At},renderer:function(){return w},setConfig:function(){return Ct},setI18n:function(){return zt},setIcon:function(){return Mt},setLanguage:function(){return Nt},setTheme:function(){return dt},sizeMixin:function(){return A},use:function(){return Vt},validators:function(){return E}}),"undefined"!=typeof window&&(pt=(pt=window.document.currentScript)&&pt.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))&&(B.p=pt[1]),B(4114);let t="3.2.11",i={coreVersion:t,uiVersion:"",tableVersion:"",designVersion:"",ganttVersion:""},N=B(8871);var G=B.n(N),X=null,q=null,H=null,K="z-index-manage",Y=null,Z="z-index-style",J={m:1e3,s:1e3};function Q(){return X||"undefined"!=typeof document&&(X=document),X}function tt(){return q=X&&!q?X.body||X.getElementsByTagName("body")[0]:q}function et(){var t;Y||!(t=Q())||(Y=t.getElementById(Z))||((Y=t.createElement("style")).id=Z,t.getElementsByTagName("head")[0].appendChild(Y)),Y&&(Y.innerHTML=":root{--dom-main"+(t="-z-index")+":"+ut()+";--dom-sub"+t+":"+ft()+"}")}function nt(){var t,e;return H||(t=Q())&&!(H=t.getElementById(K))&&(e=tt())&&((H=t.createElement("div")).id=K,H.style.display="none",e.appendChild(H),ot(J.m),at(J.s)),H}function rt(n){return function(t){var e;return t&&(t=Number(t),J[n]=t,e=nt())&&(e.dataset?e.dataset[n]=t+"":e.setAttribute("data-"+n,t+"")),et(),J[n]}}var ot=rt("m");function it(r,o){return function(t){var e=nt(),n=(n=e&&(e=e.dataset?e.dataset[r]:e.getAttribute("data-"+r))?Number(e):n)||J[r];return t?Number(t)<n?o():t:n}}var ut=it("m",ct);function ct(){return ot(ut()+1)}var at=rt("s"),st=it("s",lt);function ft(){return ut()+st()}function lt(){return at(st()+1),ft()}var pt={setCurrent:ot,getCurrent:ut,getNext:ct,setSubCurrent:at,getSubCurrent:ft,getSubNext:lt,getMax:function(){var t=0;if(Q()){var e=tt();if(e)for(var n=e.getElementsByTagName("*"),r=0;r<n.length;r++){var o=n[r];o&&o.style&&1===o.nodeType&&(o=o.style.zIndex)&&/^\d+$/.test(o)&&(t=Math.max(t,Number(o)))}}return t}},It=(et(),pt);let f={size:"",version:1,zIndex:999,resizeInterval:500},n={theme:""};function dt(t){var e,t=t&&"default"!==t?t:"light";return n.theme=t,"undefined"!=typeof document&&(e=document.documentElement)&&e.setAttribute("data-vxe-ui-theme",t),i}function Tt(){return n.theme}function Ct(t){return t&&(t.zIndex&&It.setCurrent(t.zIndex),t.theme&&dt(t.theme),G().merge(f,t)),i}function Rt(t,e){return arguments.length?G().get(f,t,e):f}let e={},r={};function ht(t){return G().isArray(t)?t:t?[t]:[]}function Mt(t){return t&&Object.assign(r,t),i}function vt(t){return arguments.length?G().get(r,t):r}function At(t,e){return gt(t,vt(e),e)}function gt(t,e,n){return G().isFunction(e)?t("span",{},ht(e({name:n}))):t("i",{class:e})}function mt(t){return(mt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Lt(t){t=((t,e)=>{if("object"!=mt(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0===n)return("string"===e?String:Number)(t);if("object"!=mt(n=n.call(t,e||"default")))return n;throw new TypeError("@@toPrimitive must return a primitive value.")})(t,"string");return"symbol"==mt(t)?t:t+""}function bt(t,e,n){(e=Lt(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n}let o={F2:"F2",ESCAPE:"Escape",ENTER:"Enter",TAB:"Tab",DELETE:"Delete",BACKSPACE:"Backspace",SPACEBAR:" ",CONTEXT_MENU:"ContextMenu",ARROW_UP:"ArrowUp",ARROW_DOWN:"ArrowDown",ARROW_LEFT:"ArrowLeft",ARROW_RIGHT:"ArrowRight",PAGE_UP:"PageUp",PAGE_DOWN:"PageDown",Control:"Control",R:"R",P:"P",Z:"Z",X:"X",C:"C",V:"V",M:"M"},u=(pt=G().browse(),{" ":"Spacebar",Apps:o.CONTEXT_MENU,Del:o.DELETE,Up:o.ARROW_UP,Down:o.ARROW_DOWN,Left:o.ARROW_LEFT,Right:o.ARROW_RIGHT}),c=pt.firefox?"DOMMouseScroll":"mousewheel",a=[];function yt(n){let r=n.type===c;a.forEach(({type:t,cb:e})=>{n.cancelBubble||(t===n.type||r&&"mousewheel"===t)&&e(n)})}class Ot{constructor(t,e,n){bt(this,"$event",void 0),bt(this,"type",""),bt(this,"key",""),bt(this,"code",""),(this.$event=t)&&(t.type&&(this.type=t.type),t.key&&(this.key=t.key),t.code)&&(this.code=t.code),Object.assign(this,e),G().objectEach(n,(n,r)=>{if(G().isFunction(n)){let t=null,e=!1;Object.defineProperty(this,r,{get(){return e||(e=!0,t=n()),t}})}else this[r]=n})}stopPropagation(){var t=this.$event;t&&t.stopPropagation()}preventDefault(){var t=this.$event;t&&t.preventDefault()}}let s=(t,e,n)=>(t instanceof Ot&&(t=t.$event),new Ot(t,e,n)),l={on(t,e,n){a.push({comp:t,type:e,cb:n})},off(e,n){G().remove(a,t=>t.comp===e&&t.type===n)},hasKey(t,e){t=t.key;return e=e.toLowerCase(),!(!t||e!==t.toLowerCase()&&(!u[t]||u[t].toLowerCase()!==e))}},p=void(pt.isDoc&&(pt.msie||(window.addEventListener("copy",yt,!1),window.addEventListener("cut",yt,!1),window.addEventListener("paste",yt,!1)),document.addEventListener("keydown",yt,!1),document.addEventListener("contextmenu",yt,!1),window.addEventListener("mousedown",yt,!1),window.addEventListener("blur",yt,!1),window.addEventListener("resize",yt,!1),window.addEventListener(c,G().throttle(yt,100,{leading:!0,trailing:!1}),{passive:!0,capture:!1})),B(8992),B(3949),B(7550)),d=[],z=500;function _t(){d.length&&(d.forEach(i=>{i.tarList.forEach(t=>{var{target:e,width:n,heighe:r}=t,o=e.clientWidth,e=e.clientHeight;(o&&n!==o||e&&r!==e)&&(t.width=o,t.heighe=e,setTimeout(i.callback))})}),kt())}function kt(){clearTimeout(p),p=setTimeout(_t,f.resizeInterval||z)}class qt{constructor(t){bt(this,"tarList",[]),bt(this,"callback",void 0),this.callback=t}observe(e){var t;e&&(t=this.tarList,t.some(t=>t.target===e)||t.push({target:e,width:e.clientWidth,heighe:e.clientHeight}),d.length||kt(),d.some(t=>t===this)||d.push(this))}unobserve(e){G().remove(d,t=>t.tarList.some(t=>t.target===e))}disconnect(){G().remove(d,t=>t===this)}}let h={create(t){return new(window.ResizeObserver||qt)(t)}},F=B(9274),v=B.n(F),g=new(v().extend({data(){return{language:"",langMaps:{}}}})),m=!1,b={};function xt(t,e){var{langMaps:n,language:r}=g,o=f.i18n;return o?""+(o(t,e)||""):(m||(n[r]||console.error(`[vxe core] 语言包未安装。Language not installed. https://${i.uiVersion?"vxeui.com":"vxetable.cn"}/#/start/i18n`),m=!0),!e&&b[t]?b[t]:(o=G().toFormatString(G().get(n[r],t,t),e),e||(b[t]=o),o))}function Nt(t){var e=g.language,t=t||"zh-CN";return e!==t&&(g.language=t,b={}),i}function zt(t,e){var n=g.langMaps;return g.langMaps=Object.assign({},n,{[t]:Object.assign({},e)}),i}function Ft(t){var e=g.langMaps;return!!e[t]}function Dt(){var t=g.language;return t}function wt(n,r){return function(t,e){t=`[vxe ${r||""}] `+xt(t,e);return console[n](t),t}}let y={create:wt,warn:wt("warn","v3.2.11"),err:wt("error","v3.2.11")},x={},w={mixin(t){return G().each(t,(t,e)=>w.add(e,t)),w},get(t){return x[t]||null},add(r,t){if(r&&t){let n=x[r];n?(G().each(t,(t,e)=>{G().eqNull(n[e])||n[e]===t||y.warn("vxe.error.coverProp",["Renderer."+r,e])}),Object.assign(n,t)):x[r]=t}return w},forEach(t){return G().objectEach(x,t),w},delete(t){return delete x[t],w}},D=class{constructor(){bt(this,"store",{})}mixin(t){return G().each(t,(t,e)=>{this.add(e,t)}),this}has(t){return!!this.get(t)}get(t){return this.store[t]}add(n,t){var e=this.store[n];let r=G().keys(e);return G().each(t,(t,e)=>{r.includes(e)&&y.warn("vxe.error.coverProp",[n,e])}),this.store[n]=e?G().merge(e,t):t,this}delete(t){delete this.store[t]}forEach(t){G().objectEach(this.store,t)}},E=new D,O=(Object.assign(E,{_name:"Validators"}),new class{constructor(){bt(this,"store",{})}mixin(t){return G().each(t,(t,e)=>{this.add(e,t)}),this}has(t){return!!this.get(t)}get(t){return this.store[t]}add(n,t){var e=this.store[n];G().isFunction(t)&&(y.warn("vxe.error.delProp",["menus -> callback","menuMethod"]),t={menuMethod:t});let r=G().keys(e);return G().each(t,(t,e)=>{r.includes(e)&&y.warn("vxe.error.coverProp",[n,e])}),this.store[n]=e?G().merge(e,t):t,this}delete(t){delete this.store[t]}forEach(t){G().objectEach(this.store,t)}}),S=(Object.assign(O,{_name:"Menus"}),new class{constructor(){bt(this,"store",{})}mixin(t){return G().each(t,(t,e)=>{this.add(e,t)}),this}has(t){return!!this.get(t)}get(t){return this.store[t]}add(n,t){var e=this.store[n];G().isFunction(t)&&(y.warn("vxe.error.delProp",["formats -> callback","cellFormatMethod"]),t={cellFormatMethod:t});let r=G().keys(e);return G().each(t,(t,e)=>{r.includes(e)&&y.warn("vxe.error.coverProp",[n,e])}),this.store[n]=e?G().merge(e,t):t,this}delete(t){delete this.store[t]}forEach(t){G().objectEach(this.store,t)}}),j=(Object.assign(S,{_name:"Formats"}),new class{constructor(){bt(this,"store",{})}mixin(t){return G().each(t,(t,e)=>{this.add(e,t)}),this}has(t){return!!this.get(t)}get(t){return this.store[t]}add(n,t){var e=this.store[n];G().isFunction(t)&&(y.warn("vxe.error.delProp",["commands -> callback","commandMethod"]),t={commandMethod:t});let r=G().keys(e);return G().each(t,(t,e)=>{r.includes(e)&&y.warn("vxe.error.coverProp",[n,e])}),this.store[n]=e?G().merge(e,t):t,this}delete(t){delete this.store[t]}forEach(t){G().objectEach(this.store,t)}}),P=(Object.assign(j,{_name:"Commands"}),{}),I={mixin(t){return G().each(t,(t,e)=>{I.add(e,t)}),I},get(t){return P[t]||[]},add(e,n){n=(n=G().isFunction(n)?{tableInterceptorMethod:n}:n).tableInterceptorMethod;if(n){let t=P[e];-1<(t=t||(P[e]=[])).indexOf(n)&&y.warn("vxe.error.coverProp",["Interceptor",e]),t.push(n)}return I},delete(t,n){var r=P[t];if(r){let e=(n=G().isFunction(n)?{tableInterceptorMethod:n}:n)?n.tableInterceptorMethod:null;e?G().remove(r,t=>t===e):delete P[t]}}},T,C={text:"",html:""},R={getStore(){return C},setStore(t){Object.assign(C,t||{})},copy(t){let e=!1;try{var n=G().toValueString(t);r=n,T||((T=document.createElement("textarea")).id="$VxeCopy",(o=T.style).width="48px",o.height="24px",o.position="fixed",o.zIndex="0",o.left="-500px",o.top="-500px",document.body.appendChild(T)),T.value=r,T.select(),T.setSelectionRange(0,T.value.length),e=document.execCommand("copy"),T.blur(),C.text=n,C.html=""}catch(t){}var r,o;return e},getText(){return C.text||""}};function Et(t,e){let i=!0,u=!1;var c=e||f.permissionMethod;if(t&&c){i=!1;let r=!(u=!0),o=!1;var a=String(t).split("|");for(let n=0;n<a.length;n++){let t=!0,e=!1;var s=c({code:a[n]});if(G().isBoolean(s)?t=s:s&&(t=!!s.visible,e=!!s.disabled),e||o||(o=!0,u=e),t&&!r&&(r=!0,i=t),r&&o)break}}return{code:t,visible:i,disabled:u}}let M={getCheckInfo(t){return Et(t)},checkVisible(t){return Et(t).visible},checkDisable(t){return Et(t).disabled}},A=v().extend({inject:{$xeSizeInfo:{default:null}},provide(){return{$xeSizeInfo:{getSize:()=>this.computeSize}}},computed:{computeSize(){var t=this.size,e=this.$xeSizeInfo;return t||(e?e.getSize():null)}}}),L=v().extend({computed:{computePermissionInfo(){return Et(this.permissionCode,this.permissionMethod)}}}),V={sizeMixin:A,permissionMixin:L},U=[];function Vt(t,e){return t&&t.install&&-1===U.indexOf(t)&&(t.install(k,e),U.push(t)),k}let _={};function Ut(t){return _[t]||null}function Wt(t){t&&t.name&&(_[t.name]=t,_[G().kebabCase(t.name)]=t)}function Bt(t){return!!_[t]}function $t(t){t=t._e;return t()}function Gt(t,e,n){if(t){var r,t=(""+t).match(/(\d+).(\d+).(\d+)/);if(t)return r=G().toNumber(t[1]),n?(t=G().toNumber(t[2]),e<=r&&n<=t):e<=r}return!1}let k=Object.assign(i,{renderEmptyElement:$t,setTheme:dt,getTheme:Tt,setConfig:Ct,getConfig:Rt,setIcon:Mt,getIcon:vt,renderGlobalIcon:At,renderCustomIcon:gt,setLanguage:Nt,hasLanguage:Ft,getLanguage:Dt,setI18n:zt,getI18n:xt,globalEvents:l,GLOBAL_EVENT_KEYS:o,createEvent:s,globalResize:h,renderer:w,validators:E,menus:O,formats:S,commands:j,interceptor:I,clipboard:R,log:y,permission:M,globalStore:e,component:Wt,getComponent:Ut,hasComponent:Bt,globalMixins:V,getSlotVNs:ht,checkVersion:Gt,use:Vt});dt();var Xt=k;return $}});
package/lib/src/core.js CHANGED
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.coreVersion = exports.VxeCore = void 0;
7
- const coreVersion = exports.coreVersion = "3.2.9";
7
+ const coreVersion = exports.coreVersion = "3.2.11";
8
8
  const VxeCore = exports.VxeCore = {
9
9
  coreVersion,
10
10
  uiVersion: '',
@@ -1 +1 @@
1
- Object.defineProperty(exports,"__esModule",{value:!0}),exports.coreVersion=exports.VxeCore=void 0;let coreVersion=exports.coreVersion="3.2.9",VxeCore=exports.VxeCore={coreVersion:coreVersion,uiVersion:"",tableVersion:"",designVersion:"",ganttVersion:""};
1
+ Object.defineProperty(exports,"__esModule",{value:!0}),exports.coreVersion=exports.VxeCore=void 0;let coreVersion=exports.coreVersion="3.2.11",VxeCore=exports.VxeCore={coreVersion:coreVersion,uiVersion:"",tableVersion:"",designVersion:"",ganttVersion:""};
package/lib/src/log.js CHANGED
@@ -12,7 +12,7 @@ function createLog(type, name) {
12
12
  return msg;
13
13
  };
14
14
  }
15
- const version = "3.2.9";
15
+ const version = "3.2.11";
16
16
  const log = exports.log = {
17
17
  create: createLog,
18
18
  warn: createLog('warn', `v${version}`),
@@ -1 +1 @@
1
- Object.defineProperty(exports,"__esModule",{value:!0}),exports.log=void 0;var _i18n=require("./i18n");function createLog(o,n){return function(e,r){e=`[vxe ${n||""}] `+(0,_i18n.getI18n)(e,r);return console[o](e),e}}let version="3.2.9",log=exports.log={create:createLog,warn:createLog("warn","v"+version),err:createLog("error","v"+version)};
1
+ Object.defineProperty(exports,"__esModule",{value:!0}),exports.log=void 0;var _i18n=require("./i18n");function createLog(o,n){return function(e,r){e=`[vxe ${n||""}] `+(0,_i18n.getI18n)(e,r);return console[o](e),e}}let version="3.2.11",log=exports.log={create:createLog,warn:createLog("warn","v"+version),err:createLog("error","v"+version)};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vxe-ui/core",
3
- "version": "3.2.9",
3
+ "version": "3.2.11",
4
4
  "description": "Vxe UI core library",
5
5
  "scripts": {
6
6
  "update": "npm install --legacy-peer-deps",
package/packages/index.ts CHANGED
@@ -17,6 +17,7 @@ import { clipboard } from './src/clipboard'
17
17
  import { permission } from './src/permission'
18
18
  import { log } from './src/log'
19
19
  import { globalMixins } from './src/mixins'
20
+ import { getSlotVNs } from './src/vm'
20
21
  import XEUtils from 'xe-utils'
21
22
 
22
23
  import { VxeGlobalComponents, VxeUIPluginObject } from '../types'
@@ -55,6 +56,21 @@ export function renderEmptyElement (_vm: any): VNode {
55
56
  return _e()
56
57
  }
57
58
 
59
+ export function checkVersion (version: string, pVersion: number, sVersion?: number) {
60
+ if (version) {
61
+ const vRest = `${version}`.match(/(\d+).(\d+).(\d+)/)
62
+ if (vRest) {
63
+ const pV = XEUtils.toNumber(vRest[1])
64
+ if (sVersion) {
65
+ const sV = XEUtils.toNumber(vRest[2])
66
+ return pV >= pVersion && sV >= sVersion
67
+ }
68
+ return pV >= pVersion
69
+ }
70
+ }
71
+ return false
72
+ }
73
+
58
74
  export const VxeUI = Object.assign(VxeCore, {
59
75
  renderEmptyElement,
60
76
 
@@ -94,7 +110,11 @@ export const VxeUI = Object.assign(VxeCore, {
94
110
  component,
95
111
  getComponent,
96
112
  hasComponent,
113
+
97
114
  globalMixins,
115
+ getSlotVNs,
116
+
117
+ checkVersion,
98
118
 
99
119
  use
100
120
  })
@@ -121,6 +141,7 @@ export * from './src/permission'
121
141
  export * from './src/dataStore'
122
142
 
123
143
  export * from './src/mixins'
144
+ export * from './src/vm'
124
145
  export * from './src/log'
125
146
 
126
147
  export default VxeUI
@@ -52,6 +52,8 @@ export const coreVersion: string
52
52
 
53
53
  export function renderEmptyElement(_vm: CombinedVueInstance<Vue, object, object, object, object>): VNode
54
54
 
55
+ export function checkVersion(version: string, pVersion: number, sVersion?: number): boolean
56
+
55
57
  export const renderer: VxeGlobalRenderer
56
58
 
57
59
  export const validators: VxeGlobalValidators
@@ -244,6 +246,11 @@ export interface VxeUIExport {
244
246
  */
245
247
  globalMixins: VxeGlobalUseMixins
246
248
 
249
+ /**
250
+ * 检查版本号是否匹配
251
+ */
252
+ checkVersion: typeof checkVersion
253
+
247
254
  /**
248
255
  * 安装插件
249
256
  */