@unseenco/theatre-core 0.1.14 → 0.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/dist/index.js CHANGED
@@ -6878,7 +6878,8 @@ var SheetTemplate = class {
6878
6878
  __publicField(this, "objectTemplatesP", this._objectTemplates.pointer);
6879
6879
  __publicField(this, "_pendingOutlineNamespaces", {});
6880
6880
  __publicField(this, "_sequenceVariants", [DEFAULT_SEQUENCE_VARIANT]);
6881
- __publicField(this, "_visibleInOutline", true);
6881
+ __publicField(this, "_visibleInOutline", new import_theatre_dataverse16.Atom(true));
6882
+ __publicField(this, "visibleInOutlineP", this._visibleInOutline.pointer);
6882
6883
  this.address = { ...project.address, sheetId };
6883
6884
  }
6884
6885
  getInstance(instanceId) {
@@ -6951,10 +6952,10 @@ var SheetTemplate = class {
6951
6952
  );
6952
6953
  }
6953
6954
  setVisibleInOutline(visible) {
6954
- this._visibleInOutline = visible;
6955
+ this._visibleInOutline.set(visible);
6955
6956
  }
6956
6957
  isVisibleInOutline() {
6957
- return this._visibleInOutline;
6958
+ return this._visibleInOutline.get();
6958
6959
  }
6959
6960
  };
6960
6961
 
@@ -8366,7 +8367,7 @@ var CoreBundle = class {
8366
8367
  return "Theatre_CoreBundle";
8367
8368
  }
8368
8369
  get version() {
8369
- return "0.1.14";
8370
+ return "0.1.15";
8370
8371
  }
8371
8372
  getBitsForStudio(studio, callback) {
8372
8373
  if (this._studio) {