@tailor-cms/ce-jodit-html-manifest 0.0.1 → 0.0.3

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.
Files changed (2) hide show
  1. package/dist/index.mjs +28 -0
  2. package/package.json +1 -1
package/dist/index.mjs ADDED
@@ -0,0 +1,28 @@
1
+ // src/index.ts
2
+ var type = "JODIT_HTML";
3
+ var name = "Jodit HTML";
4
+ var initState = () => ({ content: "" });
5
+ var version = "1.0";
6
+ var ui = {
7
+ // Display icon, https://pictogrammers.com/library/mdi/
8
+ icon: "mdi-text-box-outline",
9
+ // Does element support only full width or can be used within layouts
10
+ // (e.g. 50/50 layout)
11
+ forceFullWidth: false
12
+ };
13
+ var manifest = {
14
+ type,
15
+ version,
16
+ name,
17
+ ssr: false,
18
+ initState,
19
+ ui
20
+ };
21
+ var index_default = manifest;
22
+ export {
23
+ index_default as default,
24
+ initState,
25
+ name,
26
+ type,
27
+ version
28
+ };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Tailor CMS Jodit HTML editor manifest",
4
4
  "author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
5
5
  "type": "module",
6
- "version": "0.0.1",
6
+ "version": "0.0.3",
7
7
  "exports": {
8
8
  ".": {
9
9
  "import": "./dist/index.js",