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

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 +320 -320
  2. package/package.json +10 -10
@@ -159,59 +159,6 @@
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
- },
215
162
  {
216
163
  "kind": "javascript-module",
217
164
  "path": "src/data/inMemoryDatabase.ts",
@@ -462,7 +409,7 @@
462
409
  },
463
410
  {
464
411
  "kind": "javascript-module",
465
- "path": "src/directives/index.ts",
412
+ "path": "src/decorators/index.ts",
466
413
  "declarations": [],
467
414
  "exports": [
468
415
  {
@@ -470,206 +417,52 @@
470
417
  "name": "*",
471
418
  "declaration": {
472
419
  "name": "*",
473
- "package": "./sync"
474
- }
475
- },
476
- {
477
- "kind": "js",
478
- "name": "*",
479
- "declaration": {
480
- "name": "*",
481
- "package": "./when-else"
420
+ "package": "./renderOnChange"
482
421
  }
483
422
  }
484
423
  ]
485
424
  },
486
425
  {
487
426
  "kind": "javascript-module",
488
- "path": "src/error/errorMap.ts",
427
+ "path": "src/decorators/renderOnChange.ts",
489
428
  "declarations": [
490
429
  {
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
- },
430
+ "kind": "function",
431
+ "name": "renderOnChange",
432
+ "parameters": [
599
433
  {
600
- "kind": "field",
601
- "name": "size",
434
+ "name": "target",
602
435
  "type": {
603
- "text": "number"
604
- },
605
- "description": "The size of the error map.",
606
- "return": {
607
- "type": {
608
- "text": ""
609
- }
436
+ "text": "FASTElement & { render(): void }"
610
437
  },
611
- "privacy": "public",
612
- "readonly": true
613
- },
614
- {
615
- "kind": "method",
616
- "name": "values",
617
- "privacy": "public"
438
+ "description": "The target to define the property change handler on."
618
439
  },
619
440
  {
620
- "kind": "field",
621
- "name": "messages",
441
+ "name": "name",
622
442
  "type": {
623
443
  "text": "string"
624
444
  },
625
- "description": "{@inheritDoc ErrorMap.messages}",
626
- "readonly": true
627
- }
628
- ]
629
- },
630
- {
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."
445
+ "description": "The property name."
645
446
  }
646
447
  ],
647
- "description": "A factory to create the error map.",
448
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
648
449
  "privacy": "public"
649
450
  }
650
451
  ],
651
452
  "exports": [
652
453
  {
653
454
  "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",
455
+ "name": "renderOnChange",
663
456
  "declaration": {
664
- "name": "createErrorMap",
665
- "module": "src/error/errorMap.ts"
457
+ "name": "renderOnChange",
458
+ "module": "src/decorators/renderOnChange.ts"
666
459
  }
667
460
  }
668
461
  ]
669
462
  },
670
463
  {
671
464
  "kind": "javascript-module",
672
- "path": "src/error/index.ts",
465
+ "path": "src/directives/index.ts",
673
466
  "declarations": [],
674
467
  "exports": [
675
468
  {
@@ -677,7 +470,15 @@
677
470
  "name": "*",
678
471
  "declaration": {
679
472
  "name": "*",
680
- "package": "./errorMap"
473
+ "package": "./sync"
474
+ }
475
+ },
476
+ {
477
+ "kind": "js",
478
+ "name": "*",
479
+ "declaration": {
480
+ "name": "*",
481
+ "package": "./when-else"
681
482
  }
682
483
  }
683
484
  ]
@@ -844,78 +645,277 @@
844
645
  }
845
646
  },
846
647
  {
847
- "kind": "variable",
848
- "name": "_DEFAULT_USER",
849
- "type": {
850
- "text": "string"
648
+ "kind": "variable",
649
+ "name": "_DEFAULT_USER",
650
+ "type": {
651
+ "text": "string"
652
+ },
653
+ "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
654
+ "privacy": "public"
655
+ }
656
+ ],
657
+ "exports": [
658
+ {
659
+ "kind": "js",
660
+ "name": "SOCKET_EXT",
661
+ "declaration": {
662
+ "name": "_SOCKET_EXT",
663
+ "module": "src/env/variables.ts"
664
+ }
665
+ },
666
+ {
667
+ "kind": "js",
668
+ "name": "FORCE_HTTP",
669
+ "declaration": {
670
+ "name": "_FORCE_HTTP",
671
+ "module": "src/env/variables.ts"
672
+ }
673
+ },
674
+ {
675
+ "kind": "js",
676
+ "name": "GENESIS_SOCKET_URL",
677
+ "declaration": {
678
+ "name": "GENESIS_SOCKET_URL",
679
+ "module": "src/env/variables.ts"
680
+ }
681
+ },
682
+ {
683
+ "kind": "js",
684
+ "name": "API_HOST",
685
+ "declaration": {
686
+ "name": "_API_HOST",
687
+ "module": "src/env/variables.ts"
688
+ }
689
+ },
690
+ {
691
+ "kind": "js",
692
+ "name": "HTTP_CONFIG",
693
+ "declaration": {
694
+ "name": "_HTTP_CONFIG",
695
+ "module": "src/env/variables.ts"
696
+ }
697
+ },
698
+ {
699
+ "kind": "js",
700
+ "name": "DEFAULT_ORGANISATION",
701
+ "declaration": {
702
+ "name": "_DEFAULT_ORGANISATION",
703
+ "module": "src/env/variables.ts"
704
+ }
705
+ },
706
+ {
707
+ "kind": "js",
708
+ "name": "DEFAULT_PASSWORD",
709
+ "declaration": {
710
+ "name": "_DEFAULT_PASSWORD",
711
+ "module": "src/env/variables.ts"
712
+ }
713
+ },
714
+ {
715
+ "kind": "js",
716
+ "name": "DEFAULT_USER",
717
+ "declaration": {
718
+ "name": "_DEFAULT_USER",
719
+ "module": "src/env/variables.ts"
720
+ }
721
+ }
722
+ ]
723
+ },
724
+ {
725
+ "kind": "javascript-module",
726
+ "path": "src/error/errorMap.ts",
727
+ "declarations": [
728
+ {
729
+ "kind": "class",
730
+ "description": "",
731
+ "name": "DefaultErrorMap",
732
+ "members": [
733
+ {
734
+ "kind": "field",
735
+ "name": "map",
736
+ "privacy": "private",
737
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
738
+ },
739
+ {
740
+ "kind": "field",
741
+ "name": "lastError",
742
+ "type": {
743
+ "text": "Error"
744
+ },
745
+ "description": "{@inheritDoc ErrorMap.lastError}"
746
+ },
747
+ {
748
+ "kind": "method",
749
+ "name": "set",
750
+ "return": {
751
+ "type": {
752
+ "text": "void"
753
+ }
754
+ },
755
+ "parameters": [
756
+ {
757
+ "name": "key",
758
+ "type": {
759
+ "text": "keyof TErrorDetailMap"
760
+ }
761
+ },
762
+ {
763
+ "name": "error",
764
+ "type": {
765
+ "text": "Error"
766
+ }
767
+ }
768
+ ],
769
+ "description": "{@inheritDoc ErrorMap.set}"
770
+ },
771
+ {
772
+ "kind": "method",
773
+ "name": "get",
774
+ "return": {
775
+ "type": {
776
+ "text": ""
777
+ }
778
+ },
779
+ "parameters": [
780
+ {
781
+ "name": "key",
782
+ "type": {
783
+ "text": "keyof TErrorDetailMap"
784
+ },
785
+ "description": "The key."
786
+ }
787
+ ],
788
+ "description": "Get an error by key.",
789
+ "privacy": "public"
790
+ },
791
+ {
792
+ "kind": "method",
793
+ "name": "has",
794
+ "return": {
795
+ "type": {
796
+ "text": ""
797
+ }
798
+ },
799
+ "parameters": [
800
+ {
801
+ "name": "key",
802
+ "type": {
803
+ "text": "keyof TErrorDetailMap"
804
+ },
805
+ "description": "The key."
806
+ }
807
+ ],
808
+ "description": "Has an error for key.",
809
+ "privacy": "public"
810
+ },
811
+ {
812
+ "kind": "method",
813
+ "name": "delete",
814
+ "return": {
815
+ "type": {
816
+ "text": ""
817
+ }
818
+ },
819
+ "parameters": [
820
+ {
821
+ "name": "key",
822
+ "type": {
823
+ "text": "keyof TErrorDetailMap"
824
+ },
825
+ "description": "The key."
826
+ }
827
+ ],
828
+ "description": "Delete an error.",
829
+ "privacy": "public"
830
+ },
831
+ {
832
+ "kind": "method",
833
+ "name": "clear",
834
+ "description": "Clear errors.",
835
+ "privacy": "public"
836
+ },
837
+ {
838
+ "kind": "field",
839
+ "name": "size",
840
+ "type": {
841
+ "text": "number"
842
+ },
843
+ "description": "The size of the error map.",
844
+ "return": {
845
+ "type": {
846
+ "text": ""
847
+ }
848
+ },
849
+ "privacy": "public",
850
+ "readonly": true
851
+ },
852
+ {
853
+ "kind": "method",
854
+ "name": "values",
855
+ "privacy": "public"
856
+ },
857
+ {
858
+ "kind": "field",
859
+ "name": "messages",
860
+ "type": {
861
+ "text": "string"
862
+ },
863
+ "description": "{@inheritDoc ErrorMap.messages}",
864
+ "readonly": true
865
+ }
866
+ ]
867
+ },
868
+ {
869
+ "kind": "function",
870
+ "name": "createErrorMap",
871
+ "return": {
872
+ "type": {
873
+ "text": ""
874
+ }
851
875
  },
852
- "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
876
+ "parameters": [
877
+ {
878
+ "name": "logger",
879
+ "type": {
880
+ "text": "ErrorMapLogger"
881
+ },
882
+ "description": "A logger error method reference."
883
+ }
884
+ ],
885
+ "description": "A factory to create the error map.",
853
886
  "privacy": "public"
854
887
  }
855
888
  ],
856
889
  "exports": [
857
890
  {
858
891
  "kind": "js",
859
- "name": "SOCKET_EXT",
860
- "declaration": {
861
- "name": "_SOCKET_EXT",
862
- "module": "src/env/variables.ts"
863
- }
864
- },
865
- {
866
- "kind": "js",
867
- "name": "FORCE_HTTP",
868
- "declaration": {
869
- "name": "_FORCE_HTTP",
870
- "module": "src/env/variables.ts"
871
- }
872
- },
873
- {
874
- "kind": "js",
875
- "name": "GENESIS_SOCKET_URL",
876
- "declaration": {
877
- "name": "GENESIS_SOCKET_URL",
878
- "module": "src/env/variables.ts"
879
- }
880
- },
881
- {
882
- "kind": "js",
883
- "name": "API_HOST",
884
- "declaration": {
885
- "name": "_API_HOST",
886
- "module": "src/env/variables.ts"
887
- }
888
- },
889
- {
890
- "kind": "js",
891
- "name": "HTTP_CONFIG",
892
- "declaration": {
893
- "name": "_HTTP_CONFIG",
894
- "module": "src/env/variables.ts"
895
- }
896
- },
897
- {
898
- "kind": "js",
899
- "name": "DEFAULT_ORGANISATION",
892
+ "name": "DefaultErrorMap",
900
893
  "declaration": {
901
- "name": "_DEFAULT_ORGANISATION",
902
- "module": "src/env/variables.ts"
894
+ "name": "DefaultErrorMap",
895
+ "module": "src/error/errorMap.ts"
903
896
  }
904
897
  },
905
898
  {
906
899
  "kind": "js",
907
- "name": "DEFAULT_PASSWORD",
900
+ "name": "createErrorMap",
908
901
  "declaration": {
909
- "name": "_DEFAULT_PASSWORD",
910
- "module": "src/env/variables.ts"
902
+ "name": "createErrorMap",
903
+ "module": "src/error/errorMap.ts"
911
904
  }
912
- },
905
+ }
906
+ ]
907
+ },
908
+ {
909
+ "kind": "javascript-module",
910
+ "path": "src/error/index.ts",
911
+ "declarations": [],
912
+ "exports": [
913
913
  {
914
914
  "kind": "js",
915
- "name": "DEFAULT_USER",
915
+ "name": "*",
916
916
  "declaration": {
917
- "name": "_DEFAULT_USER",
918
- "module": "src/env/variables.ts"
917
+ "name": "*",
918
+ "package": "./errorMap"
919
919
  }
920
920
  }
921
921
  ]
@@ -1384,47 +1384,6 @@
1384
1384
  }
1385
1385
  ]
1386
1386
  },
1387
- {
1388
- "kind": "javascript-module",
1389
- "path": "src/resource/index.ts",
1390
- "declarations": [],
1391
- "exports": [
1392
- {
1393
- "kind": "js",
1394
- "name": "*",
1395
- "declaration": {
1396
- "name": "*",
1397
- "package": "./types"
1398
- }
1399
- }
1400
- ]
1401
- },
1402
- {
1403
- "kind": "javascript-module",
1404
- "path": "src/resource/types.ts",
1405
- "declarations": [
1406
- {
1407
- "kind": "variable",
1408
- "name": "ResourceType",
1409
- "type": {
1410
- "text": "{\n local: 'local',\n remote: 'remote',\n}"
1411
- },
1412
- "default": "{\n local: 'local',\n remote: 'remote',\n}",
1413
- "description": "An object that defines two resource types: \"local\" and \"remote\".",
1414
- "privacy": "public"
1415
- }
1416
- ],
1417
- "exports": [
1418
- {
1419
- "kind": "js",
1420
- "name": "ResourceType",
1421
- "declaration": {
1422
- "name": "ResourceType",
1423
- "module": "src/resource/types.ts"
1424
- }
1425
- }
1426
- ]
1427
- },
1428
1387
  {
1429
1388
  "kind": "javascript-module",
1430
1389
  "path": "src/serializers/index.ts",
@@ -1566,6 +1525,47 @@
1566
1525
  }
1567
1526
  ]
1568
1527
  },
1528
+ {
1529
+ "kind": "javascript-module",
1530
+ "path": "src/resource/index.ts",
1531
+ "declarations": [],
1532
+ "exports": [
1533
+ {
1534
+ "kind": "js",
1535
+ "name": "*",
1536
+ "declaration": {
1537
+ "name": "*",
1538
+ "package": "./types"
1539
+ }
1540
+ }
1541
+ ]
1542
+ },
1543
+ {
1544
+ "kind": "javascript-module",
1545
+ "path": "src/resource/types.ts",
1546
+ "declarations": [
1547
+ {
1548
+ "kind": "variable",
1549
+ "name": "ResourceType",
1550
+ "type": {
1551
+ "text": "{\n local: 'local',\n remote: 'remote',\n}"
1552
+ },
1553
+ "default": "{\n local: 'local',\n remote: 'remote',\n}",
1554
+ "description": "An object that defines two resource types: \"local\" and \"remote\".",
1555
+ "privacy": "public"
1556
+ }
1557
+ ],
1558
+ "exports": [
1559
+ {
1560
+ "kind": "js",
1561
+ "name": "ResourceType",
1562
+ "declaration": {
1563
+ "name": "ResourceType",
1564
+ "module": "src/resource/types.ts"
1565
+ }
1566
+ }
1567
+ ]
1568
+ },
1569
1569
  {
1570
1570
  "kind": "javascript-module",
1571
1571
  "path": "src/styles/color.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.2",
4
+ "version": "14.188.0-FUI-2012-tabulator.3",
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.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",
30
+ "@genesislcap/foundation-testing": "14.188.0-FUI-2012-tabulator.3",
31
+ "@genesislcap/genx": "14.188.0-FUI-2012-tabulator.3",
32
+ "@genesislcap/rollup-builder": "14.188.0-FUI-2012-tabulator.3",
33
+ "@genesislcap/ts-builder": "14.188.0-FUI-2012-tabulator.3",
34
+ "@genesislcap/uvu-playwright-builder": "14.188.0-FUI-2012-tabulator.3",
35
+ "@genesislcap/vite-builder": "14.188.0-FUI-2012-tabulator.3",
36
+ "@genesislcap/webpack-builder": "14.188.0-FUI-2012-tabulator.3",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.188.0-FUI-2012-tabulator.2",
40
+ "@genesislcap/foundation-logger": "14.188.0-FUI-2012-tabulator.3",
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": "9ae04c76af3465f40001c4de1918f289389708c3"
57
+ "gitHead": "8bfd6024bb20faa98b685be48c2b2b659af2e3cd"
58
58
  }