ripple 0.2.37 → 0.2.39

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ripple is a TypeScript UI framework for the web",
4
4
  "license": "MIT",
5
5
  "author": "Dominic Gannaway",
6
- "version": "0.2.37",
6
+ "version": "0.2.39",
7
7
  "type": "module",
8
8
  "module": "src/runtime/index.js",
9
9
  "main": "src/runtime/index.js",
@@ -1666,6 +1666,7 @@ function transform_children(children, { visit, state, root }) {
1666
1666
  state.template.push(escape_html(expression.value));
1667
1667
  } else {
1668
1668
  const id = state.flush_node();
1669
+ state.template.push(' ');
1669
1670
  state.init.push(
1670
1671
  b.stmt(b.assignment('=', b.member(id, b.id('textContent')), expression)),
1671
1672
  );
@@ -64,7 +64,7 @@ export {
64
64
  array_entries,
65
65
  } from './array.js';
66
66
 
67
- export { for_block as for, for_effect } from './for.js';
67
+ export { for_block as for } from './for.js';
68
68
 
69
69
  export { if_block as if } from './if.js';
70
70