@barefootjs/test 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.
- package/dist/index.js +28 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -198487,6 +198487,34 @@ var SVG_ROOT_TAGS = new Set([
|
|
|
198487
198487
|
"animateTransform",
|
|
198488
198488
|
"animateMotion"
|
|
198489
198489
|
]);
|
|
198490
|
+
var MATHML_ROOT_TAGS = new Set([
|
|
198491
|
+
"math",
|
|
198492
|
+
"mrow",
|
|
198493
|
+
"mfrac",
|
|
198494
|
+
"msup",
|
|
198495
|
+
"msub",
|
|
198496
|
+
"msubsup",
|
|
198497
|
+
"mn",
|
|
198498
|
+
"mi",
|
|
198499
|
+
"mo",
|
|
198500
|
+
"mtext",
|
|
198501
|
+
"munder",
|
|
198502
|
+
"mover",
|
|
198503
|
+
"munderover",
|
|
198504
|
+
"mtable",
|
|
198505
|
+
"mtr",
|
|
198506
|
+
"mtd",
|
|
198507
|
+
"msqrt",
|
|
198508
|
+
"mroot",
|
|
198509
|
+
"mstyle",
|
|
198510
|
+
"merror",
|
|
198511
|
+
"mpadded",
|
|
198512
|
+
"mphantom",
|
|
198513
|
+
"menclose",
|
|
198514
|
+
"semantics",
|
|
198515
|
+
"annotation",
|
|
198516
|
+
"annotation-xml"
|
|
198517
|
+
]);
|
|
198490
198518
|
|
|
198491
198519
|
// ../jsx/src/ir-to-client-js/collect-elements.ts
|
|
198492
198520
|
var EMPTY_RENDER_EXPRS = new Set(["null", "undefined", "false", "''", '""', "``"]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@barefootjs/test",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.9",
|
|
4
4
|
"description": "Test utilities for BarefootJS - IR-based component testing without a browser",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"directory": "packages/test"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@barefootjs/jsx": "0.31.
|
|
42
|
+
"@barefootjs/jsx": "0.31.9"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"typescript": "^5.0.0"
|