@dotcms/client 0.0.1-alpha.47 → 0.0.1-alpha.48

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 CHANGED
@@ -1163,6 +1163,10 @@ exports.CLIENT_ACTIONS = void 0;
1163
1163
  * Tell the editor to edit a contentlet
1164
1164
  */
1165
1165
  CLIENT_ACTIONS["EDIT_CONTENTLET"] = "edit-contentlet";
1166
+ /**
1167
+ * Tell the editor to open the block editor sidebar
1168
+ */
1169
+ CLIENT_ACTIONS["INIT_BLOCK_EDITOR_INLINE_EDITING"] = "init-editor-inline-editing";
1166
1170
  /**
1167
1171
  * Tell the editor to do nothing
1168
1172
  */
package/index.esm.js CHANGED
@@ -1161,6 +1161,10 @@ var CLIENT_ACTIONS;
1161
1161
  * Tell the editor to edit a contentlet
1162
1162
  */
1163
1163
  CLIENT_ACTIONS["EDIT_CONTENTLET"] = "edit-contentlet";
1164
+ /**
1165
+ * Tell the editor to open the block editor sidebar
1166
+ */
1167
+ CLIENT_ACTIONS["INIT_BLOCK_EDITOR_INLINE_EDITING"] = "init-editor-inline-editing";
1164
1168
  /**
1165
1169
  * Tell the editor to do nothing
1166
1170
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotcms/client",
3
- "version": "0.0.1-alpha.47",
3
+ "version": "0.0.1-alpha.48",
4
4
  "description": "Official JavaScript library for interacting with DotCMS REST APIs.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -65,6 +65,10 @@ export declare enum CLIENT_ACTIONS {
65
65
  * Tell the editor to edit a contentlet
66
66
  */
67
67
  EDIT_CONTENTLET = "edit-contentlet",
68
+ /**
69
+ * Tell the editor to open the block editor sidebar
70
+ */
71
+ INIT_BLOCK_EDITOR_INLINE_EDITING = "init-editor-inline-editing",
68
72
  /**
69
73
  * Tell the editor to do nothing
70
74
  */
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Listen for block editor inline event.
3
+ *
4
+ */
5
+ export declare const listenBlockEditorInlineEvent: () => void;