be-intl 0.0.33 → 0.0.34

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/be-intl.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { BeValueAdded } from 'be-value-added/be-value-added.js';
2
- export class BeIntl extends BeValueAdded {
2
+ class BeIntl extends BeValueAdded {
3
3
  static config = {
4
4
  propInfo: {
5
5
  ...(super.config.propInfo),
@@ -61,3 +61,5 @@ export class BeIntl extends BeValueAdded {
61
61
  }
62
62
  }
63
63
  }
64
+ await BeIntl.bootUp();
65
+ export { BeIntl };
package/behivior.js CHANGED
@@ -27,7 +27,7 @@ export const emc = {
27
27
  ],
28
28
  enhPropKey: 'beIntl',
29
29
  importEnh: async () => {
30
- const { BeIntl } = await import('./behance.js');
30
+ const { BeIntl } = await import('./be-intl.js');
31
31
  return BeIntl;
32
32
  }
33
33
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "be-intl",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "keywords": [
5
5
  "web-components",
6
6
  "web-component",
@@ -12,7 +12,8 @@
12
12
  "module": "be-intl.js",
13
13
  "exports": {
14
14
  ".": "./be-intl.js",
15
- "./be-intl.js": "./be-intl.js"
15
+ "./be-intl.js": "./be-intl.js",
16
+ "./behivior.js": "./behivior.js"
16
17
  },
17
18
  "files": [
18
19
  "*.js",
package/behance.js DELETED
@@ -1,5 +0,0 @@
1
- import { BeIntl } from './be-intl.js';
2
- export { BeIntl } from './be-intl.js';
3
- import { def } from 'trans-render/lib/def.js';
4
- await BeIntl.bootUp();
5
- def('be-intl', BeIntl);