@dotcms/types 1.2.5-next.5 → 1.2.5-next.6
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/internal.cjs.js
CHANGED
|
@@ -36,6 +36,10 @@ exports.BlockEditorDefaultBlocks = void 0;
|
|
|
36
36
|
BlockEditorDefaultBlocks["TABLE"] = "table";
|
|
37
37
|
/** Represents a DotCMS content block */
|
|
38
38
|
BlockEditorDefaultBlocks["DOT_CONTENT"] = "dotContent";
|
|
39
|
+
/** Represents a grid block with columns */
|
|
40
|
+
BlockEditorDefaultBlocks["GRID_BLOCK"] = "gridBlock";
|
|
41
|
+
/** Represents a column inside a grid block */
|
|
42
|
+
BlockEditorDefaultBlocks["GRID_COLUMN"] = "gridColumn";
|
|
39
43
|
})(exports.BlockEditorDefaultBlocks || (exports.BlockEditorDefaultBlocks = {}));
|
|
40
44
|
|
|
41
45
|
/**
|
package/internal.esm.js
CHANGED
|
@@ -34,6 +34,10 @@ var BlockEditorDefaultBlocks;
|
|
|
34
34
|
BlockEditorDefaultBlocks["TABLE"] = "table";
|
|
35
35
|
/** Represents a DotCMS content block */
|
|
36
36
|
BlockEditorDefaultBlocks["DOT_CONTENT"] = "dotContent";
|
|
37
|
+
/** Represents a grid block with columns */
|
|
38
|
+
BlockEditorDefaultBlocks["GRID_BLOCK"] = "gridBlock";
|
|
39
|
+
/** Represents a column inside a grid block */
|
|
40
|
+
BlockEditorDefaultBlocks["GRID_COLUMN"] = "gridColumn";
|
|
37
41
|
})(BlockEditorDefaultBlocks || (BlockEditorDefaultBlocks = {}));
|
|
38
42
|
|
|
39
43
|
/**
|
package/package.json
CHANGED
|
@@ -32,7 +32,11 @@ export declare enum BlockEditorDefaultBlocks {
|
|
|
32
32
|
/** Represents a table block */
|
|
33
33
|
TABLE = "table",
|
|
34
34
|
/** Represents a DotCMS content block */
|
|
35
|
-
DOT_CONTENT = "dotContent"
|
|
35
|
+
DOT_CONTENT = "dotContent",
|
|
36
|
+
/** Represents a grid block with columns */
|
|
37
|
+
GRID_BLOCK = "gridBlock",
|
|
38
|
+
/** Represents a column inside a grid block */
|
|
39
|
+
GRID_COLUMN = "gridColumn"
|
|
36
40
|
}
|
|
37
41
|
/**
|
|
38
42
|
* Represents the validation state of a Block Editor instance
|