@genesislcap/foundation-utils 14.209.3-alpha-6a63026.0 → 14.209.3-alpha-7cad5ca.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/custom-elements.json +241 -241
  2. package/package.json +10 -10
@@ -367,42 +367,7 @@
367
367
  },
368
368
  {
369
369
  "kind": "javascript-module",
370
- "path": "src/design-system/design-system.ts",
371
- "declarations": [
372
- {
373
- "kind": "function",
374
- "name": "assureDesignSystem",
375
- "return": {
376
- "type": {
377
- "text": "DesignSystemModule"
378
- }
379
- },
380
- "parameters": [
381
- {
382
- "name": "module",
383
- "type": {
384
- "text": "DesignSystemModule"
385
- }
386
- }
387
- ],
388
- "description": "assureDesignSystem.",
389
- "privacy": "public"
390
- }
391
- ],
392
- "exports": [
393
- {
394
- "kind": "js",
395
- "name": "assureDesignSystem",
396
- "declaration": {
397
- "name": "assureDesignSystem",
398
- "module": "src/design-system/design-system.ts"
399
- }
400
- }
401
- ]
402
- },
403
- {
404
- "kind": "javascript-module",
405
- "path": "src/design-system/index.ts",
370
+ "path": "src/decorators/index.ts",
406
371
  "declarations": [],
407
372
  "exports": [
408
373
  {
@@ -410,213 +375,87 @@
410
375
  "name": "*",
411
376
  "declaration": {
412
377
  "name": "*",
413
- "package": "./design-system"
378
+ "package": "./renderOnChange"
414
379
  }
415
380
  }
416
381
  ]
417
382
  },
418
383
  {
419
384
  "kind": "javascript-module",
420
- "path": "src/error/errorMap.ts",
385
+ "path": "src/decorators/renderOnChange.ts",
421
386
  "declarations": [
422
387
  {
423
- "kind": "class",
424
- "description": "",
425
- "name": "DefaultErrorMap",
426
- "members": [
427
- {
428
- "kind": "field",
429
- "name": "map",
430
- "privacy": "private",
431
- "default": "new Map<keyof TErrorDetailMap, Error>()"
432
- },
433
- {
434
- "kind": "field",
435
- "name": "lastError",
436
- "type": {
437
- "text": "Error"
438
- },
439
- "description": "{@inheritDoc ErrorMap.lastError}"
440
- },
441
- {
442
- "kind": "method",
443
- "name": "set",
444
- "return": {
445
- "type": {
446
- "text": "void"
447
- }
448
- },
449
- "parameters": [
450
- {
451
- "name": "key",
452
- "type": {
453
- "text": "keyof TErrorDetailMap"
454
- }
455
- },
456
- {
457
- "name": "error",
458
- "type": {
459
- "text": "Error"
460
- }
461
- }
462
- ],
463
- "description": "{@inheritDoc ErrorMap.set}"
464
- },
465
- {
466
- "kind": "method",
467
- "name": "get",
468
- "return": {
469
- "type": {
470
- "text": ""
471
- }
472
- },
473
- "parameters": [
474
- {
475
- "name": "key",
476
- "type": {
477
- "text": "keyof TErrorDetailMap"
478
- },
479
- "description": "The key."
480
- }
481
- ],
482
- "description": "Get an error by key.",
483
- "privacy": "public"
484
- },
485
- {
486
- "kind": "method",
487
- "name": "has",
488
- "return": {
489
- "type": {
490
- "text": ""
491
- }
492
- },
493
- "parameters": [
494
- {
495
- "name": "key",
496
- "type": {
497
- "text": "keyof TErrorDetailMap"
498
- },
499
- "description": "The key."
500
- }
501
- ],
502
- "description": "Has an error for key.",
503
- "privacy": "public"
504
- },
505
- {
506
- "kind": "method",
507
- "name": "delete",
508
- "return": {
509
- "type": {
510
- "text": ""
511
- }
512
- },
513
- "parameters": [
514
- {
515
- "name": "key",
516
- "type": {
517
- "text": "keyof TErrorDetailMap"
518
- },
519
- "description": "The key."
520
- }
521
- ],
522
- "description": "Delete an error.",
523
- "privacy": "public"
524
- },
525
- {
526
- "kind": "method",
527
- "name": "clear",
528
- "description": "Clear errors.",
529
- "privacy": "public"
530
- },
388
+ "kind": "function",
389
+ "name": "renderOnChange",
390
+ "parameters": [
531
391
  {
532
- "kind": "field",
533
- "name": "size",
392
+ "name": "target",
534
393
  "type": {
535
- "text": "number"
536
- },
537
- "description": "The size of the error map.",
538
- "return": {
539
- "type": {
540
- "text": ""
541
- }
394
+ "text": "FASTElement & { render(): void }"
542
395
  },
543
- "privacy": "public",
544
- "readonly": true
545
- },
546
- {
547
- "kind": "method",
548
- "name": "values",
549
- "privacy": "public"
396
+ "description": "The target to define the property change handler on."
550
397
  },
551
398
  {
552
- "kind": "field",
553
- "name": "messages",
399
+ "name": "name",
554
400
  "type": {
555
401
  "text": "string"
556
402
  },
557
- "description": "{@inheritDoc ErrorMap.messages}",
558
- "readonly": true
559
- }
560
- ]
561
- },
562
- {
563
- "kind": "function",
564
- "name": "createErrorMap",
565
- "return": {
566
- "type": {
567
- "text": ""
568
- }
569
- },
570
- "parameters": [
571
- {
572
- "name": "logger",
573
- "type": {
574
- "text": "ErrorMapLogger"
575
- },
576
- "description": "A logger error method reference."
403
+ "description": "The property name."
577
404
  }
578
405
  ],
579
- "description": "A factory to create the error map.",
406
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
580
407
  "privacy": "public"
581
408
  }
582
409
  ],
583
410
  "exports": [
584
411
  {
585
412
  "kind": "js",
586
- "name": "DefaultErrorMap",
587
- "declaration": {
588
- "name": "DefaultErrorMap",
589
- "module": "src/error/errorMap.ts"
590
- }
591
- },
592
- {
593
- "kind": "js",
594
- "name": "createErrorMap",
413
+ "name": "renderOnChange",
595
414
  "declaration": {
596
- "name": "createErrorMap",
597
- "module": "src/error/errorMap.ts"
415
+ "name": "renderOnChange",
416
+ "module": "src/decorators/renderOnChange.ts"
598
417
  }
599
418
  }
600
419
  ]
601
420
  },
602
421
  {
603
422
  "kind": "javascript-module",
604
- "path": "src/error/index.ts",
605
- "declarations": [],
423
+ "path": "src/design-system/design-system.ts",
424
+ "declarations": [
425
+ {
426
+ "kind": "function",
427
+ "name": "assureDesignSystem",
428
+ "return": {
429
+ "type": {
430
+ "text": "DesignSystemModule"
431
+ }
432
+ },
433
+ "parameters": [
434
+ {
435
+ "name": "module",
436
+ "type": {
437
+ "text": "DesignSystemModule"
438
+ }
439
+ }
440
+ ],
441
+ "description": "assureDesignSystem.",
442
+ "privacy": "public"
443
+ }
444
+ ],
606
445
  "exports": [
607
446
  {
608
447
  "kind": "js",
609
- "name": "*",
448
+ "name": "assureDesignSystem",
610
449
  "declaration": {
611
- "name": "*",
612
- "package": "./errorMap"
450
+ "name": "assureDesignSystem",
451
+ "module": "src/design-system/design-system.ts"
613
452
  }
614
453
  }
615
454
  ]
616
455
  },
617
456
  {
618
457
  "kind": "javascript-module",
619
- "path": "src/decorators/index.ts",
458
+ "path": "src/design-system/index.ts",
620
459
  "declarations": [],
621
460
  "exports": [
622
461
  {
@@ -624,45 +463,7 @@
624
463
  "name": "*",
625
464
  "declaration": {
626
465
  "name": "*",
627
- "package": "./renderOnChange"
628
- }
629
- }
630
- ]
631
- },
632
- {
633
- "kind": "javascript-module",
634
- "path": "src/decorators/renderOnChange.ts",
635
- "declarations": [
636
- {
637
- "kind": "function",
638
- "name": "renderOnChange",
639
- "parameters": [
640
- {
641
- "name": "target",
642
- "type": {
643
- "text": "FASTElement & { render(): void }"
644
- },
645
- "description": "The target to define the property change handler on."
646
- },
647
- {
648
- "name": "name",
649
- "type": {
650
- "text": "string"
651
- },
652
- "description": "The property name."
653
- }
654
- ],
655
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
656
- "privacy": "public"
657
- }
658
- ],
659
- "exports": [
660
- {
661
- "kind": "js",
662
- "name": "renderOnChange",
663
- "declaration": {
664
- "name": "renderOnChange",
665
- "module": "src/decorators/renderOnChange.ts"
466
+ "package": "./design-system"
666
467
  }
667
468
  }
668
469
  ]
@@ -928,6 +729,205 @@
928
729
  }
929
730
  ]
930
731
  },
732
+ {
733
+ "kind": "javascript-module",
734
+ "path": "src/error/errorMap.ts",
735
+ "declarations": [
736
+ {
737
+ "kind": "class",
738
+ "description": "",
739
+ "name": "DefaultErrorMap",
740
+ "members": [
741
+ {
742
+ "kind": "field",
743
+ "name": "map",
744
+ "privacy": "private",
745
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
746
+ },
747
+ {
748
+ "kind": "field",
749
+ "name": "lastError",
750
+ "type": {
751
+ "text": "Error"
752
+ },
753
+ "description": "{@inheritDoc ErrorMap.lastError}"
754
+ },
755
+ {
756
+ "kind": "method",
757
+ "name": "set",
758
+ "return": {
759
+ "type": {
760
+ "text": "void"
761
+ }
762
+ },
763
+ "parameters": [
764
+ {
765
+ "name": "key",
766
+ "type": {
767
+ "text": "keyof TErrorDetailMap"
768
+ }
769
+ },
770
+ {
771
+ "name": "error",
772
+ "type": {
773
+ "text": "Error"
774
+ }
775
+ }
776
+ ],
777
+ "description": "{@inheritDoc ErrorMap.set}"
778
+ },
779
+ {
780
+ "kind": "method",
781
+ "name": "get",
782
+ "return": {
783
+ "type": {
784
+ "text": ""
785
+ }
786
+ },
787
+ "parameters": [
788
+ {
789
+ "name": "key",
790
+ "type": {
791
+ "text": "keyof TErrorDetailMap"
792
+ },
793
+ "description": "The key."
794
+ }
795
+ ],
796
+ "description": "Get an error by key.",
797
+ "privacy": "public"
798
+ },
799
+ {
800
+ "kind": "method",
801
+ "name": "has",
802
+ "return": {
803
+ "type": {
804
+ "text": ""
805
+ }
806
+ },
807
+ "parameters": [
808
+ {
809
+ "name": "key",
810
+ "type": {
811
+ "text": "keyof TErrorDetailMap"
812
+ },
813
+ "description": "The key."
814
+ }
815
+ ],
816
+ "description": "Has an error for key.",
817
+ "privacy": "public"
818
+ },
819
+ {
820
+ "kind": "method",
821
+ "name": "delete",
822
+ "return": {
823
+ "type": {
824
+ "text": ""
825
+ }
826
+ },
827
+ "parameters": [
828
+ {
829
+ "name": "key",
830
+ "type": {
831
+ "text": "keyof TErrorDetailMap"
832
+ },
833
+ "description": "The key."
834
+ }
835
+ ],
836
+ "description": "Delete an error.",
837
+ "privacy": "public"
838
+ },
839
+ {
840
+ "kind": "method",
841
+ "name": "clear",
842
+ "description": "Clear errors.",
843
+ "privacy": "public"
844
+ },
845
+ {
846
+ "kind": "field",
847
+ "name": "size",
848
+ "type": {
849
+ "text": "number"
850
+ },
851
+ "description": "The size of the error map.",
852
+ "return": {
853
+ "type": {
854
+ "text": ""
855
+ }
856
+ },
857
+ "privacy": "public",
858
+ "readonly": true
859
+ },
860
+ {
861
+ "kind": "method",
862
+ "name": "values",
863
+ "privacy": "public"
864
+ },
865
+ {
866
+ "kind": "field",
867
+ "name": "messages",
868
+ "type": {
869
+ "text": "string"
870
+ },
871
+ "description": "{@inheritDoc ErrorMap.messages}",
872
+ "readonly": true
873
+ }
874
+ ]
875
+ },
876
+ {
877
+ "kind": "function",
878
+ "name": "createErrorMap",
879
+ "return": {
880
+ "type": {
881
+ "text": ""
882
+ }
883
+ },
884
+ "parameters": [
885
+ {
886
+ "name": "logger",
887
+ "type": {
888
+ "text": "ErrorMapLogger"
889
+ },
890
+ "description": "A logger error method reference."
891
+ }
892
+ ],
893
+ "description": "A factory to create the error map.",
894
+ "privacy": "public"
895
+ }
896
+ ],
897
+ "exports": [
898
+ {
899
+ "kind": "js",
900
+ "name": "DefaultErrorMap",
901
+ "declaration": {
902
+ "name": "DefaultErrorMap",
903
+ "module": "src/error/errorMap.ts"
904
+ }
905
+ },
906
+ {
907
+ "kind": "js",
908
+ "name": "createErrorMap",
909
+ "declaration": {
910
+ "name": "createErrorMap",
911
+ "module": "src/error/errorMap.ts"
912
+ }
913
+ }
914
+ ]
915
+ },
916
+ {
917
+ "kind": "javascript-module",
918
+ "path": "src/error/index.ts",
919
+ "declarations": [],
920
+ "exports": [
921
+ {
922
+ "kind": "js",
923
+ "name": "*",
924
+ "declaration": {
925
+ "name": "*",
926
+ "package": "./errorMap"
927
+ }
928
+ }
929
+ ]
930
+ },
931
931
  {
932
932
  "kind": "javascript-module",
933
933
  "path": "src/formatters/datetime.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.209.3-alpha-6a63026.0",
4
+ "version": "14.209.3-alpha-7cad5ca.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,17 +27,17 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.209.3-alpha-6a63026.0",
31
- "@genesislcap/genx": "14.209.3-alpha-6a63026.0",
32
- "@genesislcap/rollup-builder": "14.209.3-alpha-6a63026.0",
33
- "@genesislcap/ts-builder": "14.209.3-alpha-6a63026.0",
34
- "@genesislcap/uvu-playwright-builder": "14.209.3-alpha-6a63026.0",
35
- "@genesislcap/vite-builder": "14.209.3-alpha-6a63026.0",
36
- "@genesislcap/webpack-builder": "14.209.3-alpha-6a63026.0",
30
+ "@genesislcap/foundation-testing": "14.209.3-alpha-7cad5ca.0",
31
+ "@genesislcap/genx": "14.209.3-alpha-7cad5ca.0",
32
+ "@genesislcap/rollup-builder": "14.209.3-alpha-7cad5ca.0",
33
+ "@genesislcap/ts-builder": "14.209.3-alpha-7cad5ca.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.209.3-alpha-7cad5ca.0",
35
+ "@genesislcap/vite-builder": "14.209.3-alpha-7cad5ca.0",
36
+ "@genesislcap/webpack-builder": "14.209.3-alpha-7cad5ca.0",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.209.3-alpha-6a63026.0",
40
+ "@genesislcap/foundation-logger": "14.209.3-alpha-7cad5ca.0",
41
41
  "@microsoft/fast-components": "^2.30.6",
42
42
  "@microsoft/fast-element": "^1.12.0",
43
43
  "@microsoft/fast-foundation": "^2.49.4",
@@ -55,5 +55,5 @@
55
55
  "access": "public"
56
56
  },
57
57
  "customElements": "dist/custom-elements.json",
58
- "gitHead": "88c5ab1a05697d12dbe0201bd7c7884d8c3b1831"
58
+ "gitHead": "a50d8b098510e683b1f31761067790a57028fa57"
59
59
  }