@barefootjs/jsx 0.30.6 → 0.31.0
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/adapters/interface.d.ts +61 -20
- package/dist/adapters/interface.d.ts.map +1 -1
- package/dist/analyzer.d.ts +1 -1
- package/dist/analyzer.d.ts.map +1 -1
- package/dist/compiler.d.ts.map +1 -1
- package/dist/index.d.ts +0 -120
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +322 -263
- package/dist/ir-to-client-js/emit-registration.d.ts.map +1 -1
- package/dist/ir-to-client-js/generate-init.d.ts.map +1 -1
- package/dist/ir-to-client-js/prune-unused-prop-extractions.d.ts +7 -0
- package/dist/ir-to-client-js/prune-unused-prop-extractions.d.ts.map +1 -0
- package/dist/types.d.ts +25 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/value-references.d.ts +7 -7
- package/dist/value-references.d.ts.map +1 -1
- package/package.json +3 -7
- package/src/__tests__/__snapshots__/doc-examples.test.ts.snap +183 -312
- package/src/__tests__/bf050-single-multi-symmetry.test.ts +118 -0
- package/src/__tests__/client-js-generation.test.ts +5 -1
- package/src/__tests__/doc-examples.test.ts +5 -1
- package/src/__tests__/prune-unused-prop-extractions.test.ts +78 -0
- package/src/adapters/interface.ts +61 -20
- package/src/analyzer.ts +16 -5
- package/src/compiler.ts +41 -3
- package/src/index.ts +0 -123
- package/src/ir-to-client-js/emit-registration.ts +9 -0
- package/src/ir-to-client-js/generate-init.ts +4 -1
- package/src/ir-to-client-js/index.ts +5 -1
- package/src/ir-to-client-js/prune-unused-prop-extractions.ts +108 -0
- package/src/types.ts +25 -0
- package/src/value-references.ts +7 -7
- package/dist/import-map.d.ts +0 -56
- package/dist/import-map.d.ts.map +0 -1
- package/dist/import-map.js +0 -18
- package/src/__tests__/import-map.test.ts +0 -75
- package/src/import-map.ts +0 -72
|
@@ -15,7 +15,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
15
15
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
18
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
19
19
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
20
20
|
export function initItem(__scope, _p = {}) {
|
|
21
21
|
if (!__scope) return
|
|
@@ -29,17 +29,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
29
29
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
32
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
33
33
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
34
34
|
function initDashboard() {}
|
|
35
35
|
|
|
36
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
36
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
37
37
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
38
38
|
export function initExample(__scope, _p = {}) {
|
|
39
39
|
if (!__scope) return
|
|
40
40
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
41
|
-
|
|
42
|
-
const children = _p.children
|
|
43
41
|
const [count, setCount] = createSignal(0)
|
|
44
42
|
const [isLoggedIn] = createSignal(false)
|
|
45
43
|
const [todos] = createSignal([])
|
|
@@ -85,7 +83,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
85
83
|
|
|
86
84
|
}
|
|
87
85
|
|
|
88
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
86
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
89
87
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
90
88
|
export function initItem(__scope, _p = {}) {
|
|
91
89
|
if (!__scope) return
|
|
@@ -99,17 +97,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
99
97
|
|
|
100
98
|
}
|
|
101
99
|
|
|
102
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
100
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
103
101
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
104
102
|
function initDashboard() {}
|
|
105
103
|
|
|
106
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
104
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
107
105
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
108
106
|
export function initExample(__scope, _p = {}) {
|
|
109
107
|
if (!__scope) return
|
|
110
108
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
111
|
-
|
|
112
|
-
const children = _p.children
|
|
113
109
|
const [count, setCount] = createSignal(0)
|
|
114
110
|
const [isLoggedIn] = createSignal(false)
|
|
115
111
|
const [todos] = createSignal([])
|
|
@@ -157,7 +153,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
157
153
|
|
|
158
154
|
}
|
|
159
155
|
|
|
160
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
156
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
161
157
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
162
158
|
export function initItem(__scope, _p = {}) {
|
|
163
159
|
if (!__scope) return
|
|
@@ -171,17 +167,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
171
167
|
|
|
172
168
|
}
|
|
173
169
|
|
|
174
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
170
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
175
171
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
176
172
|
function initDashboard() {}
|
|
177
173
|
|
|
178
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
174
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
179
175
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
180
176
|
export function initExample(__scope, _p = {}) {
|
|
181
177
|
if (!__scope) return
|
|
182
178
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
183
|
-
|
|
184
|
-
const children = _p.children
|
|
185
179
|
const [count, setCount] = createSignal(0)
|
|
186
180
|
const [isLoggedIn] = createSignal(false)
|
|
187
181
|
const [todos] = createSignal([])
|
|
@@ -218,7 +212,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
218
212
|
|
|
219
213
|
}
|
|
220
214
|
|
|
221
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
215
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
222
216
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
223
217
|
export function initItem(__scope, _p = {}) {
|
|
224
218
|
if (!__scope) return
|
|
@@ -232,17 +226,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
232
226
|
|
|
233
227
|
}
|
|
234
228
|
|
|
235
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
229
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
236
230
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
237
231
|
function initDashboard() {}
|
|
238
232
|
|
|
239
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
233
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
240
234
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
241
235
|
export function initExample(__scope, _p = {}) {
|
|
242
236
|
if (!__scope) return
|
|
243
237
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
244
|
-
|
|
245
|
-
const children = _p.children
|
|
246
238
|
const [count, setCount] = createSignal(0)
|
|
247
239
|
const [isLoggedIn] = createSignal(false)
|
|
248
240
|
const [todos] = createSignal([])
|
|
@@ -279,7 +271,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
279
271
|
|
|
280
272
|
}
|
|
281
273
|
|
|
282
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
274
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
283
275
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
284
276
|
export function initItem(__scope, _p = {}) {
|
|
285
277
|
if (!__scope) return
|
|
@@ -293,17 +285,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
293
285
|
|
|
294
286
|
}
|
|
295
287
|
|
|
296
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
288
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
297
289
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
298
290
|
function initDashboard() {}
|
|
299
291
|
|
|
300
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
292
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
301
293
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
302
294
|
export function initExample(__scope, _p = {}) {
|
|
303
295
|
if (!__scope) return
|
|
304
296
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
305
|
-
|
|
306
|
-
const children = _p.children
|
|
307
297
|
const [count, setCount] = createSignal(0)
|
|
308
298
|
const [isLoggedIn] = createSignal(false)
|
|
309
299
|
const [todos] = createSignal([])
|
|
@@ -350,7 +340,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
350
340
|
|
|
351
341
|
}
|
|
352
342
|
|
|
353
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
343
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
354
344
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
355
345
|
export function initItem(__scope, _p = {}) {
|
|
356
346
|
if (!__scope) return
|
|
@@ -364,17 +354,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
364
354
|
|
|
365
355
|
}
|
|
366
356
|
|
|
367
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
357
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
368
358
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
369
359
|
function initDashboard() {}
|
|
370
360
|
|
|
371
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
361
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
372
362
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
373
363
|
export function initExample(__scope, _p = {}) {
|
|
374
364
|
if (!__scope) return
|
|
375
365
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
376
|
-
|
|
377
|
-
const children = _p.children
|
|
378
366
|
const [count, setCount] = createSignal(0)
|
|
379
367
|
const [isLoggedIn] = createSignal(false)
|
|
380
368
|
const [todos] = createSignal([])
|
|
@@ -418,7 +406,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
418
406
|
|
|
419
407
|
}
|
|
420
408
|
|
|
421
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
409
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
422
410
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
423
411
|
export function initItem(__scope, _p = {}) {
|
|
424
412
|
if (!__scope) return
|
|
@@ -432,17 +420,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
432
420
|
|
|
433
421
|
}
|
|
434
422
|
|
|
435
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
423
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
436
424
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
437
425
|
function initDashboard() {}
|
|
438
426
|
|
|
439
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
427
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
440
428
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
441
429
|
export function initExample(__scope, _p = {}) {
|
|
442
430
|
if (!__scope) return
|
|
443
431
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
444
|
-
|
|
445
|
-
const children = _p.children
|
|
446
432
|
const [count, setCount] = createSignal(0)
|
|
447
433
|
const [isLoggedIn] = createSignal(false)
|
|
448
434
|
const [todos] = createSignal([])
|
|
@@ -492,7 +478,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
492
478
|
|
|
493
479
|
}
|
|
494
480
|
|
|
495
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
481
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
496
482
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
497
483
|
export function initItem(__scope, _p = {}) {
|
|
498
484
|
if (!__scope) return
|
|
@@ -506,17 +492,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
506
492
|
|
|
507
493
|
}
|
|
508
494
|
|
|
509
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
495
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
510
496
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
511
497
|
function initDashboard() {}
|
|
512
498
|
|
|
513
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
499
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
514
500
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
515
501
|
export function initExample(__scope, _p = {}) {
|
|
516
502
|
if (!__scope) return
|
|
517
503
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
518
|
-
|
|
519
|
-
const children = _p.children
|
|
520
504
|
const [count, setCount] = createSignal(0)
|
|
521
505
|
const [isLoggedIn] = createSignal(false)
|
|
522
506
|
const [todos] = createSignal([])
|
|
@@ -553,7 +537,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
553
537
|
|
|
554
538
|
}
|
|
555
539
|
|
|
556
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
540
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
557
541
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
558
542
|
export function initItem(__scope, _p = {}) {
|
|
559
543
|
if (!__scope) return
|
|
@@ -567,17 +551,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
567
551
|
|
|
568
552
|
}
|
|
569
553
|
|
|
570
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
554
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
571
555
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
572
556
|
function initDashboard() {}
|
|
573
557
|
|
|
574
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
558
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
575
559
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
576
560
|
export function initExample(__scope, _p = {}) {
|
|
577
561
|
if (!__scope) return
|
|
578
562
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
579
|
-
|
|
580
|
-
const children = _p.children
|
|
581
563
|
const [count, setCount] = createSignal(0)
|
|
582
564
|
const [isLoggedIn] = createSignal(false)
|
|
583
565
|
const [todos] = createSignal([])
|
|
@@ -614,7 +596,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
614
596
|
|
|
615
597
|
}
|
|
616
598
|
|
|
617
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
599
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
618
600
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
619
601
|
export function initItem(__scope, _p = {}) {
|
|
620
602
|
if (!__scope) return
|
|
@@ -628,17 +610,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
628
610
|
|
|
629
611
|
}
|
|
630
612
|
|
|
631
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
613
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
632
614
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
633
615
|
function initDashboard() {}
|
|
634
616
|
|
|
635
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
617
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
636
618
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
637
619
|
export function initExample(__scope, _p = {}) {
|
|
638
620
|
if (!__scope) return
|
|
639
621
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
640
|
-
|
|
641
|
-
const children = _p.children
|
|
642
622
|
const [count, setCount] = createSignal(0)
|
|
643
623
|
const [isLoggedIn] = createSignal(false)
|
|
644
624
|
const [todos] = createSignal([])
|
|
@@ -675,7 +655,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
675
655
|
|
|
676
656
|
}
|
|
677
657
|
|
|
678
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
658
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
679
659
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
680
660
|
export function initItem(__scope, _p = {}) {
|
|
681
661
|
if (!__scope) return
|
|
@@ -689,17 +669,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
689
669
|
|
|
690
670
|
}
|
|
691
671
|
|
|
692
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
672
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
693
673
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
694
674
|
function initDashboard() {}
|
|
695
675
|
|
|
696
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
676
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
697
677
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
698
678
|
export function initExample(__scope, _p = {}) {
|
|
699
679
|
if (!__scope) return
|
|
700
680
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
701
|
-
|
|
702
|
-
const children = _p.children
|
|
703
681
|
const [count, setCount] = createSignal(0)
|
|
704
682
|
const [isLoggedIn] = createSignal(false)
|
|
705
683
|
const [todos] = createSignal([])
|
|
@@ -736,7 +714,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
736
714
|
|
|
737
715
|
}
|
|
738
716
|
|
|
739
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
717
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
740
718
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
741
719
|
export function initItem(__scope, _p = {}) {
|
|
742
720
|
if (!__scope) return
|
|
@@ -750,17 +728,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
750
728
|
|
|
751
729
|
}
|
|
752
730
|
|
|
753
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
731
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
754
732
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
755
733
|
function initDashboard() {}
|
|
756
734
|
|
|
757
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
735
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
758
736
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
759
737
|
export function initExample(__scope, _p = {}) {
|
|
760
738
|
if (!__scope) return
|
|
761
739
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
762
|
-
|
|
763
|
-
const children = _p.children
|
|
764
740
|
const [count, setCount] = createSignal(0)
|
|
765
741
|
const [isLoggedIn] = createSignal(false)
|
|
766
742
|
const [todos] = createSignal([])
|
|
@@ -796,7 +772,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
796
772
|
|
|
797
773
|
}
|
|
798
774
|
|
|
799
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
775
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
800
776
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
801
777
|
export function initItem(__scope, _p = {}) {
|
|
802
778
|
if (!__scope) return
|
|
@@ -810,17 +786,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
810
786
|
|
|
811
787
|
}
|
|
812
788
|
|
|
813
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
789
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
814
790
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
815
791
|
function initDashboard() {}
|
|
816
792
|
|
|
817
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
793
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
818
794
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
819
795
|
export function initExample(__scope, _p = {}) {
|
|
820
796
|
if (!__scope) return
|
|
821
797
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
822
|
-
|
|
823
|
-
const children = _p.children
|
|
824
798
|
const [count, setCount] = createSignal(0)
|
|
825
799
|
const [isLoggedIn] = createSignal(false)
|
|
826
800
|
const [todos] = createSignal([])
|
|
@@ -856,7 +830,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
856
830
|
|
|
857
831
|
}
|
|
858
832
|
|
|
859
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
833
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
860
834
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
861
835
|
export function initItem(__scope, _p = {}) {
|
|
862
836
|
if (!__scope) return
|
|
@@ -870,17 +844,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
870
844
|
|
|
871
845
|
}
|
|
872
846
|
|
|
873
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
847
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
874
848
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
875
849
|
function initDashboard() {}
|
|
876
850
|
|
|
877
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
851
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
878
852
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
879
853
|
export function initExample(__scope, _p = {}) {
|
|
880
854
|
if (!__scope) return
|
|
881
855
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
882
|
-
|
|
883
|
-
const children = _p.children
|
|
884
856
|
const [count, setCount] = createSignal(0)
|
|
885
857
|
const [isLoggedIn] = createSignal(false)
|
|
886
858
|
const [todos] = createSignal([])
|
|
@@ -916,7 +888,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
916
888
|
|
|
917
889
|
}
|
|
918
890
|
|
|
919
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
891
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
920
892
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
921
893
|
export function initItem(__scope, _p = {}) {
|
|
922
894
|
if (!__scope) return
|
|
@@ -930,17 +902,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
930
902
|
|
|
931
903
|
}
|
|
932
904
|
|
|
933
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
905
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
934
906
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
935
907
|
function initDashboard() {}
|
|
936
908
|
|
|
937
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
909
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
938
910
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
939
911
|
export function initExample(__scope, _p = {}) {
|
|
940
912
|
if (!__scope) return
|
|
941
913
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
942
|
-
|
|
943
|
-
const children = _p.children
|
|
944
914
|
const [count, setCount] = createSignal(0)
|
|
945
915
|
const [isLoggedIn] = createSignal(false)
|
|
946
916
|
const [todos] = createSignal([])
|
|
@@ -976,7 +946,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
976
946
|
|
|
977
947
|
}
|
|
978
948
|
|
|
979
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
949
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
980
950
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
981
951
|
export function initItem(__scope, _p = {}) {
|
|
982
952
|
if (!__scope) return
|
|
@@ -990,17 +960,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
990
960
|
|
|
991
961
|
}
|
|
992
962
|
|
|
993
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
963
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
994
964
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
995
965
|
function initDashboard() {}
|
|
996
966
|
|
|
997
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
967
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
998
968
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
999
969
|
export function initExample(__scope, _p = {}) {
|
|
1000
970
|
if (!__scope) return
|
|
1001
971
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1002
|
-
|
|
1003
|
-
const children = _p.children
|
|
1004
972
|
const [count, setCount] = createSignal(0)
|
|
1005
973
|
const [isLoggedIn] = createSignal(false)
|
|
1006
974
|
const [todos] = createSignal([])
|
|
@@ -1036,7 +1004,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1036
1004
|
|
|
1037
1005
|
}
|
|
1038
1006
|
|
|
1039
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1007
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1040
1008
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1041
1009
|
export function initItem(__scope, _p = {}) {
|
|
1042
1010
|
if (!__scope) return
|
|
@@ -1050,17 +1018,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1050
1018
|
|
|
1051
1019
|
}
|
|
1052
1020
|
|
|
1053
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1021
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1054
1022
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1055
1023
|
function initDashboard() {}
|
|
1056
1024
|
|
|
1057
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1025
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1058
1026
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1059
1027
|
export function initExample(__scope, _p = {}) {
|
|
1060
1028
|
if (!__scope) return
|
|
1061
1029
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1062
|
-
|
|
1063
|
-
const children = _p.children
|
|
1064
1030
|
const [count, setCount] = createSignal(0)
|
|
1065
1031
|
const [isLoggedIn] = createSignal(false)
|
|
1066
1032
|
const [todos] = createSignal([])
|
|
@@ -1096,7 +1062,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1096
1062
|
|
|
1097
1063
|
}
|
|
1098
1064
|
|
|
1099
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1065
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1100
1066
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1101
1067
|
export function initItem(__scope, _p = {}) {
|
|
1102
1068
|
if (!__scope) return
|
|
@@ -1110,17 +1076,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1110
1076
|
|
|
1111
1077
|
}
|
|
1112
1078
|
|
|
1113
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1079
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1114
1080
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1115
1081
|
function initDashboard() {}
|
|
1116
1082
|
|
|
1117
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1083
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1118
1084
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1119
1085
|
export function initExample(__scope, _p = {}) {
|
|
1120
1086
|
if (!__scope) return
|
|
1121
1087
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1122
|
-
|
|
1123
|
-
const children = _p.children
|
|
1124
1088
|
const [count, setCount] = createSignal(0)
|
|
1125
1089
|
const [isLoggedIn] = createSignal(false)
|
|
1126
1090
|
const [todos] = createSignal([])
|
|
@@ -1156,7 +1120,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1156
1120
|
|
|
1157
1121
|
}
|
|
1158
1122
|
|
|
1159
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1123
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1160
1124
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1161
1125
|
export function initItem(__scope, _p = {}) {
|
|
1162
1126
|
if (!__scope) return
|
|
@@ -1170,17 +1134,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1170
1134
|
|
|
1171
1135
|
}
|
|
1172
1136
|
|
|
1173
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1137
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1174
1138
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1175
1139
|
function initDashboard() {}
|
|
1176
1140
|
|
|
1177
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1141
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1178
1142
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1179
1143
|
export function initExample(__scope, _p = {}) {
|
|
1180
1144
|
if (!__scope) return
|
|
1181
1145
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1182
|
-
|
|
1183
|
-
const children = _p.children
|
|
1184
1146
|
const [count, setCount] = createSignal(0)
|
|
1185
1147
|
const [isLoggedIn] = createSignal(false)
|
|
1186
1148
|
const [todos] = createSignal([])
|
|
@@ -1216,7 +1178,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1216
1178
|
|
|
1217
1179
|
}
|
|
1218
1180
|
|
|
1219
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1181
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1220
1182
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1221
1183
|
export function initItem(__scope, _p = {}) {
|
|
1222
1184
|
if (!__scope) return
|
|
@@ -1230,17 +1192,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1230
1192
|
|
|
1231
1193
|
}
|
|
1232
1194
|
|
|
1233
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1195
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1234
1196
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1235
1197
|
function initDashboard() {}
|
|
1236
1198
|
|
|
1237
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1199
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1238
1200
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1239
1201
|
export function initExample(__scope, _p = {}) {
|
|
1240
1202
|
if (!__scope) return
|
|
1241
1203
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1242
|
-
|
|
1243
|
-
const children = _p.children
|
|
1244
1204
|
const [count, setCount] = createSignal(0)
|
|
1245
1205
|
const [isLoggedIn] = createSignal(false)
|
|
1246
1206
|
const [todos] = createSignal([])
|
|
@@ -1277,7 +1237,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1277
1237
|
|
|
1278
1238
|
}
|
|
1279
1239
|
|
|
1280
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1240
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1281
1241
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1282
1242
|
export function initItem(__scope, _p = {}) {
|
|
1283
1243
|
if (!__scope) return
|
|
@@ -1291,17 +1251,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1291
1251
|
|
|
1292
1252
|
}
|
|
1293
1253
|
|
|
1294
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1254
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1295
1255
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1296
1256
|
function initDashboard() {}
|
|
1297
1257
|
|
|
1298
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1258
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1299
1259
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1300
1260
|
export function initExample(__scope, _p = {}) {
|
|
1301
1261
|
if (!__scope) return
|
|
1302
1262
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1303
|
-
|
|
1304
|
-
const children = _p.children
|
|
1305
1263
|
const [count, setCount] = createSignal(0)
|
|
1306
1264
|
const [isLoggedIn] = createSignal(false)
|
|
1307
1265
|
const [todos] = createSignal([])
|
|
@@ -1338,7 +1296,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1338
1296
|
|
|
1339
1297
|
}
|
|
1340
1298
|
|
|
1341
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1299
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1342
1300
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1343
1301
|
export function initItem(__scope, _p = {}) {
|
|
1344
1302
|
if (!__scope) return
|
|
@@ -1352,17 +1310,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1352
1310
|
|
|
1353
1311
|
}
|
|
1354
1312
|
|
|
1355
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1313
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1356
1314
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1357
1315
|
function initDashboard() {}
|
|
1358
1316
|
|
|
1359
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1317
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1360
1318
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1361
1319
|
export function initExample(__scope, _p = {}) {
|
|
1362
1320
|
if (!__scope) return
|
|
1363
1321
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1364
|
-
|
|
1365
|
-
const children = _p.children
|
|
1366
1322
|
const [count, setCount] = createSignal(0)
|
|
1367
1323
|
const [isLoggedIn] = createSignal(false)
|
|
1368
1324
|
const [todos] = createSignal([])
|
|
@@ -1408,7 +1364,7 @@ export function initSortedList(__scope, _p = {}) {
|
|
|
1408
1364
|
|
|
1409
1365
|
}
|
|
1410
1366
|
|
|
1411
|
-
hydrate('SortedList__b3c36eee', { init: initSortedList, template: (_p) => \`<ul bf="s1"><!--bf-loop:l0-->\${_p.items.sort(byPrice).map((item) => \`<li data-key="\${escapeAttr(item.id)}"><!--bf:s0-->\${escapeText(item.name)}<!--/--></li>\`).join('')}<!--bf-/loop:l0--></ul
|
|
1367
|
+
hydrate('SortedList__b3c36eee', { init: initSortedList, template: (_p) => \`<ul bf="s1"><!--bf-loop:l0-->\${_p.items.sort(byPrice).map((item) => \`<li data-key="\${escapeAttr(item.id)}"><!--bf:s0-->\${escapeText(item.name)}<!--/--></li>\`).join('')}<!--bf-/loop:l0--></ul>\`, name: 'SortedList' })
|
|
1412
1368
|
export function SortedList(_p, __bfKey) { return createComponent('SortedList__b3c36eee', _p, __bfKey) }"
|
|
1413
1369
|
`;
|
|
1414
1370
|
|
|
@@ -1427,7 +1383,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1427
1383
|
|
|
1428
1384
|
}
|
|
1429
1385
|
|
|
1430
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1386
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1431
1387
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1432
1388
|
export function initItem(__scope, _p = {}) {
|
|
1433
1389
|
if (!__scope) return
|
|
@@ -1441,17 +1397,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1441
1397
|
|
|
1442
1398
|
}
|
|
1443
1399
|
|
|
1444
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1400
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1445
1401
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1446
1402
|
function initDashboard() {}
|
|
1447
1403
|
|
|
1448
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1404
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1449
1405
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1450
1406
|
export function initExample(__scope, _p = {}) {
|
|
1451
1407
|
if (!__scope) return
|
|
1452
1408
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1453
|
-
|
|
1454
|
-
const children = _p.children
|
|
1455
1409
|
const [count, setCount] = createSignal(0)
|
|
1456
1410
|
const [isLoggedIn] = createSignal(false)
|
|
1457
1411
|
const [todos] = createSignal([])
|
|
@@ -1488,7 +1442,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1488
1442
|
|
|
1489
1443
|
}
|
|
1490
1444
|
|
|
1491
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1445
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1492
1446
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1493
1447
|
export function initItem(__scope, _p = {}) {
|
|
1494
1448
|
if (!__scope) return
|
|
@@ -1502,17 +1456,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1502
1456
|
|
|
1503
1457
|
}
|
|
1504
1458
|
|
|
1505
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1459
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1506
1460
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1507
1461
|
function initDashboard() {}
|
|
1508
1462
|
|
|
1509
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1463
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1510
1464
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1511
1465
|
export function initExample(__scope, _p = {}) {
|
|
1512
1466
|
if (!__scope) return
|
|
1513
1467
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1514
|
-
|
|
1515
|
-
const children = _p.children
|
|
1516
1468
|
const [count, setCount] = createSignal(0)
|
|
1517
1469
|
const [isLoggedIn] = createSignal(false)
|
|
1518
1470
|
const [todos] = createSignal([])
|
|
@@ -1548,7 +1500,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1548
1500
|
|
|
1549
1501
|
}
|
|
1550
1502
|
|
|
1551
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1503
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1552
1504
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1553
1505
|
export function initItem(__scope, _p = {}) {
|
|
1554
1506
|
if (!__scope) return
|
|
@@ -1562,17 +1514,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1562
1514
|
|
|
1563
1515
|
}
|
|
1564
1516
|
|
|
1565
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1517
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1566
1518
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1567
1519
|
function initDashboard() {}
|
|
1568
1520
|
|
|
1569
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1521
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1570
1522
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1571
1523
|
export function initExample(__scope, _p = {}) {
|
|
1572
1524
|
if (!__scope) return
|
|
1573
1525
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1574
|
-
|
|
1575
|
-
const children = _p.children
|
|
1576
1526
|
const [count, setCount] = createSignal(0)
|
|
1577
1527
|
const [isLoggedIn] = createSignal(false)
|
|
1578
1528
|
const [todos] = createSignal([])
|
|
@@ -1608,7 +1558,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1608
1558
|
|
|
1609
1559
|
}
|
|
1610
1560
|
|
|
1611
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1561
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1612
1562
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1613
1563
|
export function initItem(__scope, _p = {}) {
|
|
1614
1564
|
if (!__scope) return
|
|
@@ -1622,17 +1572,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1622
1572
|
|
|
1623
1573
|
}
|
|
1624
1574
|
|
|
1625
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1575
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1626
1576
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1627
1577
|
function initDashboard() {}
|
|
1628
1578
|
|
|
1629
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1579
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1630
1580
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1631
1581
|
export function initExample(__scope, _p = {}) {
|
|
1632
1582
|
if (!__scope) return
|
|
1633
1583
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1634
|
-
|
|
1635
|
-
const children = _p.children
|
|
1636
1584
|
const [count, setCount] = createSignal(0)
|
|
1637
1585
|
const [isLoggedIn] = createSignal(false)
|
|
1638
1586
|
const [todos] = createSignal([])
|
|
@@ -1668,7 +1616,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1668
1616
|
|
|
1669
1617
|
}
|
|
1670
1618
|
|
|
1671
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1619
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1672
1620
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1673
1621
|
export function initItem(__scope, _p = {}) {
|
|
1674
1622
|
if (!__scope) return
|
|
@@ -1682,17 +1630,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1682
1630
|
|
|
1683
1631
|
}
|
|
1684
1632
|
|
|
1685
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1633
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1686
1634
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1687
1635
|
function initDashboard() {}
|
|
1688
1636
|
|
|
1689
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1637
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1690
1638
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1691
1639
|
export function initExample(__scope, _p = {}) {
|
|
1692
1640
|
if (!__scope) return
|
|
1693
1641
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1694
|
-
|
|
1695
|
-
const children = _p.children
|
|
1696
1642
|
const [count, setCount] = createSignal(0)
|
|
1697
1643
|
const [isLoggedIn] = createSignal(false)
|
|
1698
1644
|
const [todos] = createSignal([])
|
|
@@ -1722,7 +1668,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
1722
1668
|
|
|
1723
1669
|
}
|
|
1724
1670
|
|
|
1725
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
1671
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
1726
1672
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
1727
1673
|
export function initItem(__scope, _p = {}) {
|
|
1728
1674
|
if (!__scope) return
|
|
@@ -1736,17 +1682,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
1736
1682
|
|
|
1737
1683
|
}
|
|
1738
1684
|
|
|
1739
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
1685
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
1740
1686
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
1741
1687
|
function initDashboard() {}
|
|
1742
1688
|
|
|
1743
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
1689
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
1744
1690
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
1745
1691
|
export function initExample(__scope, _p = {}) {
|
|
1746
1692
|
if (!__scope) return
|
|
1747
1693
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
1748
|
-
|
|
1749
|
-
const children = _p.children
|
|
1750
1694
|
const [count, setCount] = createSignal(0)
|
|
1751
1695
|
const [isLoggedIn] = createSignal(false)
|
|
1752
1696
|
const [todos] = createSignal([])
|
|
@@ -2121,7 +2065,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
2121
2065
|
|
|
2122
2066
|
}
|
|
2123
2067
|
|
|
2124
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
2068
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
2125
2069
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
2126
2070
|
export function initItem(__scope, _p = {}) {
|
|
2127
2071
|
if (!__scope) return
|
|
@@ -2135,17 +2079,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
2135
2079
|
|
|
2136
2080
|
}
|
|
2137
2081
|
|
|
2138
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
2082
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
2139
2083
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
2140
2084
|
function initDashboard() {}
|
|
2141
2085
|
|
|
2142
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
2086
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
2143
2087
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
2144
2088
|
export function initExample(__scope, _p = {}) {
|
|
2145
2089
|
if (!__scope) return
|
|
2146
2090
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
2147
|
-
|
|
2148
|
-
const children = _p.children
|
|
2149
2091
|
const [count, setCount] = createSignal(0)
|
|
2150
2092
|
const [isLoggedIn] = createSignal(false)
|
|
2151
2093
|
const [todos] = createSignal([])
|
|
@@ -2251,7 +2193,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
2251
2193
|
|
|
2252
2194
|
}
|
|
2253
2195
|
|
|
2254
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
2196
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
2255
2197
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
2256
2198
|
export function initItem(__scope, _p = {}) {
|
|
2257
2199
|
if (!__scope) return
|
|
@@ -2265,17 +2207,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
2265
2207
|
|
|
2266
2208
|
}
|
|
2267
2209
|
|
|
2268
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
2210
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
2269
2211
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
2270
2212
|
function initDashboard() {}
|
|
2271
2213
|
|
|
2272
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
2214
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
2273
2215
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
2274
2216
|
export function initExample(__scope, _p = {}) {
|
|
2275
2217
|
if (!__scope) return
|
|
2276
2218
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
2277
|
-
|
|
2278
|
-
const children = _p.children
|
|
2279
2219
|
const [count, setCount] = createSignal(0)
|
|
2280
2220
|
const [isLoggedIn] = createSignal(false)
|
|
2281
2221
|
const [todos] = createSignal([])
|
|
@@ -2553,7 +2493,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
2553
2493
|
|
|
2554
2494
|
}
|
|
2555
2495
|
|
|
2556
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
2496
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
2557
2497
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
2558
2498
|
export function initItem(__scope, _p = {}) {
|
|
2559
2499
|
if (!__scope) return
|
|
@@ -2567,17 +2507,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
2567
2507
|
|
|
2568
2508
|
}
|
|
2569
2509
|
|
|
2570
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
2510
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
2571
2511
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
2572
2512
|
function initDashboard() {}
|
|
2573
2513
|
|
|
2574
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
2514
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
2575
2515
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
2576
2516
|
export function initExample(__scope, _p = {}) {
|
|
2577
2517
|
if (!__scope) return
|
|
2578
2518
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
2579
|
-
|
|
2580
|
-
const children = _p.children
|
|
2581
2519
|
const [count, setCount] = createSignal(0)
|
|
2582
2520
|
const [isLoggedIn] = createSignal(false)
|
|
2583
2521
|
const [todos] = createSignal([])
|
|
@@ -2629,7 +2567,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
2629
2567
|
|
|
2630
2568
|
}
|
|
2631
2569
|
|
|
2632
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
2570
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
2633
2571
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
2634
2572
|
export function initItem(__scope, _p = {}) {
|
|
2635
2573
|
if (!__scope) return
|
|
@@ -2643,11 +2581,11 @@ export function initItem(__scope, _p = {}) {
|
|
|
2643
2581
|
|
|
2644
2582
|
}
|
|
2645
2583
|
|
|
2646
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
2584
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
2647
2585
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
2648
2586
|
function initDashboard() {}
|
|
2649
2587
|
|
|
2650
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
2588
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
2651
2589
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
2652
2590
|
export function initExample(__scope, _p = {}) {
|
|
2653
2591
|
if (!__scope) return
|
|
@@ -2812,7 +2750,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
2812
2750
|
|
|
2813
2751
|
}
|
|
2814
2752
|
|
|
2815
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
2753
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
2816
2754
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
2817
2755
|
export function initItem(__scope, _p = {}) {
|
|
2818
2756
|
if (!__scope) return
|
|
@@ -2826,17 +2764,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
2826
2764
|
|
|
2827
2765
|
}
|
|
2828
2766
|
|
|
2829
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
2767
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
2830
2768
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
2831
2769
|
function initDashboard() {}
|
|
2832
2770
|
|
|
2833
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
2771
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
2834
2772
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
2835
2773
|
export function initExample(__scope, _p = {}) {
|
|
2836
2774
|
if (!__scope) return
|
|
2837
2775
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
2838
|
-
|
|
2839
|
-
const children = _p.children
|
|
2840
2776
|
const [count, setCount] = createSignal(0)
|
|
2841
2777
|
const [isLoggedIn] = createSignal(false)
|
|
2842
2778
|
const [todos] = createSignal([])
|
|
@@ -2890,7 +2826,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
2890
2826
|
|
|
2891
2827
|
}
|
|
2892
2828
|
|
|
2893
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
2829
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
2894
2830
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
2895
2831
|
export function initItem(__scope, _p = {}) {
|
|
2896
2832
|
if (!__scope) return
|
|
@@ -2904,17 +2840,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
2904
2840
|
|
|
2905
2841
|
}
|
|
2906
2842
|
|
|
2907
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
2843
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
2908
2844
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
2909
2845
|
function initDashboard() {}
|
|
2910
2846
|
|
|
2911
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
2847
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
2912
2848
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
2913
2849
|
export function initExample(__scope, _p = {}) {
|
|
2914
2850
|
if (!__scope) return
|
|
2915
2851
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
2916
|
-
|
|
2917
|
-
const children = _p.children
|
|
2918
2852
|
const [count, setCount] = createSignal(0)
|
|
2919
2853
|
const [isLoggedIn] = createSignal(false)
|
|
2920
2854
|
const [todos] = createSignal([])
|
|
@@ -2949,7 +2883,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
2949
2883
|
|
|
2950
2884
|
}
|
|
2951
2885
|
|
|
2952
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
2886
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
2953
2887
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
2954
2888
|
export function initItem(__scope, _p = {}) {
|
|
2955
2889
|
if (!__scope) return
|
|
@@ -2963,17 +2897,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
2963
2897
|
|
|
2964
2898
|
}
|
|
2965
2899
|
|
|
2966
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
2900
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
2967
2901
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
2968
2902
|
function initDashboard() {}
|
|
2969
2903
|
|
|
2970
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
2904
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
2971
2905
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
2972
2906
|
export function initExample(__scope, _p = {}) {
|
|
2973
2907
|
if (!__scope) return
|
|
2974
2908
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
2975
|
-
|
|
2976
|
-
const children = _p.children
|
|
2977
2909
|
const [count, setCount] = createSignal(0)
|
|
2978
2910
|
const [isLoggedIn] = createSignal(false)
|
|
2979
2911
|
const [todos] = createSignal([])
|
|
@@ -3007,7 +2939,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
3007
2939
|
|
|
3008
2940
|
}
|
|
3009
2941
|
|
|
3010
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
2942
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
3011
2943
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
3012
2944
|
export function initItem(__scope, _p = {}) {
|
|
3013
2945
|
if (!__scope) return
|
|
@@ -3021,17 +2953,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
3021
2953
|
|
|
3022
2954
|
}
|
|
3023
2955
|
|
|
3024
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
2956
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
3025
2957
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
3026
2958
|
function initDashboard() {}
|
|
3027
2959
|
|
|
3028
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
2960
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
3029
2961
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
3030
2962
|
export function initExample(__scope, _p = {}) {
|
|
3031
2963
|
if (!__scope) return
|
|
3032
2964
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
3033
|
-
|
|
3034
|
-
const children = _p.children
|
|
3035
2965
|
const [count, setCount] = createSignal(0)
|
|
3036
2966
|
const [isLoggedIn] = createSignal(false)
|
|
3037
2967
|
const [todos] = createSignal([])
|
|
@@ -3067,7 +2997,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
3067
2997
|
|
|
3068
2998
|
}
|
|
3069
2999
|
|
|
3070
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
3000
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
3071
3001
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
3072
3002
|
export function initItem(__scope, _p = {}) {
|
|
3073
3003
|
if (!__scope) return
|
|
@@ -3081,17 +3011,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
3081
3011
|
|
|
3082
3012
|
}
|
|
3083
3013
|
|
|
3084
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
3014
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
3085
3015
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
3086
3016
|
function initDashboard() {}
|
|
3087
3017
|
|
|
3088
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
3018
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
3089
3019
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
3090
3020
|
export function initExample(__scope, _p = {}) {
|
|
3091
3021
|
if (!__scope) return
|
|
3092
3022
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
3093
|
-
|
|
3094
|
-
const children = _p.children
|
|
3095
3023
|
const [count, setCount] = createSignal(0)
|
|
3096
3024
|
const [isLoggedIn] = createSignal(false)
|
|
3097
3025
|
const [todos] = createSignal([])
|
|
@@ -3127,7 +3055,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
3127
3055
|
|
|
3128
3056
|
}
|
|
3129
3057
|
|
|
3130
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
3058
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
3131
3059
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
3132
3060
|
export function initItem(__scope, _p = {}) {
|
|
3133
3061
|
if (!__scope) return
|
|
@@ -3141,17 +3069,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
3141
3069
|
|
|
3142
3070
|
}
|
|
3143
3071
|
|
|
3144
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
3072
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
3145
3073
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
3146
3074
|
function initDashboard() {}
|
|
3147
3075
|
|
|
3148
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
3076
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
3149
3077
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
3150
3078
|
export function initExample(__scope, _p = {}) {
|
|
3151
3079
|
if (!__scope) return
|
|
3152
3080
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
3153
|
-
|
|
3154
|
-
const children = _p.children
|
|
3155
3081
|
const [count, setCount] = createSignal(0)
|
|
3156
3082
|
const [isLoggedIn] = createSignal(false)
|
|
3157
3083
|
const [todos] = createSignal([])
|
|
@@ -3196,7 +3122,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
3196
3122
|
|
|
3197
3123
|
}
|
|
3198
3124
|
|
|
3199
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
3125
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
3200
3126
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
3201
3127
|
export function initItem(__scope, _p = {}) {
|
|
3202
3128
|
if (!__scope) return
|
|
@@ -3210,17 +3136,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
3210
3136
|
|
|
3211
3137
|
}
|
|
3212
3138
|
|
|
3213
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
3139
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
3214
3140
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
3215
3141
|
function initDashboard() {}
|
|
3216
3142
|
|
|
3217
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
3143
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
3218
3144
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
3219
3145
|
export function initExample(__scope, _p = {}) {
|
|
3220
3146
|
if (!__scope) return
|
|
3221
3147
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
3222
|
-
|
|
3223
|
-
const children = _p.children
|
|
3224
3148
|
const [count, setCount] = createSignal(0)
|
|
3225
3149
|
const [isLoggedIn] = createSignal(false)
|
|
3226
3150
|
const [todos] = createSignal([])
|
|
@@ -3272,7 +3196,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
3272
3196
|
|
|
3273
3197
|
}
|
|
3274
3198
|
|
|
3275
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
3199
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
3276
3200
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
3277
3201
|
export function initItem(__scope, _p = {}) {
|
|
3278
3202
|
if (!__scope) return
|
|
@@ -3286,17 +3210,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
3286
3210
|
|
|
3287
3211
|
}
|
|
3288
3212
|
|
|
3289
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
3213
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
3290
3214
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
3291
3215
|
function initDashboard() {}
|
|
3292
3216
|
|
|
3293
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
3217
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
3294
3218
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
3295
3219
|
export function initExample(__scope, _p = {}) {
|
|
3296
3220
|
if (!__scope) return
|
|
3297
3221
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
3298
|
-
|
|
3299
|
-
const children = _p.children
|
|
3300
3222
|
const [count, setCount] = createSignal(0)
|
|
3301
3223
|
const [isLoggedIn] = createSignal(false)
|
|
3302
3224
|
const [todos] = createSignal([])
|
|
@@ -3342,7 +3264,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
3342
3264
|
|
|
3343
3265
|
}
|
|
3344
3266
|
|
|
3345
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
3267
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
3346
3268
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
3347
3269
|
export function initItem(__scope, _p = {}) {
|
|
3348
3270
|
if (!__scope) return
|
|
@@ -3356,17 +3278,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
3356
3278
|
|
|
3357
3279
|
}
|
|
3358
3280
|
|
|
3359
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
3281
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
3360
3282
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
3361
3283
|
function initDashboard() {}
|
|
3362
3284
|
|
|
3363
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
3285
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
3364
3286
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
3365
3287
|
export function initExample(__scope, _p = {}) {
|
|
3366
3288
|
if (!__scope) return
|
|
3367
3289
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
3368
|
-
|
|
3369
|
-
const children = _p.children
|
|
3370
3290
|
const [count, setCount] = createSignal(0)
|
|
3371
3291
|
const [isLoggedIn] = createSignal(false)
|
|
3372
3292
|
const [todos] = createSignal([])
|
|
@@ -3453,7 +3373,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
3453
3373
|
|
|
3454
3374
|
}
|
|
3455
3375
|
|
|
3456
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
3376
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
3457
3377
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
3458
3378
|
export function initItem(__scope, _p = {}) {
|
|
3459
3379
|
if (!__scope) return
|
|
@@ -3467,17 +3387,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
3467
3387
|
|
|
3468
3388
|
}
|
|
3469
3389
|
|
|
3470
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
3390
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
3471
3391
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
3472
3392
|
function initDashboard() {}
|
|
3473
3393
|
|
|
3474
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
3394
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
3475
3395
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
3476
3396
|
export function initExample(__scope, _p = {}) {
|
|
3477
3397
|
if (!__scope) return
|
|
3478
3398
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
3479
|
-
|
|
3480
|
-
const children = _p.children
|
|
3481
3399
|
const [count, setCount] = createSignal(0)
|
|
3482
3400
|
const [isLoggedIn] = createSignal(false)
|
|
3483
3401
|
const [todos] = createSignal([])
|
|
@@ -3603,7 +3521,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
3603
3521
|
|
|
3604
3522
|
}
|
|
3605
3523
|
|
|
3606
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
3524
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
3607
3525
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
3608
3526
|
export function initItem(__scope, _p = {}) {
|
|
3609
3527
|
if (!__scope) return
|
|
@@ -3617,17 +3535,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
3617
3535
|
|
|
3618
3536
|
}
|
|
3619
3537
|
|
|
3620
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
3538
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
3621
3539
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
3622
3540
|
function initDashboard() {}
|
|
3623
3541
|
|
|
3624
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
3542
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
3625
3543
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
3626
3544
|
export function initExample(__scope, _p = {}) {
|
|
3627
3545
|
if (!__scope) return
|
|
3628
3546
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
3629
|
-
|
|
3630
|
-
const children = _p.children
|
|
3631
3547
|
const [count, setCount] = createSignal(0)
|
|
3632
3548
|
const [isLoggedIn] = createSignal(false)
|
|
3633
3549
|
const [todos] = createSignal([])
|
|
@@ -3666,7 +3582,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
3666
3582
|
|
|
3667
3583
|
}
|
|
3668
3584
|
|
|
3669
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
3585
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
3670
3586
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
3671
3587
|
export function initItem(__scope, _p = {}) {
|
|
3672
3588
|
if (!__scope) return
|
|
@@ -3680,17 +3596,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
3680
3596
|
|
|
3681
3597
|
}
|
|
3682
3598
|
|
|
3683
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
3599
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
3684
3600
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
3685
3601
|
function initDashboard() {}
|
|
3686
3602
|
|
|
3687
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
3603
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
3688
3604
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
3689
3605
|
export function initExample(__scope, _p = {}) {
|
|
3690
3606
|
if (!__scope) return
|
|
3691
3607
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
3692
|
-
|
|
3693
|
-
const children = _p.children
|
|
3694
3608
|
const [count, setCount] = createSignal(0)
|
|
3695
3609
|
const [isLoggedIn] = createSignal(false)
|
|
3696
3610
|
const [todos] = createSignal([])
|
|
@@ -3846,7 +3760,7 @@ export function initDialogOverlay(__scope, _p = {}) {
|
|
|
3846
3760
|
if (_s0) (handleMount)(_s0)
|
|
3847
3761
|
}
|
|
3848
3762
|
|
|
3849
|
-
hydrate('DialogOverlay__b3c36eee', { init: initDialogOverlay, template: (_p) => \`<div data-slot="dialog-overlay" bf="s0"></div
|
|
3763
|
+
hydrate('DialogOverlay__b3c36eee', { init: initDialogOverlay, template: (_p) => \`<div data-slot="dialog-overlay" bf="s0"></div>\`, name: 'DialogOverlay' })
|
|
3850
3764
|
export function DialogOverlay(_p, __bfKey) { return createComponent('DialogOverlay__b3c36eee', _p, __bfKey) }"
|
|
3851
3765
|
`;
|
|
3852
3766
|
|
|
@@ -3917,7 +3831,7 @@ exports[`docs/core/components/props-type-safety.md doc-examples L54 — (no labe
|
|
|
3917
3831
|
|
|
3918
3832
|
function initButton() {}
|
|
3919
3833
|
|
|
3920
|
-
hydrate('Button__b3c36eee', { init: initButton, template: (_p) => \`<button \${((\`btn btn-\${(_p.variant ?? 'default')} btn-\${(_p.size ?? 'md')} \${_p.className ?? ''}\`)) != null ? 'class="' + escapeAttr((\`btn btn-\${(_p.variant ?? 'default')} btn-\${(_p.size ?? 'md')} \${_p.className ?? ''}\`)) + '"' : ''} bf="s0">\${_p.children}</button
|
|
3834
|
+
hydrate('Button__b3c36eee', { init: initButton, template: (_p) => \`<button \${((\`btn btn-\${(_p.variant ?? 'default')} btn-\${(_p.size ?? 'md')} \${_p.className ?? ''}\`)) != null ? 'class="' + escapeAttr((\`btn btn-\${(_p.variant ?? 'default')} btn-\${(_p.size ?? 'md')} \${_p.className ?? ''}\`)) + '"' : ''} bf="s0">\${_p.children}</button>\`, name: 'Button' })
|
|
3921
3835
|
export function Button(_p, __bfKey) { return createComponent('Button__b3c36eee', _p, __bfKey) }"
|
|
3922
3836
|
`;
|
|
3923
3837
|
|
|
@@ -3946,7 +3860,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
3946
3860
|
|
|
3947
3861
|
}
|
|
3948
3862
|
|
|
3949
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
3863
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
3950
3864
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
3951
3865
|
export function initItem(__scope, _p = {}) {
|
|
3952
3866
|
if (!__scope) return
|
|
@@ -3960,17 +3874,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
3960
3874
|
|
|
3961
3875
|
}
|
|
3962
3876
|
|
|
3963
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
3877
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
3964
3878
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
3965
3879
|
function initDashboard() {}
|
|
3966
3880
|
|
|
3967
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
3881
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
3968
3882
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
3969
3883
|
export function initExample(__scope, _p = {}) {
|
|
3970
3884
|
if (!__scope) return
|
|
3971
3885
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
3972
|
-
|
|
3973
|
-
const children = _p.children
|
|
3974
3886
|
const [count, setCount] = createSignal(0)
|
|
3975
3887
|
const [isLoggedIn] = createSignal(false)
|
|
3976
3888
|
const [todos] = createSignal([])
|
|
@@ -4168,8 +4080,6 @@ export function initLayout(__scope, _p = {}) {
|
|
|
4168
4080
|
if (!__scope) return
|
|
4169
4081
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4170
4082
|
|
|
4171
|
-
const children = _p.children
|
|
4172
|
-
|
|
4173
4083
|
const [_s0] = $c(__scope, 's0')
|
|
4174
4084
|
|
|
4175
4085
|
|
|
@@ -4196,7 +4106,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4196
4106
|
|
|
4197
4107
|
}
|
|
4198
4108
|
|
|
4199
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4109
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4200
4110
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4201
4111
|
export function initItem(__scope, _p = {}) {
|
|
4202
4112
|
if (!__scope) return
|
|
@@ -4210,17 +4120,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4210
4120
|
|
|
4211
4121
|
}
|
|
4212
4122
|
|
|
4213
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4123
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4214
4124
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4215
4125
|
function initDashboard() {}
|
|
4216
4126
|
|
|
4217
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4127
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4218
4128
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4219
4129
|
export function initExample(__scope, _p = {}) {
|
|
4220
4130
|
if (!__scope) return
|
|
4221
4131
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4222
|
-
|
|
4223
|
-
const children = _p.children
|
|
4224
4132
|
const [count, setCount] = createSignal(0)
|
|
4225
4133
|
const [isLoggedIn] = createSignal(false)
|
|
4226
4134
|
const [todos] = createSignal([])
|
|
@@ -4262,7 +4170,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4262
4170
|
|
|
4263
4171
|
}
|
|
4264
4172
|
|
|
4265
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4173
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4266
4174
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4267
4175
|
export function initItem(__scope, _p = {}) {
|
|
4268
4176
|
if (!__scope) return
|
|
@@ -4276,17 +4184,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4276
4184
|
|
|
4277
4185
|
}
|
|
4278
4186
|
|
|
4279
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4187
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4280
4188
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4281
4189
|
function initDashboard() {}
|
|
4282
4190
|
|
|
4283
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4191
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4284
4192
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4285
4193
|
export function initExample(__scope, _p = {}) {
|
|
4286
4194
|
if (!__scope) return
|
|
4287
4195
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4288
|
-
|
|
4289
|
-
const children = _p.children
|
|
4290
4196
|
const [count, setCount] = createSignal(0)
|
|
4291
4197
|
const [isLoggedIn] = createSignal(false)
|
|
4292
4198
|
const [todos] = createSignal([])
|
|
@@ -4328,7 +4234,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4328
4234
|
|
|
4329
4235
|
}
|
|
4330
4236
|
|
|
4331
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4237
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4332
4238
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4333
4239
|
export function initItem(__scope, _p = {}) {
|
|
4334
4240
|
if (!__scope) return
|
|
@@ -4342,17 +4248,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4342
4248
|
|
|
4343
4249
|
}
|
|
4344
4250
|
|
|
4345
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4251
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4346
4252
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4347
4253
|
function initDashboard() {}
|
|
4348
4254
|
|
|
4349
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4255
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4350
4256
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4351
4257
|
export function initExample(__scope, _p = {}) {
|
|
4352
4258
|
if (!__scope) return
|
|
4353
4259
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4354
|
-
|
|
4355
|
-
const children = _p.children
|
|
4356
4260
|
const [count, setCount] = createSignal(0)
|
|
4357
4261
|
const [isLoggedIn] = createSignal(false)
|
|
4358
4262
|
const [todos] = createSignal([])
|
|
@@ -4394,7 +4298,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4394
4298
|
|
|
4395
4299
|
}
|
|
4396
4300
|
|
|
4397
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4301
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4398
4302
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4399
4303
|
export function initItem(__scope, _p = {}) {
|
|
4400
4304
|
if (!__scope) return
|
|
@@ -4408,17 +4312,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4408
4312
|
|
|
4409
4313
|
}
|
|
4410
4314
|
|
|
4411
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4315
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4412
4316
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4413
4317
|
function initDashboard() {}
|
|
4414
4318
|
|
|
4415
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4319
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4416
4320
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4417
4321
|
export function initExample(__scope, _p = {}) {
|
|
4418
4322
|
if (!__scope) return
|
|
4419
4323
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4420
|
-
|
|
4421
|
-
const children = _p.children
|
|
4422
4324
|
const [count, setCount] = createSignal(0)
|
|
4423
4325
|
const [isLoggedIn] = createSignal(false)
|
|
4424
4326
|
const [todos] = createSignal([])
|
|
@@ -4526,7 +4428,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4526
4428
|
|
|
4527
4429
|
}
|
|
4528
4430
|
|
|
4529
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4431
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4530
4432
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4531
4433
|
export function initItem(__scope, _p = {}) {
|
|
4532
4434
|
if (!__scope) return
|
|
@@ -4540,17 +4442,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4540
4442
|
|
|
4541
4443
|
}
|
|
4542
4444
|
|
|
4543
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4445
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4544
4446
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4545
4447
|
function initDashboard() {}
|
|
4546
4448
|
|
|
4547
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4449
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4548
4450
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4549
4451
|
export function initExample(__scope, _p = {}) {
|
|
4550
4452
|
if (!__scope) return
|
|
4551
4453
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4552
|
-
|
|
4553
|
-
const children = _p.children
|
|
4554
4454
|
const [count, setCount] = createSignal(0)
|
|
4555
4455
|
const [isLoggedIn] = createSignal(false)
|
|
4556
4456
|
const [todos] = createSignal([])
|
|
@@ -4609,7 +4509,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4609
4509
|
|
|
4610
4510
|
}
|
|
4611
4511
|
|
|
4612
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4512
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4613
4513
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4614
4514
|
export function initItem(__scope, _p = {}) {
|
|
4615
4515
|
if (!__scope) return
|
|
@@ -4623,17 +4523,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4623
4523
|
|
|
4624
4524
|
}
|
|
4625
4525
|
|
|
4626
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4526
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4627
4527
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4628
4528
|
function initDashboard() {}
|
|
4629
4529
|
|
|
4630
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4530
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4631
4531
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4632
4532
|
export function initExample(__scope, _p = {}) {
|
|
4633
4533
|
if (!__scope) return
|
|
4634
4534
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4635
|
-
|
|
4636
|
-
const children = _p.children
|
|
4637
4535
|
const [count, setCount] = createSignal(0)
|
|
4638
4536
|
const [isLoggedIn] = createSignal(false)
|
|
4639
4537
|
const [todos] = createSignal([])
|
|
@@ -4692,7 +4590,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4692
4590
|
|
|
4693
4591
|
}
|
|
4694
4592
|
|
|
4695
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4593
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4696
4594
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4697
4595
|
export function initItem(__scope, _p = {}) {
|
|
4698
4596
|
if (!__scope) return
|
|
@@ -4706,17 +4604,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4706
4604
|
|
|
4707
4605
|
}
|
|
4708
4606
|
|
|
4709
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4607
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4710
4608
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4711
4609
|
function initDashboard() {}
|
|
4712
4610
|
|
|
4713
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4611
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4714
4612
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4715
4613
|
export function initExample(__scope, _p = {}) {
|
|
4716
4614
|
if (!__scope) return
|
|
4717
4615
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4718
|
-
|
|
4719
|
-
const children = _p.children
|
|
4720
4616
|
const [count, setCount] = createSignal(0)
|
|
4721
4617
|
const [isLoggedIn] = createSignal(false)
|
|
4722
4618
|
const [todos] = createSignal([])
|
|
@@ -4783,7 +4679,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4783
4679
|
|
|
4784
4680
|
}
|
|
4785
4681
|
|
|
4786
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4682
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4787
4683
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4788
4684
|
export function initItem(__scope, _p = {}) {
|
|
4789
4685
|
if (!__scope) return
|
|
@@ -4797,17 +4693,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4797
4693
|
|
|
4798
4694
|
}
|
|
4799
4695
|
|
|
4800
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4696
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4801
4697
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4802
4698
|
function initDashboard() {}
|
|
4803
4699
|
|
|
4804
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4700
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4805
4701
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4806
4702
|
export function initExample(__scope, _p = {}) {
|
|
4807
4703
|
if (!__scope) return
|
|
4808
4704
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4809
|
-
|
|
4810
|
-
const children = _p.children
|
|
4811
4705
|
const [count, setCount] = createSignal(0)
|
|
4812
4706
|
const [isLoggedIn] = createSignal(false)
|
|
4813
4707
|
const [todos] = createSignal([])
|
|
@@ -4849,7 +4743,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4849
4743
|
|
|
4850
4744
|
}
|
|
4851
4745
|
|
|
4852
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4746
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4853
4747
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4854
4748
|
export function initItem(__scope, _p = {}) {
|
|
4855
4749
|
if (!__scope) return
|
|
@@ -4863,17 +4757,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4863
4757
|
|
|
4864
4758
|
}
|
|
4865
4759
|
|
|
4866
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4760
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4867
4761
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4868
4762
|
function initDashboard() {}
|
|
4869
4763
|
|
|
4870
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4764
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4871
4765
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4872
4766
|
export function initExample(__scope, _p = {}) {
|
|
4873
4767
|
if (!__scope) return
|
|
4874
4768
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4875
|
-
|
|
4876
|
-
const children = _p.children
|
|
4877
4769
|
const [count, setCount] = createSignal(0)
|
|
4878
4770
|
const [isLoggedIn] = createSignal(false)
|
|
4879
4771
|
const [todos] = createSignal([])
|
|
@@ -4903,7 +4795,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4903
4795
|
|
|
4904
4796
|
}
|
|
4905
4797
|
|
|
4906
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4798
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4907
4799
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4908
4800
|
export function initItem(__scope, _p = {}) {
|
|
4909
4801
|
if (!__scope) return
|
|
@@ -4917,17 +4809,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4917
4809
|
|
|
4918
4810
|
}
|
|
4919
4811
|
|
|
4920
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4812
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4921
4813
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4922
4814
|
function initDashboard() {}
|
|
4923
4815
|
|
|
4924
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4816
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4925
4817
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4926
4818
|
export function initExample(__scope, _p = {}) {
|
|
4927
4819
|
if (!__scope) return
|
|
4928
4820
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4929
|
-
|
|
4930
|
-
const children = _p.children
|
|
4931
4821
|
const [count, setCount] = createSignal(0)
|
|
4932
4822
|
const [isLoggedIn] = createSignal(false)
|
|
4933
4823
|
const [todos] = createSignal([])
|
|
@@ -4957,7 +4847,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
4957
4847
|
|
|
4958
4848
|
}
|
|
4959
4849
|
|
|
4960
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4850
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
4961
4851
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
4962
4852
|
export function initItem(__scope, _p = {}) {
|
|
4963
4853
|
if (!__scope) return
|
|
@@ -4971,17 +4861,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
4971
4861
|
|
|
4972
4862
|
}
|
|
4973
4863
|
|
|
4974
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4864
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
4975
4865
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
4976
4866
|
function initDashboard() {}
|
|
4977
4867
|
|
|
4978
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4868
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
4979
4869
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
4980
4870
|
export function initExample(__scope, _p = {}) {
|
|
4981
4871
|
if (!__scope) return
|
|
4982
4872
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
4983
|
-
|
|
4984
|
-
const children = _p.children
|
|
4985
4873
|
const [count, setCount] = createSignal(0)
|
|
4986
4874
|
const [isLoggedIn] = createSignal(false)
|
|
4987
4875
|
const [todos] = createSignal([])
|
|
@@ -5024,7 +4912,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
5024
4912
|
|
|
5025
4913
|
}
|
|
5026
4914
|
|
|
5027
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4915
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
5028
4916
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
5029
4917
|
export function initItem(__scope, _p = {}) {
|
|
5030
4918
|
if (!__scope) return
|
|
@@ -5038,17 +4926,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
5038
4926
|
|
|
5039
4927
|
}
|
|
5040
4928
|
|
|
5041
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4929
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
5042
4930
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
5043
4931
|
function initDashboard() {}
|
|
5044
4932
|
|
|
5045
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4933
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
5046
4934
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
5047
4935
|
export function initExample(__scope, _p = {}) {
|
|
5048
4936
|
if (!__scope) return
|
|
5049
4937
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
5050
|
-
|
|
5051
|
-
const children = _p.children
|
|
5052
4938
|
const [count, setCount] = createSignal(0)
|
|
5053
4939
|
const [isLoggedIn] = createSignal(false)
|
|
5054
4940
|
const [todos] = createSignal([])
|
|
@@ -5076,15 +4962,6 @@ hydrate('Example', { init: initExample, template: (_p) => \`<div bf="s1"><!--bf-
|
|
|
5076
4962
|
export function Example(_p, __bfKey) { return createComponent('Example', _p, __bfKey) }"
|
|
5077
4963
|
`;
|
|
5078
4964
|
|
|
5079
|
-
exports[`docs/core/advanced/code-splitting.md doc-examples L98 — (no label) 1`] = `
|
|
5080
|
-
"import { createComponent, hydrate } from '@barefootjs/client/runtime'
|
|
5081
|
-
|
|
5082
|
-
function initStatementExample() {}
|
|
5083
|
-
|
|
5084
|
-
hydrate('StatementExample', { init: initStatementExample, template: (_p) => \`<div></div>\` })
|
|
5085
|
-
export function StatementExample(_p, __bfKey) { return createComponent('StatementExample', _p, __bfKey) }"
|
|
5086
|
-
`;
|
|
5087
|
-
|
|
5088
4965
|
exports[`docs/core/advanced/compiler-internals.md doc-examples L126 — (no label) 1`] = `
|
|
5089
4966
|
"import { $, createComponent, createEffect, createSignal, escapeAttr, escapeText, escapeTextOrNode, hydrate, lazySlots, mapArrayLazy, textOrNode } from '@barefootjs/client/runtime'
|
|
5090
4967
|
|
|
@@ -5100,7 +4977,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
5100
4977
|
|
|
5101
4978
|
}
|
|
5102
4979
|
|
|
5103
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
4980
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
5104
4981
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
5105
4982
|
export function initItem(__scope, _p = {}) {
|
|
5106
4983
|
if (!__scope) return
|
|
@@ -5114,17 +4991,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
5114
4991
|
|
|
5115
4992
|
}
|
|
5116
4993
|
|
|
5117
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
4994
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
5118
4995
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
5119
4996
|
function initDashboard() {}
|
|
5120
4997
|
|
|
5121
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
4998
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
5122
4999
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
5123
5000
|
export function initExample(__scope, _p = {}) {
|
|
5124
5001
|
if (!__scope) return
|
|
5125
5002
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
5126
|
-
|
|
5127
|
-
const children = _p.children
|
|
5128
5003
|
const [count, setCount] = createSignal(0)
|
|
5129
5004
|
const [isLoggedIn] = createSignal(false)
|
|
5130
5005
|
const [todos] = createSignal([])
|
|
@@ -5245,7 +5120,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
5245
5120
|
|
|
5246
5121
|
}
|
|
5247
5122
|
|
|
5248
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
5123
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
5249
5124
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
5250
5125
|
export function initItem(__scope, _p = {}) {
|
|
5251
5126
|
if (!__scope) return
|
|
@@ -5259,17 +5134,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
5259
5134
|
|
|
5260
5135
|
}
|
|
5261
5136
|
|
|
5262
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
5137
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
5263
5138
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
5264
5139
|
function initDashboard() {}
|
|
5265
5140
|
|
|
5266
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
5141
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
5267
5142
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
5268
5143
|
export function initExample(__scope, _p = {}) {
|
|
5269
5144
|
if (!__scope) return
|
|
5270
5145
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
5271
|
-
|
|
5272
|
-
const children = _p.children
|
|
5273
5146
|
const [count, setCount] = createSignal(0)
|
|
5274
5147
|
const [isLoggedIn] = createSignal(false)
|
|
5275
5148
|
const [todos] = createSignal([])
|
|
@@ -5328,7 +5201,7 @@ export function initTodoItem(__scope, _p = {}) {
|
|
|
5328
5201
|
|
|
5329
5202
|
}
|
|
5330
5203
|
|
|
5331
|
-
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li
|
|
5204
|
+
hydrate('TodoItem__b3c36eee', { init: initTodoItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.todo))}<!--/--></li>\`, name: 'TodoItem' })
|
|
5332
5205
|
export function TodoItem(_p, __bfKey) { return createComponent('TodoItem__b3c36eee', _p, __bfKey) }
|
|
5333
5206
|
export function initItem(__scope, _p = {}) {
|
|
5334
5207
|
if (!__scope) return
|
|
@@ -5342,17 +5215,15 @@ export function initItem(__scope, _p = {}) {
|
|
|
5342
5215
|
|
|
5343
5216
|
}
|
|
5344
5217
|
|
|
5345
|
-
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li
|
|
5218
|
+
hydrate('Item__b3c36eee', { init: initItem, template: (_p) => \`<li bf="s1"><!--bf:s0-->\${escapeText(String(_p.item))}<!--/--></li>\`, name: 'Item' })
|
|
5346
5219
|
export function Item(_p, __bfKey) { return createComponent('Item__b3c36eee', _p, __bfKey) }
|
|
5347
5220
|
function initDashboard() {}
|
|
5348
5221
|
|
|
5349
|
-
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div
|
|
5222
|
+
hydrate('Dashboard__b3c36eee', { init: initDashboard, template: (_p) => \`<div>D</div>\`, name: 'Dashboard' })
|
|
5350
5223
|
export function Dashboard(_p, __bfKey) { return createComponent('Dashboard__b3c36eee', _p, __bfKey) }
|
|
5351
5224
|
export function initExample(__scope, _p = {}) {
|
|
5352
5225
|
if (!__scope) return
|
|
5353
5226
|
const __scopeId = __scope.getAttribute('bf-s')
|
|
5354
|
-
|
|
5355
|
-
const children = _p.children
|
|
5356
5227
|
const [count, setCount] = createSignal(0)
|
|
5357
5228
|
const [isLoggedIn] = createSignal(false)
|
|
5358
5229
|
const [todos] = createSignal([])
|