@barefootjs/rust 0.31.7 → 0.31.9

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/vite.js +28 -0
  2. package/package.json +5 -5
package/dist/vite.js CHANGED
@@ -3077,6 +3077,34 @@ var SVG_ROOT_TAGS = new Set([
3077
3077
  "animateTransform",
3078
3078
  "animateMotion"
3079
3079
  ]);
3080
+ var MATHML_ROOT_TAGS = new Set([
3081
+ "math",
3082
+ "mrow",
3083
+ "mfrac",
3084
+ "msup",
3085
+ "msub",
3086
+ "msubsup",
3087
+ "mn",
3088
+ "mi",
3089
+ "mo",
3090
+ "mtext",
3091
+ "munder",
3092
+ "mover",
3093
+ "munderover",
3094
+ "mtable",
3095
+ "mtr",
3096
+ "mtd",
3097
+ "msqrt",
3098
+ "mroot",
3099
+ "mstyle",
3100
+ "merror",
3101
+ "mpadded",
3102
+ "mphantom",
3103
+ "menclose",
3104
+ "semantics",
3105
+ "annotation",
3106
+ "annotation-xml"
3107
+ ]);
3080
3108
 
3081
3109
  // ../jsx/src/ir-to-client-js/collect-elements.ts
3082
3110
  var EMPTY_RENDER_EXPRS = new Set(["null", "undefined", "false", "''", '""', "``"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barefootjs/rust",
3
- "version": "0.31.7",
3
+ "version": "0.31.9",
4
4
  "description": "minijinja (Rust) adapter for BarefootJS — compiles IR to .j2 templates and ships a Rust rendering runtime (packages/adapter-rust/runtime/); runs under any Rust web framework (axum, etc.)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -54,7 +54,7 @@
54
54
  "directory": "packages/adapter-rust"
55
55
  },
56
56
  "dependencies": {
57
- "@barefootjs/shared": "0.31.7"
57
+ "@barefootjs/shared": "0.31.9"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "@barefootjs/jsx": ">=0.2.0",
@@ -71,9 +71,9 @@
71
71
  },
72
72
  "devDependencies": {
73
73
  "@barefootjs/adapter-tests": "0.1.0",
74
- "@barefootjs/jsx": "0.31.7",
75
- "@barefootjs/vite": "0.31.7",
76
- "@barefootjs/client": "0.31.7",
74
+ "@barefootjs/jsx": "0.31.9",
75
+ "@barefootjs/vite": "0.31.9",
76
+ "@barefootjs/client": "0.31.9",
77
77
  "typescript": "^5.0.0",
78
78
  "vite": "^6.0.0"
79
79
  }