@richhtmleditor/templates 1.2.0 → 1.2.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 +3 -3
- package/package.json +18 -5
package/README.md
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Document templates plugin for Rich HTML Editor. Adds an **Insert Template** toolbar tool with a gallery of pre-built document templates — report, letter, memo, resume, and more. Built on [`@richhtmleditor/core`](https://www.npmjs.com/package/@richhtmleditor/core).
|
|
4
4
|
|
|
5
|
-
**Current release: 1.2.
|
|
5
|
+
**Current release: 1.2.7** — Depends on `@richhtmleditor/core` **^1.2.7**.
|
|
6
6
|
|
|
7
7
|
**Repository:** [github.com/rajkishorsahu89/richhtmleditor](https://github.com/rajkishorsahu89/richhtmleditor)
|
|
8
8
|
|
|
9
|
-
**Demo:** [richhtmleditor.
|
|
9
|
+
**Demo:** [richhtmleditor.stackkitlabs.com](https://richhtmleditor.stackkitlabs.com/) — [demo](https://richhtmleditor.stackkitlabs.com/demo) · [guide](https://richhtmleditor.stackkitlabs.com/guide) · [API](https://richhtmleditor.stackkitlabs.com/api)
|
|
10
10
|
|
|
11
|
-
### What's in 1.2.
|
|
11
|
+
### What's in 1.2.7
|
|
12
12
|
|
|
13
13
|
- **`createTemplatesPlugin`** — registers the `insertTemplate` toolbar tool
|
|
14
14
|
- **Template gallery** — grid of pre-built templates with preview thumbnails
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@richhtmleditor/templates",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"description": "Reusable content blocks and template variables plugin for Rich HTML Editor.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -12,7 +12,10 @@
|
|
|
12
12
|
"default": "./dist/index.js"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
|
-
"files": [
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
16
19
|
"scripts": {
|
|
17
20
|
"build": "tsc -p tsconfig.json",
|
|
18
21
|
"prepack": "node ../../scripts/assert-pack-ready.mjs"
|
|
@@ -20,8 +23,18 @@
|
|
|
20
23
|
"dependencies": {
|
|
21
24
|
"@richhtmleditor/core": "^1.2.0"
|
|
22
25
|
},
|
|
23
|
-
"keywords": [
|
|
26
|
+
"keywords": [
|
|
27
|
+
"richhtmleditor",
|
|
28
|
+
"templates",
|
|
29
|
+
"snippets",
|
|
30
|
+
"variables",
|
|
31
|
+
"content-blocks"
|
|
32
|
+
],
|
|
24
33
|
"license": "MIT",
|
|
25
|
-
"publishConfig": {
|
|
26
|
-
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=18"
|
|
39
|
+
}
|
|
27
40
|
}
|