@barefootjs/xslate 0.31.8 → 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.
package/dist/vite.js CHANGED
@@ -3025,6 +3025,34 @@ var SVG_ROOT_TAGS = new Set([
3025
3025
  "animateTransform",
3026
3026
  "animateMotion"
3027
3027
  ]);
3028
+ var MATHML_ROOT_TAGS = new Set([
3029
+ "math",
3030
+ "mrow",
3031
+ "mfrac",
3032
+ "msup",
3033
+ "msub",
3034
+ "msubsup",
3035
+ "mn",
3036
+ "mi",
3037
+ "mo",
3038
+ "mtext",
3039
+ "munder",
3040
+ "mover",
3041
+ "munderover",
3042
+ "mtable",
3043
+ "mtr",
3044
+ "mtd",
3045
+ "msqrt",
3046
+ "mroot",
3047
+ "mstyle",
3048
+ "merror",
3049
+ "mpadded",
3050
+ "mphantom",
3051
+ "menclose",
3052
+ "semantics",
3053
+ "annotation",
3054
+ "annotation-xml"
3055
+ ]);
3028
3056
 
3029
3057
  // ../jsx/src/ir-to-client-js/collect-elements.ts
3030
3058
  var EMPTY_RENDER_EXPRS = new Set(["null", "undefined", "false", "''", '""', "``"]);
@@ -1,5 +1,5 @@
1
1
  package BarefootJS::Backend::Xslate;
2
- our $VERSION = "0.31.7";
2
+ our $VERSION = "0.31.8";
3
3
  use strict;
4
4
  use warnings;
5
5
  use utf8;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barefootjs/xslate",
3
- "version": "0.31.8",
3
+ "version": "0.31.9",
4
4
  "description": "Text::Xslate (Kolon) adapter for BarefootJS — compiles IR to .tx templates and ships the Xslate rendering backend; runs under any PSGI/Plack app",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -55,7 +55,7 @@
55
55
  "directory": "packages/adapter-xslate"
56
56
  },
57
57
  "dependencies": {
58
- "@barefootjs/shared": "0.31.8"
58
+ "@barefootjs/shared": "0.31.9"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "@barefootjs/jsx": ">=0.2.0",
@@ -72,9 +72,9 @@
72
72
  },
73
73
  "devDependencies": {
74
74
  "@barefootjs/adapter-tests": "0.1.0",
75
- "@barefootjs/jsx": "0.31.8",
76
- "@barefootjs/vite": "0.31.8",
77
- "@barefootjs/client": "0.31.8",
75
+ "@barefootjs/jsx": "0.31.9",
76
+ "@barefootjs/vite": "0.31.9",
77
+ "@barefootjs/client": "0.31.9",
78
78
  "typescript": "^5.0.0",
79
79
  "vite": "^6.0.0"
80
80
  }