@srcker/editor-vue-next 1.0.5 → 1.0.6
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/dist/rich-editor.es.js +1 -0
- package/package.json +13 -1
package/dist/rich-editor.es.js
CHANGED
|
@@ -21252,5 +21252,6 @@ La.install = (n) => {
|
|
|
21252
21252
|
n.component("RichEditor", La);
|
|
21253
21253
|
};
|
|
21254
21254
|
export {
|
|
21255
|
+
La as RichEditor,
|
|
21255
21256
|
La as default
|
|
21256
21257
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@srcker/editor-vue-next",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/rich-editor.es.js",
|
|
6
6
|
"module": "dist/rich-editor.es.js",
|
|
@@ -8,6 +8,18 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/rich-editor.es.js",
|
|
14
|
+
"default": "./dist/rich-editor.es.js"
|
|
15
|
+
},
|
|
16
|
+
"./style": {
|
|
17
|
+
"import": "./dist/style.es.js"
|
|
18
|
+
},
|
|
19
|
+
"./style/variables": {
|
|
20
|
+
"import": "./dist/variables.es.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
11
23
|
"engines": {
|
|
12
24
|
"node": "^20.19.0 || >=22.12.0"
|
|
13
25
|
},
|