@easy-editor/core 0.0.1 → 0.0.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.
@@ -5321,6 +5321,9 @@ class ComponentMeta {
5321
5321
  get isContainer() {
5322
5322
  return this._isContainer;
5323
5323
  }
5324
+ get isMinimalRenderUnit() {
5325
+ return this._isMinimalRenderUnit || false;
5326
+ }
5324
5327
  get descriptor() {
5325
5328
  return this._descriptor;
5326
5329
  }
@@ -5362,6 +5365,7 @@ class ComponentMeta {
5362
5365
  if (component) {
5363
5366
  this._isContainer = !!component.isContainer;
5364
5367
  this._descriptor = component.descriptor;
5368
+ this._isMinimalRenderUnit = component.isMinimalRenderUnit;
5365
5369
  } else {
5366
5370
  this._isContainer = false;
5367
5371
  }