@thyn/core 0.0.173 → 0.0.175
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 +40 -29
- package/package.json +1 -1
- package/src/element.ts +177 -155
- package/tsconfig.tsbuildinfo +1 -1
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 ?
|
|
246
|
+
const teardownNode = terminal ? shallowTeardown : teardown;
|
|
247
247
|
let parent;
|
|
248
248
|
let outlet = document.createDocumentFragment();
|
|
249
249
|
let prevItems;
|
|
@@ -271,19 +271,21 @@ 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
|
}
|
|
280
282
|
parent.textContent = "";
|
|
281
|
-
parent.
|
|
282
|
-
parent.appendChild(endBookend);
|
|
283
|
+
parent.append(startBookend, endBookend);
|
|
283
284
|
}
|
|
284
285
|
else {
|
|
285
286
|
const removalQueue = [];
|
|
286
|
-
|
|
287
|
+
const end = prevItems.length + 1;
|
|
288
|
+
for (let i = offset; i < end; i++) {
|
|
287
289
|
const ch = childNodeList[i];
|
|
288
290
|
teardownNode(ch);
|
|
289
291
|
removalQueue.push(ch);
|
|
@@ -303,8 +305,6 @@ export function list(props, terminal = false) {
|
|
|
303
305
|
nextItems = null;
|
|
304
306
|
return;
|
|
305
307
|
}
|
|
306
|
-
const childNodes = Array.from(childNodeList);
|
|
307
|
-
const offset = childNodes.indexOf(startBookend) + 1;
|
|
308
308
|
if (start < 0) {
|
|
309
309
|
for (let i = nextItems.length; i < oldLength; i++) {
|
|
310
310
|
const e = childNodes[offset + --oldLength];
|
|
@@ -350,6 +350,11 @@ export function list(props, terminal = false) {
|
|
|
350
350
|
for (const e of removalQueue) {
|
|
351
351
|
remove(e);
|
|
352
352
|
}
|
|
353
|
+
if (oldLength - start === removalQueue.length) {
|
|
354
|
+
prevItems = nextItems;
|
|
355
|
+
nextItems = null;
|
|
356
|
+
return;
|
|
357
|
+
}
|
|
353
358
|
let keyMap = new Map();
|
|
354
359
|
for (let i = start; i <= oldLength; i++) {
|
|
355
360
|
if (childNodes[i + offset] &&
|
|
@@ -417,50 +422,51 @@ export function list(props, terminal = false) {
|
|
|
417
422
|
export function isolatedTerminalList(props) {
|
|
418
423
|
let parent;
|
|
419
424
|
let outlet = document.createDocumentFragment();
|
|
420
|
-
const placeholder = document.createComment("");
|
|
421
425
|
let prevItems;
|
|
426
|
+
const startBookend = document.createComment("");
|
|
427
|
+
const endBookend = document.createComment("");
|
|
428
|
+
startBookend.$frag = outlet;
|
|
429
|
+
startBookend.$end = endBookend;
|
|
422
430
|
const render = props.render;
|
|
423
431
|
staticEffect(() => {
|
|
424
|
-
parent
|
|
432
|
+
parent = startBookend.parentNode;
|
|
425
433
|
if (!parent) {
|
|
426
434
|
prevItems = props.items();
|
|
427
|
-
outlet.append(
|
|
435
|
+
outlet.append(startBookend, ...prevItems.map(render), endBookend);
|
|
428
436
|
return;
|
|
429
437
|
}
|
|
430
|
-
else {
|
|
431
|
-
placeholder.remove();
|
|
432
|
-
}
|
|
433
438
|
let nextItems = props.items();
|
|
434
439
|
let newLength = nextItems.length;
|
|
435
440
|
let oldLength = prevItems.length;
|
|
436
441
|
if (!oldLength && newLength) {
|
|
437
|
-
|
|
442
|
+
endBookend.before(...nextItems.map(render));
|
|
438
443
|
prevItems = nextItems;
|
|
439
444
|
nextItems = null;
|
|
440
445
|
return;
|
|
441
446
|
}
|
|
442
447
|
const childNodeList = parent.childNodes;
|
|
448
|
+
const childNodes = Array.from(childNodeList);
|
|
443
449
|
if (!newLength) {
|
|
444
450
|
const end = childNodeList.length - 1;
|
|
445
|
-
for (let i =
|
|
451
|
+
for (let i = 1; i < end; i++) {
|
|
446
452
|
shallowTeardown(childNodeList[i]);
|
|
447
453
|
}
|
|
448
454
|
parent.textContent = "";
|
|
455
|
+
parent.append(startBookend, endBookend);
|
|
449
456
|
prevItems = nextItems;
|
|
450
457
|
nextItems = null;
|
|
451
458
|
return;
|
|
452
459
|
}
|
|
453
460
|
let start = nextItems.findIndex((item, index) => prevItems[index] !== item);
|
|
454
461
|
if (start === oldLength) {
|
|
455
|
-
|
|
462
|
+
endBookend.before(...nextItems.slice(start).map(render));
|
|
456
463
|
prevItems = nextItems;
|
|
457
464
|
nextItems = null;
|
|
458
465
|
return;
|
|
459
466
|
}
|
|
460
|
-
const childNodes = Array.from(childNodeList);
|
|
461
467
|
if (start < 0) {
|
|
462
468
|
for (let i = nextItems.length; i < oldLength; i++) {
|
|
463
|
-
const e = childNodes[--oldLength];
|
|
469
|
+
const e = childNodes[1 + --oldLength];
|
|
464
470
|
shallowTeardown(e);
|
|
465
471
|
e.remove();
|
|
466
472
|
}
|
|
@@ -470,7 +476,7 @@ export function isolatedTerminalList(props) {
|
|
|
470
476
|
}
|
|
471
477
|
if (start >= newLength) {
|
|
472
478
|
while (start < oldLength) {
|
|
473
|
-
const e = childNodes[--oldLength];
|
|
479
|
+
const e = childNodes[1 + --oldLength];
|
|
474
480
|
shallowTeardown(e);
|
|
475
481
|
e.remove();
|
|
476
482
|
}
|
|
@@ -487,15 +493,15 @@ export function isolatedTerminalList(props) {
|
|
|
487
493
|
const removalQueue = [];
|
|
488
494
|
for (let i = start; i <= oldLength; i++) {
|
|
489
495
|
if (!nextKeys.has(prevItems[i])) {
|
|
490
|
-
const ch = childNodes[i];
|
|
496
|
+
const ch = childNodes[i + 1];
|
|
491
497
|
shallowTeardown(ch);
|
|
492
498
|
removalQueue.push(ch);
|
|
493
|
-
childNodes[i] = null;
|
|
499
|
+
childNodes[i + 1] = null;
|
|
494
500
|
}
|
|
495
501
|
}
|
|
496
502
|
if (removalQueue.length === prevItems.length) {
|
|
497
503
|
parent.textContent = "";
|
|
498
|
-
parent.append(...nextItems.map(render));
|
|
504
|
+
parent.append(startBookend, ...nextItems.map(render), endBookend);
|
|
499
505
|
prevItems = nextItems;
|
|
500
506
|
nextItems = null;
|
|
501
507
|
return;
|
|
@@ -503,22 +509,27 @@ export function isolatedTerminalList(props) {
|
|
|
503
509
|
for (const e of removalQueue) {
|
|
504
510
|
e.remove();
|
|
505
511
|
}
|
|
512
|
+
if (oldLength - start === removalQueue.length) {
|
|
513
|
+
prevItems = nextItems;
|
|
514
|
+
nextItems = null;
|
|
515
|
+
return;
|
|
516
|
+
}
|
|
506
517
|
let keyMap = new Map();
|
|
507
518
|
for (let i = start; i <= oldLength; i++) {
|
|
508
|
-
if (childNodes[i] &&
|
|
519
|
+
if (childNodes[i + 1] &&
|
|
509
520
|
(!nextItems[i] ||
|
|
510
521
|
prevItems[i] !== nextItems[i])) {
|
|
511
522
|
keyMap.set(prevItems[i], {
|
|
512
|
-
el: childNodes[i],
|
|
523
|
+
el: childNodes[i + 1],
|
|
513
524
|
item: prevItems[i],
|
|
514
525
|
});
|
|
515
526
|
}
|
|
516
527
|
}
|
|
517
528
|
if (newLength === oldLength && keyMap.size > (newLength - start + 1) / 2) {
|
|
518
|
-
const lastOrdered = childNodes[start
|
|
529
|
+
const lastOrdered = childNodes[start];
|
|
519
530
|
const set = [];
|
|
520
531
|
for (let i = start; i <= newLength; i++) {
|
|
521
|
-
set.push(keyMap.get(nextItems[i])?.el ?? childNodes[i]);
|
|
532
|
+
set.push(keyMap.get(nextItems[i])?.el ?? childNodes[i + 1]);
|
|
522
533
|
}
|
|
523
534
|
lastOrdered.after(...set);
|
|
524
535
|
prevItems = nextItems;
|
|
@@ -534,13 +545,13 @@ export function isolatedTerminalList(props) {
|
|
|
534
545
|
continue;
|
|
535
546
|
}
|
|
536
547
|
if (oldChd === undefined) {
|
|
537
|
-
parent.
|
|
548
|
+
parent.insertBefore(render(newChd), endBookend);
|
|
538
549
|
start++;
|
|
539
550
|
continue;
|
|
540
551
|
}
|
|
541
552
|
const mappedOld = keyMap.get(newChd);
|
|
542
553
|
if (mappedOld) {
|
|
543
|
-
const oldDom = childNodeList[start];
|
|
554
|
+
const oldDom = childNodeList[start + 1];
|
|
544
555
|
const { el, item } = mappedOld;
|
|
545
556
|
if (oldDom !== el) {
|
|
546
557
|
const tmp = el.nextSibling;
|
|
@@ -553,7 +564,7 @@ export function isolatedTerminalList(props) {
|
|
|
553
564
|
keyMap.delete(newChd);
|
|
554
565
|
}
|
|
555
566
|
else if (oldChd !== newChd) {
|
|
556
|
-
parent.insertBefore(render(newChd), childNodeList[start]);
|
|
567
|
+
parent.insertBefore(render(newChd), childNodeList[start + 1]);
|
|
557
568
|
}
|
|
558
569
|
start++;
|
|
559
570
|
}
|
package/package.json
CHANGED
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 ?
|
|
262
|
+
const teardownNode = terminal ? shallowTeardown : teardown;
|
|
263
263
|
let parent;
|
|
264
264
|
let outlet = document.createDocumentFragment();
|
|
265
265
|
let prevItems;
|
|
@@ -288,18 +288,20 @@ 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
|
}
|
|
297
299
|
parent.textContent = "";
|
|
298
|
-
parent.
|
|
299
|
-
parent.appendChild(endBookend);
|
|
300
|
+
parent.append(startBookend, endBookend);
|
|
300
301
|
} else {
|
|
301
302
|
const removalQueue = [];
|
|
302
|
-
|
|
303
|
+
const end = prevItems.length + 1;
|
|
304
|
+
for (let i = offset; i < end; i++) {
|
|
303
305
|
const ch = childNodeList[i];
|
|
304
306
|
teardownNode(ch);
|
|
305
307
|
removalQueue.push(ch);
|
|
@@ -321,8 +323,6 @@ export function list(props, terminal = false) {
|
|
|
321
323
|
return;
|
|
322
324
|
}
|
|
323
325
|
|
|
324
|
-
const childNodes = Array.from(childNodeList);
|
|
325
|
-
const offset = childNodes.indexOf(startBookend) + 1;
|
|
326
326
|
if (start < 0) {
|
|
327
327
|
for (let i = nextItems.length; i < oldLength; i++) {
|
|
328
328
|
const e = childNodes[offset + --oldLength];
|
|
@@ -374,6 +374,11 @@ export function list(props, terminal = false) {
|
|
|
374
374
|
for (const e of removalQueue) {
|
|
375
375
|
remove(e);
|
|
376
376
|
}
|
|
377
|
+
if (oldLength - start === removalQueue.length) {
|
|
378
|
+
prevItems = nextItems;
|
|
379
|
+
nextItems = null;
|
|
380
|
+
return;
|
|
381
|
+
}
|
|
377
382
|
let keyMap = new Map();
|
|
378
383
|
for (let i = start; i <= oldLength; i++) {
|
|
379
384
|
if (
|
|
@@ -441,155 +446,172 @@ export function list(props, terminal = false) {
|
|
|
441
446
|
}
|
|
442
447
|
|
|
443
448
|
export function isolatedTerminalList(props) {
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
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();
|
|
588
|
-
}
|
|
589
|
-
keyMap = null;
|
|
449
|
+
let parent;
|
|
450
|
+
let outlet = document.createDocumentFragment();
|
|
451
|
+
let prevItems;
|
|
452
|
+
const startBookend = document.createComment("") as any;
|
|
453
|
+
const endBookend = document.createComment("") as any;
|
|
454
|
+
startBookend.$frag = outlet;
|
|
455
|
+
startBookend.$end = endBookend;
|
|
456
|
+
const render = props.render;
|
|
457
|
+
|
|
458
|
+
staticEffect(() => {
|
|
459
|
+
parent = startBookend.parentNode;
|
|
460
|
+
if (!parent) {
|
|
461
|
+
prevItems = props.items();
|
|
462
|
+
outlet.append(startBookend, ...prevItems.map(render), endBookend);
|
|
463
|
+
return;
|
|
464
|
+
}
|
|
465
|
+
let nextItems = props.items();
|
|
466
|
+
let newLength = nextItems.length;
|
|
467
|
+
let oldLength = prevItems.length;
|
|
468
|
+
if (!oldLength && newLength) {
|
|
469
|
+
endBookend.before(...nextItems.map(render))
|
|
470
|
+
prevItems = nextItems;
|
|
471
|
+
nextItems = null;
|
|
472
|
+
return;
|
|
473
|
+
}
|
|
474
|
+
const childNodeList = parent.childNodes as NodeListOf<ChildNode>;
|
|
475
|
+
const childNodes = Array.from(childNodeList);
|
|
476
|
+
if (!newLength) {
|
|
477
|
+
const end = childNodeList.length - 1;
|
|
478
|
+
for (let i = 1; i < end; i++) {
|
|
479
|
+
shallowTeardown(childNodeList[i]);
|
|
480
|
+
}
|
|
481
|
+
parent.textContent = "";
|
|
482
|
+
parent.append(startBookend, endBookend);
|
|
483
|
+
prevItems = nextItems;
|
|
484
|
+
nextItems = null;
|
|
485
|
+
return;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
let start = nextItems.findIndex((item, index) => prevItems[index] !== item);
|
|
489
|
+
if (start === oldLength) {
|
|
490
|
+
endBookend.before(...nextItems.slice(start).map(render));
|
|
491
|
+
prevItems = nextItems;
|
|
492
|
+
nextItems = null;
|
|
493
|
+
return;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
if (start < 0) {
|
|
497
|
+
for (let i = nextItems.length; i < oldLength; i++) {
|
|
498
|
+
const e = childNodes[1 + --oldLength];
|
|
499
|
+
shallowTeardown(e);
|
|
500
|
+
e.remove();
|
|
501
|
+
}
|
|
502
|
+
prevItems = nextItems;
|
|
503
|
+
nextItems = null;
|
|
504
|
+
return;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
if (start >= newLength) {
|
|
508
|
+
while (start < oldLength) {
|
|
509
|
+
const e = childNodes[1 + --oldLength];
|
|
510
|
+
shallowTeardown(e);
|
|
511
|
+
e.remove();
|
|
512
|
+
}
|
|
513
|
+
prevItems = nextItems;
|
|
514
|
+
nextItems = null;
|
|
515
|
+
return;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
// suffix
|
|
519
|
+
for (
|
|
520
|
+
oldLength--, newLength--;
|
|
521
|
+
newLength > start &&
|
|
522
|
+
oldLength >= start &&
|
|
523
|
+
nextItems[newLength] === prevItems[oldLength];
|
|
524
|
+
oldLength--, newLength--
|
|
525
|
+
);
|
|
526
|
+
|
|
527
|
+
const nextKeys = new Set(nextItems);
|
|
528
|
+
const removalQueue = [];
|
|
529
|
+
for (let i = start; i <= oldLength; i++) {
|
|
530
|
+
if (!nextKeys.has(prevItems[i])) {
|
|
531
|
+
const ch = childNodes[i + 1];
|
|
532
|
+
shallowTeardown(ch);
|
|
533
|
+
removalQueue.push(ch);
|
|
534
|
+
childNodes[i + 1] = null;
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
if (removalQueue.length === prevItems.length) {
|
|
538
|
+
parent.textContent = "";
|
|
539
|
+
parent.append(startBookend, ...nextItems.map(render), endBookend);
|
|
540
|
+
prevItems = nextItems;
|
|
541
|
+
nextItems = null;
|
|
542
|
+
return;
|
|
543
|
+
}
|
|
544
|
+
for (const e of removalQueue) {
|
|
545
|
+
e.remove();
|
|
546
|
+
}
|
|
547
|
+
if (oldLength - start === removalQueue.length) {
|
|
590
548
|
prevItems = nextItems;
|
|
591
549
|
nextItems = null;
|
|
592
|
-
|
|
593
|
-
|
|
550
|
+
return;
|
|
551
|
+
}
|
|
552
|
+
let keyMap = new Map();
|
|
553
|
+
for (let i = start; i <= oldLength; i++) {
|
|
554
|
+
if (
|
|
555
|
+
childNodes[i + 1] &&
|
|
556
|
+
(!nextItems[i] ||
|
|
557
|
+
prevItems[i] !== nextItems[i])
|
|
558
|
+
) {
|
|
559
|
+
keyMap.set(prevItems[i], {
|
|
560
|
+
el: childNodes[i + 1],
|
|
561
|
+
item: prevItems[i],
|
|
562
|
+
});
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
if (newLength === oldLength && keyMap.size > (newLength - start + 1) / 2) {
|
|
566
|
+
const lastOrdered = childNodes[start];
|
|
567
|
+
const set = [];
|
|
568
|
+
for (let i = start; i <= newLength; i++) {
|
|
569
|
+
set.push(keyMap.get(nextItems[i])?.el ?? childNodes[i + 1]);
|
|
570
|
+
}
|
|
571
|
+
lastOrdered.after(...set);
|
|
572
|
+
prevItems = nextItems;
|
|
573
|
+
keyMap = null;
|
|
574
|
+
nextItems = null;
|
|
575
|
+
return;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
while (start <= newLength) {
|
|
579
|
+
const newChd = nextItems[start];
|
|
580
|
+
const oldChd = prevItems[start];
|
|
581
|
+
if (newChd === oldChd) {
|
|
582
|
+
start++;
|
|
583
|
+
continue;
|
|
584
|
+
}
|
|
585
|
+
if (oldChd === undefined) {
|
|
586
|
+
parent.insertBefore(render(newChd), endBookend);
|
|
587
|
+
start++;
|
|
588
|
+
continue;
|
|
589
|
+
}
|
|
590
|
+
const mappedOld = keyMap.get(newChd);
|
|
591
|
+
if (mappedOld) {
|
|
592
|
+
const oldDom = childNodeList[start + 1];
|
|
593
|
+
const { el, item } = mappedOld;
|
|
594
|
+
if (oldDom !== el) {
|
|
595
|
+
const tmp = el.nextSibling;
|
|
596
|
+
parent.insertBefore(el, oldDom);
|
|
597
|
+
parent.insertBefore(oldDom, tmp);
|
|
598
|
+
} else if (item !== newChd) {
|
|
599
|
+
replaceWith(newChd, el, render);
|
|
600
|
+
}
|
|
601
|
+
keyMap.delete(newChd);
|
|
602
|
+
} else if (oldChd !== newChd) {
|
|
603
|
+
parent.insertBefore(render(newChd), childNodeList[start + 1]);
|
|
604
|
+
}
|
|
605
|
+
start++;
|
|
606
|
+
}
|
|
607
|
+
for (const { el } of keyMap.values()) {
|
|
608
|
+
shallowTeardown(el);
|
|
609
|
+
el.remove();
|
|
610
|
+
}
|
|
611
|
+
keyMap = null;
|
|
612
|
+
prevItems = nextItems;
|
|
613
|
+
nextItems = null;
|
|
614
|
+
});
|
|
615
|
+
return outlet;
|
|
594
616
|
}
|
|
595
617
|
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -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":"2ce971f3745b08d49bc0d5068ebfc9915e71bb6b4a0c750f1583e03586b2fe98","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"}
|