bl-common-vue3 3.8.50 → 3.8.52

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bl-common-vue3",
3
- "version": "3.8.50",
3
+ "version": "3.8.52",
4
4
  "main": "index.js",
5
5
  "module": "index.js",
6
6
  "description": "bailing vue3 common components lib",
@@ -13,12 +13,12 @@
13
13
  "lint": "vue-cli-service lint",
14
14
  "publish": "npm publish --access public"
15
15
  },
16
- "exports": {
17
- ".": "./index.js",
18
- "./tinymce": "./tinymce.js",
19
- "./package.json": "./package.json",
20
- "./lib/*": "./lib/*"
21
- },
16
+ "exports": {
17
+ ".": "./index.js",
18
+ "./tinymce": "./tinymce.js",
19
+ "./package.json": "./package.json",
20
+ "./lib/*": "./lib/*"
21
+ },
22
22
  "peerDependencies": {
23
23
  "ant-design-vue": "^3.2.20",
24
24
  "axios": "^1.15.0",
@@ -565,7 +565,9 @@ const utils = {
565
565
 
566
566
  // microApp
567
567
  setWindowMicroApp: (microApp) => {
568
- window.microApp = microApp;
568
+ if (!window.microApp) {
569
+ window.microApp = microApp;
570
+ }
569
571
  }
570
572
  };
571
573
 
@@ -20,12 +20,9 @@ import "tinymce/plugins/image";
20
20
  import "tinymce/plugins/table";
21
21
  import "tinymce/plugins/lists";
22
22
  import "tinymce/plugins/link";
23
- import "tinymce/plugins/help";
24
23
  import "tinymce/plugins/wordcount";
25
24
  import "tinymce/plugins/code";
26
25
  import "tinymce/plugins/preview";
27
- import "tinymce/plugins/visualblocks";
28
- import "tinymce/plugins/visualchars";
29
26
  import "tinymce/plugins/fullscreen";
30
27
  import "tinymce/plugins/media";
31
28