agilebuilder-ui 1.1.65-tmp5 → 1.1.65-tmp7
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/lib/chat-embed/src/index.vue2.js +24 -24
- package/lib/index.js +7 -6
- package/lib/style.css +747 -747
- package/package.json +2 -1
- package/packages/index.js +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agilebuilder-ui",
|
|
3
|
-
"version": "1.1.65-
|
|
3
|
+
"version": "1.1.65-tmp7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"@codemirror/state": "^6.4.1",
|
|
16
16
|
"@tinymce/tinymce-vue": "4.0.4",
|
|
17
17
|
"@vitejs/plugin-vue-jsx": "^4.1.2",
|
|
18
|
+
"@vueuse/core": "9.13.0",
|
|
18
19
|
"@zxing/library": "^0.20.0",
|
|
19
20
|
"async-validator": "^4.2.5",
|
|
20
21
|
"clipboard": "^2.0.11",
|
package/packages/index.js
CHANGED
|
@@ -266,9 +266,9 @@ export {getWatermark, cacheWatermark, removeWatermark }
|
|
|
266
266
|
export {i18nOperation }
|
|
267
267
|
|
|
268
268
|
|
|
269
|
-
|
|
270
|
-
//
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
269
|
+
export default {
|
|
270
|
+
// 导出的对象必须具有 install,才能被 Vue.use() 方法安装
|
|
271
|
+
install,
|
|
272
|
+
store,
|
|
273
|
+
...components
|
|
274
|
+
}
|