@vxe-ui/core 3.0.10 → 3.0.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/src/core.js +1 -1
- package/es/src/log.js +1 -1
- package/lib/index.common.js +4 -3
- package/lib/index.umd.js +4904 -595
- package/lib/index.umd.min.js +1 -1
- package/lib/src/clipboard.js +9 -9
- package/lib/src/clipboard.min.js +1 -1
- package/lib/src/commands.js +62 -41
- package/lib/src/commands.min.js +1 -1
- package/lib/src/configStore.js +1 -1
- package/lib/src/configStore.min.js +1 -1
- package/lib/src/core.js +38 -40
- package/lib/src/core.min.js +1 -1
- package/lib/src/dataStore.js +1 -1
- package/lib/src/dataStore.min.js +1 -1
- package/lib/src/event.js +46 -36
- package/lib/src/event.min.js +1 -1
- package/lib/src/formats.js +62 -41
- package/lib/src/formats.min.js +1 -1
- package/lib/src/i18n.js +6 -14
- package/lib/src/i18n.min.js +1 -1
- package/lib/src/i18nStore.js +3 -3
- package/lib/src/i18nStore.min.js +1 -1
- package/lib/src/iconStore.js +1 -1
- package/lib/src/iconStore.min.js +1 -1
- package/lib/src/interceptor.js +14 -12
- package/lib/src/interceptor.min.js +1 -1
- package/lib/src/log.js +5 -5
- package/lib/src/log.min.js +1 -1
- package/lib/src/menus.js +62 -41
- package/lib/src/menus.min.js +1 -1
- package/lib/src/mixins.js +10 -12
- package/lib/src/mixins.min.js +1 -1
- package/lib/src/permission.js +19 -19
- package/lib/src/permission.min.js +1 -1
- package/lib/src/renderer.js +13 -11
- package/lib/src/renderer.min.js +1 -1
- package/lib/src/resize.js +65 -43
- package/lib/src/resize.min.js +1 -1
- package/lib/src/store.js +54 -34
- package/lib/src/store.min.js +1 -1
- package/lib/src/themeStore.js +1 -1
- package/lib/src/themeStore.min.js +1 -1
- package/lib/src/validators.js +1 -1
- package/lib/src/validators.min.js +1 -1
- package/package.json +1 -1
package/es/src/core.js
CHANGED
|
@@ -73,7 +73,7 @@ export function setIcon(options) {
|
|
|
73
73
|
export function getIcon(key) {
|
|
74
74
|
return arguments.length ? XEUtils.get(iconConfigStore, key) : iconConfigStore;
|
|
75
75
|
}
|
|
76
|
-
export const coreVersion = "3.0.
|
|
76
|
+
export const coreVersion = "3.0.11";
|
|
77
77
|
const installedPlugins = [];
|
|
78
78
|
export function use(Plugin, options) {
|
|
79
79
|
if (Plugin && Plugin.install) {
|
package/es/src/log.js
CHANGED
package/lib/index.common.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
4
|
Object.defineProperty(exports, "__esModule", {
|
|
4
5
|
value: true
|
|
5
6
|
});
|
|
@@ -12,11 +13,11 @@ Object.keys(_core).forEach(function (key) {
|
|
|
12
13
|
if (key in exports && exports[key] === _core[key]) return;
|
|
13
14
|
Object.defineProperty(exports, key, {
|
|
14
15
|
enumerable: true,
|
|
15
|
-
get: function () {
|
|
16
|
+
get: function get() {
|
|
16
17
|
return _core[key];
|
|
17
18
|
}
|
|
18
19
|
});
|
|
19
20
|
});
|
|
20
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
21
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" !=
|
|
21
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
22
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
22
23
|
var _default = exports.default = _core.default;
|