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.
@@ -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(`${name}: exprs[${options.counter++}]`);
362
- } else props.push(`${name}: "${value}"`);
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(`${name}: exprs[${options.counter++}]`);
436
- } else props.push(`${name}: "${value}"`);
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "solid-js",
3
3
  "description": "A declarative JavaScript library for building user interfaces.",
4
- "version": "1.9.5",
4
+ "version": "1.9.6",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",
7
7
  "homepage": "https://solidjs.com",