@editora/plugins 1.0.6 → 1.0.7
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/README.md +7 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -17,6 +17,12 @@ Comprehensive plugin collection for Editora Rich Text Editor with 40+ plugins fo
|
|
|
17
17
|
npm install @editora/plugins @editora/core @editora/themes
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
When using plugin UI features (table toolbar, pickers, dialogs), also import:
|
|
21
|
+
|
|
22
|
+
```ts
|
|
23
|
+
import "@editora/plugins/styles.css";
|
|
24
|
+
```
|
|
25
|
+
|
|
20
26
|
## 🎯 Overview
|
|
21
27
|
|
|
22
28
|
This package provides a complete set of plugins for building feature-rich text editors. Each plugin is modular, tree-shakeable, and can be used independently.
|
|
@@ -109,6 +115,7 @@ import {
|
|
|
109
115
|
StrikethroughPlugin
|
|
110
116
|
} from '@editora/plugins';
|
|
111
117
|
|
|
118
|
+
import "@editora/plugins/styles.css";
|
|
112
119
|
import "@editora/themes/themes/default.css";
|
|
113
120
|
const plugins = [
|
|
114
121
|
BoldPlugin(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@editora/plugins",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "40+ Free Premium Plugins for Editora Rich Text Editor. Table editor, code formatting, accessibility, math, media, and more. Free enterprise plugin collection.",
|
|
5
5
|
"author": "Ajay Kumar <ajaykr089@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"main": "dist/index.cjs.js",
|
|
41
41
|
"module": "dist/index.esm.js",
|
|
42
42
|
"types": "index.d.ts",
|
|
43
|
+
"style": "dist/plugins.css",
|
|
43
44
|
"exports": {
|
|
44
45
|
".": {
|
|
45
46
|
"types": "./index.d.ts",
|
|
@@ -298,7 +299,8 @@
|
|
|
298
299
|
"import": "./dist/underline.esm.js",
|
|
299
300
|
"require": "./dist/underline.cjs.js",
|
|
300
301
|
"default": "./dist/underline.esm.js"
|
|
301
|
-
}
|
|
302
|
+
},
|
|
303
|
+
"./styles.css": "./dist/plugins.css"
|
|
302
304
|
},
|
|
303
305
|
"files": [
|
|
304
306
|
"dist",
|