@dotcms/types 1.4.0-next.1 → 1.4.0-next.2
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/index.cjs.js +4 -0
- package/index.esm.js +4 -0
- package/package.json +1 -1
- package/src/lib/editor/public.d.ts +4 -0
package/index.cjs.js
CHANGED
|
@@ -100,6 +100,10 @@ exports.DotCMSUVEAction = void 0;
|
|
|
100
100
|
* Tell the editor to register style schemas
|
|
101
101
|
*/
|
|
102
102
|
DotCMSUVEAction["REGISTER_STYLE_SCHEMAS"] = "register-style-schemas";
|
|
103
|
+
/**
|
|
104
|
+
* Tell the editor to create a contentlet without adding it to the page
|
|
105
|
+
*/
|
|
106
|
+
DotCMSUVEAction["CREATE_CONTENTLET"] = "create-contentlet";
|
|
103
107
|
/**
|
|
104
108
|
* Tell the editor to do nothing
|
|
105
109
|
*/
|
package/index.esm.js
CHANGED
|
@@ -98,6 +98,10 @@ var DotCMSUVEAction;
|
|
|
98
98
|
* Tell the editor to register style schemas
|
|
99
99
|
*/
|
|
100
100
|
DotCMSUVEAction["REGISTER_STYLE_SCHEMAS"] = "register-style-schemas";
|
|
101
|
+
/**
|
|
102
|
+
* Tell the editor to create a contentlet without adding it to the page
|
|
103
|
+
*/
|
|
104
|
+
DotCMSUVEAction["CREATE_CONTENTLET"] = "create-contentlet";
|
|
101
105
|
/**
|
|
102
106
|
* Tell the editor to do nothing
|
|
103
107
|
*/
|
package/package.json
CHANGED
|
@@ -142,6 +142,10 @@ export declare enum DotCMSUVEAction {
|
|
|
142
142
|
* Tell the editor to register style schemas
|
|
143
143
|
*/
|
|
144
144
|
REGISTER_STYLE_SCHEMAS = "register-style-schemas",
|
|
145
|
+
/**
|
|
146
|
+
* Tell the editor to create a contentlet without adding it to the page
|
|
147
|
+
*/
|
|
148
|
+
CREATE_CONTENTLET = "create-contentlet",
|
|
145
149
|
/**
|
|
146
150
|
* Tell the editor to do nothing
|
|
147
151
|
*/
|