mt-block-editor-block 1.1.14 → 1.1.15

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.d.ts CHANGED
@@ -115,7 +115,7 @@ export class Block {
115
115
  public static selectable: boolean;
116
116
  public static shouldBeCompiled: boolean;
117
117
  public id: string;
118
- public compiledHtml: string;
118
+ public compiledHtml: string | undefined;
119
119
  public placeholderLabel(): string;
120
120
  public placeholder(): JSX.Element;
121
121
  public metadata(): Metadata | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mt-block-editor-block",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "This package helps you define custom block types.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
package/src/index.d.ts CHANGED
@@ -115,7 +115,7 @@ export class Block {
115
115
  public static selectable: boolean;
116
116
  public static shouldBeCompiled: boolean;
117
117
  public id: string;
118
- public compiledHtml: string;
118
+ public compiledHtml: string | undefined;
119
119
  public placeholderLabel(): string;
120
120
  public placeholder(): JSX.Element;
121
121
  public metadata(): Metadata | null;