@barefootjs/client 0.32.0 → 0.33.0

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.
@@ -169801,6 +169801,8 @@ function matchToLocaleDateStringCall(callee, args, metadata) {
169801
169801
  let tz = null;
169802
169802
  const probeOptions = {};
169803
169803
  for (const prop of options.properties) {
169804
+ if (prop.kind === "spread")
169805
+ return null;
169804
169806
  if (prop.value.kind !== "literal" || prop.value.literalType !== "string")
169805
169807
  return null;
169806
169808
  const value = String(prop.value.value);
@@ -170943,6 +170945,8 @@ function matchQueryHrefCall(callee, args, localNames) {
170943
170945
  return null;
170944
170946
  const triples = [];
170945
170947
  for (const p of obj.properties) {
170948
+ if (p.kind === "spread")
170949
+ return null;
170946
170950
  const v = p.value;
170947
170951
  if (v.kind === "conditional" && isOmitBranch(v.alternate)) {
170948
170952
  triples.push({ guard: v.test, key: p.key, value: v.consequent });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barefootjs/client",
3
- "version": "0.32.0",
3
+ "version": "0.33.0",
4
4
  "description": "BarefootJS client package: reactive primitives (SSR-safe) plus browser runtime under the `/runtime` subpath (compiler target)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -55,7 +55,7 @@
55
55
  "directory": "packages/client"
56
56
  },
57
57
  "dependencies": {
58
- "@barefootjs/shared": "0.32.0"
58
+ "@barefootjs/shared": "0.33.0"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "@barefootjs/jsx": ">=0.2.0"