@superblocksteam/library 2.0.41-next.11 → 2.0.41-next.13

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
@@ -6453,11 +6453,11 @@ const propertiesDefinition$2 = {
6453
6453
  })
6454
6454
  }),
6455
6455
  functions: Section.category(PropsPanelCategory.Functions).children({
6456
- set: Prop.function(function(_s, value) {
6456
+ set: Prop.function(function(value) {
6457
6457
  const widget = this;
6458
6458
  widget.value = value;
6459
6459
  }),
6460
- reset: Prop.function(function(_s) {
6460
+ reset: Prop.function(function() {
6461
6461
  const widget = this;
6462
6462
  widget.value = widget.defaultValue;
6463
6463
  })
@@ -6604,7 +6604,7 @@ const propertiesDefinition = {
6604
6604
  }).readable()
6605
6605
  }),
6606
6606
  functions: Section.category("Derived").children({
6607
- run: Prop.function(async function(_s, traceHeaders) {
6607
+ run: Prop.function(async function(traceHeaders) {
6608
6608
  const api = this;
6609
6609
  try {
6610
6610
  const result = await api._suspensibleApi.run(traceHeaders);
@@ -6615,7 +6615,7 @@ const propertiesDefinition = {
6615
6615
  throw error;
6616
6616
  }
6617
6617
  }),
6618
- cancel: Prop.function(async function(_s) {
6618
+ cancel: Prop.function(async function() {
6619
6619
  await this._suspensibleApi.cancel();
6620
6620
  })
6621
6621
  }),