solid-js 1.9.5 → 1.9.6
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/dev.cjs +3 -2
- package/dist/dev.js +3 -2
- package/dist/solid.cjs +3 -2
- package/dist/solid.js +3 -2
- package/h/jsx-runtime/types/jsx.d.ts +2947 -1021
- package/html/dist/html.cjs +2 -2
- package/html/dist/html.js +2 -2
- package/package.json +1 -1
- package/types/jsx.d.ts +2091 -278
- package/universal/dist/dev.cjs +3 -1
- package/universal/dist/dev.js +4 -2
- package/universal/dist/universal.cjs +3 -1
- package/universal/dist/universal.js +4 -2
- package/web/dist/dev.cjs +8 -5
- package/web/dist/dev.js +9 -2
- package/web/dist/server.cjs +8 -5
- package/web/dist/server.js +9 -2
- package/web/dist/web.cjs +8 -5
- package/web/dist/web.js +9 -2
- package/web/types/core.d.ts +1 -1
package/html/dist/html.cjs
CHANGED
|
@@ -358,8 +358,8 @@ function createHTML(r, {
|
|
|
358
358
|
propGroups.push(`exprs[${options.counter++}]`);
|
|
359
359
|
propGroups.push(props = []);
|
|
360
360
|
} else if (value === "###") {
|
|
361
|
-
props.push(
|
|
362
|
-
} else props.push(
|
|
361
|
+
props.push(`"${name}": exprs[${options.counter++}]`);
|
|
362
|
+
} else props.push(`"${name}": "${value}"`);
|
|
363
363
|
} else if (type === 'directive') {
|
|
364
364
|
const tag = `_$el${uuid++}`;
|
|
365
365
|
const topDecl = !options.decl.length;
|
package/html/dist/html.js
CHANGED
|
@@ -432,8 +432,8 @@ function createHTML(
|
|
|
432
432
|
propGroups.push(`exprs[${options.counter++}]`);
|
|
433
433
|
propGroups.push((props = []));
|
|
434
434
|
} else if (value === "###") {
|
|
435
|
-
props.push(
|
|
436
|
-
} else props.push(
|
|
435
|
+
props.push(`"${name}": exprs[${options.counter++}]`);
|
|
436
|
+
} else props.push(`"${name}": "${value}"`);
|
|
437
437
|
} else if (type === "directive") {
|
|
438
438
|
const tag = `_$el${uuid++}`;
|
|
439
439
|
const topDecl = !options.decl.length;
|