@genesislcap/foundation-entity-management 14.30.2-bny.8 → 14.30.2-bny.9

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 +348 -348
  2. package/package.json +13 -13
@@ -700,7 +700,7 @@
700
700
  },
701
701
  {
702
702
  "kind": "javascript-module",
703
- "path": "src/list/index.ts",
703
+ "path": "src/main/index.ts",
704
704
  "declarations": [],
705
705
  "exports": [
706
706
  {
@@ -708,456 +708,169 @@
708
708
  "name": "*",
709
709
  "declaration": {
710
710
  "name": "*",
711
- "package": "./list"
711
+ "package": "./main.template"
712
712
  }
713
- }
714
- ]
715
- },
716
- {
717
- "kind": "javascript-module",
718
- "path": "src/list/list.styles.ts",
719
- "declarations": [
720
- {
721
- "kind": "variable",
722
- "name": "listStyles",
723
- "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`"
724
- }
725
- ],
726
- "exports": [
713
+ },
727
714
  {
728
715
  "kind": "js",
729
- "name": "listStyles",
716
+ "name": "*",
730
717
  "declaration": {
731
- "name": "listStyles",
732
- "module": "src/list/list.styles.ts"
718
+ "name": "*",
719
+ "package": "./main"
733
720
  }
734
721
  }
735
722
  ]
736
723
  },
737
724
  {
738
725
  "kind": "javascript-module",
739
- "path": "src/list/list.template.ts",
726
+ "path": "src/main/main.styles.ts",
740
727
  "declarations": [
741
728
  {
742
729
  "kind": "variable",
743
- "name": "listTemplate",
744
- "default": "html<List>`\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 :deferredGridOptions=${(x) => x.gridOptions}\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`"
730
+ "name": "MainStyles",
731
+ "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`"
745
732
  }
746
733
  ],
747
734
  "exports": [
748
735
  {
749
736
  "kind": "js",
750
- "name": "listTemplate",
737
+ "name": "MainStyles",
751
738
  "declaration": {
752
- "name": "listTemplate",
753
- "module": "src/list/list.template.ts"
739
+ "name": "MainStyles",
740
+ "module": "src/main/main.styles.ts"
754
741
  }
755
742
  }
756
743
  ]
757
744
  },
758
745
  {
759
746
  "kind": "javascript-module",
760
- "path": "src/list/list.ts",
747
+ "path": "src/main/main.template.ts",
748
+ "declarations": [],
749
+ "exports": []
750
+ },
751
+ {
752
+ "kind": "javascript-module",
753
+ "path": "src/main/main.ts",
761
754
  "declarations": [
762
755
  {
763
756
  "kind": "class",
764
757
  "description": "",
765
- "name": "List",
758
+ "name": "MainApplication",
766
759
  "members": [
767
760
  {
768
761
  "kind": "field",
769
- "name": "resourceName",
770
- "type": {
771
- "text": "string"
772
- },
773
- "default": "''"
774
- },
775
- {
776
- "kind": "field",
777
- "name": "title",
778
- "type": {
779
- "text": "string"
780
- },
781
- "default": "''"
782
- },
783
- {
784
- "kind": "field",
785
- "name": "persistColumnStateKey",
786
- "type": {
787
- "text": "string"
788
- }
789
- },
790
- {
791
- "kind": "field",
792
- "name": "sizeColumnsToFit",
793
- "type": {
794
- "text": "boolean"
795
- }
796
- },
797
- {
798
- "kind": "field",
799
- "name": "enableFilterBar",
762
+ "name": "config",
800
763
  "type": {
801
- "text": "boolean"
764
+ "text": "MainRouterConfig"
802
765
  }
803
766
  },
804
767
  {
805
768
  "kind": "field",
806
- "name": "enableCellFlashing",
769
+ "name": "connect",
807
770
  "type": {
808
- "text": "boolean"
771
+ "text": "Connect"
809
772
  }
810
773
  },
811
774
  {
812
775
  "kind": "field",
813
- "name": "grid",
814
- "type": {
815
- "text": "ZeroGridPro"
816
- },
817
- "privacy": "public"
818
- },
819
- {
820
- "kind": "field",
821
- "name": "datasource",
822
- "type": {
823
- "text": "GridProGenesisDatasource"
824
- },
825
- "privacy": "public"
826
- },
827
- {
828
- "kind": "field",
829
- "name": "gridOptions",
776
+ "name": "session",
830
777
  "type": {
831
- "text": "GridOptions"
778
+ "text": "Session"
832
779
  }
833
780
  },
834
781
  {
835
782
  "kind": "field",
836
- "name": "columns",
783
+ "name": "container",
837
784
  "type": {
838
- "text": "ColDef[]"
785
+ "text": "Container"
839
786
  }
840
787
  },
841
788
  {
842
789
  "kind": "field",
843
- "name": "datasourceConfig",
790
+ "name": "provider",
844
791
  "type": {
845
- "text": "DatasourceConfiguration"
792
+ "text": "any"
846
793
  }
847
794
  },
848
795
  {
849
796
  "kind": "field",
850
- "name": "actionButtonsConfig",
797
+ "name": "ready",
851
798
  "type": {
852
- "text": "array"
799
+ "text": "boolean"
853
800
  },
854
- "default": "[]"
855
- },
856
- {
857
- "kind": "field",
858
- "name": "deleteEvent",
859
- "type": {
860
- "text": "string"
861
- }
801
+ "default": "false"
862
802
  },
863
803
  {
864
804
  "kind": "field",
865
- "name": "updateEvent",
805
+ "name": "data",
866
806
  "type": {
867
- "text": "string"
868
- }
807
+ "text": "any"
808
+ },
809
+ "default": "null"
869
810
  },
870
811
  {
871
812
  "kind": "method",
872
- "name": "handleFilterChanged",
873
- "privacy": "private",
874
- "parameters": [
875
- {
876
- "name": "e"
877
- }
878
- ]
813
+ "name": "onLuminanceToggle"
879
814
  },
880
815
  {
881
816
  "kind": "method",
882
- "name": "handleFilterCleared",
883
- "privacy": "private",
884
- "parameters": [
885
- {
886
- "name": "e"
887
- }
888
- ]
817
+ "name": "loadRemotes"
889
818
  },
890
819
  {
891
820
  "kind": "method",
892
- "name": "select",
893
- "privacy": "private",
894
- "parameters": [
895
- {
896
- "name": "e"
897
- }
898
- ]
899
- },
900
- {
901
- "kind": "field",
902
- "name": "edit",
903
- "privacy": "private"
821
+ "name": "selectTemplate"
904
822
  },
905
823
  {
906
824
  "kind": "method",
907
- "name": "delete",
908
- "parameters": [
909
- {
910
- "name": "e"
911
- }
912
- ]
913
- }
914
- ],
915
- "attributes": [
916
- {
917
- "name": "resourceName",
918
- "type": {
919
- "text": "string"
920
- },
921
- "default": "''",
922
- "fieldName": "resourceName"
923
- },
924
- {
925
- "name": "title",
926
- "type": {
927
- "text": "string"
928
- },
929
- "default": "''",
930
- "fieldName": "title"
931
- },
932
- {
933
- "name": "persist-column-state-key",
934
- "type": {
935
- "text": "string"
936
- },
937
- "fieldName": "persistColumnStateKey"
938
- },
939
- {
940
- "name": "size-columns-to-fit",
941
- "type": {
942
- "text": "boolean"
943
- },
944
- "fieldName": "sizeColumnsToFit"
945
- },
946
- {
947
- "name": "enable-filter-bar",
948
- "type": {
949
- "text": "boolean"
950
- },
951
- "fieldName": "enableFilterBar"
952
- },
953
- {
954
- "name": "enable-cell-flashing",
955
- "type": {
956
- "text": "boolean"
957
- },
958
- "fieldName": "enableCellFlashing"
825
+ "name": "registerDIDependencies",
826
+ "privacy": "private"
959
827
  }
960
828
  ],
961
829
  "superclass": {
962
830
  "name": "FASTElement",
963
831
  "package": "@microsoft/fast-element"
964
832
  },
965
- "tagName": "entity-list",
966
833
  "customElement": true
967
834
  }
968
835
  ],
969
836
  "exports": [
970
837
  {
971
838
  "kind": "js",
972
- "name": "List",
839
+ "name": "MainApplication",
973
840
  "declaration": {
974
- "name": "List",
975
- "module": "src/list/list.ts"
841
+ "name": "MainApplication",
842
+ "module": "src/main/main.ts"
976
843
  }
977
844
  },
978
845
  {
979
846
  "kind": "custom-element-definition",
980
- "name": "entity-list",
981
847
  "declaration": {
982
- "name": "List",
983
- "module": "src/list/list.ts"
848
+ "name": "MainApplication",
849
+ "module": "src/main/main.ts"
984
850
  }
985
851
  }
986
852
  ]
987
853
  },
988
854
  {
989
855
  "kind": "javascript-module",
990
- "path": "src/main/index.ts",
991
- "declarations": [],
992
- "exports": [
856
+ "path": "src/profiles/editProfileSchema.ts",
857
+ "declarations": [
993
858
  {
994
- "kind": "js",
995
- "name": "*",
996
- "declaration": {
997
- "name": "*",
998
- "package": "./main.template"
999
- }
1000
- },
859
+ "kind": "variable",
860
+ "name": "editProfileFormSchema",
861
+ "type": {
862
+ "text": "object"
863
+ },
864
+ "default": "{\n type: 'VerticalLayout',\n elements: [\n {\n type: 'Control',\n label: 'Name',\n scope: '#/properties/NAME',\n },\n {\n type: 'Control',\n label: 'Description',\n scope: '#/properties/DESCRIPTION',\n },\n {\n type: 'Control',\n label: 'Status',\n scope: '#/properties/STATUS',\n },\n {\n type: 'Control',\n label: 'Rights',\n scope: '#/properties/RIGHT_CODES',\n options: {\n allOptionsResourceName: 'RIGHT',\n valueField: 'CODE',\n labelField: 'CODE',\n },\n },\n {\n type: 'Control',\n label: 'Users',\n scope: '#/properties/USER_NAMES',\n options: {\n allOptionsResourceName: 'USER',\n valueField: 'USER_NAME',\n labelField: 'USER_NAME',\n },\n },\n ],\n}"
865
+ }
866
+ ],
867
+ "exports": [
1001
868
  {
1002
869
  "kind": "js",
1003
- "name": "*",
870
+ "name": "editProfileFormSchema",
1004
871
  "declaration": {
1005
- "name": "*",
1006
- "package": "./main"
1007
- }
1008
- }
1009
- ]
1010
- },
1011
- {
1012
- "kind": "javascript-module",
1013
- "path": "src/main/main.styles.ts",
1014
- "declarations": [
1015
- {
1016
- "kind": "variable",
1017
- "name": "MainStyles",
1018
- "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`"
1019
- }
1020
- ],
1021
- "exports": [
1022
- {
1023
- "kind": "js",
1024
- "name": "MainStyles",
1025
- "declaration": {
1026
- "name": "MainStyles",
1027
- "module": "src/main/main.styles.ts"
1028
- }
1029
- }
1030
- ]
1031
- },
1032
- {
1033
- "kind": "javascript-module",
1034
- "path": "src/main/main.template.ts",
1035
- "declarations": [],
1036
- "exports": []
1037
- },
1038
- {
1039
- "kind": "javascript-module",
1040
- "path": "src/main/main.ts",
1041
- "declarations": [
1042
- {
1043
- "kind": "class",
1044
- "description": "",
1045
- "name": "MainApplication",
1046
- "members": [
1047
- {
1048
- "kind": "field",
1049
- "name": "config",
1050
- "type": {
1051
- "text": "MainRouterConfig"
1052
- }
1053
- },
1054
- {
1055
- "kind": "field",
1056
- "name": "connect",
1057
- "type": {
1058
- "text": "Connect"
1059
- }
1060
- },
1061
- {
1062
- "kind": "field",
1063
- "name": "session",
1064
- "type": {
1065
- "text": "Session"
1066
- }
1067
- },
1068
- {
1069
- "kind": "field",
1070
- "name": "container",
1071
- "type": {
1072
- "text": "Container"
1073
- }
1074
- },
1075
- {
1076
- "kind": "field",
1077
- "name": "provider",
1078
- "type": {
1079
- "text": "any"
1080
- }
1081
- },
1082
- {
1083
- "kind": "field",
1084
- "name": "ready",
1085
- "type": {
1086
- "text": "boolean"
1087
- },
1088
- "default": "false"
1089
- },
1090
- {
1091
- "kind": "field",
1092
- "name": "data",
1093
- "type": {
1094
- "text": "any"
1095
- },
1096
- "default": "null"
1097
- },
1098
- {
1099
- "kind": "method",
1100
- "name": "onLuminanceToggle"
1101
- },
1102
- {
1103
- "kind": "method",
1104
- "name": "loadRemotes"
1105
- },
1106
- {
1107
- "kind": "method",
1108
- "name": "selectTemplate"
1109
- },
1110
- {
1111
- "kind": "method",
1112
- "name": "registerDIDependencies",
1113
- "privacy": "private"
1114
- }
1115
- ],
1116
- "superclass": {
1117
- "name": "FASTElement",
1118
- "package": "@microsoft/fast-element"
1119
- },
1120
- "customElement": true
1121
- }
1122
- ],
1123
- "exports": [
1124
- {
1125
- "kind": "js",
1126
- "name": "MainApplication",
1127
- "declaration": {
1128
- "name": "MainApplication",
1129
- "module": "src/main/main.ts"
1130
- }
1131
- },
1132
- {
1133
- "kind": "custom-element-definition",
1134
- "declaration": {
1135
- "name": "MainApplication",
1136
- "module": "src/main/main.ts"
1137
- }
1138
- }
1139
- ]
1140
- },
1141
- {
1142
- "kind": "javascript-module",
1143
- "path": "src/profiles/editProfileSchema.ts",
1144
- "declarations": [
1145
- {
1146
- "kind": "variable",
1147
- "name": "editProfileFormSchema",
1148
- "type": {
1149
- "text": "object"
1150
- },
1151
- "default": "{\n type: 'VerticalLayout',\n elements: [\n {\n type: 'Control',\n label: 'Name',\n scope: '#/properties/NAME',\n },\n {\n type: 'Control',\n label: 'Description',\n scope: '#/properties/DESCRIPTION',\n },\n {\n type: 'Control',\n label: 'Status',\n scope: '#/properties/STATUS',\n },\n {\n type: 'Control',\n label: 'Rights',\n scope: '#/properties/RIGHT_CODES',\n options: {\n allOptionsResourceName: 'RIGHT',\n valueField: 'CODE',\n labelField: 'CODE',\n },\n },\n {\n type: 'Control',\n label: 'Users',\n scope: '#/properties/USER_NAMES',\n options: {\n allOptionsResourceName: 'USER',\n valueField: 'USER_NAME',\n labelField: 'USER_NAME',\n },\n },\n ],\n}"
1152
- }
1153
- ],
1154
- "exports": [
1155
- {
1156
- "kind": "js",
1157
- "name": "editProfileFormSchema",
1158
- "declaration": {
1159
- "name": "editProfileFormSchema",
1160
- "module": "src/profiles/editProfileSchema.ts"
872
+ "name": "editProfileFormSchema",
873
+ "module": "src/profiles/editProfileSchema.ts"
1161
874
  }
1162
875
  }
1163
876
  ]
@@ -1844,6 +1557,293 @@
1844
1557
  }
1845
1558
  ]
1846
1559
  },
1560
+ {
1561
+ "kind": "javascript-module",
1562
+ "path": "src/list/index.ts",
1563
+ "declarations": [],
1564
+ "exports": [
1565
+ {
1566
+ "kind": "js",
1567
+ "name": "*",
1568
+ "declaration": {
1569
+ "name": "*",
1570
+ "package": "./list"
1571
+ }
1572
+ }
1573
+ ]
1574
+ },
1575
+ {
1576
+ "kind": "javascript-module",
1577
+ "path": "src/list/list.styles.ts",
1578
+ "declarations": [
1579
+ {
1580
+ "kind": "variable",
1581
+ "name": "listStyles",
1582
+ "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`"
1583
+ }
1584
+ ],
1585
+ "exports": [
1586
+ {
1587
+ "kind": "js",
1588
+ "name": "listStyles",
1589
+ "declaration": {
1590
+ "name": "listStyles",
1591
+ "module": "src/list/list.styles.ts"
1592
+ }
1593
+ }
1594
+ ]
1595
+ },
1596
+ {
1597
+ "kind": "javascript-module",
1598
+ "path": "src/list/list.template.ts",
1599
+ "declarations": [
1600
+ {
1601
+ "kind": "variable",
1602
+ "name": "listTemplate",
1603
+ "default": "html<List>`\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 :deferredGridOptions=${(x) => x.gridOptions}\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`"
1604
+ }
1605
+ ],
1606
+ "exports": [
1607
+ {
1608
+ "kind": "js",
1609
+ "name": "listTemplate",
1610
+ "declaration": {
1611
+ "name": "listTemplate",
1612
+ "module": "src/list/list.template.ts"
1613
+ }
1614
+ }
1615
+ ]
1616
+ },
1617
+ {
1618
+ "kind": "javascript-module",
1619
+ "path": "src/list/list.ts",
1620
+ "declarations": [
1621
+ {
1622
+ "kind": "class",
1623
+ "description": "",
1624
+ "name": "List",
1625
+ "members": [
1626
+ {
1627
+ "kind": "field",
1628
+ "name": "resourceName",
1629
+ "type": {
1630
+ "text": "string"
1631
+ },
1632
+ "default": "''"
1633
+ },
1634
+ {
1635
+ "kind": "field",
1636
+ "name": "title",
1637
+ "type": {
1638
+ "text": "string"
1639
+ },
1640
+ "default": "''"
1641
+ },
1642
+ {
1643
+ "kind": "field",
1644
+ "name": "persistColumnStateKey",
1645
+ "type": {
1646
+ "text": "string"
1647
+ }
1648
+ },
1649
+ {
1650
+ "kind": "field",
1651
+ "name": "sizeColumnsToFit",
1652
+ "type": {
1653
+ "text": "boolean"
1654
+ }
1655
+ },
1656
+ {
1657
+ "kind": "field",
1658
+ "name": "enableFilterBar",
1659
+ "type": {
1660
+ "text": "boolean"
1661
+ }
1662
+ },
1663
+ {
1664
+ "kind": "field",
1665
+ "name": "enableCellFlashing",
1666
+ "type": {
1667
+ "text": "boolean"
1668
+ }
1669
+ },
1670
+ {
1671
+ "kind": "field",
1672
+ "name": "grid",
1673
+ "type": {
1674
+ "text": "ZeroGridPro"
1675
+ },
1676
+ "privacy": "public"
1677
+ },
1678
+ {
1679
+ "kind": "field",
1680
+ "name": "datasource",
1681
+ "type": {
1682
+ "text": "GridProGenesisDatasource"
1683
+ },
1684
+ "privacy": "public"
1685
+ },
1686
+ {
1687
+ "kind": "field",
1688
+ "name": "gridOptions",
1689
+ "type": {
1690
+ "text": "GridOptions"
1691
+ }
1692
+ },
1693
+ {
1694
+ "kind": "field",
1695
+ "name": "columns",
1696
+ "type": {
1697
+ "text": "ColDef[]"
1698
+ }
1699
+ },
1700
+ {
1701
+ "kind": "field",
1702
+ "name": "datasourceConfig",
1703
+ "type": {
1704
+ "text": "DatasourceConfiguration"
1705
+ }
1706
+ },
1707
+ {
1708
+ "kind": "field",
1709
+ "name": "actionButtonsConfig",
1710
+ "type": {
1711
+ "text": "array"
1712
+ },
1713
+ "default": "[]"
1714
+ },
1715
+ {
1716
+ "kind": "field",
1717
+ "name": "deleteEvent",
1718
+ "type": {
1719
+ "text": "string"
1720
+ }
1721
+ },
1722
+ {
1723
+ "kind": "field",
1724
+ "name": "updateEvent",
1725
+ "type": {
1726
+ "text": "string"
1727
+ }
1728
+ },
1729
+ {
1730
+ "kind": "method",
1731
+ "name": "handleFilterChanged",
1732
+ "privacy": "private",
1733
+ "parameters": [
1734
+ {
1735
+ "name": "e"
1736
+ }
1737
+ ]
1738
+ },
1739
+ {
1740
+ "kind": "method",
1741
+ "name": "handleFilterCleared",
1742
+ "privacy": "private",
1743
+ "parameters": [
1744
+ {
1745
+ "name": "e"
1746
+ }
1747
+ ]
1748
+ },
1749
+ {
1750
+ "kind": "method",
1751
+ "name": "select",
1752
+ "privacy": "private",
1753
+ "parameters": [
1754
+ {
1755
+ "name": "e"
1756
+ }
1757
+ ]
1758
+ },
1759
+ {
1760
+ "kind": "field",
1761
+ "name": "edit",
1762
+ "privacy": "private"
1763
+ },
1764
+ {
1765
+ "kind": "method",
1766
+ "name": "delete",
1767
+ "parameters": [
1768
+ {
1769
+ "name": "e"
1770
+ }
1771
+ ]
1772
+ }
1773
+ ],
1774
+ "attributes": [
1775
+ {
1776
+ "name": "resourceName",
1777
+ "type": {
1778
+ "text": "string"
1779
+ },
1780
+ "default": "''",
1781
+ "fieldName": "resourceName"
1782
+ },
1783
+ {
1784
+ "name": "title",
1785
+ "type": {
1786
+ "text": "string"
1787
+ },
1788
+ "default": "''",
1789
+ "fieldName": "title"
1790
+ },
1791
+ {
1792
+ "name": "persist-column-state-key",
1793
+ "type": {
1794
+ "text": "string"
1795
+ },
1796
+ "fieldName": "persistColumnStateKey"
1797
+ },
1798
+ {
1799
+ "name": "size-columns-to-fit",
1800
+ "type": {
1801
+ "text": "boolean"
1802
+ },
1803
+ "fieldName": "sizeColumnsToFit"
1804
+ },
1805
+ {
1806
+ "name": "enable-filter-bar",
1807
+ "type": {
1808
+ "text": "boolean"
1809
+ },
1810
+ "fieldName": "enableFilterBar"
1811
+ },
1812
+ {
1813
+ "name": "enable-cell-flashing",
1814
+ "type": {
1815
+ "text": "boolean"
1816
+ },
1817
+ "fieldName": "enableCellFlashing"
1818
+ }
1819
+ ],
1820
+ "superclass": {
1821
+ "name": "FASTElement",
1822
+ "package": "@microsoft/fast-element"
1823
+ },
1824
+ "tagName": "entity-list",
1825
+ "customElement": true
1826
+ }
1827
+ ],
1828
+ "exports": [
1829
+ {
1830
+ "kind": "js",
1831
+ "name": "List",
1832
+ "declaration": {
1833
+ "name": "List",
1834
+ "module": "src/list/list.ts"
1835
+ }
1836
+ },
1837
+ {
1838
+ "kind": "custom-element-definition",
1839
+ "name": "entity-list",
1840
+ "declaration": {
1841
+ "name": "List",
1842
+ "module": "src/list/list.ts"
1843
+ }
1844
+ }
1845
+ ]
1846
+ },
1847
1847
  {
1848
1848
  "kind": "javascript-module",
1849
1849
  "path": "src/users/users.template.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.30.2-bny.8",
4
+ "version": "14.30.2-bny.9",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -48,8 +48,8 @@
48
48
  "test:unit:watch": "watchlist src test -- npm run test:unit"
49
49
  },
50
50
  "devDependencies": {
51
- "@genesislcap/foundation-testing": "14.30.2-bny.8",
52
- "@genesislcap/genx": "14.30.2-bny.8",
51
+ "@genesislcap/foundation-testing": "14.30.2-bny.9",
52
+ "@genesislcap/genx": "14.30.2-bny.9",
53
53
  "@playwright/test": "^1.18.1",
54
54
  "bulma": "^0.9.3",
55
55
  "c8": "^7.11.0",
@@ -65,15 +65,15 @@
65
65
  "watchlist": "^0.3.1"
66
66
  },
67
67
  "dependencies": {
68
- "@genesislcap/foundation-comms": "14.30.2-bny.8",
69
- "@genesislcap/foundation-errors": "14.30.2-bny.8",
70
- "@genesislcap/foundation-forms": "14.30.2-bny.8",
71
- "@genesislcap/foundation-login": "14.30.2-bny.8",
72
- "@genesislcap/foundation-ui": "14.30.2-bny.8",
73
- "@genesislcap/foundation-utils": "14.30.2-bny.8",
74
- "@genesislcap/foundation-zero": "14.30.2-bny.8",
75
- "@genesislcap/foundation-zero-grid-pro": "14.30.2-bny.8",
76
- "@genesislcap/grid-pro": "14.30.2-bny.8",
68
+ "@genesislcap/foundation-comms": "14.30.2-bny.9",
69
+ "@genesislcap/foundation-errors": "14.30.2-bny.9",
70
+ "@genesislcap/foundation-forms": "14.30.2-bny.9",
71
+ "@genesislcap/foundation-login": "14.30.2-bny.9",
72
+ "@genesislcap/foundation-ui": "14.30.2-bny.9",
73
+ "@genesislcap/foundation-utils": "14.30.2-bny.9",
74
+ "@genesislcap/foundation-zero": "14.30.2-bny.9",
75
+ "@genesislcap/foundation-zero-grid-pro": "14.30.2-bny.9",
76
+ "@genesislcap/grid-pro": "14.30.2-bny.9",
77
77
  "@microsoft/fast-components": "^2.21.3",
78
78
  "@microsoft/fast-element": "^1.7.0",
79
79
  "@microsoft/fast-foundation": "^2.33.2",
@@ -98,5 +98,5 @@
98
98
  "access": "public"
99
99
  },
100
100
  "customElements": "dist/custom-elements.json",
101
- "gitHead": "b35144242e048095aad91331e541421bad3d1a85"
101
+ "gitHead": "c65a5adb6e4f96336eef7fcdfd2efd388a9764cd"
102
102
  }