@plasmicapp/react-web 0.2.419 → 0.2.421

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/all.d.ts CHANGED
@@ -12801,6 +12801,7 @@ type InitFuncEnv = {
12801
12801
  $props: Record<string, any>;
12802
12802
  $state: Record<string, any>;
12803
12803
  $queries?: Record<string, any>;
12804
+ $q?: Record<string, any>;
12804
12805
  $ctx?: Record<string, any>;
12805
12806
  $refs?: Record<string, any>;
12806
12807
  };
package/dist/index.cjs.js CHANGED
@@ -2454,12 +2454,13 @@ var mkUntrackedValue = function (o) {
2454
2454
  return o != null && typeof o === "object" ? valtio.ref(o) : o;
2455
2455
  };
2456
2456
  var envFieldsAreNonNill = function (env) {
2457
- var _a, _b, _c;
2457
+ var _a, _b, _c, _d;
2458
2458
  return ({
2459
2459
  $props: env.$props,
2460
2460
  $ctx: (_a = env.$ctx) !== null && _a !== void 0 ? _a : {},
2461
2461
  $queries: (_b = env.$queries) !== null && _b !== void 0 ? _b : {},
2462
- $refs: (_c = env.$refs) !== null && _c !== void 0 ? _c : {},
2462
+ $q: (_c = env.$q) !== null && _c !== void 0 ? _c : {},
2463
+ $refs: (_d = env.$refs) !== null && _d !== void 0 ? _d : {},
2463
2464
  });
2464
2465
  };
2465
2466
  /**
@@ -2494,6 +2495,7 @@ function extractDollarStateParametersBackwardCompatible() {
2494
2495
  $props: rest[0],
2495
2496
  $ctx: rest[1],
2496
2497
  $queries: {},
2498
+ $q: {},
2497
2499
  },
2498
2500
  opts: rest[2],
2499
2501
  };