@thyn/core 0.0.172 → 0.0.174

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/element.js CHANGED
@@ -243,7 +243,7 @@ export function terminalList(props) {
243
243
  return list(props, true);
244
244
  }
245
245
  export function list(props, terminal = false) {
246
- const teardownNode = terminal ? (e) => e.$fx && shallowTeardown(e) : teardown;
246
+ const teardownNode = terminal ? shallowTeardown : teardown;
247
247
  let parent;
248
248
  let outlet = document.createDocumentFragment();
249
249
  let prevItems;
@@ -271,9 +271,11 @@ export function list(props, terminal = false) {
271
271
  }
272
272
  const childNodeList = parent.childNodes;
273
273
  isolated = !startBookend.previousSibling && !endBookend.nextSibling;
274
+ const childNodes = Array.from(childNodeList);
275
+ const offset = childNodes.indexOf(startBookend) + 1;
274
276
  if (!newLength) {
275
- const end = childNodeList.length - 1;
276
277
  if (isolated) {
278
+ const end = childNodeList.length - 1;
277
279
  for (let i = 1; i < end; i++) {
278
280
  teardownNode(childNodeList[i]);
279
281
  }
@@ -283,7 +285,8 @@ export function list(props, terminal = false) {
283
285
  }
284
286
  else {
285
287
  const removalQueue = [];
286
- for (let i = 1; i < end; i++) {
288
+ const end = prevItems.length + 1;
289
+ for (let i = offset; i < end; i++) {
287
290
  const ch = childNodeList[i];
288
291
  teardownNode(ch);
289
292
  removalQueue.push(ch);
@@ -303,8 +306,6 @@ export function list(props, terminal = false) {
303
306
  nextItems = null;
304
307
  return;
305
308
  }
306
- const childNodes = Array.from(childNodeList);
307
- const offset = childNodes.indexOf(startBookend) + 1;
308
309
  if (start < 0) {
309
310
  for (let i = nextItems.length; i < oldLength; i++) {
310
311
  const e = childNodes[offset + --oldLength];
@@ -417,50 +418,52 @@ export function list(props, terminal = false) {
417
418
  export function isolatedTerminalList(props) {
418
419
  let parent;
419
420
  let outlet = document.createDocumentFragment();
420
- const placeholder = document.createComment("");
421
421
  let prevItems;
422
+ const startBookend = document.createComment("");
423
+ const endBookend = document.createComment("");
424
+ startBookend.$frag = outlet;
425
+ startBookend.$end = endBookend;
422
426
  const render = props.render;
423
427
  staticEffect(() => {
424
- parent ?? (parent = placeholder.parentNode);
428
+ parent = startBookend.parentNode;
425
429
  if (!parent) {
426
430
  prevItems = props.items();
427
- outlet.append(placeholder, ...prevItems.map(render));
431
+ outlet.append(startBookend, ...prevItems.map(render), endBookend);
428
432
  return;
429
433
  }
430
- else {
431
- placeholder.remove();
432
- }
433
434
  let nextItems = props.items();
434
435
  let newLength = nextItems.length;
435
436
  let oldLength = prevItems.length;
436
437
  if (!oldLength && newLength) {
437
- parent.append(...nextItems.map(render));
438
+ endBookend.before(...nextItems.map(render));
438
439
  prevItems = nextItems;
439
440
  nextItems = null;
440
441
  return;
441
442
  }
442
443
  const childNodeList = parent.childNodes;
444
+ const childNodes = Array.from(childNodeList);
443
445
  if (!newLength) {
444
446
  const end = childNodeList.length - 1;
445
- for (let i = 0; i <= end; i++) {
447
+ for (let i = 1; i < end; i++) {
446
448
  shallowTeardown(childNodeList[i]);
447
449
  }
448
450
  parent.textContent = "";
451
+ parent.appendChild(startBookend);
452
+ parent.appendChild(endBookend);
449
453
  prevItems = nextItems;
450
454
  nextItems = null;
451
455
  return;
452
456
  }
453
457
  let start = nextItems.findIndex((item, index) => prevItems[index] !== item);
454
458
  if (start === oldLength) {
455
- parent.append(...nextItems.slice(start).map(render));
459
+ endBookend.before(...nextItems.slice(start).map(render));
456
460
  prevItems = nextItems;
457
461
  nextItems = null;
458
462
  return;
459
463
  }
460
- const childNodes = Array.from(childNodeList);
461
464
  if (start < 0) {
462
465
  for (let i = nextItems.length; i < oldLength; i++) {
463
- const e = childNodes[--oldLength];
466
+ const e = childNodes[1 + --oldLength];
464
467
  shallowTeardown(e);
465
468
  e.remove();
466
469
  }
@@ -470,7 +473,7 @@ export function isolatedTerminalList(props) {
470
473
  }
471
474
  if (start >= newLength) {
472
475
  while (start < oldLength) {
473
- const e = childNodes[--oldLength];
476
+ const e = childNodes[1 + --oldLength];
474
477
  shallowTeardown(e);
475
478
  e.remove();
476
479
  }
@@ -487,15 +490,15 @@ export function isolatedTerminalList(props) {
487
490
  const removalQueue = [];
488
491
  for (let i = start; i <= oldLength; i++) {
489
492
  if (!nextKeys.has(prevItems[i])) {
490
- const ch = childNodes[i];
493
+ const ch = childNodes[i + 1];
491
494
  shallowTeardown(ch);
492
495
  removalQueue.push(ch);
493
- childNodes[i] = null;
496
+ childNodes[i + 1] = null;
494
497
  }
495
498
  }
496
499
  if (removalQueue.length === prevItems.length) {
497
500
  parent.textContent = "";
498
- parent.append(...nextItems.map(render));
501
+ parent.append(startBookend, ...nextItems.map(render), endBookend);
499
502
  prevItems = nextItems;
500
503
  nextItems = null;
501
504
  return;
@@ -505,20 +508,20 @@ export function isolatedTerminalList(props) {
505
508
  }
506
509
  let keyMap = new Map();
507
510
  for (let i = start; i <= oldLength; i++) {
508
- if (childNodes[i] &&
511
+ if (childNodes[i + 1] &&
509
512
  (!nextItems[i] ||
510
513
  prevItems[i] !== nextItems[i])) {
511
514
  keyMap.set(prevItems[i], {
512
- el: childNodes[i],
515
+ el: childNodes[i + 1],
513
516
  item: prevItems[i],
514
517
  });
515
518
  }
516
519
  }
517
520
  if (newLength === oldLength && keyMap.size > (newLength - start + 1) / 2) {
518
- const lastOrdered = childNodes[start - 1];
521
+ const lastOrdered = childNodes[start];
519
522
  const set = [];
520
523
  for (let i = start; i <= newLength; i++) {
521
- set.push(keyMap.get(nextItems[i])?.el ?? childNodes[i]);
524
+ set.push(keyMap.get(nextItems[i])?.el ?? childNodes[i + 1]);
522
525
  }
523
526
  lastOrdered.after(...set);
524
527
  prevItems = nextItems;
@@ -534,13 +537,13 @@ export function isolatedTerminalList(props) {
534
537
  continue;
535
538
  }
536
539
  if (oldChd === undefined) {
537
- parent.appendChild(render(newChd));
540
+ parent.insertBefore(render(newChd), endBookend);
538
541
  start++;
539
542
  continue;
540
543
  }
541
544
  const mappedOld = keyMap.get(newChd);
542
545
  if (mappedOld) {
543
- const oldDom = childNodeList[start];
546
+ const oldDom = childNodeList[start + 1];
544
547
  const { el, item } = mappedOld;
545
548
  if (oldDom !== el) {
546
549
  const tmp = el.nextSibling;
@@ -553,7 +556,7 @@ export function isolatedTerminalList(props) {
553
556
  keyMap.delete(newChd);
554
557
  }
555
558
  else if (oldChd !== newChd) {
556
- parent.insertBefore(render(newChd), childNodeList[start]);
559
+ parent.insertBefore(render(newChd), childNodeList[start + 1]);
557
560
  }
558
561
  start++;
559
562
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thyn/core",
3
- "version": "0.0.172",
3
+ "version": "0.0.174",
4
4
  "scripts": {
5
5
  "build": "tsc",
6
6
  "pub": "tsc && npm version patch -f && npm -f publish --access=public",
package/src/element.ts CHANGED
@@ -259,7 +259,7 @@ export function terminalList(props) {
259
259
  }
260
260
 
261
261
  export function list(props, terminal = false) {
262
- const teardownNode = terminal ? (e: any) => e.$fx && shallowTeardown(e) : teardown;
262
+ const teardownNode = terminal ? shallowTeardown : teardown;
263
263
  let parent;
264
264
  let outlet = document.createDocumentFragment();
265
265
  let prevItems;
@@ -288,9 +288,11 @@ export function list(props, terminal = false) {
288
288
  }
289
289
  const childNodeList = parent.childNodes as NodeListOf<ChildNode>;
290
290
  isolated = !startBookend.previousSibling && !endBookend.nextSibling;
291
+ const childNodes = Array.from(childNodeList);
292
+ const offset = childNodes.indexOf(startBookend) + 1;
291
293
  if (!newLength) {
292
- const end = childNodeList.length - 1;
293
294
  if (isolated) {
295
+ const end = childNodeList.length - 1;
294
296
  for (let i = 1; i < end; i++) {
295
297
  teardownNode(childNodeList[i]);
296
298
  }
@@ -299,7 +301,8 @@ export function list(props, terminal = false) {
299
301
  parent.appendChild(endBookend);
300
302
  } else {
301
303
  const removalQueue = [];
302
- for (let i = 1; i < end; i++) {
304
+ const end = prevItems.length + 1;
305
+ for (let i = offset; i < end; i++) {
303
306
  const ch = childNodeList[i];
304
307
  teardownNode(ch);
305
308
  removalQueue.push(ch);
@@ -321,8 +324,6 @@ export function list(props, terminal = false) {
321
324
  return;
322
325
  }
323
326
 
324
- const childNodes = Array.from(childNodeList);
325
- const offset = childNodes.indexOf(startBookend) + 1;
326
327
  if (start < 0) {
327
328
  for (let i = nextItems.length; i < oldLength; i++) {
328
329
  const e = childNodes[offset + --oldLength];
@@ -441,155 +442,168 @@ export function list(props, terminal = false) {
441
442
  }
442
443
 
443
444
  export function isolatedTerminalList(props) {
444
- let parent;
445
- let outlet = document.createDocumentFragment();
446
- const placeholder = document.createComment("");
447
- let prevItems;
448
- const render = props.render;
449
- staticEffect(() => {
450
- parent ??= placeholder.parentNode;
451
- if (!parent) {
452
- prevItems = props.items();
453
- outlet.append(placeholder, ...prevItems.map(render));
454
- return;
455
- } else {
456
- placeholder.remove();
457
- }
458
- let nextItems = props.items();
459
- let newLength = nextItems.length;
460
- let oldLength = prevItems.length;
461
- if (!oldLength && newLength) {
462
- parent.append(...nextItems.map(render));
463
- prevItems = nextItems;
464
- nextItems = null;
465
- return;
466
- }
467
- const childNodeList = parent.childNodes as NodeListOf<ChildNode>;
468
- if (!newLength) {
469
- const end = childNodeList.length - 1;
470
- for (let i = 0; i <= end; i++) {
471
- shallowTeardown(childNodeList[i]);
472
- }
473
- parent.textContent = "";
474
- prevItems = nextItems;
475
- nextItems = null;
476
- return;
477
- }
478
- let start = nextItems.findIndex((item, index) => prevItems[index] !== item);
479
- if (start === oldLength) {
480
- parent.append(...nextItems.slice(start).map(render));
481
- prevItems = nextItems;
482
- nextItems = null;
483
- return;
484
- }
485
- const childNodes = Array.from(childNodeList);
486
- if (start < 0) {
487
- for (let i = nextItems.length; i < oldLength; i++) {
488
- const e = childNodes[--oldLength];
489
- shallowTeardown(e);
490
- e.remove();
491
- }
492
- prevItems = nextItems;
493
- nextItems = null;
494
- return;
495
- }
496
- if (start >= newLength) {
497
- while (start < oldLength) {
498
- const e = childNodes[--oldLength];
499
- shallowTeardown(e);
500
- e.remove();
501
- }
502
- prevItems = nextItems;
503
- nextItems = null;
504
- return;
505
- }
506
- // suffix
507
- for (oldLength--, newLength--; newLength > start &&
508
- oldLength >= start &&
509
- nextItems[newLength] === prevItems[oldLength]; oldLength--, newLength--)
510
- ;
511
- const nextKeys = new Set(nextItems);
512
- const removalQueue = [];
513
- for (let i = start; i <= oldLength; i++) {
514
- if (!nextKeys.has(prevItems[i])) {
515
- const ch = childNodes[i];
516
- shallowTeardown(ch);
517
- removalQueue.push(ch);
518
- childNodes[i] = null;
519
- }
520
- }
521
- if (removalQueue.length === prevItems.length) {
522
- parent.textContent = "";
523
- parent.append(...nextItems.map(render));
524
- prevItems = nextItems;
525
- nextItems = null;
526
- return;
527
- }
528
- for (const e of removalQueue) {
529
- e.remove();
530
- }
531
- let keyMap = new Map();
532
- for (let i = start; i <= oldLength; i++) {
533
- if (childNodes[i] &&
534
- (!nextItems[i] ||
535
- prevItems[i] !== nextItems[i])) {
536
- keyMap.set(prevItems[i], {
537
- el: childNodes[i],
538
- item: prevItems[i],
539
- });
540
- }
541
- }
542
- if (newLength === oldLength && keyMap.size > (newLength - start + 1) / 2) {
543
- const lastOrdered = childNodes[start - 1];
544
- const set = [];
545
- for (let i = start; i <= newLength; i++) {
546
- set.push(keyMap.get(nextItems[i])?.el ?? childNodes[i]);
547
- }
548
- lastOrdered.after(...set);
549
- prevItems = nextItems;
550
- keyMap = null;
551
- nextItems = null;
552
- return;
553
- }
554
- while (start <= newLength) {
555
- const newChd = nextItems[start];
556
- const oldChd = prevItems[start];
557
- if (newChd === oldChd) {
558
- start++;
559
- continue;
560
- }
561
- if (oldChd === undefined) {
562
- parent.appendChild(render(newChd));
563
- start++;
564
- continue;
565
- }
566
- const mappedOld = keyMap.get(newChd);
567
- if (mappedOld) {
568
- const oldDom = childNodeList[start];
569
- const { el, item } = mappedOld;
570
- if (oldDom !== el) {
571
- const tmp = el.nextSibling;
572
- parent.insertBefore(el, oldDom);
573
- parent.insertBefore(oldDom, tmp);
574
- }
575
- else if (item !== newChd) {
576
- replaceWith(newChd, el, render);
577
- }
578
- keyMap.delete(newChd);
579
- }
580
- else if (oldChd !== newChd) {
581
- parent.insertBefore(render(newChd), childNodeList[start]);
582
- }
583
- start++;
584
- }
585
- for (const { el } of keyMap.values()) {
586
- shallowTeardown(el);
587
- el.remove();
445
+ let parent;
446
+ let outlet = document.createDocumentFragment();
447
+ let prevItems;
448
+ const startBookend = document.createComment("") as any;
449
+ const endBookend = document.createComment("") as any;
450
+ startBookend.$frag = outlet;
451
+ startBookend.$end = endBookend;
452
+ const render = props.render;
453
+
454
+ staticEffect(() => {
455
+ parent = startBookend.parentNode;
456
+ if (!parent) {
457
+ prevItems = props.items();
458
+ outlet.append(startBookend, ...prevItems.map(render), endBookend);
459
+ return;
460
+ }
461
+ let nextItems = props.items();
462
+ let newLength = nextItems.length;
463
+ let oldLength = prevItems.length;
464
+ if (!oldLength && newLength) {
465
+ endBookend.before(...nextItems.map(render))
466
+ prevItems = nextItems;
467
+ nextItems = null;
468
+ return;
469
+ }
470
+ const childNodeList = parent.childNodes as NodeListOf<ChildNode>;
471
+ const childNodes = Array.from(childNodeList);
472
+ if (!newLength) {
473
+ const end = childNodeList.length - 1;
474
+ for (let i = 1; i < end; i++) {
475
+ shallowTeardown(childNodeList[i]);
476
+ }
477
+ parent.textContent = "";
478
+ parent.appendChild(startBookend);
479
+ parent.appendChild(endBookend);
480
+ prevItems = nextItems;
481
+ nextItems = null;
482
+ return;
483
+ }
484
+
485
+ let start = nextItems.findIndex((item, index) => prevItems[index] !== item);
486
+ if (start === oldLength) {
487
+ endBookend.before(...nextItems.slice(start).map(render));
488
+ prevItems = nextItems;
489
+ nextItems = null;
490
+ return;
491
+ }
492
+
493
+ if (start < 0) {
494
+ for (let i = nextItems.length; i < oldLength; i++) {
495
+ const e = childNodes[1 + --oldLength];
496
+ shallowTeardown(e);
497
+ e.remove();
498
+ }
499
+ prevItems = nextItems;
500
+ nextItems = null;
501
+ return;
502
+ }
503
+
504
+ if (start >= newLength) {
505
+ while (start < oldLength) {
506
+ const e = childNodes[1 + --oldLength];
507
+ shallowTeardown(e);
508
+ e.remove();
509
+ }
510
+ prevItems = nextItems;
511
+ nextItems = null;
512
+ return;
513
+ }
514
+
515
+ // suffix
516
+ for (
517
+ oldLength--, newLength--;
518
+ newLength > start &&
519
+ oldLength >= start &&
520
+ nextItems[newLength] === prevItems[oldLength];
521
+ oldLength--, newLength--
522
+ );
523
+
524
+ const nextKeys = new Set(nextItems);
525
+ const removalQueue = [];
526
+ for (let i = start; i <= oldLength; i++) {
527
+ if (!nextKeys.has(prevItems[i])) {
528
+ const ch = childNodes[i + 1];
529
+ shallowTeardown(ch);
530
+ removalQueue.push(ch);
531
+ childNodes[i + 1] = null;
532
+ }
533
+ }
534
+ if (removalQueue.length === prevItems.length) {
535
+ parent.textContent = "";
536
+ parent.append(startBookend, ...nextItems.map(render), endBookend);
537
+ prevItems = nextItems;
538
+ nextItems = null;
539
+ return;
540
+ }
541
+ for (const e of removalQueue) {
542
+ e.remove();
543
+ }
544
+ let keyMap = new Map();
545
+ for (let i = start; i <= oldLength; i++) {
546
+ if (
547
+ childNodes[i + 1] &&
548
+ (!nextItems[i] ||
549
+ prevItems[i] !== nextItems[i])
550
+ ) {
551
+ keyMap.set(prevItems[i], {
552
+ el: childNodes[i + 1],
553
+ item: prevItems[i],
554
+ });
555
+ }
556
+ }
557
+ if (newLength === oldLength && keyMap.size > (newLength - start + 1) / 2) {
558
+ const lastOrdered = childNodes[start];
559
+ const set = [];
560
+ for (let i = start; i <= newLength; i++) {
561
+ set.push(keyMap.get(nextItems[i])?.el ?? childNodes[i + 1]);
562
+ }
563
+ lastOrdered.after(...set);
564
+ prevItems = nextItems;
565
+ keyMap = null;
566
+ nextItems = null;
567
+ return;
568
+ }
569
+
570
+ while (start <= newLength) {
571
+ const newChd = nextItems[start];
572
+ const oldChd = prevItems[start];
573
+ if (newChd === oldChd) {
574
+ start++;
575
+ continue;
576
+ }
577
+ if (oldChd === undefined) {
578
+ parent.insertBefore(render(newChd), endBookend);
579
+ start++;
580
+ continue;
581
+ }
582
+ const mappedOld = keyMap.get(newChd);
583
+ if (mappedOld) {
584
+ const oldDom = childNodeList[start + 1];
585
+ const { el, item } = mappedOld;
586
+ if (oldDom !== el) {
587
+ const tmp = el.nextSibling;
588
+ parent.insertBefore(el, oldDom);
589
+ parent.insertBefore(oldDom, tmp);
590
+ } else if (item !== newChd) {
591
+ replaceWith(newChd, el, render);
588
592
  }
589
- keyMap = null;
590
- prevItems = nextItems;
591
- nextItems = null;
592
- });
593
- return outlet;
593
+ keyMap.delete(newChd);
594
+ } else if (oldChd !== newChd) {
595
+ parent.insertBefore(render(newChd), childNodeList[start + 1]);
596
+ }
597
+ start++;
598
+ }
599
+ for (const { el } of keyMap.values()) {
600
+ shallowTeardown(el);
601
+ el.remove();
602
+ }
603
+ keyMap = null;
604
+ prevItems = nextItems;
605
+ nextItems = null;
606
+ });
607
+ return outlet;
594
608
  }
595
609
 
@@ -1 +1 @@
1
- {"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.dom.asynciterable.d.ts","./node_modules/typescript/lib/lib.webworker.importscripts.d.ts","./node_modules/typescript/lib/lib.scripthost.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/typescript/lib/lib.es2020.full.d.ts","./src/signals.ts","./src/element.ts","./src/index.ts","./src/router.ts","./node_modules/@types/deep-eql/index.d.ts","./node_modules/@types/chai/index.d.ts","./node_modules/@types/estree/index.d.ts"],"fileIdsList":[[56],[52],[52,53],[53]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1305d1e76ca44e30fb8b2b8075fa522b83f60c0bcf5d4326a9d2cf79b53724f8","impliedFormat":1},{"version":"79dbd3ec429b462e492545a6f425e1aa821182605661a9a5be85919b10a186b9","signature":"4210658b4568adf9a13d7f1e613e59ad77a89432921d6a341269c66196c08735"},{"version":"7c12e61629ad437da175c2613501423b4edf7ae978c26fa160dfda9b96a26ac2","signature":"1e9fd227702d856993cc7d708cc104bcbea5c070fbf976204a77c36457b1342e"},{"version":"25ffe7c7a256b3e2b6238eec671c905d906a78e09add2d36de8e13ea4786818e","signature":"6b7d6f21cf40139e4c2c800b252da7b9fa09606a4da0f5efbebd80de474740c2"},{"version":"23e3a2d8ef7695586b582f6366a28b1404801ada9a0c82d895f19344f8100ea5","signature":"a32c52a25b47067dac589266e7667623ea1ef2b0c1f9c4fd41adbc7b67a59eee"},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true,"impliedFormat":99},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1}],"root":[[52,55]],"options":{"allowJs":true,"checkJs":false,"composite":true,"esModuleInterop":true,"module":99,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"target":7},"referencedMap":[[57,1],[53,2],[54,3],[55,3],[52,4]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.8.3"}
1
+ {"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.dom.asynciterable.d.ts","./node_modules/typescript/lib/lib.webworker.importscripts.d.ts","./node_modules/typescript/lib/lib.scripthost.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/typescript/lib/lib.es2020.full.d.ts","./src/signals.ts","./src/element.ts","./src/index.ts","./src/router.ts","./node_modules/@types/deep-eql/index.d.ts","./node_modules/@types/chai/index.d.ts","./node_modules/@types/estree/index.d.ts"],"fileIdsList":[[56],[52],[52,53],[53]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1305d1e76ca44e30fb8b2b8075fa522b83f60c0bcf5d4326a9d2cf79b53724f8","impliedFormat":1},{"version":"79dbd3ec429b462e492545a6f425e1aa821182605661a9a5be85919b10a186b9","signature":"4210658b4568adf9a13d7f1e613e59ad77a89432921d6a341269c66196c08735"},{"version":"0d83c1035235c536171f0f2714f72e69f4122673c6a486c0e4c8f576ec4d1b33","signature":"1e9fd227702d856993cc7d708cc104bcbea5c070fbf976204a77c36457b1342e"},{"version":"25ffe7c7a256b3e2b6238eec671c905d906a78e09add2d36de8e13ea4786818e","signature":"6b7d6f21cf40139e4c2c800b252da7b9fa09606a4da0f5efbebd80de474740c2"},{"version":"23e3a2d8ef7695586b582f6366a28b1404801ada9a0c82d895f19344f8100ea5","signature":"a32c52a25b47067dac589266e7667623ea1ef2b0c1f9c4fd41adbc7b67a59eee"},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true,"impliedFormat":99},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1}],"root":[[52,55]],"options":{"allowJs":true,"checkJs":false,"composite":true,"esModuleInterop":true,"module":99,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"target":7},"referencedMap":[[57,1],[53,2],[54,3],[55,3],[52,4]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.8.3"}