ripple 0.3.12 → 0.3.13

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.
Files changed (190) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/package.json +8 -2
  3. package/src/compiler/phases/1-parse/index.js +73 -30
  4. package/src/compiler/phases/2-analyze/index.js +28 -58
  5. package/src/compiler/phases/3-transform/client/index.js +127 -164
  6. package/src/compiler/phases/3-transform/segments.js +4 -8
  7. package/src/compiler/phases/3-transform/server/index.js +210 -360
  8. package/src/compiler/types/import.d.ts +0 -12
  9. package/src/compiler/types/index.d.ts +12 -5
  10. package/src/compiler/types/parse.d.ts +2 -0
  11. package/src/compiler/utils.js +39 -44
  12. package/src/helpers.d.ts +2 -0
  13. package/src/runtime/index-client.js +15 -13
  14. package/src/runtime/index-server.js +18 -11
  15. package/src/runtime/internal/client/blocks.js +19 -23
  16. package/src/runtime/internal/client/constants.js +20 -9
  17. package/src/runtime/internal/client/index.js +14 -4
  18. package/src/runtime/internal/client/runtime.js +435 -173
  19. package/src/runtime/internal/client/try.js +334 -156
  20. package/src/runtime/internal/client/types.d.ts +26 -0
  21. package/src/runtime/internal/server/blocks.js +183 -0
  22. package/src/runtime/internal/server/constants.js +7 -0
  23. package/src/runtime/internal/server/index.js +780 -148
  24. package/src/runtime/internal/server/types.d.ts +35 -0
  25. package/src/server/index.js +1 -1
  26. package/src/utils/async.js +35 -0
  27. package/src/utils/builders.js +3 -1
  28. package/tests/client/__snapshots__/computed-properties.test.rsrx.snap +49 -0
  29. package/tests/client/__snapshots__/for.test.rsrx.snap +319 -0
  30. package/tests/client/__snapshots__/html.test.rsrx.snap +40 -0
  31. package/tests/client/_etc.test.rsrx +7 -0
  32. package/tests/client/array/{array.static.test.ripple → array.static.test.rsrx} +18 -20
  33. package/tests/client/async-suspend.test.rsrx +662 -0
  34. package/tests/client/basic/__snapshots__/basic.attributes.test.rsrx.snap +60 -0
  35. package/tests/client/basic/__snapshots__/basic.rendering.test.rsrx.snap +59 -0
  36. package/tests/client/basic/{basic.errors.test.ripple → basic.errors.test.rsrx} +2 -2
  37. package/tests/client/compiler/__snapshots__/compiler.assignments.test.rsrx.snap +12 -0
  38. package/tests/client/compiler/__snapshots__/compiler.typescript.test.rsrx.snap +46 -0
  39. package/tests/client/compiler/{compiler.try-in-function.test.ripple → compiler.try-in-function.test.rsrx} +8 -6
  40. package/tests/client/composite/__snapshots__/composite.render.test.rsrx.snap +37 -0
  41. package/tests/client/{function-overload.test.ripple → function-overload.test.rsrx} +1 -1
  42. package/tests/client/try.test.rsrx +1702 -0
  43. package/tests/hydration/build-components.js +5 -3
  44. package/tests/hydration/compiled/client/head.js +11 -11
  45. package/tests/hydration/compiled/client/mixed-control-flow.js +55 -70
  46. package/tests/hydration/compiled/client/nested-control-flow.js +72 -88
  47. package/tests/hydration/compiled/client/try.js +42 -54
  48. package/tests/hydration/compiled/server/basic.js +491 -369
  49. package/tests/hydration/compiled/server/composite.js +153 -128
  50. package/tests/hydration/compiled/server/events.js +166 -145
  51. package/tests/hydration/compiled/server/for.js +821 -677
  52. package/tests/hydration/compiled/server/head.js +200 -165
  53. package/tests/hydration/compiled/server/hmr.js +62 -54
  54. package/tests/hydration/compiled/server/html-in-template.js +64 -55
  55. package/tests/hydration/compiled/server/html.js +1477 -1360
  56. package/tests/hydration/compiled/server/if-children.js +448 -408
  57. package/tests/hydration/compiled/server/if.js +204 -171
  58. package/tests/hydration/compiled/server/mixed-control-flow.js +237 -195
  59. package/tests/hydration/compiled/server/nested-control-flow.js +533 -467
  60. package/tests/hydration/compiled/server/portal.js +94 -107
  61. package/tests/hydration/compiled/server/reactivity.js +87 -64
  62. package/tests/hydration/compiled/server/return.js +1424 -1174
  63. package/tests/hydration/compiled/server/switch.js +268 -238
  64. package/tests/hydration/compiled/server/try.js +98 -87
  65. package/tests/hydration/components/{mixed-control-flow.ripple → mixed-control-flow.rsrx} +2 -2
  66. package/tests/hydration/components/{try.ripple → try.rsrx} +4 -2
  67. package/tests/hydration/mixed-control-flow.test.js +14 -0
  68. package/tests/hydration/nested-control-flow.test.js +50 -48
  69. package/tests/hydration/try.test.js +25 -0
  70. package/tests/server/__snapshots__/compiler.test.ripple.snap +0 -32
  71. package/tests/server/__snapshots__/compiler.test.rsrx.snap +95 -0
  72. package/tests/server/{compiler.test.ripple → compiler.test.rsrx} +0 -17
  73. package/tests/server/{html-nesting-validation.test.ripple → html-nesting-validation.test.rsrx} +3 -3
  74. package/tests/server/streaming-ssr.test.rsrx +115 -0
  75. package/tests/server/try.test.rsrx +503 -0
  76. package/tests/utils/compiler-compat-config.test.js +3 -3
  77. package/tests/utils/vite-plugin-config.test.js +1 -1
  78. package/tests/utils/vite-plugin-hmr.test.js +5 -5
  79. package/tsconfig.json +2 -0
  80. package/types/index.d.ts +13 -23
  81. package/types/server.d.ts +43 -16
  82. package/tests/client/_etc.test.ripple +0 -5
  83. package/tests/client/async-suspend.test.ripple +0 -94
  84. package/tests/client/try.test.ripple +0 -196
  85. package/tests/server/streaming-ssr.test.ripple +0 -68
  86. package/tests/server/try.test.ripple +0 -82
  87. /package/tests/client/array/{array.copy-within.test.ripple → array.copy-within.test.rsrx} +0 -0
  88. /package/tests/client/array/{array.derived.test.ripple → array.derived.test.rsrx} +0 -0
  89. /package/tests/client/array/{array.iteration.test.ripple → array.iteration.test.rsrx} +0 -0
  90. /package/tests/client/array/{array.mutations.test.ripple → array.mutations.test.rsrx} +0 -0
  91. /package/tests/client/array/{array.to-methods.test.ripple → array.to-methods.test.rsrx} +0 -0
  92. /package/tests/client/basic/{basic.attributes.test.ripple → basic.attributes.test.rsrx} +0 -0
  93. /package/tests/client/basic/{basic.collections.test.ripple → basic.collections.test.rsrx} +0 -0
  94. /package/tests/client/basic/{basic.components.test.ripple → basic.components.test.rsrx} +0 -0
  95. /package/tests/client/basic/{basic.events.test.ripple → basic.events.test.rsrx} +0 -0
  96. /package/tests/client/basic/{basic.get-set.test.ripple → basic.get-set.test.rsrx} +0 -0
  97. /package/tests/client/basic/{basic.hmr.test.ripple → basic.hmr.test.rsrx} +0 -0
  98. /package/tests/client/basic/{basic.reactivity.test.ripple → basic.reactivity.test.rsrx} +0 -0
  99. /package/tests/client/basic/{basic.rendering.test.ripple → basic.rendering.test.rsrx} +0 -0
  100. /package/tests/client/basic/{basic.styling.test.ripple → basic.styling.test.rsrx} +0 -0
  101. /package/tests/client/basic/{basic.utilities.test.ripple → basic.utilities.test.rsrx} +0 -0
  102. /package/tests/client/{boundaries.test.ripple → boundaries.test.rsrx} +0 -0
  103. /package/tests/client/compiler/{compiler.assignments.test.ripple → compiler.assignments.test.rsrx} +0 -0
  104. /package/tests/client/compiler/{compiler.attributes.test.ripple → compiler.attributes.test.rsrx} +0 -0
  105. /package/tests/client/compiler/{compiler.basic.test.ripple → compiler.basic.test.rsrx} +0 -0
  106. /package/tests/client/compiler/{compiler.regex.test.ripple → compiler.regex.test.rsrx} +0 -0
  107. /package/tests/client/compiler/{compiler.tracked-access.test.ripple → compiler.tracked-access.test.rsrx} +0 -0
  108. /package/tests/client/compiler/{compiler.typescript.test.ripple → compiler.typescript.test.rsrx} +0 -0
  109. /package/tests/client/composite/{composite.dynamic-components.test.ripple → composite.dynamic-components.test.rsrx} +0 -0
  110. /package/tests/client/composite/{composite.generics.test.ripple → composite.generics.test.rsrx} +0 -0
  111. /package/tests/client/composite/{composite.props.test.ripple → composite.props.test.rsrx} +0 -0
  112. /package/tests/client/composite/{composite.reactivity.test.ripple → composite.reactivity.test.rsrx} +0 -0
  113. /package/tests/client/composite/{composite.render.test.ripple → composite.render.test.rsrx} +0 -0
  114. /package/tests/client/{computed-properties.test.ripple → computed-properties.test.rsrx} +0 -0
  115. /package/tests/client/{context.test.ripple → context.test.rsrx} +0 -0
  116. /package/tests/client/css/{global-additional-cases.test.ripple → global-additional-cases.test.rsrx} +0 -0
  117. /package/tests/client/css/{global-advanced-selectors.test.ripple → global-advanced-selectors.test.rsrx} +0 -0
  118. /package/tests/client/css/{global-at-rules.test.ripple → global-at-rules.test.rsrx} +0 -0
  119. /package/tests/client/css/{global-basic.test.ripple → global-basic.test.rsrx} +0 -0
  120. /package/tests/client/css/{global-classes-ids.test.ripple → global-classes-ids.test.rsrx} +0 -0
  121. /package/tests/client/css/{global-combinators.test.ripple → global-combinators.test.rsrx} +0 -0
  122. /package/tests/client/css/{global-complex-nesting.test.ripple → global-complex-nesting.test.rsrx} +0 -0
  123. /package/tests/client/css/{global-edge-cases.test.ripple → global-edge-cases.test.rsrx} +0 -0
  124. /package/tests/client/css/{global-keyframes.test.ripple → global-keyframes.test.rsrx} +0 -0
  125. /package/tests/client/css/{global-nested.test.ripple → global-nested.test.rsrx} +0 -0
  126. /package/tests/client/css/{global-pseudo.test.ripple → global-pseudo.test.rsrx} +0 -0
  127. /package/tests/client/css/{global-scoping.test.ripple → global-scoping.test.rsrx} +0 -0
  128. /package/tests/client/css/{style-identifier.test.ripple → style-identifier.test.rsrx} +0 -0
  129. /package/tests/client/{date.test.ripple → date.test.rsrx} +0 -0
  130. /package/tests/client/{dynamic-elements.test.ripple → dynamic-elements.test.rsrx} +0 -0
  131. /package/tests/client/{events.test.ripple → events.test.rsrx} +0 -0
  132. /package/tests/client/{for.test.ripple → for.test.rsrx} +0 -0
  133. /package/tests/client/{function-overload-import.ripple → function-overload-import.rsrx} +0 -0
  134. /package/tests/client/{head.test.ripple → head.test.rsrx} +0 -0
  135. /package/tests/client/{html.test.ripple → html.test.rsrx} +0 -0
  136. /package/tests/client/{input-value.test.ripple → input-value.test.rsrx} +0 -0
  137. /package/tests/client/{lazy-destructuring.test.ripple → lazy-destructuring.test.rsrx} +0 -0
  138. /package/tests/client/{map.test.ripple → map.test.rsrx} +0 -0
  139. /package/tests/client/{media-query.test.ripple → media-query.test.rsrx} +0 -0
  140. /package/tests/client/{object.test.ripple → object.test.rsrx} +0 -0
  141. /package/tests/client/{portal.test.ripple → portal.test.rsrx} +0 -0
  142. /package/tests/client/{ref.test.ripple → ref.test.rsrx} +0 -0
  143. /package/tests/client/{return.test.ripple → return.test.rsrx} +0 -0
  144. /package/tests/client/{set.test.ripple → set.test.rsrx} +0 -0
  145. /package/tests/client/{svg.test.ripple → svg.test.rsrx} +0 -0
  146. /package/tests/client/{switch.test.ripple → switch.test.rsrx} +0 -0
  147. /package/tests/client/{tsx.test.ripple → tsx.test.rsrx} +0 -0
  148. /package/tests/client/{typescript-generics.test.ripple → typescript-generics.test.rsrx} +0 -0
  149. /package/tests/client/url/{url.derived.test.ripple → url.derived.test.rsrx} +0 -0
  150. /package/tests/client/url/{url.parsing.test.ripple → url.parsing.test.rsrx} +0 -0
  151. /package/tests/client/url/{url.partial-removal.test.ripple → url.partial-removal.test.rsrx} +0 -0
  152. /package/tests/client/url/{url.reactivity.test.ripple → url.reactivity.test.rsrx} +0 -0
  153. /package/tests/client/url/{url.serialization.test.ripple → url.serialization.test.rsrx} +0 -0
  154. /package/tests/client/url-search-params/{url-search-params.derived.test.ripple → url-search-params.derived.test.rsrx} +0 -0
  155. /package/tests/client/url-search-params/{url-search-params.initialization.test.ripple → url-search-params.initialization.test.rsrx} +0 -0
  156. /package/tests/client/url-search-params/{url-search-params.iteration.test.ripple → url-search-params.iteration.test.rsrx} +0 -0
  157. /package/tests/client/url-search-params/{url-search-params.mutation.test.ripple → url-search-params.mutation.test.rsrx} +0 -0
  158. /package/tests/client/url-search-params/{url-search-params.retrieval.test.ripple → url-search-params.retrieval.test.rsrx} +0 -0
  159. /package/tests/client/url-search-params/{url-search-params.serialization.test.ripple → url-search-params.serialization.test.rsrx} +0 -0
  160. /package/tests/client/url-search-params/{url-search-params.tracked-url.test.ripple → url-search-params.tracked-url.test.rsrx} +0 -0
  161. /package/tests/hydration/components/{basic.ripple → basic.rsrx} +0 -0
  162. /package/tests/hydration/components/{composite.ripple → composite.rsrx} +0 -0
  163. /package/tests/hydration/components/{events.ripple → events.rsrx} +0 -0
  164. /package/tests/hydration/components/{for.ripple → for.rsrx} +0 -0
  165. /package/tests/hydration/components/{head.ripple → head.rsrx} +0 -0
  166. /package/tests/hydration/components/{hmr.ripple → hmr.rsrx} +0 -0
  167. /package/tests/hydration/components/{html-in-template.ripple → html-in-template.rsrx} +0 -0
  168. /package/tests/hydration/components/{html.ripple → html.rsrx} +0 -0
  169. /package/tests/hydration/components/{if-children.ripple → if-children.rsrx} +0 -0
  170. /package/tests/hydration/components/{if.ripple → if.rsrx} +0 -0
  171. /package/tests/hydration/components/{nested-control-flow.ripple → nested-control-flow.rsrx} +0 -0
  172. /package/tests/hydration/components/{portal.ripple → portal.rsrx} +0 -0
  173. /package/tests/hydration/components/{reactivity.ripple → reactivity.rsrx} +0 -0
  174. /package/tests/hydration/components/{return.ripple → return.rsrx} +0 -0
  175. /package/tests/hydration/components/{switch.ripple → switch.rsrx} +0 -0
  176. /package/tests/server/{await.test.ripple → await.test.rsrx} +0 -0
  177. /package/tests/server/{basic.attributes.test.ripple → basic.attributes.test.rsrx} +0 -0
  178. /package/tests/server/{basic.components.test.ripple → basic.components.test.rsrx} +0 -0
  179. /package/tests/server/{basic.test.ripple → basic.test.rsrx} +0 -0
  180. /package/tests/server/{composite.props.test.ripple → composite.props.test.rsrx} +0 -0
  181. /package/tests/server/{composite.test.ripple → composite.test.rsrx} +0 -0
  182. /package/tests/server/{context.test.ripple → context.test.rsrx} +0 -0
  183. /package/tests/server/{dynamic-elements.test.ripple → dynamic-elements.test.rsrx} +0 -0
  184. /package/tests/server/{for.test.ripple → for.test.rsrx} +0 -0
  185. /package/tests/server/{head.test.ripple → head.test.rsrx} +0 -0
  186. /package/tests/server/{if.test.ripple → if.test.rsrx} +0 -0
  187. /package/tests/server/{lazy-destructuring.test.ripple → lazy-destructuring.test.rsrx} +0 -0
  188. /package/tests/server/{return.test.ripple → return.test.rsrx} +0 -0
  189. /package/tests/server/{style-identifier.test.ripple → style-identifier.test.rsrx} +0 -0
  190. /package/tests/server/{switch.test.ripple → switch.test.rsrx} +0 -0
@@ -3,660 +3,700 @@ import * as _$_ from 'ripple/internal/server';
3
3
 
4
4
  import { track } from 'ripple/server';
5
5
 
6
- export function IfWithChildren(__output, { children }) {
6
+ export function IfWithChildren({ children }) {
7
7
  _$_.push_component();
8
8
 
9
9
  let lazy = _$_.track(true);
10
10
 
11
- __output.push('<div');
12
- __output.push(' class="container"');
13
- __output.push('>');
14
-
15
- {
16
- __output.push('<div');
17
- __output.push(' role="button"');
18
- __output.push(' class="header"');
19
- __output.push('>');
11
+ _$_.regular_block(() => {
12
+ _$_.output_push('<div');
13
+ _$_.output_push(' class="container"');
14
+ _$_.output_push('>');
20
15
 
21
16
  {
22
- __output.push('Toggle');
23
- }
17
+ _$_.output_push('<div');
18
+ _$_.output_push(' role="button"');
19
+ _$_.output_push(' class="header"');
20
+ _$_.output_push('>');
24
21
 
25
- __output.push('</div>');
26
- __output.push('<!--[-->');
22
+ {
23
+ _$_.output_push('Toggle');
24
+ }
27
25
 
28
- if (_$_.get(lazy)) {
29
- __output.push('<div');
30
- __output.push(' class="content"');
31
- __output.push('>');
26
+ _$_.output_push('</div>');
27
+ _$_.output_push('<!--[-->');
32
28
 
33
- {
34
- _$_.render_expression(__output, children);
29
+ if (_$_.get(lazy)) {
30
+ _$_.output_push('<div');
31
+ _$_.output_push(' class="content"');
32
+ _$_.output_push('>');
33
+
34
+ {
35
+ _$_.render_expression(children);
36
+ }
37
+
38
+ _$_.output_push('</div>');
35
39
  }
36
40
 
37
- __output.push('</div>');
41
+ _$_.output_push('<!--]-->');
38
42
  }
39
43
 
40
- __output.push('<!--]-->');
41
- }
44
+ _$_.output_push('</div>');
45
+ });
42
46
 
43
- __output.push('</div>');
44
47
  _$_.pop_component();
45
48
  }
46
49
 
47
- export function ChildItem(__output, { text: label }) {
50
+ export function ChildItem({ text: label }) {
48
51
  _$_.push_component();
49
- __output.push('<div');
50
- __output.push(' class="item"');
51
- __output.push('>');
52
52
 
53
- {
54
- __output.push(_$_.escape(label));
55
- }
53
+ _$_.regular_block(() => {
54
+ _$_.output_push('<div');
55
+ _$_.output_push(' class="item"');
56
+ _$_.output_push('>');
57
+
58
+ {
59
+ _$_.output_push(_$_.escape(label));
60
+ }
61
+
62
+ _$_.output_push('</div>');
63
+ });
56
64
 
57
- __output.push('</div>');
58
65
  _$_.pop_component();
59
66
  }
60
67
 
61
- export function TestIfWithChildren(__output) {
68
+ export function TestIfWithChildren() {
62
69
  _$_.push_component();
63
70
 
64
- {
65
- const comp = IfWithChildren;
71
+ _$_.regular_block(() => {
72
+ {
73
+ const comp = IfWithChildren;
66
74
 
67
- const args = [
68
- __output,
69
- {
70
- children: _$_.ripple_element(function render_children(__output) {
71
- _$_.push_component();
75
+ const args = [
76
+ {
77
+ children: _$_.ripple_element(function render_children() {
78
+ _$_.push_component();
72
79
 
73
- {
74
- const comp = ChildItem;
75
- const args = [__output, { text: "Item 1" }];
80
+ {
81
+ const comp = ChildItem;
82
+ const args = [{ text: "Item 1" }];
76
83
 
77
- comp(...args);
78
- }
84
+ comp(...args);
85
+ }
79
86
 
80
- {
81
- const comp = ChildItem;
82
- const args = [__output, { text: "Item 2" }];
87
+ {
88
+ const comp = ChildItem;
89
+ const args = [{ text: "Item 2" }];
83
90
 
84
- comp(...args);
85
- }
91
+ comp(...args);
92
+ }
86
93
 
87
- _$_.pop_component();
88
- })
89
- }
90
- ];
94
+ _$_.pop_component();
95
+ })
96
+ }
97
+ ];
91
98
 
92
- comp(...args);
93
- }
99
+ comp(...args);
100
+ }
101
+ });
94
102
 
95
103
  _$_.pop_component();
96
104
  }
97
105
 
98
- export function IfWithStaticChildren(__output) {
106
+ export function IfWithStaticChildren() {
99
107
  _$_.push_component();
100
108
 
101
109
  let lazy_1 = _$_.track(true);
102
110
 
103
- __output.push('<div');
104
- __output.push(' class="container"');
105
- __output.push('>');
106
-
107
- {
108
- __output.push('<div');
109
- __output.push(' role="button"');
110
- __output.push(' class="header"');
111
- __output.push('>');
111
+ _$_.regular_block(() => {
112
+ _$_.output_push('<div');
113
+ _$_.output_push(' class="container"');
114
+ _$_.output_push('>');
112
115
 
113
116
  {
114
- __output.push('Toggle');
115
- }
117
+ _$_.output_push('<div');
118
+ _$_.output_push(' role="button"');
119
+ _$_.output_push(' class="header"');
120
+ _$_.output_push('>');
116
121
 
117
- __output.push('</div>');
118
- __output.push('<!--[-->');
122
+ {
123
+ _$_.output_push('Toggle');
124
+ }
119
125
 
120
- if (_$_.get(lazy_1)) {
121
- __output.push('<div');
122
- __output.push(' class="content"');
123
- __output.push('>');
126
+ _$_.output_push('</div>');
127
+ _$_.output_push('<!--[-->');
124
128
 
125
- {
126
- __output.push('<span');
127
- __output.push('>');
129
+ if (_$_.get(lazy_1)) {
130
+ _$_.output_push('<div');
131
+ _$_.output_push(' class="content"');
132
+ _$_.output_push('>');
128
133
 
129
134
  {
130
- __output.push('Static child 1');
131
- }
135
+ _$_.output_push('<span');
136
+ _$_.output_push('>');
132
137
 
133
- __output.push('</span>');
134
- __output.push('<span');
135
- __output.push('>');
138
+ {
139
+ _$_.output_push('Static child 1');
140
+ }
136
141
 
137
- {
138
- __output.push('Static child 2');
142
+ _$_.output_push('</span>');
143
+ _$_.output_push('<span');
144
+ _$_.output_push('>');
145
+
146
+ {
147
+ _$_.output_push('Static child 2');
148
+ }
149
+
150
+ _$_.output_push('</span>');
139
151
  }
140
152
 
141
- __output.push('</span>');
153
+ _$_.output_push('</div>');
142
154
  }
143
155
 
144
- __output.push('</div>');
156
+ _$_.output_push('<!--]-->');
145
157
  }
146
158
 
147
- __output.push('<!--]-->');
148
- }
159
+ _$_.output_push('</div>');
160
+ });
149
161
 
150
- __output.push('</div>');
151
162
  _$_.pop_component();
152
163
  }
153
164
 
154
- export function IfWithSiblingsAndChildren(__output, { children }) {
165
+ export function IfWithSiblingsAndChildren({ children }) {
155
166
  _$_.push_component();
156
167
 
157
168
  let lazy_2 = _$_.track(true);
158
169
 
159
- __output.push('<section');
160
- __output.push(' class="group"');
161
- __output.push('>');
162
-
163
- {
164
- __output.push('<div');
165
- __output.push(' role="button"');
166
- __output.push(' class="item"');
167
- __output.push('>');
170
+ _$_.regular_block(() => {
171
+ _$_.output_push('<section');
172
+ _$_.output_push(' class="group"');
173
+ _$_.output_push('>');
168
174
 
169
175
  {
170
- __output.push('<div');
171
- __output.push(' class="indicator"');
172
- __output.push('>');
173
- __output.push('</div>');
174
- __output.push('<h2');
175
- __output.push(' class="text"');
176
- __output.push('>');
176
+ _$_.output_push('<div');
177
+ _$_.output_push(' role="button"');
178
+ _$_.output_push(' class="item"');
179
+ _$_.output_push('>');
177
180
 
178
181
  {
179
- __output.push('Title');
180
- }
182
+ _$_.output_push('<div');
183
+ _$_.output_push(' class="indicator"');
184
+ _$_.output_push('>');
185
+ _$_.output_push('</div>');
186
+ _$_.output_push('<h2');
187
+ _$_.output_push(' class="text"');
188
+ _$_.output_push('>');
181
189
 
182
- __output.push('</h2>');
183
- __output.push('<div');
184
- __output.push(' class="caret"');
185
- __output.push('>');
190
+ {
191
+ _$_.output_push('Title');
192
+ }
186
193
 
187
- {
188
- __output.push('<svg');
189
- __output.push(' xmlns="http://www.w3.org/2000/svg"');
190
- __output.push(' width="18"');
191
- __output.push(' height="18"');
192
- __output.push(' viewBox="0 0 24 24"');
193
- __output.push('>');
194
+ _$_.output_push('</h2>');
195
+ _$_.output_push('<div');
196
+ _$_.output_push(' class="caret"');
197
+ _$_.output_push('>');
194
198
 
195
199
  {
196
- __output.push('<path');
197
- __output.push(' d="m9 18 6-6-6-6"');
198
- __output.push('>');
199
- __output.push('</path>');
200
+ _$_.output_push('<svg');
201
+ _$_.output_push(' xmlns="http://www.w3.org/2000/svg"');
202
+ _$_.output_push(' width="18"');
203
+ _$_.output_push(' height="18"');
204
+ _$_.output_push(' viewBox="0 0 24 24"');
205
+ _$_.output_push('>');
206
+
207
+ {
208
+ _$_.output_push('<path');
209
+ _$_.output_push(' d="m9 18 6-6-6-6"');
210
+ _$_.output_push('>');
211
+ _$_.output_push('</path>');
212
+ }
213
+
214
+ _$_.output_push('</svg>');
200
215
  }
201
216
 
202
- __output.push('</svg>');
217
+ _$_.output_push('</div>');
203
218
  }
204
219
 
205
- __output.push('</div>');
206
- }
220
+ _$_.output_push('</div>');
221
+ _$_.output_push('<!--[-->');
207
222
 
208
- __output.push('</div>');
209
- __output.push('<!--[-->');
223
+ if (_$_.get(lazy_2)) {
224
+ _$_.output_push('<div');
225
+ _$_.output_push(' class="items"');
226
+ _$_.output_push('>');
210
227
 
211
- if (_$_.get(lazy_2)) {
212
- __output.push('<div');
213
- __output.push(' class="items"');
214
- __output.push('>');
228
+ {
229
+ _$_.render_expression(children);
230
+ }
215
231
 
216
- {
217
- _$_.render_expression(__output, children);
232
+ _$_.output_push('</div>');
218
233
  }
219
234
 
220
- __output.push('</div>');
235
+ _$_.output_push('<!--]-->');
221
236
  }
222
237
 
223
- __output.push('<!--]-->');
224
- }
238
+ _$_.output_push('</section>');
239
+ });
225
240
 
226
- __output.push('</section>');
227
241
  _$_.pop_component();
228
242
  }
229
243
 
230
- export function TestIfWithSiblingsAndChildren(__output) {
244
+ export function TestIfWithSiblingsAndChildren() {
231
245
  _$_.push_component();
232
246
 
233
- {
234
- const comp = IfWithSiblingsAndChildren;
247
+ _$_.regular_block(() => {
248
+ {
249
+ const comp = IfWithSiblingsAndChildren;
235
250
 
236
- const args = [
237
- __output,
238
- {
239
- children: _$_.ripple_element(function render_children(__output) {
240
- _$_.push_component();
251
+ const args = [
252
+ {
253
+ children: _$_.ripple_element(function render_children() {
254
+ _$_.push_component();
241
255
 
242
- {
243
- const comp = ChildItem;
244
- const args = [__output, { text: "Item A" }];
256
+ {
257
+ const comp = ChildItem;
258
+ const args = [{ text: "Item A" }];
245
259
 
246
- comp(...args);
247
- }
260
+ comp(...args);
261
+ }
248
262
 
249
- {
250
- const comp = ChildItem;
251
- const args = [__output, { text: "Item B" }];
263
+ {
264
+ const comp = ChildItem;
265
+ const args = [{ text: "Item B" }];
252
266
 
253
- comp(...args);
254
- }
267
+ comp(...args);
268
+ }
255
269
 
256
- _$_.pop_component();
257
- })
258
- }
259
- ];
270
+ _$_.pop_component();
271
+ })
272
+ }
273
+ ];
260
274
 
261
- comp(...args);
262
- }
275
+ comp(...args);
276
+ }
277
+ });
263
278
 
264
279
  _$_.pop_component();
265
280
  }
266
281
 
267
- export function ElementWithChildrenThenIf(__output) {
282
+ export function ElementWithChildrenThenIf() {
268
283
  _$_.push_component();
269
284
 
270
285
  let lazy_3 = _$_.track(true);
271
286
 
272
- __output.push('<div');
273
- __output.push(' class="wrapper"');
274
- __output.push('>');
275
-
276
- {
277
- __output.push('<div');
278
- __output.push(' class="nested-parent"');
279
- __output.push('>');
287
+ _$_.regular_block(() => {
288
+ _$_.output_push('<div');
289
+ _$_.output_push(' class="wrapper"');
290
+ _$_.output_push('>');
280
291
 
281
292
  {
282
- __output.push('<div');
283
- __output.push(' class="nested-child"');
284
- __output.push('>');
293
+ _$_.output_push('<div');
294
+ _$_.output_push(' class="nested-parent"');
295
+ _$_.output_push('>');
285
296
 
286
297
  {
287
- __output.push('<span');
288
- __output.push(' class="deep"');
289
- __output.push('>');
298
+ _$_.output_push('<div');
299
+ _$_.output_push(' class="nested-child"');
300
+ _$_.output_push('>');
290
301
 
291
302
  {
292
- __output.push('Deep content');
303
+ _$_.output_push('<span');
304
+ _$_.output_push(' class="deep"');
305
+ _$_.output_push('>');
306
+
307
+ {
308
+ _$_.output_push('Deep content');
309
+ }
310
+
311
+ _$_.output_push('</span>');
293
312
  }
294
313
 
295
- __output.push('</span>');
314
+ _$_.output_push('</div>');
296
315
  }
297
316
 
298
- __output.push('</div>');
299
- }
317
+ _$_.output_push('</div>');
318
+ _$_.output_push('<!--[-->');
300
319
 
301
- __output.push('</div>');
302
- __output.push('<!--[-->');
320
+ if (_$_.get(lazy_3)) {
321
+ _$_.output_push('<div');
322
+ _$_.output_push(' class="conditional"');
323
+ _$_.output_push('>');
303
324
 
304
- if (_$_.get(lazy_3)) {
305
- __output.push('<div');
306
- __output.push(' class="conditional"');
307
- __output.push('>');
325
+ {
326
+ _$_.output_push('Conditional content');
327
+ }
308
328
 
309
- {
310
- __output.push('Conditional content');
329
+ _$_.output_push('</div>');
311
330
  }
312
331
 
313
- __output.push('</div>');
332
+ _$_.output_push('<!--]-->');
314
333
  }
315
334
 
316
- __output.push('<!--]-->');
317
- }
335
+ _$_.output_push('</div>');
336
+ });
318
337
 
319
- __output.push('</div>');
320
- __output.push('<button');
321
- __output.push(' class="toggle"');
322
- __output.push('>');
338
+ _$_.regular_block(() => {
339
+ _$_.output_push('<button');
340
+ _$_.output_push(' class="toggle"');
341
+ _$_.output_push('>');
323
342
 
324
- {
325
- __output.push('Toggle');
326
- }
343
+ {
344
+ _$_.output_push('Toggle');
345
+ }
346
+
347
+ _$_.output_push('</button>');
348
+ });
327
349
 
328
- __output.push('</button>');
329
350
  _$_.pop_component();
330
351
  }
331
352
 
332
- export function DeepNestingThenIf(__output) {
353
+ export function DeepNestingThenIf() {
333
354
  _$_.push_component();
334
355
 
335
356
  let lazy_4 = _$_.track(true);
336
357
 
337
- __output.push('<section');
338
- __output.push(' class="outer"');
339
- __output.push('>');
340
-
341
- {
342
- __output.push('<article');
343
- __output.push(' class="middle"');
344
- __output.push('>');
358
+ _$_.regular_block(() => {
359
+ _$_.output_push('<section');
360
+ _$_.output_push(' class="outer"');
361
+ _$_.output_push('>');
345
362
 
346
363
  {
347
- __output.push('<div');
348
- __output.push(' class="inner"');
349
- __output.push('>');
364
+ _$_.output_push('<article');
365
+ _$_.output_push(' class="middle"');
366
+ _$_.output_push('>');
350
367
 
351
368
  {
352
- __output.push('<p');
353
- __output.push(' class="leaf"');
354
- __output.push('>');
369
+ _$_.output_push('<div');
370
+ _$_.output_push(' class="inner"');
371
+ _$_.output_push('>');
355
372
 
356
373
  {
357
- __output.push('<strong');
358
- __output.push('>');
374
+ _$_.output_push('<p');
375
+ _$_.output_push(' class="leaf"');
376
+ _$_.output_push('>');
359
377
 
360
378
  {
361
- __output.push('Bold');
362
- }
379
+ _$_.output_push('<strong');
380
+ _$_.output_push('>');
363
381
 
364
- __output.push('</strong>');
365
- __output.push('<em');
366
- __output.push('>');
382
+ {
383
+ _$_.output_push('Bold');
384
+ }
367
385
 
368
- {
369
- __output.push('Italic');
386
+ _$_.output_push('</strong>');
387
+ _$_.output_push('<em');
388
+ _$_.output_push('>');
389
+
390
+ {
391
+ _$_.output_push('Italic');
392
+ }
393
+
394
+ _$_.output_push('</em>');
370
395
  }
371
396
 
372
- __output.push('</em>');
397
+ _$_.output_push('</p>');
373
398
  }
374
399
 
375
- __output.push('</p>');
400
+ _$_.output_push('</div>');
376
401
  }
377
402
 
378
- __output.push('</div>');
379
- }
403
+ _$_.output_push('</article>');
404
+ _$_.output_push('<!--[-->');
380
405
 
381
- __output.push('</article>');
382
- __output.push('<!--[-->');
406
+ if (_$_.get(lazy_4)) {
407
+ _$_.output_push('<footer');
408
+ _$_.output_push(' class="footer"');
409
+ _$_.output_push('>');
383
410
 
384
- if (_$_.get(lazy_4)) {
385
- __output.push('<footer');
386
- __output.push(' class="footer"');
387
- __output.push('>');
411
+ {
412
+ _$_.output_push('Footer');
413
+ }
388
414
 
389
- {
390
- __output.push('Footer');
415
+ _$_.output_push('</footer>');
391
416
  }
392
417
 
393
- __output.push('</footer>');
418
+ _$_.output_push('<!--]-->');
394
419
  }
395
420
 
396
- __output.push('<!--]-->');
397
- }
421
+ _$_.output_push('</section>');
422
+ });
398
423
 
399
- __output.push('</section>');
400
- __output.push('<button');
401
- __output.push(' class="btn"');
402
- __output.push('>');
424
+ _$_.regular_block(() => {
425
+ _$_.output_push('<button');
426
+ _$_.output_push(' class="btn"');
427
+ _$_.output_push('>');
403
428
 
404
- {
405
- __output.push('Toggle');
406
- }
429
+ {
430
+ _$_.output_push('Toggle');
431
+ }
432
+
433
+ _$_.output_push('</button>');
434
+ });
407
435
 
408
- __output.push('</button>');
409
436
  _$_.pop_component();
410
437
  }
411
438
 
412
- export function DomElementChildrenThenSibling(__output) {
439
+ export function DomElementChildrenThenSibling() {
413
440
  _$_.push_component();
414
441
 
415
442
  let lazy_5 = _$_.track('code');
416
443
 
417
- __output.push('<div');
418
- __output.push(' class="tabs"');
419
- __output.push('>');
420
-
421
- {
422
- __output.push('<div');
423
- __output.push(' class="tab-list"');
424
- __output.push('>');
444
+ _$_.regular_block(() => {
445
+ _$_.output_push('<div');
446
+ _$_.output_push(' class="tabs"');
447
+ _$_.output_push('>');
425
448
 
426
449
  {
427
- __output.push('<button');
428
- __output.push(_$_.attr('aria-selected', _$_.get(lazy_5) === 'code' ? 'true' : 'false', false));
429
- __output.push(' class="tab"');
430
- __output.push('>');
450
+ _$_.output_push('<div');
451
+ _$_.output_push(' class="tab-list"');
452
+ _$_.output_push('>');
431
453
 
432
454
  {
433
- __output.push('Code');
434
- }
455
+ _$_.output_push('<button');
456
+ _$_.output_push(_$_.attr('aria-selected', _$_.get(lazy_5) === 'code' ? 'true' : 'false', false));
457
+ _$_.output_push(' class="tab"');
458
+ _$_.output_push('>');
435
459
 
436
- __output.push('</button>');
437
- __output.push('<button');
438
- __output.push(_$_.attr('aria-selected', _$_.get(lazy_5) === 'preview' ? 'true' : 'false', false));
439
- __output.push(' class="tab"');
440
- __output.push('>');
460
+ {
461
+ _$_.output_push('Code');
462
+ }
441
463
 
442
- {
443
- __output.push('Preview');
464
+ _$_.output_push('</button>');
465
+ _$_.output_push('<button');
466
+ _$_.output_push(_$_.attr('aria-selected', _$_.get(lazy_5) === 'preview' ? 'true' : 'false', false));
467
+ _$_.output_push(' class="tab"');
468
+ _$_.output_push('>');
469
+
470
+ {
471
+ _$_.output_push('Preview');
472
+ }
473
+
474
+ _$_.output_push('</button>');
444
475
  }
445
476
 
446
- __output.push('</button>');
447
- }
477
+ _$_.output_push('</div>');
478
+ _$_.output_push('<div');
479
+ _$_.output_push(' class="panel"');
480
+ _$_.output_push('>');
448
481
 
449
- __output.push('</div>');
450
- __output.push('<div');
451
- __output.push(' class="panel"');
452
- __output.push('>');
482
+ {
483
+ _$_.output_push('<!--[-->');
453
484
 
454
- {
455
- __output.push('<!--[-->');
485
+ if (_$_.get(lazy_5) === 'code') {
486
+ _$_.output_push('<pre');
487
+ _$_.output_push(' class="code"');
488
+ _$_.output_push('>');
456
489
 
457
- if (_$_.get(lazy_5) === 'code') {
458
- __output.push('<pre');
459
- __output.push(' class="code"');
460
- __output.push('>');
490
+ {
491
+ _$_.output_push('const x = 1;');
492
+ }
461
493
 
462
- {
463
- __output.push('const x = 1;');
464
- }
494
+ _$_.output_push('</pre>');
495
+ } else {
496
+ _$_.output_push('<div');
497
+ _$_.output_push(' class="preview"');
498
+ _$_.output_push('>');
465
499
 
466
- __output.push('</pre>');
467
- } else {
468
- __output.push('<div');
469
- __output.push(' class="preview"');
470
- __output.push('>');
500
+ {
501
+ _$_.output_push('Preview content');
502
+ }
471
503
 
472
- {
473
- __output.push('Preview content');
504
+ _$_.output_push('</div>');
474
505
  }
475
506
 
476
- __output.push('</div>');
507
+ _$_.output_push('<!--]-->');
477
508
  }
478
509
 
479
- __output.push('<!--]-->');
510
+ _$_.output_push('</div>');
480
511
  }
481
512
 
482
- __output.push('</div>');
483
- }
513
+ _$_.output_push('</div>');
514
+ });
484
515
 
485
- __output.push('</div>');
486
516
  _$_.pop_component();
487
517
  }
488
518
 
489
- export function DomChildrenThenStaticSiblings(__output) {
519
+ export function DomChildrenThenStaticSiblings() {
490
520
  _$_.push_component();
491
521
 
492
522
  let lazy_6 = _$_.track(0);
493
523
 
494
- __output.push('<div');
495
- __output.push(' class="container"');
496
- __output.push('>');
497
-
498
- {
499
- __output.push('<ul');
500
- __output.push(' class="list"');
501
- __output.push('>');
524
+ _$_.regular_block(() => {
525
+ _$_.output_push('<div');
526
+ _$_.output_push(' class="container"');
527
+ _$_.output_push('>');
502
528
 
503
529
  {
504
- __output.push('<li');
505
- __output.push(' class="item"');
506
- __output.push('>');
530
+ _$_.output_push('<ul');
531
+ _$_.output_push(' class="list"');
532
+ _$_.output_push('>');
507
533
 
508
534
  {
509
- __output.push(_$_.escape('Item count: ' + String(_$_.get(lazy_6))));
535
+ _$_.output_push('<li');
536
+ _$_.output_push(' class="item"');
537
+ _$_.output_push('>');
538
+
539
+ {
540
+ _$_.output_push(_$_.escape('Item count: ' + String(_$_.get(lazy_6))));
541
+ }
542
+
543
+ _$_.output_push('</li>');
544
+ _$_.output_push('<li');
545
+ _$_.output_push(' class="item"');
546
+ _$_.output_push('>');
547
+
548
+ {
549
+ _$_.output_push('Another item');
550
+ }
551
+
552
+ _$_.output_push('</li>');
510
553
  }
511
554
 
512
- __output.push('</li>');
513
- __output.push('<li');
514
- __output.push(' class="item"');
515
- __output.push('>');
555
+ _$_.output_push('</ul>');
556
+ _$_.output_push('<h2');
557
+ _$_.output_push(' class="heading"');
558
+ _$_.output_push('>');
516
559
 
517
560
  {
518
- __output.push('Another item');
561
+ _$_.output_push('Static Heading');
519
562
  }
520
563
 
521
- __output.push('</li>');
522
- }
564
+ _$_.output_push('</h2>');
565
+ _$_.output_push('<p');
566
+ _$_.output_push(' class="para"');
567
+ _$_.output_push('>');
523
568
 
524
- __output.push('</ul>');
525
- __output.push('<h2');
526
- __output.push(' class="heading"');
527
- __output.push('>');
569
+ {
570
+ _$_.output_push('Static paragraph');
571
+ }
528
572
 
529
- {
530
- __output.push('Static Heading');
573
+ _$_.output_push('</p>');
531
574
  }
532
575
 
533
- __output.push('</h2>');
534
- __output.push('<p');
535
- __output.push(' class="para"');
536
- __output.push('>');
576
+ _$_.output_push('</div>');
577
+ });
578
+
579
+ _$_.regular_block(() => {
580
+ _$_.output_push('<button');
581
+ _$_.output_push(' class="inc"');
582
+ _$_.output_push('>');
537
583
 
538
584
  {
539
- __output.push('Static paragraph');
585
+ _$_.output_push('Increment');
540
586
  }
541
587
 
542
- __output.push('</p>');
543
- }
588
+ _$_.output_push('</button>');
589
+ });
544
590
 
545
- __output.push('</div>');
546
- __output.push('<button');
547
- __output.push(' class="inc"');
548
- __output.push('>');
549
-
550
- {
551
- __output.push('Increment');
552
- }
553
-
554
- __output.push('</button>');
555
591
  _$_.pop_component();
556
592
  }
557
593
 
558
- export function StaticListThenStaticSiblings(__output) {
594
+ export function StaticListThenStaticSiblings() {
559
595
  _$_.push_component();
560
- __output.push('<div');
561
- __output.push(' class="wrapper"');
562
- __output.push('>');
563
596
 
564
- {
565
- __output.push('<ul');
566
- __output.push(' class="features"');
567
- __output.push('>');
597
+ _$_.regular_block(() => {
598
+ _$_.output_push('<div');
599
+ _$_.output_push(' class="wrapper"');
600
+ _$_.output_push('>');
568
601
 
569
602
  {
570
- __output.push('<li');
571
- __output.push('>');
603
+ _$_.output_push('<ul');
604
+ _$_.output_push(' class="features"');
605
+ _$_.output_push('>');
572
606
 
573
607
  {
574
- __output.push('<strong');
575
- __output.push('>');
608
+ _$_.output_push('<li');
609
+ _$_.output_push('>');
576
610
 
577
611
  {
578
- __output.push('Feature One');
579
- }
612
+ _$_.output_push('<strong');
613
+ _$_.output_push('>');
580
614
 
581
- __output.push('</strong>');
582
- __output.push(': Description of feature one with ');
583
- __output.push('<code');
584
- __output.push('>');
615
+ {
616
+ _$_.output_push('Feature One');
617
+ }
585
618
 
586
- {
587
- __output.push('code');
588
- }
619
+ _$_.output_push('</strong>');
620
+ _$_.output_push(': Description of feature one with ');
621
+ _$_.output_push('<code');
622
+ _$_.output_push('>');
589
623
 
590
- __output.push('</code>');
591
- __output.push(' reference');
592
- }
624
+ {
625
+ _$_.output_push('code');
626
+ }
593
627
 
594
- __output.push('</li>');
595
- __output.push('<li');
596
- __output.push('>');
628
+ _$_.output_push('</code>');
629
+ _$_.output_push(' reference');
630
+ }
597
631
 
598
- {
599
- __output.push('<strong');
600
- __output.push('>');
632
+ _$_.output_push('</li>');
633
+ _$_.output_push('<li');
634
+ _$_.output_push('>');
601
635
 
602
636
  {
603
- __output.push('Feature Two');
604
- }
637
+ _$_.output_push('<strong');
638
+ _$_.output_push('>');
605
639
 
606
- __output.push('</strong>');
607
- __output.push(': Another feature description');
608
- }
640
+ {
641
+ _$_.output_push('Feature Two');
642
+ }
609
643
 
610
- __output.push('</li>');
611
- __output.push('<li');
612
- __output.push('>');
644
+ _$_.output_push('</strong>');
645
+ _$_.output_push(': Another feature description');
646
+ }
613
647
 
614
- {
615
- __output.push('<strong');
616
- __output.push('>');
648
+ _$_.output_push('</li>');
649
+ _$_.output_push('<li');
650
+ _$_.output_push('>');
617
651
 
618
652
  {
619
- __output.push('Feature Three');
653
+ _$_.output_push('<strong');
654
+ _$_.output_push('>');
655
+
656
+ {
657
+ _$_.output_push('Feature Three');
658
+ }
659
+
660
+ _$_.output_push('</strong>');
661
+ _$_.output_push(': Third feature');
620
662
  }
621
663
 
622
- __output.push('</strong>');
623
- __output.push(': Third feature');
664
+ _$_.output_push('</li>');
624
665
  }
625
666
 
626
- __output.push('</li>');
627
- }
667
+ _$_.output_push('</ul>');
668
+ _$_.output_push('<h2');
669
+ _$_.output_push(' class="section-heading"');
670
+ _$_.output_push('>');
628
671
 
629
- __output.push('</ul>');
630
- __output.push('<h2');
631
- __output.push(' class="section-heading"');
632
- __output.push('>');
672
+ {
673
+ _$_.output_push('Section Heading');
674
+ }
633
675
 
634
- {
635
- __output.push('Section Heading');
636
- }
676
+ _$_.output_push('</h2>');
677
+ _$_.output_push('<p');
678
+ _$_.output_push(' class="section-content"');
679
+ _$_.output_push('>');
637
680
 
638
- __output.push('</h2>');
639
- __output.push('<p');
640
- __output.push(' class="section-content"');
641
- __output.push('>');
681
+ {
682
+ _$_.output_push('Static paragraph with ');
683
+ _$_.output_push('<a');
684
+ _$_.output_push(' href="/link"');
685
+ _$_.output_push('>');
642
686
 
643
- {
644
- __output.push('Static paragraph with ');
645
- __output.push('<a');
646
- __output.push(' href="/link"');
647
- __output.push('>');
687
+ {
688
+ _$_.output_push('a link');
689
+ }
648
690
 
649
- {
650
- __output.push('a link');
691
+ _$_.output_push('</a>');
692
+ _$_.output_push(' and more text.');
651
693
  }
652
694
 
653
- __output.push('</a>');
654
- __output.push(' and more text.');
695
+ _$_.output_push('</p>');
655
696
  }
656
697
 
657
- __output.push('</p>');
658
- }
698
+ _$_.output_push('</div>');
699
+ });
659
700
 
660
- __output.push('</div>');
661
701
  _$_.pop_component();
662
702
  }