@genesislcap/foundation-utils 14.165.2 → 14.166.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/custom-elements.json +259 -259
- package/package.json +10 -10
|
@@ -151,6 +151,29 @@
|
|
|
151
151
|
}
|
|
152
152
|
]
|
|
153
153
|
},
|
|
154
|
+
{
|
|
155
|
+
"kind": "javascript-module",
|
|
156
|
+
"path": "src/directives/index.ts",
|
|
157
|
+
"declarations": [],
|
|
158
|
+
"exports": [
|
|
159
|
+
{
|
|
160
|
+
"kind": "js",
|
|
161
|
+
"name": "*",
|
|
162
|
+
"declaration": {
|
|
163
|
+
"name": "*",
|
|
164
|
+
"package": "./sync"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"kind": "js",
|
|
169
|
+
"name": "*",
|
|
170
|
+
"declaration": {
|
|
171
|
+
"name": "*",
|
|
172
|
+
"package": "./when-else"
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
]
|
|
176
|
+
},
|
|
154
177
|
{
|
|
155
178
|
"kind": "javascript-module",
|
|
156
179
|
"path": "src/data/inMemoryDatabase.ts",
|
|
@@ -351,95 +374,191 @@
|
|
|
351
374
|
},
|
|
352
375
|
{
|
|
353
376
|
"kind": "javascript-module",
|
|
354
|
-
"path": "src/
|
|
355
|
-
"declarations": [],
|
|
356
|
-
"exports": [
|
|
357
|
-
{
|
|
358
|
-
"kind": "js",
|
|
359
|
-
"name": "*",
|
|
360
|
-
"declaration": {
|
|
361
|
-
"name": "*",
|
|
362
|
-
"package": "./renderOnChange"
|
|
363
|
-
}
|
|
364
|
-
}
|
|
365
|
-
]
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"kind": "javascript-module",
|
|
369
|
-
"path": "src/decorators/renderOnChange.ts",
|
|
377
|
+
"path": "src/error/errorMap.ts",
|
|
370
378
|
"declarations": [
|
|
371
379
|
{
|
|
372
|
-
"kind": "
|
|
373
|
-
"
|
|
374
|
-
"
|
|
380
|
+
"kind": "class",
|
|
381
|
+
"description": "",
|
|
382
|
+
"name": "DefaultErrorMap",
|
|
383
|
+
"members": [
|
|
375
384
|
{
|
|
376
|
-
"
|
|
385
|
+
"kind": "field",
|
|
386
|
+
"name": "map",
|
|
387
|
+
"privacy": "private",
|
|
388
|
+
"default": "new Map<keyof TErrorDetailMap, Error>()"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"kind": "field",
|
|
392
|
+
"name": "lastError",
|
|
377
393
|
"type": {
|
|
378
|
-
"text": "
|
|
394
|
+
"text": "Error"
|
|
379
395
|
},
|
|
380
|
-
"description": "
|
|
396
|
+
"description": "{@inheritDoc ErrorMap.lastError}"
|
|
381
397
|
},
|
|
382
398
|
{
|
|
383
|
-
"
|
|
399
|
+
"kind": "method",
|
|
400
|
+
"name": "set",
|
|
401
|
+
"return": {
|
|
402
|
+
"type": {
|
|
403
|
+
"text": "void"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"parameters": [
|
|
407
|
+
{
|
|
408
|
+
"name": "key",
|
|
409
|
+
"type": {
|
|
410
|
+
"text": "keyof TErrorDetailMap"
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"name": "error",
|
|
415
|
+
"type": {
|
|
416
|
+
"text": "Error"
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
],
|
|
420
|
+
"description": "{@inheritDoc ErrorMap.set}"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"kind": "method",
|
|
424
|
+
"name": "get",
|
|
425
|
+
"return": {
|
|
426
|
+
"type": {
|
|
427
|
+
"text": ""
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"parameters": [
|
|
431
|
+
{
|
|
432
|
+
"name": "key",
|
|
433
|
+
"type": {
|
|
434
|
+
"text": "keyof TErrorDetailMap"
|
|
435
|
+
},
|
|
436
|
+
"description": "The key."
|
|
437
|
+
}
|
|
438
|
+
],
|
|
439
|
+
"description": "Get an error by key.",
|
|
440
|
+
"privacy": "public"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"kind": "method",
|
|
444
|
+
"name": "has",
|
|
445
|
+
"return": {
|
|
446
|
+
"type": {
|
|
447
|
+
"text": ""
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
"parameters": [
|
|
451
|
+
{
|
|
452
|
+
"name": "key",
|
|
453
|
+
"type": {
|
|
454
|
+
"text": "keyof TErrorDetailMap"
|
|
455
|
+
},
|
|
456
|
+
"description": "The key."
|
|
457
|
+
}
|
|
458
|
+
],
|
|
459
|
+
"description": "Has an error for key.",
|
|
460
|
+
"privacy": "public"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"kind": "method",
|
|
464
|
+
"name": "delete",
|
|
465
|
+
"return": {
|
|
466
|
+
"type": {
|
|
467
|
+
"text": ""
|
|
468
|
+
}
|
|
469
|
+
},
|
|
470
|
+
"parameters": [
|
|
471
|
+
{
|
|
472
|
+
"name": "key",
|
|
473
|
+
"type": {
|
|
474
|
+
"text": "keyof TErrorDetailMap"
|
|
475
|
+
},
|
|
476
|
+
"description": "The key."
|
|
477
|
+
}
|
|
478
|
+
],
|
|
479
|
+
"description": "Delete an error.",
|
|
480
|
+
"privacy": "public"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"kind": "method",
|
|
484
|
+
"name": "clear",
|
|
485
|
+
"description": "Clear errors.",
|
|
486
|
+
"privacy": "public"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"kind": "field",
|
|
490
|
+
"name": "size",
|
|
491
|
+
"type": {
|
|
492
|
+
"text": "number"
|
|
493
|
+
},
|
|
494
|
+
"description": "The size of the error map.",
|
|
495
|
+
"return": {
|
|
496
|
+
"type": {
|
|
497
|
+
"text": ""
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
"privacy": "public",
|
|
501
|
+
"readonly": true
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"kind": "method",
|
|
505
|
+
"name": "values",
|
|
506
|
+
"privacy": "public"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"kind": "field",
|
|
510
|
+
"name": "messages",
|
|
384
511
|
"type": {
|
|
385
512
|
"text": "string"
|
|
386
513
|
},
|
|
387
|
-
"description": "
|
|
514
|
+
"description": "{@inheritDoc ErrorMap.messages}",
|
|
515
|
+
"readonly": true
|
|
388
516
|
}
|
|
389
|
-
]
|
|
390
|
-
|
|
391
|
-
"privacy": "public"
|
|
392
|
-
}
|
|
393
|
-
],
|
|
394
|
-
"exports": [
|
|
395
|
-
{
|
|
396
|
-
"kind": "js",
|
|
397
|
-
"name": "renderOnChange",
|
|
398
|
-
"declaration": {
|
|
399
|
-
"name": "renderOnChange",
|
|
400
|
-
"module": "src/decorators/renderOnChange.ts"
|
|
401
|
-
}
|
|
402
|
-
}
|
|
403
|
-
]
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
"kind": "javascript-module",
|
|
407
|
-
"path": "src/design-system/design-system.ts",
|
|
408
|
-
"declarations": [
|
|
517
|
+
]
|
|
518
|
+
},
|
|
409
519
|
{
|
|
410
520
|
"kind": "function",
|
|
411
|
-
"name": "
|
|
521
|
+
"name": "createErrorMap",
|
|
412
522
|
"return": {
|
|
413
523
|
"type": {
|
|
414
|
-
"text": "
|
|
524
|
+
"text": ""
|
|
415
525
|
}
|
|
416
526
|
},
|
|
417
527
|
"parameters": [
|
|
418
528
|
{
|
|
419
|
-
"name": "
|
|
529
|
+
"name": "logger",
|
|
420
530
|
"type": {
|
|
421
|
-
"text": "
|
|
422
|
-
}
|
|
531
|
+
"text": "ErrorMapLogger"
|
|
532
|
+
},
|
|
533
|
+
"description": "A logger error method reference."
|
|
423
534
|
}
|
|
424
535
|
],
|
|
425
|
-
"description": "
|
|
536
|
+
"description": "A factory to create the error map.",
|
|
426
537
|
"privacy": "public"
|
|
427
538
|
}
|
|
428
539
|
],
|
|
429
540
|
"exports": [
|
|
430
541
|
{
|
|
431
542
|
"kind": "js",
|
|
432
|
-
"name": "
|
|
543
|
+
"name": "DefaultErrorMap",
|
|
433
544
|
"declaration": {
|
|
434
|
-
"name": "
|
|
435
|
-
"module": "src/
|
|
545
|
+
"name": "DefaultErrorMap",
|
|
546
|
+
"module": "src/error/errorMap.ts"
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"kind": "js",
|
|
551
|
+
"name": "createErrorMap",
|
|
552
|
+
"declaration": {
|
|
553
|
+
"name": "createErrorMap",
|
|
554
|
+
"module": "src/error/errorMap.ts"
|
|
436
555
|
}
|
|
437
556
|
}
|
|
438
557
|
]
|
|
439
558
|
},
|
|
440
559
|
{
|
|
441
560
|
"kind": "javascript-module",
|
|
442
|
-
"path": "src/
|
|
561
|
+
"path": "src/error/index.ts",
|
|
443
562
|
"declarations": [],
|
|
444
563
|
"exports": [
|
|
445
564
|
{
|
|
@@ -447,14 +566,14 @@
|
|
|
447
566
|
"name": "*",
|
|
448
567
|
"declaration": {
|
|
449
568
|
"name": "*",
|
|
450
|
-
"package": "./
|
|
569
|
+
"package": "./errorMap"
|
|
451
570
|
}
|
|
452
571
|
}
|
|
453
572
|
]
|
|
454
573
|
},
|
|
455
574
|
{
|
|
456
575
|
"kind": "javascript-module",
|
|
457
|
-
"path": "src/
|
|
576
|
+
"path": "src/decorators/index.ts",
|
|
458
577
|
"declarations": [],
|
|
459
578
|
"exports": [
|
|
460
579
|
{
|
|
@@ -462,15 +581,45 @@
|
|
|
462
581
|
"name": "*",
|
|
463
582
|
"declaration": {
|
|
464
583
|
"name": "*",
|
|
465
|
-
"package": "./
|
|
584
|
+
"package": "./renderOnChange"
|
|
466
585
|
}
|
|
467
|
-
}
|
|
586
|
+
}
|
|
587
|
+
]
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"kind": "javascript-module",
|
|
591
|
+
"path": "src/decorators/renderOnChange.ts",
|
|
592
|
+
"declarations": [
|
|
593
|
+
{
|
|
594
|
+
"kind": "function",
|
|
595
|
+
"name": "renderOnChange",
|
|
596
|
+
"parameters": [
|
|
597
|
+
{
|
|
598
|
+
"name": "target",
|
|
599
|
+
"type": {
|
|
600
|
+
"text": "FASTElement & { render(): void }"
|
|
601
|
+
},
|
|
602
|
+
"description": "The target to define the property change handler on."
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"name": "name",
|
|
606
|
+
"type": {
|
|
607
|
+
"text": "string"
|
|
608
|
+
},
|
|
609
|
+
"description": "The property name."
|
|
610
|
+
}
|
|
611
|
+
],
|
|
612
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
613
|
+
"privacy": "public"
|
|
614
|
+
}
|
|
615
|
+
],
|
|
616
|
+
"exports": [
|
|
468
617
|
{
|
|
469
618
|
"kind": "js",
|
|
470
|
-
"name": "
|
|
619
|
+
"name": "renderOnChange",
|
|
471
620
|
"declaration": {
|
|
472
|
-
"name": "
|
|
473
|
-
"
|
|
621
|
+
"name": "renderOnChange",
|
|
622
|
+
"module": "src/decorators/renderOnChange.ts"
|
|
474
623
|
}
|
|
475
624
|
}
|
|
476
625
|
]
|
|
@@ -700,191 +849,42 @@
|
|
|
700
849
|
},
|
|
701
850
|
{
|
|
702
851
|
"kind": "javascript-module",
|
|
703
|
-
"path": "src/
|
|
852
|
+
"path": "src/design-system/design-system.ts",
|
|
704
853
|
"declarations": [
|
|
705
|
-
{
|
|
706
|
-
"kind": "class",
|
|
707
|
-
"description": "",
|
|
708
|
-
"name": "DefaultErrorMap",
|
|
709
|
-
"members": [
|
|
710
|
-
{
|
|
711
|
-
"kind": "field",
|
|
712
|
-
"name": "map",
|
|
713
|
-
"privacy": "private",
|
|
714
|
-
"default": "new Map<keyof TErrorDetailMap, Error>()"
|
|
715
|
-
},
|
|
716
|
-
{
|
|
717
|
-
"kind": "field",
|
|
718
|
-
"name": "lastError",
|
|
719
|
-
"type": {
|
|
720
|
-
"text": "Error"
|
|
721
|
-
},
|
|
722
|
-
"description": "{@inheritDoc ErrorMap.lastError}"
|
|
723
|
-
},
|
|
724
|
-
{
|
|
725
|
-
"kind": "method",
|
|
726
|
-
"name": "set",
|
|
727
|
-
"return": {
|
|
728
|
-
"type": {
|
|
729
|
-
"text": "void"
|
|
730
|
-
}
|
|
731
|
-
},
|
|
732
|
-
"parameters": [
|
|
733
|
-
{
|
|
734
|
-
"name": "key",
|
|
735
|
-
"type": {
|
|
736
|
-
"text": "keyof TErrorDetailMap"
|
|
737
|
-
}
|
|
738
|
-
},
|
|
739
|
-
{
|
|
740
|
-
"name": "error",
|
|
741
|
-
"type": {
|
|
742
|
-
"text": "Error"
|
|
743
|
-
}
|
|
744
|
-
}
|
|
745
|
-
],
|
|
746
|
-
"description": "{@inheritDoc ErrorMap.set}"
|
|
747
|
-
},
|
|
748
|
-
{
|
|
749
|
-
"kind": "method",
|
|
750
|
-
"name": "get",
|
|
751
|
-
"return": {
|
|
752
|
-
"type": {
|
|
753
|
-
"text": ""
|
|
754
|
-
}
|
|
755
|
-
},
|
|
756
|
-
"parameters": [
|
|
757
|
-
{
|
|
758
|
-
"name": "key",
|
|
759
|
-
"type": {
|
|
760
|
-
"text": "keyof TErrorDetailMap"
|
|
761
|
-
},
|
|
762
|
-
"description": "The key."
|
|
763
|
-
}
|
|
764
|
-
],
|
|
765
|
-
"description": "Get an error by key.",
|
|
766
|
-
"privacy": "public"
|
|
767
|
-
},
|
|
768
|
-
{
|
|
769
|
-
"kind": "method",
|
|
770
|
-
"name": "has",
|
|
771
|
-
"return": {
|
|
772
|
-
"type": {
|
|
773
|
-
"text": ""
|
|
774
|
-
}
|
|
775
|
-
},
|
|
776
|
-
"parameters": [
|
|
777
|
-
{
|
|
778
|
-
"name": "key",
|
|
779
|
-
"type": {
|
|
780
|
-
"text": "keyof TErrorDetailMap"
|
|
781
|
-
},
|
|
782
|
-
"description": "The key."
|
|
783
|
-
}
|
|
784
|
-
],
|
|
785
|
-
"description": "Has an error for key.",
|
|
786
|
-
"privacy": "public"
|
|
787
|
-
},
|
|
788
|
-
{
|
|
789
|
-
"kind": "method",
|
|
790
|
-
"name": "delete",
|
|
791
|
-
"return": {
|
|
792
|
-
"type": {
|
|
793
|
-
"text": ""
|
|
794
|
-
}
|
|
795
|
-
},
|
|
796
|
-
"parameters": [
|
|
797
|
-
{
|
|
798
|
-
"name": "key",
|
|
799
|
-
"type": {
|
|
800
|
-
"text": "keyof TErrorDetailMap"
|
|
801
|
-
},
|
|
802
|
-
"description": "The key."
|
|
803
|
-
}
|
|
804
|
-
],
|
|
805
|
-
"description": "Delete an error.",
|
|
806
|
-
"privacy": "public"
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
"kind": "method",
|
|
810
|
-
"name": "clear",
|
|
811
|
-
"description": "Clear errors.",
|
|
812
|
-
"privacy": "public"
|
|
813
|
-
},
|
|
814
|
-
{
|
|
815
|
-
"kind": "field",
|
|
816
|
-
"name": "size",
|
|
817
|
-
"type": {
|
|
818
|
-
"text": "number"
|
|
819
|
-
},
|
|
820
|
-
"description": "The size of the error map.",
|
|
821
|
-
"return": {
|
|
822
|
-
"type": {
|
|
823
|
-
"text": ""
|
|
824
|
-
}
|
|
825
|
-
},
|
|
826
|
-
"privacy": "public",
|
|
827
|
-
"readonly": true
|
|
828
|
-
},
|
|
829
|
-
{
|
|
830
|
-
"kind": "method",
|
|
831
|
-
"name": "values",
|
|
832
|
-
"privacy": "public"
|
|
833
|
-
},
|
|
834
|
-
{
|
|
835
|
-
"kind": "field",
|
|
836
|
-
"name": "messages",
|
|
837
|
-
"type": {
|
|
838
|
-
"text": "string"
|
|
839
|
-
},
|
|
840
|
-
"description": "{@inheritDoc ErrorMap.messages}",
|
|
841
|
-
"readonly": true
|
|
842
|
-
}
|
|
843
|
-
]
|
|
844
|
-
},
|
|
845
854
|
{
|
|
846
855
|
"kind": "function",
|
|
847
|
-
"name": "
|
|
856
|
+
"name": "assureDesignSystem",
|
|
848
857
|
"return": {
|
|
849
858
|
"type": {
|
|
850
|
-
"text": ""
|
|
859
|
+
"text": "DesignSystemModule"
|
|
851
860
|
}
|
|
852
861
|
},
|
|
853
862
|
"parameters": [
|
|
854
863
|
{
|
|
855
|
-
"name": "
|
|
864
|
+
"name": "module",
|
|
856
865
|
"type": {
|
|
857
|
-
"text": "
|
|
858
|
-
}
|
|
859
|
-
"description": "A logger error method reference."
|
|
866
|
+
"text": "DesignSystemModule"
|
|
867
|
+
}
|
|
860
868
|
}
|
|
861
869
|
],
|
|
862
|
-
"description": "
|
|
870
|
+
"description": "assureDesignSystem.",
|
|
863
871
|
"privacy": "public"
|
|
864
872
|
}
|
|
865
873
|
],
|
|
866
874
|
"exports": [
|
|
867
875
|
{
|
|
868
876
|
"kind": "js",
|
|
869
|
-
"name": "
|
|
870
|
-
"declaration": {
|
|
871
|
-
"name": "DefaultErrorMap",
|
|
872
|
-
"module": "src/error/errorMap.ts"
|
|
873
|
-
}
|
|
874
|
-
},
|
|
875
|
-
{
|
|
876
|
-
"kind": "js",
|
|
877
|
-
"name": "createErrorMap",
|
|
877
|
+
"name": "assureDesignSystem",
|
|
878
878
|
"declaration": {
|
|
879
|
-
"name": "
|
|
880
|
-
"module": "src/
|
|
879
|
+
"name": "assureDesignSystem",
|
|
880
|
+
"module": "src/design-system/design-system.ts"
|
|
881
881
|
}
|
|
882
882
|
}
|
|
883
883
|
]
|
|
884
884
|
},
|
|
885
885
|
{
|
|
886
886
|
"kind": "javascript-module",
|
|
887
|
-
"path": "src/
|
|
887
|
+
"path": "src/design-system/index.ts",
|
|
888
888
|
"declarations": [],
|
|
889
889
|
"exports": [
|
|
890
890
|
{
|
|
@@ -892,7 +892,7 @@
|
|
|
892
892
|
"name": "*",
|
|
893
893
|
"declaration": {
|
|
894
894
|
"name": "*",
|
|
895
|
-
"package": "./
|
|
895
|
+
"package": "./design-system"
|
|
896
896
|
}
|
|
897
897
|
}
|
|
898
898
|
]
|
|
@@ -1869,6 +1869,43 @@
|
|
|
1869
1869
|
}
|
|
1870
1870
|
]
|
|
1871
1871
|
},
|
|
1872
|
+
{
|
|
1873
|
+
"kind": "javascript-module",
|
|
1874
|
+
"path": "src/uuid/index.ts",
|
|
1875
|
+
"declarations": [],
|
|
1876
|
+
"exports": [
|
|
1877
|
+
{
|
|
1878
|
+
"kind": "js",
|
|
1879
|
+
"name": "*",
|
|
1880
|
+
"declaration": {
|
|
1881
|
+
"name": "*",
|
|
1882
|
+
"package": "./uuid"
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1885
|
+
]
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
"kind": "javascript-module",
|
|
1889
|
+
"path": "src/uuid/uuid.ts",
|
|
1890
|
+
"declarations": [
|
|
1891
|
+
{
|
|
1892
|
+
"kind": "variable",
|
|
1893
|
+
"name": "UUID",
|
|
1894
|
+
"description": "A dependency injection token for the UUID interface.",
|
|
1895
|
+
"privacy": "public"
|
|
1896
|
+
}
|
|
1897
|
+
],
|
|
1898
|
+
"exports": [
|
|
1899
|
+
{
|
|
1900
|
+
"kind": "js",
|
|
1901
|
+
"name": "UUID",
|
|
1902
|
+
"declaration": {
|
|
1903
|
+
"name": "UUID",
|
|
1904
|
+
"module": "src/uuid/uuid.ts"
|
|
1905
|
+
}
|
|
1906
|
+
}
|
|
1907
|
+
]
|
|
1908
|
+
},
|
|
1872
1909
|
{
|
|
1873
1910
|
"kind": "javascript-module",
|
|
1874
1911
|
"path": "src/window/index.ts",
|
|
@@ -2017,43 +2054,6 @@
|
|
|
2017
2054
|
}
|
|
2018
2055
|
]
|
|
2019
2056
|
},
|
|
2020
|
-
{
|
|
2021
|
-
"kind": "javascript-module",
|
|
2022
|
-
"path": "src/uuid/index.ts",
|
|
2023
|
-
"declarations": [],
|
|
2024
|
-
"exports": [
|
|
2025
|
-
{
|
|
2026
|
-
"kind": "js",
|
|
2027
|
-
"name": "*",
|
|
2028
|
-
"declaration": {
|
|
2029
|
-
"name": "*",
|
|
2030
|
-
"package": "./uuid"
|
|
2031
|
-
}
|
|
2032
|
-
}
|
|
2033
|
-
]
|
|
2034
|
-
},
|
|
2035
|
-
{
|
|
2036
|
-
"kind": "javascript-module",
|
|
2037
|
-
"path": "src/uuid/uuid.ts",
|
|
2038
|
-
"declarations": [
|
|
2039
|
-
{
|
|
2040
|
-
"kind": "variable",
|
|
2041
|
-
"name": "UUID",
|
|
2042
|
-
"description": "A dependency injection token for the UUID interface.",
|
|
2043
|
-
"privacy": "public"
|
|
2044
|
-
}
|
|
2045
|
-
],
|
|
2046
|
-
"exports": [
|
|
2047
|
-
{
|
|
2048
|
-
"kind": "js",
|
|
2049
|
-
"name": "UUID",
|
|
2050
|
-
"declaration": {
|
|
2051
|
-
"name": "UUID",
|
|
2052
|
-
"module": "src/uuid/uuid.ts"
|
|
2053
|
-
}
|
|
2054
|
-
}
|
|
2055
|
-
]
|
|
2056
|
-
},
|
|
2057
2057
|
{
|
|
2058
2058
|
"kind": "javascript-module",
|
|
2059
2059
|
"path": "src/directives/sync/index.ts",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-utils",
|
|
3
3
|
"description": "Genesis Foundation Utils",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.166.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -19,17 +19,17 @@
|
|
|
19
19
|
"test": "genx test"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@genesislcap/foundation-testing": "14.
|
|
23
|
-
"@genesislcap/genx": "14.
|
|
24
|
-
"@genesislcap/rollup-builder": "14.
|
|
25
|
-
"@genesislcap/ts-builder": "14.
|
|
26
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
27
|
-
"@genesislcap/vite-builder": "14.
|
|
28
|
-
"@genesislcap/webpack-builder": "14.
|
|
22
|
+
"@genesislcap/foundation-testing": "14.166.0",
|
|
23
|
+
"@genesislcap/genx": "14.166.0",
|
|
24
|
+
"@genesislcap/rollup-builder": "14.166.0",
|
|
25
|
+
"@genesislcap/ts-builder": "14.166.0",
|
|
26
|
+
"@genesislcap/uvu-playwright-builder": "14.166.0",
|
|
27
|
+
"@genesislcap/vite-builder": "14.166.0",
|
|
28
|
+
"@genesislcap/webpack-builder": "14.166.0",
|
|
29
29
|
"rimraf": "^3.0.2"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@genesislcap/foundation-logger": "14.
|
|
32
|
+
"@genesislcap/foundation-logger": "14.166.0",
|
|
33
33
|
"@microsoft/fast-components": "^2.30.6",
|
|
34
34
|
"@microsoft/fast-element": "^1.12.0",
|
|
35
35
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"customElements": "dist/custom-elements.json",
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "e0240354a82fbb1ce9dc5c87d8533fd1caddafb0"
|
|
51
51
|
}
|