@genesislcap/foundation-utils 14.188.0-FUI-2012-tabulator.1 → 14.188.0-FUI-2012-tabulator.2

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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +328 -328
  2. package/package.json +10 -10
@@ -159,6 +159,59 @@
159
159
  }
160
160
  ]
161
161
  },
162
+ {
163
+ "kind": "javascript-module",
164
+ "path": "src/decorators/index.ts",
165
+ "declarations": [],
166
+ "exports": [
167
+ {
168
+ "kind": "js",
169
+ "name": "*",
170
+ "declaration": {
171
+ "name": "*",
172
+ "package": "./renderOnChange"
173
+ }
174
+ }
175
+ ]
176
+ },
177
+ {
178
+ "kind": "javascript-module",
179
+ "path": "src/decorators/renderOnChange.ts",
180
+ "declarations": [
181
+ {
182
+ "kind": "function",
183
+ "name": "renderOnChange",
184
+ "parameters": [
185
+ {
186
+ "name": "target",
187
+ "type": {
188
+ "text": "FASTElement & { render(): void }"
189
+ },
190
+ "description": "The target to define the property change handler on."
191
+ },
192
+ {
193
+ "name": "name",
194
+ "type": {
195
+ "text": "string"
196
+ },
197
+ "description": "The property name."
198
+ }
199
+ ],
200
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
201
+ "privacy": "public"
202
+ }
203
+ ],
204
+ "exports": [
205
+ {
206
+ "kind": "js",
207
+ "name": "renderOnChange",
208
+ "declaration": {
209
+ "name": "renderOnChange",
210
+ "module": "src/decorators/renderOnChange.ts"
211
+ }
212
+ }
213
+ ]
214
+ },
162
215
  {
163
216
  "kind": "javascript-module",
164
217
  "path": "src/data/inMemoryDatabase.ts",
@@ -359,30 +412,57 @@
359
412
  },
360
413
  {
361
414
  "kind": "javascript-module",
362
- "path": "src/directives/index.ts",
363
- "declarations": [],
415
+ "path": "src/design-system/design-system.ts",
416
+ "declarations": [
417
+ {
418
+ "kind": "function",
419
+ "name": "assureDesignSystem",
420
+ "return": {
421
+ "type": {
422
+ "text": "DesignSystemModule"
423
+ }
424
+ },
425
+ "parameters": [
426
+ {
427
+ "name": "module",
428
+ "type": {
429
+ "text": "DesignSystemModule"
430
+ }
431
+ }
432
+ ],
433
+ "description": "assureDesignSystem.",
434
+ "privacy": "public"
435
+ }
436
+ ],
364
437
  "exports": [
365
438
  {
366
439
  "kind": "js",
367
- "name": "*",
440
+ "name": "assureDesignSystem",
368
441
  "declaration": {
369
- "name": "*",
370
- "package": "./sync"
442
+ "name": "assureDesignSystem",
443
+ "module": "src/design-system/design-system.ts"
371
444
  }
372
- },
445
+ }
446
+ ]
447
+ },
448
+ {
449
+ "kind": "javascript-module",
450
+ "path": "src/design-system/index.ts",
451
+ "declarations": [],
452
+ "exports": [
373
453
  {
374
454
  "kind": "js",
375
455
  "name": "*",
376
456
  "declaration": {
377
457
  "name": "*",
378
- "package": "./when-else"
458
+ "package": "./design-system"
379
459
  }
380
460
  }
381
461
  ]
382
462
  },
383
463
  {
384
464
  "kind": "javascript-module",
385
- "path": "src/env/index.ts",
465
+ "path": "src/directives/index.ts",
386
466
  "declarations": [],
387
467
  "exports": [
388
468
  {
@@ -390,7 +470,7 @@
390
470
  "name": "*",
391
471
  "declaration": {
392
472
  "name": "*",
393
- "package": "./is-dev"
473
+ "package": "./sync"
394
474
  }
395
475
  },
396
476
  {
@@ -398,32 +478,254 @@
398
478
  "name": "*",
399
479
  "declaration": {
400
480
  "name": "*",
401
- "package": "./variables"
481
+ "package": "./when-else"
402
482
  }
403
483
  }
404
484
  ]
405
485
  },
406
486
  {
407
487
  "kind": "javascript-module",
408
- "path": "src/env/is-dev.ts",
488
+ "path": "src/error/errorMap.ts",
409
489
  "declarations": [
410
490
  {
411
- "kind": "function",
412
- "name": "isDev",
413
- "description": "Determines if the current environment is a development environment.",
414
- "privacy": "public"
415
- }
416
- ],
417
- "exports": [
491
+ "kind": "class",
492
+ "description": "",
493
+ "name": "DefaultErrorMap",
494
+ "members": [
495
+ {
496
+ "kind": "field",
497
+ "name": "map",
498
+ "privacy": "private",
499
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
500
+ },
501
+ {
502
+ "kind": "field",
503
+ "name": "lastError",
504
+ "type": {
505
+ "text": "Error"
506
+ },
507
+ "description": "{@inheritDoc ErrorMap.lastError}"
508
+ },
509
+ {
510
+ "kind": "method",
511
+ "name": "set",
512
+ "return": {
513
+ "type": {
514
+ "text": "void"
515
+ }
516
+ },
517
+ "parameters": [
518
+ {
519
+ "name": "key",
520
+ "type": {
521
+ "text": "keyof TErrorDetailMap"
522
+ }
523
+ },
524
+ {
525
+ "name": "error",
526
+ "type": {
527
+ "text": "Error"
528
+ }
529
+ }
530
+ ],
531
+ "description": "{@inheritDoc ErrorMap.set}"
532
+ },
533
+ {
534
+ "kind": "method",
535
+ "name": "get",
536
+ "return": {
537
+ "type": {
538
+ "text": ""
539
+ }
540
+ },
541
+ "parameters": [
542
+ {
543
+ "name": "key",
544
+ "type": {
545
+ "text": "keyof TErrorDetailMap"
546
+ },
547
+ "description": "The key."
548
+ }
549
+ ],
550
+ "description": "Get an error by key.",
551
+ "privacy": "public"
552
+ },
553
+ {
554
+ "kind": "method",
555
+ "name": "has",
556
+ "return": {
557
+ "type": {
558
+ "text": ""
559
+ }
560
+ },
561
+ "parameters": [
562
+ {
563
+ "name": "key",
564
+ "type": {
565
+ "text": "keyof TErrorDetailMap"
566
+ },
567
+ "description": "The key."
568
+ }
569
+ ],
570
+ "description": "Has an error for key.",
571
+ "privacy": "public"
572
+ },
573
+ {
574
+ "kind": "method",
575
+ "name": "delete",
576
+ "return": {
577
+ "type": {
578
+ "text": ""
579
+ }
580
+ },
581
+ "parameters": [
582
+ {
583
+ "name": "key",
584
+ "type": {
585
+ "text": "keyof TErrorDetailMap"
586
+ },
587
+ "description": "The key."
588
+ }
589
+ ],
590
+ "description": "Delete an error.",
591
+ "privacy": "public"
592
+ },
593
+ {
594
+ "kind": "method",
595
+ "name": "clear",
596
+ "description": "Clear errors.",
597
+ "privacy": "public"
598
+ },
599
+ {
600
+ "kind": "field",
601
+ "name": "size",
602
+ "type": {
603
+ "text": "number"
604
+ },
605
+ "description": "The size of the error map.",
606
+ "return": {
607
+ "type": {
608
+ "text": ""
609
+ }
610
+ },
611
+ "privacy": "public",
612
+ "readonly": true
613
+ },
614
+ {
615
+ "kind": "method",
616
+ "name": "values",
617
+ "privacy": "public"
618
+ },
619
+ {
620
+ "kind": "field",
621
+ "name": "messages",
622
+ "type": {
623
+ "text": "string"
624
+ },
625
+ "description": "{@inheritDoc ErrorMap.messages}",
626
+ "readonly": true
627
+ }
628
+ ]
629
+ },
418
630
  {
419
- "kind": "js",
420
- "name": "isDev",
421
- "declaration": {
422
- "name": "isDev",
423
- "module": "src/env/is-dev.ts"
424
- }
425
- }
426
- ]
631
+ "kind": "function",
632
+ "name": "createErrorMap",
633
+ "return": {
634
+ "type": {
635
+ "text": ""
636
+ }
637
+ },
638
+ "parameters": [
639
+ {
640
+ "name": "logger",
641
+ "type": {
642
+ "text": "ErrorMapLogger"
643
+ },
644
+ "description": "A logger error method reference."
645
+ }
646
+ ],
647
+ "description": "A factory to create the error map.",
648
+ "privacy": "public"
649
+ }
650
+ ],
651
+ "exports": [
652
+ {
653
+ "kind": "js",
654
+ "name": "DefaultErrorMap",
655
+ "declaration": {
656
+ "name": "DefaultErrorMap",
657
+ "module": "src/error/errorMap.ts"
658
+ }
659
+ },
660
+ {
661
+ "kind": "js",
662
+ "name": "createErrorMap",
663
+ "declaration": {
664
+ "name": "createErrorMap",
665
+ "module": "src/error/errorMap.ts"
666
+ }
667
+ }
668
+ ]
669
+ },
670
+ {
671
+ "kind": "javascript-module",
672
+ "path": "src/error/index.ts",
673
+ "declarations": [],
674
+ "exports": [
675
+ {
676
+ "kind": "js",
677
+ "name": "*",
678
+ "declaration": {
679
+ "name": "*",
680
+ "package": "./errorMap"
681
+ }
682
+ }
683
+ ]
684
+ },
685
+ {
686
+ "kind": "javascript-module",
687
+ "path": "src/env/index.ts",
688
+ "declarations": [],
689
+ "exports": [
690
+ {
691
+ "kind": "js",
692
+ "name": "*",
693
+ "declaration": {
694
+ "name": "*",
695
+ "package": "./is-dev"
696
+ }
697
+ },
698
+ {
699
+ "kind": "js",
700
+ "name": "*",
701
+ "declaration": {
702
+ "name": "*",
703
+ "package": "./variables"
704
+ }
705
+ }
706
+ ]
707
+ },
708
+ {
709
+ "kind": "javascript-module",
710
+ "path": "src/env/is-dev.ts",
711
+ "declarations": [
712
+ {
713
+ "kind": "function",
714
+ "name": "isDev",
715
+ "description": "Determines if the current environment is a development environment.",
716
+ "privacy": "public"
717
+ }
718
+ ],
719
+ "exports": [
720
+ {
721
+ "kind": "js",
722
+ "name": "isDev",
723
+ "declaration": {
724
+ "name": "isDev",
725
+ "module": "src/env/is-dev.ts"
726
+ }
727
+ }
728
+ ]
427
729
  },
428
730
  {
429
731
  "kind": "javascript-module",
@@ -618,308 +920,6 @@
618
920
  }
619
921
  ]
620
922
  },
621
- {
622
- "kind": "javascript-module",
623
- "path": "src/decorators/index.ts",
624
- "declarations": [],
625
- "exports": [
626
- {
627
- "kind": "js",
628
- "name": "*",
629
- "declaration": {
630
- "name": "*",
631
- "package": "./renderOnChange"
632
- }
633
- }
634
- ]
635
- },
636
- {
637
- "kind": "javascript-module",
638
- "path": "src/decorators/renderOnChange.ts",
639
- "declarations": [
640
- {
641
- "kind": "function",
642
- "name": "renderOnChange",
643
- "parameters": [
644
- {
645
- "name": "target",
646
- "type": {
647
- "text": "FASTElement & { render(): void }"
648
- },
649
- "description": "The target to define the property change handler on."
650
- },
651
- {
652
- "name": "name",
653
- "type": {
654
- "text": "string"
655
- },
656
- "description": "The property name."
657
- }
658
- ],
659
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
660
- "privacy": "public"
661
- }
662
- ],
663
- "exports": [
664
- {
665
- "kind": "js",
666
- "name": "renderOnChange",
667
- "declaration": {
668
- "name": "renderOnChange",
669
- "module": "src/decorators/renderOnChange.ts"
670
- }
671
- }
672
- ]
673
- },
674
- {
675
- "kind": "javascript-module",
676
- "path": "src/error/errorMap.ts",
677
- "declarations": [
678
- {
679
- "kind": "class",
680
- "description": "",
681
- "name": "DefaultErrorMap",
682
- "members": [
683
- {
684
- "kind": "field",
685
- "name": "map",
686
- "privacy": "private",
687
- "default": "new Map<keyof TErrorDetailMap, Error>()"
688
- },
689
- {
690
- "kind": "field",
691
- "name": "lastError",
692
- "type": {
693
- "text": "Error"
694
- },
695
- "description": "{@inheritDoc ErrorMap.lastError}"
696
- },
697
- {
698
- "kind": "method",
699
- "name": "set",
700
- "return": {
701
- "type": {
702
- "text": "void"
703
- }
704
- },
705
- "parameters": [
706
- {
707
- "name": "key",
708
- "type": {
709
- "text": "keyof TErrorDetailMap"
710
- }
711
- },
712
- {
713
- "name": "error",
714
- "type": {
715
- "text": "Error"
716
- }
717
- }
718
- ],
719
- "description": "{@inheritDoc ErrorMap.set}"
720
- },
721
- {
722
- "kind": "method",
723
- "name": "get",
724
- "return": {
725
- "type": {
726
- "text": ""
727
- }
728
- },
729
- "parameters": [
730
- {
731
- "name": "key",
732
- "type": {
733
- "text": "keyof TErrorDetailMap"
734
- },
735
- "description": "The key."
736
- }
737
- ],
738
- "description": "Get an error by key.",
739
- "privacy": "public"
740
- },
741
- {
742
- "kind": "method",
743
- "name": "has",
744
- "return": {
745
- "type": {
746
- "text": ""
747
- }
748
- },
749
- "parameters": [
750
- {
751
- "name": "key",
752
- "type": {
753
- "text": "keyof TErrorDetailMap"
754
- },
755
- "description": "The key."
756
- }
757
- ],
758
- "description": "Has an error for key.",
759
- "privacy": "public"
760
- },
761
- {
762
- "kind": "method",
763
- "name": "delete",
764
- "return": {
765
- "type": {
766
- "text": ""
767
- }
768
- },
769
- "parameters": [
770
- {
771
- "name": "key",
772
- "type": {
773
- "text": "keyof TErrorDetailMap"
774
- },
775
- "description": "The key."
776
- }
777
- ],
778
- "description": "Delete an error.",
779
- "privacy": "public"
780
- },
781
- {
782
- "kind": "method",
783
- "name": "clear",
784
- "description": "Clear errors.",
785
- "privacy": "public"
786
- },
787
- {
788
- "kind": "field",
789
- "name": "size",
790
- "type": {
791
- "text": "number"
792
- },
793
- "description": "The size of the error map.",
794
- "return": {
795
- "type": {
796
- "text": ""
797
- }
798
- },
799
- "privacy": "public",
800
- "readonly": true
801
- },
802
- {
803
- "kind": "method",
804
- "name": "values",
805
- "privacy": "public"
806
- },
807
- {
808
- "kind": "field",
809
- "name": "messages",
810
- "type": {
811
- "text": "string"
812
- },
813
- "description": "{@inheritDoc ErrorMap.messages}",
814
- "readonly": true
815
- }
816
- ]
817
- },
818
- {
819
- "kind": "function",
820
- "name": "createErrorMap",
821
- "return": {
822
- "type": {
823
- "text": ""
824
- }
825
- },
826
- "parameters": [
827
- {
828
- "name": "logger",
829
- "type": {
830
- "text": "ErrorMapLogger"
831
- },
832
- "description": "A logger error method reference."
833
- }
834
- ],
835
- "description": "A factory to create the error map.",
836
- "privacy": "public"
837
- }
838
- ],
839
- "exports": [
840
- {
841
- "kind": "js",
842
- "name": "DefaultErrorMap",
843
- "declaration": {
844
- "name": "DefaultErrorMap",
845
- "module": "src/error/errorMap.ts"
846
- }
847
- },
848
- {
849
- "kind": "js",
850
- "name": "createErrorMap",
851
- "declaration": {
852
- "name": "createErrorMap",
853
- "module": "src/error/errorMap.ts"
854
- }
855
- }
856
- ]
857
- },
858
- {
859
- "kind": "javascript-module",
860
- "path": "src/error/index.ts",
861
- "declarations": [],
862
- "exports": [
863
- {
864
- "kind": "js",
865
- "name": "*",
866
- "declaration": {
867
- "name": "*",
868
- "package": "./errorMap"
869
- }
870
- }
871
- ]
872
- },
873
- {
874
- "kind": "javascript-module",
875
- "path": "src/design-system/design-system.ts",
876
- "declarations": [
877
- {
878
- "kind": "function",
879
- "name": "assureDesignSystem",
880
- "return": {
881
- "type": {
882
- "text": "DesignSystemModule"
883
- }
884
- },
885
- "parameters": [
886
- {
887
- "name": "module",
888
- "type": {
889
- "text": "DesignSystemModule"
890
- }
891
- }
892
- ],
893
- "description": "assureDesignSystem.",
894
- "privacy": "public"
895
- }
896
- ],
897
- "exports": [
898
- {
899
- "kind": "js",
900
- "name": "assureDesignSystem",
901
- "declaration": {
902
- "name": "assureDesignSystem",
903
- "module": "src/design-system/design-system.ts"
904
- }
905
- }
906
- ]
907
- },
908
- {
909
- "kind": "javascript-module",
910
- "path": "src/design-system/index.ts",
911
- "declarations": [],
912
- "exports": [
913
- {
914
- "kind": "js",
915
- "name": "*",
916
- "declaration": {
917
- "name": "*",
918
- "package": "./design-system"
919
- }
920
- }
921
- ]
922
- },
923
923
  {
924
924
  "kind": "javascript-module",
925
925
  "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.188.0-FUI-2012-tabulator.1",
4
+ "version": "14.188.0-FUI-2012-tabulator.2",
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.188.0-FUI-2012-tabulator.1",
31
- "@genesislcap/genx": "14.188.0-FUI-2012-tabulator.1",
32
- "@genesislcap/rollup-builder": "14.188.0-FUI-2012-tabulator.1",
33
- "@genesislcap/ts-builder": "14.188.0-FUI-2012-tabulator.1",
34
- "@genesislcap/uvu-playwright-builder": "14.188.0-FUI-2012-tabulator.1",
35
- "@genesislcap/vite-builder": "14.188.0-FUI-2012-tabulator.1",
36
- "@genesislcap/webpack-builder": "14.188.0-FUI-2012-tabulator.1",
30
+ "@genesislcap/foundation-testing": "14.188.0-FUI-2012-tabulator.2",
31
+ "@genesislcap/genx": "14.188.0-FUI-2012-tabulator.2",
32
+ "@genesislcap/rollup-builder": "14.188.0-FUI-2012-tabulator.2",
33
+ "@genesislcap/ts-builder": "14.188.0-FUI-2012-tabulator.2",
34
+ "@genesislcap/uvu-playwright-builder": "14.188.0-FUI-2012-tabulator.2",
35
+ "@genesislcap/vite-builder": "14.188.0-FUI-2012-tabulator.2",
36
+ "@genesislcap/webpack-builder": "14.188.0-FUI-2012-tabulator.2",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.188.0-FUI-2012-tabulator.1",
40
+ "@genesislcap/foundation-logger": "14.188.0-FUI-2012-tabulator.2",
41
41
  "@microsoft/fast-components": "^2.30.6",
42
42
  "@microsoft/fast-element": "^1.12.0",
43
43
  "@microsoft/fast-foundation": "^2.49.4",
@@ -54,5 +54,5 @@
54
54
  "access": "public"
55
55
  },
56
56
  "customElements": "dist/custom-elements.json",
57
- "gitHead": "5824fecaf9af97a64b316ea900380945268e7fe3"
57
+ "gitHead": "9ae04c76af3465f40001c4de1918f289389708c3"
58
58
  }