@genesislcap/foundation-entity-management 14.26.4-alpha-c8fff0926.0 → 14.26.5

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 +390 -390
  2. package/package.json +13 -13
@@ -87,6 +87,41 @@
87
87
  }
88
88
  ]
89
89
  },
90
+ {
91
+ "kind": "javascript-module",
92
+ "path": "src/components/components.ts",
93
+ "declarations": [
94
+ {
95
+ "kind": "function",
96
+ "name": "loadRemotes"
97
+ }
98
+ ],
99
+ "exports": [
100
+ {
101
+ "kind": "js",
102
+ "name": "loadRemotes",
103
+ "declaration": {
104
+ "name": "loadRemotes",
105
+ "module": "src/components/components.ts"
106
+ }
107
+ }
108
+ ]
109
+ },
110
+ {
111
+ "kind": "javascript-module",
112
+ "path": "src/components/index.ts",
113
+ "declarations": [],
114
+ "exports": [
115
+ {
116
+ "kind": "js",
117
+ "name": "*",
118
+ "declaration": {
119
+ "name": "*",
120
+ "package": "./components"
121
+ }
122
+ }
123
+ ]
124
+ },
90
125
  {
91
126
  "kind": "javascript-module",
92
127
  "path": "src/entities/entities.styles.ts",
@@ -558,41 +593,6 @@
558
593
  }
559
594
  ]
560
595
  },
561
- {
562
- "kind": "javascript-module",
563
- "path": "src/components/components.ts",
564
- "declarations": [
565
- {
566
- "kind": "function",
567
- "name": "loadRemotes"
568
- }
569
- ],
570
- "exports": [
571
- {
572
- "kind": "js",
573
- "name": "loadRemotes",
574
- "declaration": {
575
- "name": "loadRemotes",
576
- "module": "src/components/components.ts"
577
- }
578
- }
579
- ]
580
- },
581
- {
582
- "kind": "javascript-module",
583
- "path": "src/components/index.ts",
584
- "declarations": [],
585
- "exports": [
586
- {
587
- "kind": "js",
588
- "name": "*",
589
- "declaration": {
590
- "name": "*",
591
- "package": "./components"
592
- }
593
- }
594
- ]
595
- },
596
596
  {
597
597
  "kind": "javascript-module",
598
598
  "path": "src/layouts/default.ts",
@@ -644,7 +644,7 @@
644
644
  },
645
645
  {
646
646
  "kind": "javascript-module",
647
- "path": "src/main/index.ts",
647
+ "path": "src/list/index.ts",
648
648
  "declarations": [],
649
649
  "exports": [
650
650
  {
@@ -652,124 +652,436 @@
652
652
  "name": "*",
653
653
  "declaration": {
654
654
  "name": "*",
655
- "package": "./main.template"
655
+ "package": "./list"
656
656
  }
657
- },
657
+ }
658
+ ]
659
+ },
660
+ {
661
+ "kind": "javascript-module",
662
+ "path": "src/list/list.styles.ts",
663
+ "declarations": [
664
+ {
665
+ "kind": "variable",
666
+ "name": "listStyles",
667
+ "default": "css`\n :host {\n contain: content;\n }\n\n :host,\n fast-router {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n }\n\n .container {\n display: flex;\n flex-direction: column;\n height: inherit;\n width: 100%;\n }\n\n .heading {\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n`"
668
+ }
669
+ ],
670
+ "exports": [
658
671
  {
659
672
  "kind": "js",
660
- "name": "*",
673
+ "name": "listStyles",
661
674
  "declaration": {
662
- "name": "*",
663
- "package": "./main"
675
+ "name": "listStyles",
676
+ "module": "src/list/list.styles.ts"
664
677
  }
665
678
  }
666
679
  ]
667
680
  },
668
681
  {
669
682
  "kind": "javascript-module",
670
- "path": "src/main/main.styles.ts",
683
+ "path": "src/list/list.template.ts",
671
684
  "declarations": [
685
+ {
686
+ "kind": "function",
687
+ "name": "buttonCellRenderer",
688
+ "parameters": [
689
+ {
690
+ "name": "title"
691
+ },
692
+ {
693
+ "name": "clickHandler"
694
+ }
695
+ ]
696
+ },
672
697
  {
673
698
  "kind": "variable",
674
- "name": "MainStyles",
675
- "default": "css`\n ${mixinRobotoFont()}\n :host {\n contain: content;\n }\n\n :host,\n zero-design-system-provider,\n .dynamic-template,\n foundation-router {\n display: flex;\n width: 100%;\n height: 100%;\n }\n\n fast-progress {\n --accent-foreground-rest: #654df9;\n\n height: calc(var(--design-unit) * 1px);\n margin: 0;\n width: 100%;\n }\n`"
699
+ "name": "listTemplate",
700
+ "default": "html<List>`\n <div class=\"heading\">\n <h3 data-test-id=\"title\">${(x) => x.title}</h3>\n ${when(\n (x) => x.createEvent,\n html`\n <zero-button\n appearance=\"accent\"\n @click=${(x) => x.create()}\n ?disabled=\"${(x) => x.addDisabled}\"\n data-test-id=\"button-create\"\n >\n Add\n </zero-button>\n `\n )}\n </div>\n <div class=\"container\">\n ${when(\n (x) => x.enableFilterBar,\n html<List>`\n <zero-filter-bar\n resource=${(x) => x.resourceName}\n only=${(x) => x.columns?.map((colDef) => colDef.field).filter((field) => !!field)}\n labels=${(x) => x.columns?.map((colDef) => colDef.headerName || '')}\n target=\"datasource\"\n ></zero-filter-bar>\n `\n )}\n <zero-grid-pro\n ${ref('grid')}\n auto-cell-renderer-by-type\n rowSelection=\"single\"\n rowHeight=\"36\"\n headerHeight=\"36\"\n persist-column-state-key=${(x) => x.persistColumnStateKey}\n ?only-template-col-defs=${(x) => !!x.columns}\n suppressCellFocus=\"true\"\n suppressRowDeselection=\"true\"\n enable-cell-flashing=${(x) => x.enableCellFlashing}\n >\n <grid-pro-genesis-datasource\n ${ref('datasource')}\n resource-name=${(x) => x.resourceName}\n criteria=${(x) => x.datasourceConfig?.criteria}\n fields=${(x) => x.datasourceConfig?.fields}\n is-snapshot=${(x) => x.datasourceConfig?.isSnapshot}\n max-rows=${(x) => x.datasourceConfig?.maxRows}\n max-view=${(x) => x.datasourceConfig?.maxView}\n order-by=${(x) => x.datasourceConfig?.orderBy}\n reverse=${(x) => x.datasourceConfig?.reverse}\n ></grid-pro-genesis-datasource>\n ${repeat(\n (x) => x.columns,\n html`\n <grid-pro-column :definition=${(x) => x}></grid-pro-column>\n `\n )}\n ${repeat(\n (x) => x.actionButtonsConfig,\n html`\n <grid-pro-column :definition=${(x) => x}></grid-pro-column>\n `\n )}\n </zero-grid-pro>\n </div>\n`"
676
701
  }
677
702
  ],
678
703
  "exports": [
679
704
  {
680
705
  "kind": "js",
681
- "name": "MainStyles",
706
+ "name": "buttonCellRenderer",
682
707
  "declaration": {
683
- "name": "MainStyles",
684
- "module": "src/main/main.styles.ts"
708
+ "name": "buttonCellRenderer",
709
+ "module": "src/list/list.template.ts"
710
+ }
711
+ },
712
+ {
713
+ "kind": "js",
714
+ "name": "listTemplate",
715
+ "declaration": {
716
+ "name": "listTemplate",
717
+ "module": "src/list/list.template.ts"
685
718
  }
686
719
  }
687
720
  ]
688
721
  },
689
722
  {
690
723
  "kind": "javascript-module",
691
- "path": "src/main/main.template.ts",
692
- "declarations": [],
693
- "exports": []
694
- },
695
- {
696
- "kind": "javascript-module",
697
- "path": "src/main/main.ts",
724
+ "path": "src/list/list.ts",
698
725
  "declarations": [
699
726
  {
700
727
  "kind": "class",
701
728
  "description": "",
702
- "name": "MainApplication",
729
+ "name": "List",
703
730
  "members": [
704
731
  {
705
732
  "kind": "field",
706
- "name": "config",
733
+ "name": "resourceName",
707
734
  "type": {
708
- "text": "MainRouterConfig"
709
- }
735
+ "text": "string"
736
+ },
737
+ "default": "''"
710
738
  },
711
739
  {
712
740
  "kind": "field",
713
- "name": "connect",
741
+ "name": "title",
714
742
  "type": {
715
- "text": "Connect"
716
- }
743
+ "text": "string"
744
+ },
745
+ "default": "''"
717
746
  },
718
747
  {
719
748
  "kind": "field",
720
- "name": "session",
749
+ "name": "persistColumnStateKey",
721
750
  "type": {
722
- "text": "Session"
751
+ "text": "string"
723
752
  }
724
753
  },
725
754
  {
726
755
  "kind": "field",
727
- "name": "container",
756
+ "name": "sizeColumnsToFit",
728
757
  "type": {
729
- "text": "Container"
758
+ "text": "boolean"
730
759
  }
731
760
  },
732
761
  {
733
762
  "kind": "field",
734
- "name": "provider",
763
+ "name": "enableFilterBar",
735
764
  "type": {
736
- "text": "any"
765
+ "text": "boolean"
737
766
  }
738
767
  },
739
768
  {
740
769
  "kind": "field",
741
- "name": "ready",
770
+ "name": "enableCellFlashing",
742
771
  "type": {
743
772
  "text": "boolean"
773
+ }
774
+ },
775
+ {
776
+ "kind": "field",
777
+ "name": "grid",
778
+ "type": {
779
+ "text": "ZeroGridPro"
744
780
  },
745
- "default": "false"
781
+ "privacy": "public"
746
782
  },
747
783
  {
748
784
  "kind": "field",
749
- "name": "data",
785
+ "name": "datasource",
750
786
  "type": {
751
- "text": "any"
787
+ "text": "GridProGenesisDatasource"
752
788
  },
753
- "default": "null"
789
+ "privacy": "public"
790
+ },
791
+ {
792
+ "kind": "field",
793
+ "name": "columns",
794
+ "type": {
795
+ "text": "ColDef[]"
796
+ }
797
+ },
798
+ {
799
+ "kind": "field",
800
+ "name": "datasourceConfig",
801
+ "type": {
802
+ "text": "DatasourceConfiguration"
803
+ }
804
+ },
805
+ {
806
+ "kind": "field",
807
+ "name": "actionButtonsConfig",
808
+ "type": {
809
+ "text": "array"
810
+ },
811
+ "default": "[]"
812
+ },
813
+ {
814
+ "kind": "field",
815
+ "name": "createEvent",
816
+ "type": {
817
+ "text": "string"
818
+ }
819
+ },
820
+ {
821
+ "kind": "field",
822
+ "name": "deleteEvent",
823
+ "type": {
824
+ "text": "string"
825
+ }
826
+ },
827
+ {
828
+ "kind": "field",
829
+ "name": "updateEvent",
830
+ "type": {
831
+ "text": "string"
832
+ }
754
833
  },
755
834
  {
756
835
  "kind": "method",
757
- "name": "onLuminanceToggle"
836
+ "name": "handleFilterChanged",
837
+ "privacy": "private",
838
+ "parameters": [
839
+ {
840
+ "name": "e"
841
+ }
842
+ ]
758
843
  },
759
844
  {
760
845
  "kind": "method",
761
- "name": "loadRemotes"
846
+ "name": "handleFilterCleared",
847
+ "privacy": "private",
848
+ "parameters": [
849
+ {
850
+ "name": "e"
851
+ }
852
+ ]
762
853
  },
763
854
  {
764
855
  "kind": "method",
765
- "name": "selectTemplate"
856
+ "name": "select",
857
+ "privacy": "private",
858
+ "parameters": [
859
+ {
860
+ "name": "e"
861
+ }
862
+ ]
766
863
  },
767
864
  {
768
865
  "kind": "method",
769
- "name": "registerDIDependencies",
866
+ "name": "create",
867
+ "privacy": "public"
868
+ },
869
+ {
870
+ "kind": "field",
871
+ "name": "edit",
770
872
  "privacy": "private"
771
- }
772
- ],
873
+ },
874
+ {
875
+ "kind": "method",
876
+ "name": "delete",
877
+ "parameters": [
878
+ {
879
+ "name": "e"
880
+ }
881
+ ]
882
+ }
883
+ ],
884
+ "attributes": [
885
+ {
886
+ "name": "resourceName",
887
+ "type": {
888
+ "text": "string"
889
+ },
890
+ "default": "''",
891
+ "fieldName": "resourceName"
892
+ },
893
+ {
894
+ "name": "title",
895
+ "type": {
896
+ "text": "string"
897
+ },
898
+ "default": "''",
899
+ "fieldName": "title"
900
+ },
901
+ {
902
+ "name": "persist-column-state-key",
903
+ "type": {
904
+ "text": "string"
905
+ },
906
+ "fieldName": "persistColumnStateKey"
907
+ },
908
+ {
909
+ "name": "size-columns-to-fit",
910
+ "type": {
911
+ "text": "boolean"
912
+ },
913
+ "fieldName": "sizeColumnsToFit"
914
+ },
915
+ {
916
+ "name": "enable-filter-bar",
917
+ "type": {
918
+ "text": "boolean"
919
+ },
920
+ "fieldName": "enableFilterBar"
921
+ },
922
+ {
923
+ "name": "enable-cell-flashing",
924
+ "type": {
925
+ "text": "boolean"
926
+ },
927
+ "fieldName": "enableCellFlashing"
928
+ }
929
+ ],
930
+ "superclass": {
931
+ "name": "FASTElement",
932
+ "package": "@microsoft/fast-element"
933
+ },
934
+ "tagName": "entity-list",
935
+ "customElement": true
936
+ }
937
+ ],
938
+ "exports": [
939
+ {
940
+ "kind": "js",
941
+ "name": "List",
942
+ "declaration": {
943
+ "name": "List",
944
+ "module": "src/list/list.ts"
945
+ }
946
+ },
947
+ {
948
+ "kind": "custom-element-definition",
949
+ "name": "entity-list",
950
+ "declaration": {
951
+ "name": "List",
952
+ "module": "src/list/list.ts"
953
+ }
954
+ }
955
+ ]
956
+ },
957
+ {
958
+ "kind": "javascript-module",
959
+ "path": "src/main/index.ts",
960
+ "declarations": [],
961
+ "exports": [
962
+ {
963
+ "kind": "js",
964
+ "name": "*",
965
+ "declaration": {
966
+ "name": "*",
967
+ "package": "./main.template"
968
+ }
969
+ },
970
+ {
971
+ "kind": "js",
972
+ "name": "*",
973
+ "declaration": {
974
+ "name": "*",
975
+ "package": "./main"
976
+ }
977
+ }
978
+ ]
979
+ },
980
+ {
981
+ "kind": "javascript-module",
982
+ "path": "src/main/main.styles.ts",
983
+ "declarations": [
984
+ {
985
+ "kind": "variable",
986
+ "name": "MainStyles",
987
+ "default": "css`\n ${mixinRobotoFont()}\n :host {\n contain: content;\n }\n\n :host,\n zero-design-system-provider,\n .dynamic-template,\n foundation-router {\n display: flex;\n width: 100%;\n height: 100%;\n }\n\n fast-progress {\n --accent-foreground-rest: #654df9;\n\n height: calc(var(--design-unit) * 1px);\n margin: 0;\n width: 100%;\n }\n`"
988
+ }
989
+ ],
990
+ "exports": [
991
+ {
992
+ "kind": "js",
993
+ "name": "MainStyles",
994
+ "declaration": {
995
+ "name": "MainStyles",
996
+ "module": "src/main/main.styles.ts"
997
+ }
998
+ }
999
+ ]
1000
+ },
1001
+ {
1002
+ "kind": "javascript-module",
1003
+ "path": "src/main/main.template.ts",
1004
+ "declarations": [],
1005
+ "exports": []
1006
+ },
1007
+ {
1008
+ "kind": "javascript-module",
1009
+ "path": "src/main/main.ts",
1010
+ "declarations": [
1011
+ {
1012
+ "kind": "class",
1013
+ "description": "",
1014
+ "name": "MainApplication",
1015
+ "members": [
1016
+ {
1017
+ "kind": "field",
1018
+ "name": "config",
1019
+ "type": {
1020
+ "text": "MainRouterConfig"
1021
+ }
1022
+ },
1023
+ {
1024
+ "kind": "field",
1025
+ "name": "connect",
1026
+ "type": {
1027
+ "text": "Connect"
1028
+ }
1029
+ },
1030
+ {
1031
+ "kind": "field",
1032
+ "name": "session",
1033
+ "type": {
1034
+ "text": "Session"
1035
+ }
1036
+ },
1037
+ {
1038
+ "kind": "field",
1039
+ "name": "container",
1040
+ "type": {
1041
+ "text": "Container"
1042
+ }
1043
+ },
1044
+ {
1045
+ "kind": "field",
1046
+ "name": "provider",
1047
+ "type": {
1048
+ "text": "any"
1049
+ }
1050
+ },
1051
+ {
1052
+ "kind": "field",
1053
+ "name": "ready",
1054
+ "type": {
1055
+ "text": "boolean"
1056
+ },
1057
+ "default": "false"
1058
+ },
1059
+ {
1060
+ "kind": "field",
1061
+ "name": "data",
1062
+ "type": {
1063
+ "text": "any"
1064
+ },
1065
+ "default": "null"
1066
+ },
1067
+ {
1068
+ "kind": "method",
1069
+ "name": "onLuminanceToggle"
1070
+ },
1071
+ {
1072
+ "kind": "method",
1073
+ "name": "loadRemotes"
1074
+ },
1075
+ {
1076
+ "kind": "method",
1077
+ "name": "selectTemplate"
1078
+ },
1079
+ {
1080
+ "kind": "method",
1081
+ "name": "registerDIDependencies",
1082
+ "privacy": "private"
1083
+ }
1084
+ ],
773
1085
  "superclass": {
774
1086
  "name": "FASTElement",
775
1087
  "package": "@microsoft/fast-element"
@@ -1400,318 +1712,6 @@
1400
1712
  }
1401
1713
  ]
1402
1714
  },
1403
- {
1404
- "kind": "javascript-module",
1405
- "path": "src/list/index.ts",
1406
- "declarations": [],
1407
- "exports": [
1408
- {
1409
- "kind": "js",
1410
- "name": "*",
1411
- "declaration": {
1412
- "name": "*",
1413
- "package": "./list"
1414
- }
1415
- }
1416
- ]
1417
- },
1418
- {
1419
- "kind": "javascript-module",
1420
- "path": "src/list/list.styles.ts",
1421
- "declarations": [
1422
- {
1423
- "kind": "variable",
1424
- "name": "listStyles",
1425
- "default": "css`\n :host {\n contain: content;\n }\n\n :host,\n fast-router {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n }\n\n .container {\n display: flex;\n flex-direction: column;\n height: inherit;\n width: 100%;\n }\n\n .heading {\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n`"
1426
- }
1427
- ],
1428
- "exports": [
1429
- {
1430
- "kind": "js",
1431
- "name": "listStyles",
1432
- "declaration": {
1433
- "name": "listStyles",
1434
- "module": "src/list/list.styles.ts"
1435
- }
1436
- }
1437
- ]
1438
- },
1439
- {
1440
- "kind": "javascript-module",
1441
- "path": "src/list/list.template.ts",
1442
- "declarations": [
1443
- {
1444
- "kind": "function",
1445
- "name": "buttonCellRenderer",
1446
- "parameters": [
1447
- {
1448
- "name": "title"
1449
- },
1450
- {
1451
- "name": "clickHandler"
1452
- }
1453
- ]
1454
- },
1455
- {
1456
- "kind": "variable",
1457
- "name": "listTemplate",
1458
- "default": "html<List>`\n <div class=\"heading\">\n <h3 data-test-id=\"title\">${(x) => x.title}</h3>\n ${when(\n (x) => x.createEvent,\n html`\n <zero-button\n appearance=\"accent\"\n @click=${(x) => x.create()}\n ?disabled=\"${(x) => x.addDisabled}\"\n data-test-id=\"button-create\"\n >\n Add\n </zero-button>\n `\n )}\n </div>\n <div class=\"container\">\n ${when(\n (x) => x.enableFilterBar,\n html<List>`\n <zero-filter-bar\n resource=${(x) => x.resourceName}\n only=${(x) => x.columns?.map((colDef) => colDef.field).filter((field) => !!field)}\n labels=${(x) => x.columns?.map((colDef) => colDef.headerName || '')}\n target=\"datasource\"\n ></zero-filter-bar>\n `\n )}\n <zero-grid-pro\n ${ref('grid')}\n auto-cell-renderer-by-type\n rowSelection=\"single\"\n rowHeight=\"36\"\n headerHeight=\"36\"\n persist-column-state-key=${(x) => x.persistColumnStateKey}\n ?only-template-col-defs=${(x) => !!x.columns}\n suppressCellFocus=\"true\"\n suppressRowDeselection=\"true\"\n enable-cell-flashing=${(x) => x.enableCellFlashing}\n >\n <grid-pro-genesis-datasource\n ${ref('datasource')}\n resource-name=${(x) => x.resourceName}\n criteria=${(x) => x.datasourceConfig?.criteria}\n fields=${(x) => x.datasourceConfig?.fields}\n is-snapshot=${(x) => x.datasourceConfig?.isSnapshot}\n max-rows=${(x) => x.datasourceConfig?.maxRows}\n max-view=${(x) => x.datasourceConfig?.maxView}\n order-by=${(x) => x.datasourceConfig?.orderBy}\n reverse=${(x) => x.datasourceConfig?.reverse}\n ></grid-pro-genesis-datasource>\n ${repeat(\n (x) => x.columns,\n html`\n <grid-pro-column :definition=${(x) => x}></grid-pro-column>\n `\n )}\n ${repeat(\n (x) => x.actionButtonsConfig,\n html`\n <grid-pro-column :definition=${(x) => x}></grid-pro-column>\n `\n )}\n </zero-grid-pro>\n </div>\n`"
1459
- }
1460
- ],
1461
- "exports": [
1462
- {
1463
- "kind": "js",
1464
- "name": "buttonCellRenderer",
1465
- "declaration": {
1466
- "name": "buttonCellRenderer",
1467
- "module": "src/list/list.template.ts"
1468
- }
1469
- },
1470
- {
1471
- "kind": "js",
1472
- "name": "listTemplate",
1473
- "declaration": {
1474
- "name": "listTemplate",
1475
- "module": "src/list/list.template.ts"
1476
- }
1477
- }
1478
- ]
1479
- },
1480
- {
1481
- "kind": "javascript-module",
1482
- "path": "src/list/list.ts",
1483
- "declarations": [
1484
- {
1485
- "kind": "class",
1486
- "description": "",
1487
- "name": "List",
1488
- "members": [
1489
- {
1490
- "kind": "field",
1491
- "name": "resourceName",
1492
- "type": {
1493
- "text": "string"
1494
- },
1495
- "default": "''"
1496
- },
1497
- {
1498
- "kind": "field",
1499
- "name": "title",
1500
- "type": {
1501
- "text": "string"
1502
- },
1503
- "default": "''"
1504
- },
1505
- {
1506
- "kind": "field",
1507
- "name": "persistColumnStateKey",
1508
- "type": {
1509
- "text": "string"
1510
- }
1511
- },
1512
- {
1513
- "kind": "field",
1514
- "name": "sizeColumnsToFit",
1515
- "type": {
1516
- "text": "boolean"
1517
- }
1518
- },
1519
- {
1520
- "kind": "field",
1521
- "name": "enableFilterBar",
1522
- "type": {
1523
- "text": "boolean"
1524
- }
1525
- },
1526
- {
1527
- "kind": "field",
1528
- "name": "enableCellFlashing",
1529
- "type": {
1530
- "text": "boolean"
1531
- }
1532
- },
1533
- {
1534
- "kind": "field",
1535
- "name": "grid",
1536
- "type": {
1537
- "text": "ZeroGridPro"
1538
- },
1539
- "privacy": "public"
1540
- },
1541
- {
1542
- "kind": "field",
1543
- "name": "datasource",
1544
- "type": {
1545
- "text": "GridProGenesisDatasource"
1546
- },
1547
- "privacy": "public"
1548
- },
1549
- {
1550
- "kind": "field",
1551
- "name": "columns",
1552
- "type": {
1553
- "text": "ColDef[]"
1554
- }
1555
- },
1556
- {
1557
- "kind": "field",
1558
- "name": "datasourceConfig",
1559
- "type": {
1560
- "text": "DatasourceConfiguration"
1561
- }
1562
- },
1563
- {
1564
- "kind": "field",
1565
- "name": "actionButtonsConfig",
1566
- "type": {
1567
- "text": "array"
1568
- },
1569
- "default": "[]"
1570
- },
1571
- {
1572
- "kind": "field",
1573
- "name": "createEvent",
1574
- "type": {
1575
- "text": "string"
1576
- }
1577
- },
1578
- {
1579
- "kind": "field",
1580
- "name": "deleteEvent",
1581
- "type": {
1582
- "text": "string"
1583
- }
1584
- },
1585
- {
1586
- "kind": "field",
1587
- "name": "updateEvent",
1588
- "type": {
1589
- "text": "string"
1590
- }
1591
- },
1592
- {
1593
- "kind": "method",
1594
- "name": "handleFilterChanged",
1595
- "privacy": "private",
1596
- "parameters": [
1597
- {
1598
- "name": "e"
1599
- }
1600
- ]
1601
- },
1602
- {
1603
- "kind": "method",
1604
- "name": "handleFilterCleared",
1605
- "privacy": "private",
1606
- "parameters": [
1607
- {
1608
- "name": "e"
1609
- }
1610
- ]
1611
- },
1612
- {
1613
- "kind": "method",
1614
- "name": "select",
1615
- "privacy": "private",
1616
- "parameters": [
1617
- {
1618
- "name": "e"
1619
- }
1620
- ]
1621
- },
1622
- {
1623
- "kind": "method",
1624
- "name": "create",
1625
- "privacy": "public"
1626
- },
1627
- {
1628
- "kind": "field",
1629
- "name": "edit",
1630
- "privacy": "private"
1631
- },
1632
- {
1633
- "kind": "method",
1634
- "name": "delete",
1635
- "parameters": [
1636
- {
1637
- "name": "e"
1638
- }
1639
- ]
1640
- }
1641
- ],
1642
- "attributes": [
1643
- {
1644
- "name": "resourceName",
1645
- "type": {
1646
- "text": "string"
1647
- },
1648
- "default": "''",
1649
- "fieldName": "resourceName"
1650
- },
1651
- {
1652
- "name": "title",
1653
- "type": {
1654
- "text": "string"
1655
- },
1656
- "default": "''",
1657
- "fieldName": "title"
1658
- },
1659
- {
1660
- "name": "persist-column-state-key",
1661
- "type": {
1662
- "text": "string"
1663
- },
1664
- "fieldName": "persistColumnStateKey"
1665
- },
1666
- {
1667
- "name": "size-columns-to-fit",
1668
- "type": {
1669
- "text": "boolean"
1670
- },
1671
- "fieldName": "sizeColumnsToFit"
1672
- },
1673
- {
1674
- "name": "enable-filter-bar",
1675
- "type": {
1676
- "text": "boolean"
1677
- },
1678
- "fieldName": "enableFilterBar"
1679
- },
1680
- {
1681
- "name": "enable-cell-flashing",
1682
- "type": {
1683
- "text": "boolean"
1684
- },
1685
- "fieldName": "enableCellFlashing"
1686
- }
1687
- ],
1688
- "superclass": {
1689
- "name": "FASTElement",
1690
- "package": "@microsoft/fast-element"
1691
- },
1692
- "tagName": "entity-list",
1693
- "customElement": true
1694
- }
1695
- ],
1696
- "exports": [
1697
- {
1698
- "kind": "js",
1699
- "name": "List",
1700
- "declaration": {
1701
- "name": "List",
1702
- "module": "src/list/list.ts"
1703
- }
1704
- },
1705
- {
1706
- "kind": "custom-element-definition",
1707
- "name": "entity-list",
1708
- "declaration": {
1709
- "name": "List",
1710
- "module": "src/list/list.ts"
1711
- }
1712
- }
1713
- ]
1714
- },
1715
1715
  {
1716
1716
  "kind": "javascript-module",
1717
1717
  "path": "src/routes/config.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-entity-management",
3
3
  "description": "Genesis Foundation Entity Management",
4
- "version": "14.26.4-alpha-c8fff0926.0",
4
+ "version": "14.26.5",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -38,8 +38,8 @@
38
38
  "test:unit:watch": "watchlist src test -- npm run test:unit"
39
39
  },
40
40
  "devDependencies": {
41
- "@genesislcap/foundation-testing": "14.26.4-alpha-c8fff0926.0",
42
- "@genesislcap/genx": "14.26.4-alpha-c8fff0926.0",
41
+ "@genesislcap/foundation-testing": "^14.26.5",
42
+ "@genesislcap/genx": "^14.26.5",
43
43
  "@playwright/test": "^1.18.1",
44
44
  "bulma": "^0.9.3",
45
45
  "c8": "^7.11.0",
@@ -55,15 +55,15 @@
55
55
  "watchlist": "^0.3.1"
56
56
  },
57
57
  "dependencies": {
58
- "@genesislcap/foundation-comms": "14.26.4-alpha-c8fff0926.0",
59
- "@genesislcap/foundation-errors": "14.26.4-alpha-c8fff0926.0",
60
- "@genesislcap/foundation-forms": "14.26.4-alpha-c8fff0926.0",
61
- "@genesislcap/foundation-login": "14.26.4-alpha-c8fff0926.0",
62
- "@genesislcap/foundation-ui": "14.26.4-alpha-c8fff0926.0",
63
- "@genesislcap/foundation-utils": "14.26.4-alpha-c8fff0926.0",
64
- "@genesislcap/foundation-zero": "14.26.4-alpha-c8fff0926.0",
65
- "@genesislcap/foundation-zero-grid-pro": "14.26.4-alpha-c8fff0926.0",
66
- "@genesislcap/grid-pro": "14.26.4-alpha-c8fff0926.0",
58
+ "@genesislcap/foundation-comms": "^14.26.5",
59
+ "@genesislcap/foundation-errors": "^14.26.5",
60
+ "@genesislcap/foundation-forms": "^14.26.5",
61
+ "@genesislcap/foundation-login": "^14.26.5",
62
+ "@genesislcap/foundation-ui": "^14.26.5",
63
+ "@genesislcap/foundation-utils": "^14.26.5",
64
+ "@genesislcap/foundation-zero": "^14.26.5",
65
+ "@genesislcap/foundation-zero-grid-pro": "^14.26.5",
66
+ "@genesislcap/grid-pro": "^14.26.5",
67
67
  "@microsoft/fast-components": "^2.21.3",
68
68
  "@microsoft/fast-element": "^1.7.0",
69
69
  "@microsoft/fast-foundation": "^2.33.2",
@@ -88,5 +88,5 @@
88
88
  "access": "public"
89
89
  },
90
90
  "customElements": "dist/custom-elements.json",
91
- "gitHead": "dc2efbb3d93ace58f1bcdb3801a0995fb6977111"
91
+ "gitHead": "c1e3e1ecf2f3c1e56e2a61d2ed108b8305b65244"
92
92
  }