@unseenco/theatre-core 0.1.14 → 0.1.16

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/dist/index.mjs CHANGED
@@ -6868,7 +6868,8 @@ var SheetTemplate = class {
6868
6868
  __publicField(this, "objectTemplatesP", this._objectTemplates.pointer);
6869
6869
  __publicField(this, "_pendingOutlineNamespaces", {});
6870
6870
  __publicField(this, "_sequenceVariants", [DEFAULT_SEQUENCE_VARIANT]);
6871
- __publicField(this, "_visibleInOutline", true);
6871
+ __publicField(this, "_visibleInOutline", new Atom9(true));
6872
+ __publicField(this, "visibleInOutlineP", this._visibleInOutline.pointer);
6872
6873
  this.address = { ...project.address, sheetId };
6873
6874
  }
6874
6875
  getInstance(instanceId) {
@@ -6941,10 +6942,10 @@ var SheetTemplate = class {
6941
6942
  );
6942
6943
  }
6943
6944
  setVisibleInOutline(visible) {
6944
- this._visibleInOutline = visible;
6945
+ this._visibleInOutline.set(visible);
6945
6946
  }
6946
6947
  isVisibleInOutline() {
6947
- return this._visibleInOutline;
6948
+ return this._visibleInOutline.get();
6948
6949
  }
6949
6950
  };
6950
6951
 
@@ -8356,7 +8357,7 @@ var CoreBundle = class {
8356
8357
  return "Theatre_CoreBundle";
8357
8358
  }
8358
8359
  get version() {
8359
- return "0.1.14";
8360
+ return "0.1.16";
8360
8361
  }
8361
8362
  getBitsForStudio(studio, callback) {
8362
8363
  if (this._studio) {