@plasmicapp/react-web 0.2.420 → 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.
@@ -3,6 +3,7 @@ export type InitFuncEnv = {
3
3
  $props: Record<string, any>;
4
4
  $state: Record<string, any>;
5
5
  $queries?: Record<string, any>;
6
+ $q?: Record<string, any>;
6
7
  $ctx?: Record<string, any>;
7
8
  $refs?: Record<string, any>;
8
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/react-web",
3
- "version": "0.2.420",
3
+ "version": "0.2.421",
4
4
  "description": "plasmic library for rendering in the presentational style",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
@@ -153,5 +153,5 @@
153
153
  "react": ">=16.8.0",
154
154
  "react-dom": ">=16.8.0"
155
155
  },
156
- "gitHead": "0cff43ac752f86fd735d436e5852e538268d11bd"
156
+ "gitHead": "955c7b4179dbc8452feb22d1e82b2ba37ecddaab"
157
157
  }
@@ -1348,12 +1348,13 @@ var mkUntrackedValue = function (o) {
1348
1348
  return o != null && typeof o === "object" ? ref(o) : o;
1349
1349
  };
1350
1350
  var envFieldsAreNonNill = function (env) {
1351
- var _a, _b, _c;
1351
+ var _a, _b, _c, _d;
1352
1352
  return ({
1353
1353
  $props: env.$props,
1354
1354
  $ctx: (_a = env.$ctx) !== null && _a !== void 0 ? _a : {},
1355
1355
  $queries: (_b = env.$queries) !== null && _b !== void 0 ? _b : {},
1356
- $refs: (_c = env.$refs) !== null && _c !== void 0 ? _c : {},
1356
+ $q: (_c = env.$q) !== null && _c !== void 0 ? _c : {},
1357
+ $refs: (_d = env.$refs) !== null && _d !== void 0 ? _d : {},
1357
1358
  });
1358
1359
  };
1359
1360
  /**
@@ -1388,6 +1389,7 @@ function extractDollarStateParametersBackwardCompatible() {
1388
1389
  $props: rest[0],
1389
1390
  $ctx: rest[1],
1390
1391
  $queries: {},
1392
+ $q: {},
1391
1393
  },
1392
1394
  opts: rest[2],
1393
1395
  };