bl-common-vue3 3.8.49 → 3.8.50

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.49",
3
+ "version": "3.8.50",
4
4
  "main": "index.js",
5
5
  "module": "index.js",
6
6
  "description": "bailing vue3 common components lib",
@@ -13,11 +13,12 @@
13
13
  "lint": "vue-cli-service lint",
14
14
  "publish": "npm publish --access public"
15
15
  },
16
- "exports": {
17
- ".": "./index.js",
18
- "./package.json": "./package.json",
19
- "./lib/*": "./lib/*"
20
- },
16
+ "exports": {
17
+ ".": "./index.js",
18
+ "./tinymce": "./tinymce.js",
19
+ "./package.json": "./package.json",
20
+ "./lib/*": "./lib/*"
21
+ },
21
22
  "peerDependencies": {
22
23
  "ant-design-vue": "^3.2.20",
23
24
  "axios": "^1.15.0",
@@ -49,4 +49,3 @@ export { default as BlMobileAnnexUpload } from "./BlMobileAnnexUpload/index.vue"
49
49
  export { default as SelectColor } from "./SelectColor/index.vue";
50
50
  export { default as PublicExtensionField } from "./PublicExtensionField/index.vue";//共用拓展字段,只需要修改alias和服务名称
51
51
  export { default as BlCreateChatBtn } from "./BlChat/createChatBtn.vue";//发起讨论按钮
52
- export { default as BlTinymceEditor } from "./BlTinymceEditor/index.vue";
package/tinymce.js ADDED
@@ -0,0 +1 @@
1
+ export { default as BlTinymceEditor } from "./src/components/BlTinymceEditor/index.vue";