@barefootjs/client 0.33.6 → 0.34.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.
Files changed (2) hide show
  1. package/dist/csr-adapter.js +12 -12
  2. package/package.json +2 -2
@@ -168761,6 +168761,18 @@ var import_typescript10 = __toESM(require_typescript(), 1);
168761
168761
 
168762
168762
  // ../jsx/src/expression-parser.ts
168763
168763
  var import_typescript = __toESM(require_typescript(), 1);
168764
+
168765
+ // ../jsx/src/lowering-registry.ts
168766
+ var plugins = [];
168767
+ function registerLoweringPlugin(plugin) {
168768
+ const existing = plugins.findIndex((p) => p.name === plugin.name);
168769
+ if (existing >= 0)
168770
+ plugins[existing] = plugin;
168771
+ else
168772
+ plugins.push(plugin);
168773
+ }
168774
+
168775
+ // ../jsx/src/expression-parser.ts
168764
168776
  var UNSUPPORTED_METHODS = new Set([
168765
168777
  "filter",
168766
168778
  "map",
@@ -170014,18 +170026,6 @@ var import_typescript16 = __toESM(require_typescript(), 1);
170014
170026
 
170015
170027
  // ../jsx/src/relocate.ts
170016
170028
  var import_typescript18 = __toESM(require_typescript(), 1);
170017
-
170018
- // ../jsx/src/lowering-registry.ts
170019
- var plugins = [];
170020
- function registerLoweringPlugin(plugin) {
170021
- const existing = plugins.findIndex((p) => p.name === plugin.name);
170022
- if (existing >= 0)
170023
- plugins[existing] = plugin;
170024
- else
170025
- plugins.push(plugin);
170026
- }
170027
-
170028
- // ../jsx/src/relocate.ts
170029
170029
  var REGISTRY_SAFE_BINDING_KINDS = new Set([
170030
170030
  "global",
170031
170031
  "module-import",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barefootjs/client",
3
- "version": "0.33.6",
3
+ "version": "0.34.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.33.6"
58
+ "@barefootjs/shared": "0.34.0"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "@barefootjs/jsx": ">=0.2.0"