@dotcms/types 26.7.21-1 → 26.7.27-1
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
|
@@ -32,6 +32,8 @@ exports.BlockEditorDefaultBlocks = void 0;
|
|
|
32
32
|
BlockEditorDefaultBlocks["DOT_IMAGE"] = "dotImage";
|
|
33
33
|
/** Represents a DotCMS video block */
|
|
34
34
|
BlockEditorDefaultBlocks["DOT_VIDEO"] = "dotVideo";
|
|
35
|
+
/** Represents a DotCMS audio block */
|
|
36
|
+
BlockEditorDefaultBlocks["DOT_AUDIO"] = "dotAudio";
|
|
35
37
|
/** Represents a table block */
|
|
36
38
|
BlockEditorDefaultBlocks["TABLE"] = "table";
|
|
37
39
|
/** Represents a DotCMS content block */
|
package/internal.esm.js
CHANGED
|
@@ -30,6 +30,8 @@ var BlockEditorDefaultBlocks;
|
|
|
30
30
|
BlockEditorDefaultBlocks["DOT_IMAGE"] = "dotImage";
|
|
31
31
|
/** Represents a DotCMS video block */
|
|
32
32
|
BlockEditorDefaultBlocks["DOT_VIDEO"] = "dotVideo";
|
|
33
|
+
/** Represents a DotCMS audio block */
|
|
34
|
+
BlockEditorDefaultBlocks["DOT_AUDIO"] = "dotAudio";
|
|
33
35
|
/** Represents a table block */
|
|
34
36
|
BlockEditorDefaultBlocks["TABLE"] = "table";
|
|
35
37
|
/** Represents a DotCMS content block */
|
package/package.json
CHANGED
|
@@ -29,6 +29,8 @@ export declare enum BlockEditorDefaultBlocks {
|
|
|
29
29
|
DOT_IMAGE = "dotImage",
|
|
30
30
|
/** Represents a DotCMS video block */
|
|
31
31
|
DOT_VIDEO = "dotVideo",
|
|
32
|
+
/** Represents a DotCMS audio block */
|
|
33
|
+
DOT_AUDIO = "dotAudio",
|
|
32
34
|
/** Represents a table block */
|
|
33
35
|
TABLE = "table",
|
|
34
36
|
/** Represents a DotCMS content block */
|