bm-admin-ui 1.2.28-alpha → 1.2.30-alpha

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.js DELETED
@@ -1,13 +0,0 @@
1
- import * as components from 'bm-admin-ui/es/components';
2
- export * from 'bm-admin-ui/es/components';
3
-
4
- const install = (app) => {
5
- Object.values(components).forEach((component) => {
6
- app.use(component);
7
- });
8
- };
9
- var index = {
10
- install,
11
- };
12
-
13
- export { index as default };
package/lib/index.js DELETED
@@ -1,42 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var components = require('bm-admin-ui/lib/components');
6
-
7
- function _interopNamespace(e) {
8
- if (e && e.__esModule) return e;
9
- var n = Object.create(null);
10
- if (e) {
11
- Object.keys(e).forEach(function (k) {
12
- if (k !== 'default') {
13
- var d = Object.getOwnPropertyDescriptor(e, k);
14
- Object.defineProperty(n, k, d.get ? d : {
15
- enumerable: true,
16
- get: function () { return e[k]; }
17
- });
18
- }
19
- });
20
- }
21
- n["default"] = e;
22
- return Object.freeze(n);
23
- }
24
-
25
- var components__namespace = /*#__PURE__*/_interopNamespace(components);
26
-
27
- const install = (app) => {
28
- Object.values(components__namespace).forEach((component) => {
29
- app.use(component);
30
- });
31
- };
32
- var index = {
33
- install,
34
- };
35
-
36
- exports["default"] = index;
37
- Object.keys(components).forEach(function (k) {
38
- if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
39
- enumerable: true,
40
- get: function () { return components[k]; }
41
- });
42
- });