@genesislcap/foundation-entity-management 14.28.0 → 14.29.0

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 +364 -364
  2. package/package.json +13 -13
@@ -619,6 +619,338 @@
619
619
  }
620
620
  ]
621
621
  },
622
+ {
623
+ "kind": "javascript-module",
624
+ "path": "src/main/index.ts",
625
+ "declarations": [],
626
+ "exports": [
627
+ {
628
+ "kind": "js",
629
+ "name": "*",
630
+ "declaration": {
631
+ "name": "*",
632
+ "package": "./main.template"
633
+ }
634
+ },
635
+ {
636
+ "kind": "js",
637
+ "name": "*",
638
+ "declaration": {
639
+ "name": "*",
640
+ "package": "./main"
641
+ }
642
+ }
643
+ ]
644
+ },
645
+ {
646
+ "kind": "javascript-module",
647
+ "path": "src/main/main.styles.ts",
648
+ "declarations": [
649
+ {
650
+ "kind": "variable",
651
+ "name": "MainStyles",
652
+ "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`"
653
+ }
654
+ ],
655
+ "exports": [
656
+ {
657
+ "kind": "js",
658
+ "name": "MainStyles",
659
+ "declaration": {
660
+ "name": "MainStyles",
661
+ "module": "src/main/main.styles.ts"
662
+ }
663
+ }
664
+ ]
665
+ },
666
+ {
667
+ "kind": "javascript-module",
668
+ "path": "src/main/main.template.ts",
669
+ "declarations": [],
670
+ "exports": []
671
+ },
672
+ {
673
+ "kind": "javascript-module",
674
+ "path": "src/main/main.ts",
675
+ "declarations": [
676
+ {
677
+ "kind": "class",
678
+ "description": "",
679
+ "name": "MainApplication",
680
+ "members": [
681
+ {
682
+ "kind": "field",
683
+ "name": "config",
684
+ "type": {
685
+ "text": "MainRouterConfig"
686
+ }
687
+ },
688
+ {
689
+ "kind": "field",
690
+ "name": "connect",
691
+ "type": {
692
+ "text": "Connect"
693
+ }
694
+ },
695
+ {
696
+ "kind": "field",
697
+ "name": "session",
698
+ "type": {
699
+ "text": "Session"
700
+ }
701
+ },
702
+ {
703
+ "kind": "field",
704
+ "name": "container",
705
+ "type": {
706
+ "text": "Container"
707
+ }
708
+ },
709
+ {
710
+ "kind": "field",
711
+ "name": "provider",
712
+ "type": {
713
+ "text": "any"
714
+ }
715
+ },
716
+ {
717
+ "kind": "field",
718
+ "name": "ready",
719
+ "type": {
720
+ "text": "boolean"
721
+ },
722
+ "default": "false"
723
+ },
724
+ {
725
+ "kind": "field",
726
+ "name": "data",
727
+ "type": {
728
+ "text": "any"
729
+ },
730
+ "default": "null"
731
+ },
732
+ {
733
+ "kind": "method",
734
+ "name": "onLuminanceToggle"
735
+ },
736
+ {
737
+ "kind": "method",
738
+ "name": "loadRemotes"
739
+ },
740
+ {
741
+ "kind": "method",
742
+ "name": "selectTemplate"
743
+ },
744
+ {
745
+ "kind": "method",
746
+ "name": "registerDIDependencies",
747
+ "privacy": "private"
748
+ }
749
+ ],
750
+ "superclass": {
751
+ "name": "FASTElement",
752
+ "package": "@microsoft/fast-element"
753
+ },
754
+ "customElement": true
755
+ }
756
+ ],
757
+ "exports": [
758
+ {
759
+ "kind": "js",
760
+ "name": "MainApplication",
761
+ "declaration": {
762
+ "name": "MainApplication",
763
+ "module": "src/main/main.ts"
764
+ }
765
+ },
766
+ {
767
+ "kind": "custom-element-definition",
768
+ "declaration": {
769
+ "name": "MainApplication",
770
+ "module": "src/main/main.ts"
771
+ }
772
+ }
773
+ ]
774
+ },
775
+ {
776
+ "kind": "javascript-module",
777
+ "path": "src/routes/config.ts",
778
+ "declarations": [],
779
+ "exports": []
780
+ },
781
+ {
782
+ "kind": "javascript-module",
783
+ "path": "src/routes/index.ts",
784
+ "declarations": [],
785
+ "exports": [
786
+ {
787
+ "kind": "js",
788
+ "name": "*",
789
+ "declaration": {
790
+ "name": "*",
791
+ "package": "./config"
792
+ }
793
+ }
794
+ ]
795
+ },
796
+ {
797
+ "kind": "javascript-module",
798
+ "path": "src/users/users.template.ts",
799
+ "declarations": [
800
+ {
801
+ "kind": "variable",
802
+ "name": "UsersTemplate",
803
+ "type": {
804
+ "text": "ViewTemplate"
805
+ },
806
+ "default": "html<Users>`\n <entity-management\n resourceName=${(x) => x.resourceName}\n title=\"User Management\"\n entityLabel=\"User\"\n createEvent=\"${(x) => x.createEvent}\"\n :readEventFn=${(x) => (user) => x.readUserData(user)}\n updateEvent=\"${(x) => x.updateEvent}\"\n deleteEvent=\"${(x) => x.deleteEvent}\"\n entityLabel=\"User Details\"\n :updateFormUiSchema=${(x) =>\n editUserSchema(\n true,\n x.allAccessType,\n x.entityID,\n x.entityLabel,\n x.entityLabelKey,\n x.availableEntitiesEndpoint,\n x.additionalUpdateFields\n )}\n :createFormUiSchema=${(x) =>\n editUserSchema(\n false,\n x.allAccessType,\n x.entityID,\n x.entityLabel,\n x.entityLabelKey,\n x.availableEntitiesEndpoint,\n x.additionalCreateFields\n )}\n persist-column-state-key=\"entity_users_management\"\n size-columns-to-fit\n :columns=${(x) => [...x.columns, ...x.entityColumn(), x.statusColumn()]}\n :datasourceConfig=${(x) => x.datasourceConfig}\n ></entity-management>\n`"
807
+ }
808
+ ],
809
+ "exports": [
810
+ {
811
+ "kind": "js",
812
+ "name": "UsersTemplate",
813
+ "declaration": {
814
+ "name": "UsersTemplate",
815
+ "module": "src/users/users.template.ts"
816
+ }
817
+ }
818
+ ]
819
+ },
820
+ {
821
+ "kind": "javascript-module",
822
+ "path": "src/users/users.ts",
823
+ "declarations": [
824
+ {
825
+ "kind": "variable",
826
+ "name": "UsersColumnConfig",
827
+ "type": {
828
+ "text": "array"
829
+ },
830
+ "default": "[\n {\n ...defaultColumnConfig,\n field: 'USER_NAME',\n headerName: 'Username',\n },\n {\n ...defaultColumnConfig,\n field: 'FIRST_NAME',\n headerName: 'First Name',\n },\n {\n ...defaultColumnConfig,\n field: 'LAST_NAME',\n headerName: 'Last Name',\n },\n {\n ...defaultColumnConfig,\n field: 'EMAIL_ADDRESS',\n headerName: 'Email',\n },\n {\n ...defaultColumnConfig,\n field: 'LAST_LOGIN',\n headerName: 'Last Login',\n valueFormatter: ({ value }) =>\n value\n ? new Intl.DateTimeFormat('default', {\n year: 'numeric',\n month: 'numeric',\n day: 'numeric',\n hour: 'numeric',\n minute: 'numeric',\n }).format(value)\n : '',\n },\n]",
831
+ "description": "Defines the default columns which are present on the user management component",
832
+ "privacy": "public"
833
+ },
834
+ {
835
+ "kind": "class",
836
+ "description": "Main class which defines the user management functionality",
837
+ "name": "Users",
838
+ "members": [
839
+ {
840
+ "kind": "field",
841
+ "name": "columns",
842
+ "type": {
843
+ "text": "any"
844
+ },
845
+ "default": "[\n {\n ...defaultColumnConfig,\n field: 'USER_NAME',\n headerName: 'Username',\n },\n {\n ...defaultColumnConfig,\n field: 'FIRST_NAME',\n headerName: 'First Name',\n },\n {\n ...defaultColumnConfig,\n field: 'LAST_NAME',\n headerName: 'Last Name',\n },\n {\n ...defaultColumnConfig,\n field: 'EMAIL_ADDRESS',\n headerName: 'Email',\n },\n {\n ...defaultColumnConfig,\n field: 'LAST_LOGIN',\n headerName: 'Last Login',\n valueFormatter: ({ value }) =>\n value\n ? new Intl.DateTimeFormat('default', {\n year: 'numeric',\n month: 'numeric',\n day: 'numeric',\n hour: 'numeric',\n minute: 'numeric',\n }).format(value)\n : '',\n },\n]",
846
+ "description": "Column definition, default to the UsersColumnConfig"
847
+ },
848
+ {
849
+ "kind": "field",
850
+ "name": "additionalCreateFields",
851
+ "type": {
852
+ "text": "any"
853
+ },
854
+ "default": "[]"
855
+ },
856
+ {
857
+ "kind": "field",
858
+ "name": "additionalUpdateFields",
859
+ "type": {
860
+ "text": "any"
861
+ },
862
+ "default": "[]"
863
+ },
864
+ {
865
+ "kind": "field",
866
+ "name": "allAccessType",
867
+ "type": {
868
+ "text": "boolean"
869
+ }
870
+ },
871
+ {
872
+ "kind": "field",
873
+ "name": "entityIdValue",
874
+ "type": {
875
+ "text": "string"
876
+ },
877
+ "privacy": "private"
878
+ },
879
+ {
880
+ "kind": "field",
881
+ "name": "createEvent",
882
+ "type": {
883
+ "text": "string"
884
+ },
885
+ "description": "String which contains event if we have permission to insert user of empty string if not"
886
+ },
887
+ {
888
+ "kind": "field",
889
+ "name": "deleteEvent",
890
+ "type": {
891
+ "text": "string"
892
+ },
893
+ "description": "String which contains event if we have permission to delete user of empty string if not"
894
+ },
895
+ {
896
+ "kind": "field",
897
+ "name": "updateEvent",
898
+ "type": {
899
+ "text": "string"
900
+ },
901
+ "description": "String which contains event if we have permission to update user of empty string if not"
902
+ },
903
+ {
904
+ "kind": "method",
905
+ "name": "deepClone",
906
+ "return": {
907
+ "type": {
908
+ "text": "Node"
909
+ }
910
+ }
911
+ }
912
+ ],
913
+ "mixins": [
914
+ {
915
+ "name": "LifecycleMixin",
916
+ "package": "@genesislcap/foundation-utils"
917
+ }
918
+ ],
919
+ "superclass": {
920
+ "name": "FASTElement",
921
+ "package": "@microsoft/fast-element"
922
+ },
923
+ "tagName": "user-management",
924
+ "customElement": true
925
+ }
926
+ ],
927
+ "exports": [
928
+ {
929
+ "kind": "js",
930
+ "name": "UsersColumnConfig",
931
+ "declaration": {
932
+ "name": "UsersColumnConfig",
933
+ "module": "src/users/users.ts"
934
+ }
935
+ },
936
+ {
937
+ "kind": "js",
938
+ "name": "Users",
939
+ "declaration": {
940
+ "name": "Users",
941
+ "module": "src/users/users.ts"
942
+ }
943
+ },
944
+ {
945
+ "kind": "custom-element-definition",
946
+ "name": "user-management",
947
+ "declaration": {
948
+ "name": "Users",
949
+ "module": "src/users/users.ts"
950
+ }
951
+ }
952
+ ]
953
+ },
622
954
  {
623
955
  "kind": "javascript-module",
624
956
  "path": "src/layouts/default.ts",
@@ -874,229 +1206,76 @@
874
1206
  }
875
1207
  ]
876
1208
  }
877
- ],
878
- "attributes": [
879
- {
880
- "name": "resourceName",
881
- "type": {
882
- "text": "string"
883
- },
884
- "default": "''",
885
- "fieldName": "resourceName"
886
- },
887
- {
888
- "name": "title",
889
- "type": {
890
- "text": "string"
891
- },
892
- "default": "''",
893
- "fieldName": "title"
894
- },
895
- {
896
- "name": "persist-column-state-key",
897
- "type": {
898
- "text": "string"
899
- },
900
- "fieldName": "persistColumnStateKey"
901
- },
902
- {
903
- "name": "size-columns-to-fit",
904
- "type": {
905
- "text": "boolean"
906
- },
907
- "fieldName": "sizeColumnsToFit"
908
- },
909
- {
910
- "name": "enable-filter-bar",
911
- "type": {
912
- "text": "boolean"
913
- },
914
- "fieldName": "enableFilterBar"
915
- },
916
- {
917
- "name": "enable-cell-flashing",
918
- "type": {
919
- "text": "boolean"
920
- },
921
- "fieldName": "enableCellFlashing"
922
- }
923
- ],
924
- "superclass": {
925
- "name": "FASTElement",
926
- "package": "@microsoft/fast-element"
927
- },
928
- "tagName": "entity-list",
929
- "customElement": true
930
- }
931
- ],
932
- "exports": [
933
- {
934
- "kind": "js",
935
- "name": "List",
936
- "declaration": {
937
- "name": "List",
938
- "module": "src/list/list.ts"
939
- }
940
- },
941
- {
942
- "kind": "custom-element-definition",
943
- "name": "entity-list",
944
- "declaration": {
945
- "name": "List",
946
- "module": "src/list/list.ts"
947
- }
948
- }
949
- ]
950
- },
951
- {
952
- "kind": "javascript-module",
953
- "path": "src/main/index.ts",
954
- "declarations": [],
955
- "exports": [
956
- {
957
- "kind": "js",
958
- "name": "*",
959
- "declaration": {
960
- "name": "*",
961
- "package": "./main.template"
962
- }
963
- },
964
- {
965
- "kind": "js",
966
- "name": "*",
967
- "declaration": {
968
- "name": "*",
969
- "package": "./main"
970
- }
971
- }
972
- ]
973
- },
974
- {
975
- "kind": "javascript-module",
976
- "path": "src/main/main.styles.ts",
977
- "declarations": [
978
- {
979
- "kind": "variable",
980
- "name": "MainStyles",
981
- "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`"
982
- }
983
- ],
984
- "exports": [
985
- {
986
- "kind": "js",
987
- "name": "MainStyles",
988
- "declaration": {
989
- "name": "MainStyles",
990
- "module": "src/main/main.styles.ts"
991
- }
992
- }
993
- ]
994
- },
995
- {
996
- "kind": "javascript-module",
997
- "path": "src/main/main.template.ts",
998
- "declarations": [],
999
- "exports": []
1000
- },
1001
- {
1002
- "kind": "javascript-module",
1003
- "path": "src/main/main.ts",
1004
- "declarations": [
1005
- {
1006
- "kind": "class",
1007
- "description": "",
1008
- "name": "MainApplication",
1009
- "members": [
1010
- {
1011
- "kind": "field",
1012
- "name": "config",
1013
- "type": {
1014
- "text": "MainRouterConfig"
1015
- }
1016
- },
1209
+ ],
1210
+ "attributes": [
1017
1211
  {
1018
- "kind": "field",
1019
- "name": "connect",
1212
+ "name": "resourceName",
1020
1213
  "type": {
1021
- "text": "Connect"
1022
- }
1214
+ "text": "string"
1215
+ },
1216
+ "default": "''",
1217
+ "fieldName": "resourceName"
1023
1218
  },
1024
1219
  {
1025
- "kind": "field",
1026
- "name": "session",
1220
+ "name": "title",
1027
1221
  "type": {
1028
- "text": "Session"
1029
- }
1222
+ "text": "string"
1223
+ },
1224
+ "default": "''",
1225
+ "fieldName": "title"
1030
1226
  },
1031
1227
  {
1032
- "kind": "field",
1033
- "name": "container",
1228
+ "name": "persist-column-state-key",
1034
1229
  "type": {
1035
- "text": "Container"
1036
- }
1230
+ "text": "string"
1231
+ },
1232
+ "fieldName": "persistColumnStateKey"
1037
1233
  },
1038
1234
  {
1039
- "kind": "field",
1040
- "name": "provider",
1235
+ "name": "size-columns-to-fit",
1041
1236
  "type": {
1042
- "text": "any"
1043
- }
1237
+ "text": "boolean"
1238
+ },
1239
+ "fieldName": "sizeColumnsToFit"
1044
1240
  },
1045
1241
  {
1046
- "kind": "field",
1047
- "name": "ready",
1242
+ "name": "enable-filter-bar",
1048
1243
  "type": {
1049
1244
  "text": "boolean"
1050
1245
  },
1051
- "default": "false"
1246
+ "fieldName": "enableFilterBar"
1052
1247
  },
1053
1248
  {
1054
- "kind": "field",
1055
- "name": "data",
1249
+ "name": "enable-cell-flashing",
1056
1250
  "type": {
1057
- "text": "any"
1251
+ "text": "boolean"
1058
1252
  },
1059
- "default": "null"
1060
- },
1061
- {
1062
- "kind": "method",
1063
- "name": "onLuminanceToggle"
1064
- },
1065
- {
1066
- "kind": "method",
1067
- "name": "loadRemotes"
1068
- },
1069
- {
1070
- "kind": "method",
1071
- "name": "selectTemplate"
1072
- },
1073
- {
1074
- "kind": "method",
1075
- "name": "registerDIDependencies",
1076
- "privacy": "private"
1253
+ "fieldName": "enableCellFlashing"
1077
1254
  }
1078
1255
  ],
1079
1256
  "superclass": {
1080
1257
  "name": "FASTElement",
1081
1258
  "package": "@microsoft/fast-element"
1082
1259
  },
1260
+ "tagName": "entity-list",
1083
1261
  "customElement": true
1084
1262
  }
1085
1263
  ],
1086
1264
  "exports": [
1087
1265
  {
1088
1266
  "kind": "js",
1089
- "name": "MainApplication",
1267
+ "name": "List",
1090
1268
  "declaration": {
1091
- "name": "MainApplication",
1092
- "module": "src/main/main.ts"
1269
+ "name": "List",
1270
+ "module": "src/list/list.ts"
1093
1271
  }
1094
1272
  },
1095
1273
  {
1096
1274
  "kind": "custom-element-definition",
1275
+ "name": "entity-list",
1097
1276
  "declaration": {
1098
- "name": "MainApplication",
1099
- "module": "src/main/main.ts"
1277
+ "name": "List",
1278
+ "module": "src/list/list.ts"
1100
1279
  }
1101
1280
  }
1102
1281
  ]
@@ -1744,185 +1923,6 @@
1744
1923
  }
1745
1924
  ]
1746
1925
  },
1747
- {
1748
- "kind": "javascript-module",
1749
- "path": "src/routes/config.ts",
1750
- "declarations": [],
1751
- "exports": []
1752
- },
1753
- {
1754
- "kind": "javascript-module",
1755
- "path": "src/routes/index.ts",
1756
- "declarations": [],
1757
- "exports": [
1758
- {
1759
- "kind": "js",
1760
- "name": "*",
1761
- "declaration": {
1762
- "name": "*",
1763
- "package": "./config"
1764
- }
1765
- }
1766
- ]
1767
- },
1768
- {
1769
- "kind": "javascript-module",
1770
- "path": "src/users/users.template.ts",
1771
- "declarations": [
1772
- {
1773
- "kind": "variable",
1774
- "name": "UsersTemplate",
1775
- "type": {
1776
- "text": "ViewTemplate"
1777
- },
1778
- "default": "html<Users>`\n <entity-management\n resourceName=${(x) => x.resourceName}\n title=\"User Management\"\n entityLabel=\"User\"\n createEvent=\"${(x) => x.createEvent}\"\n :readEventFn=${(x) => (user) => x.readUserData(user)}\n updateEvent=\"${(x) => x.updateEvent}\"\n deleteEvent=\"${(x) => x.deleteEvent}\"\n entityLabel=\"User Details\"\n :updateFormUiSchema=${(x) =>\n editUserSchema(\n true,\n x.allAccessType,\n x.entityID,\n x.entityLabel,\n x.entityLabelKey,\n x.availableEntitiesEndpoint,\n x.additionalUpdateFields\n )}\n :createFormUiSchema=${(x) =>\n editUserSchema(\n false,\n x.allAccessType,\n x.entityID,\n x.entityLabel,\n x.entityLabelKey,\n x.availableEntitiesEndpoint,\n x.additionalCreateFields\n )}\n persist-column-state-key=\"entity_users_management\"\n size-columns-to-fit\n :columns=${(x) => [...x.columns, ...x.entityColumn(), x.statusColumn()]}\n :datasourceConfig=${(x) => x.datasourceConfig}\n ></entity-management>\n`"
1779
- }
1780
- ],
1781
- "exports": [
1782
- {
1783
- "kind": "js",
1784
- "name": "UsersTemplate",
1785
- "declaration": {
1786
- "name": "UsersTemplate",
1787
- "module": "src/users/users.template.ts"
1788
- }
1789
- }
1790
- ]
1791
- },
1792
- {
1793
- "kind": "javascript-module",
1794
- "path": "src/users/users.ts",
1795
- "declarations": [
1796
- {
1797
- "kind": "variable",
1798
- "name": "UsersColumnConfig",
1799
- "type": {
1800
- "text": "array"
1801
- },
1802
- "default": "[\n {\n ...defaultColumnConfig,\n field: 'USER_NAME',\n headerName: 'Username',\n },\n {\n ...defaultColumnConfig,\n field: 'FIRST_NAME',\n headerName: 'First Name',\n },\n {\n ...defaultColumnConfig,\n field: 'LAST_NAME',\n headerName: 'Last Name',\n },\n {\n ...defaultColumnConfig,\n field: 'EMAIL_ADDRESS',\n headerName: 'Email',\n },\n {\n ...defaultColumnConfig,\n field: 'LAST_LOGIN',\n headerName: 'Last Login',\n valueFormatter: ({ value }) =>\n value\n ? new Intl.DateTimeFormat('default', {\n year: 'numeric',\n month: 'numeric',\n day: 'numeric',\n hour: 'numeric',\n minute: 'numeric',\n }).format(value)\n : '',\n },\n]",
1803
- "description": "Defines the default columns which are present on the user management component",
1804
- "privacy": "public"
1805
- },
1806
- {
1807
- "kind": "class",
1808
- "description": "Main class which defines the user management functionality",
1809
- "name": "Users",
1810
- "members": [
1811
- {
1812
- "kind": "field",
1813
- "name": "columns",
1814
- "type": {
1815
- "text": "any"
1816
- },
1817
- "default": "[\n {\n ...defaultColumnConfig,\n field: 'USER_NAME',\n headerName: 'Username',\n },\n {\n ...defaultColumnConfig,\n field: 'FIRST_NAME',\n headerName: 'First Name',\n },\n {\n ...defaultColumnConfig,\n field: 'LAST_NAME',\n headerName: 'Last Name',\n },\n {\n ...defaultColumnConfig,\n field: 'EMAIL_ADDRESS',\n headerName: 'Email',\n },\n {\n ...defaultColumnConfig,\n field: 'LAST_LOGIN',\n headerName: 'Last Login',\n valueFormatter: ({ value }) =>\n value\n ? new Intl.DateTimeFormat('default', {\n year: 'numeric',\n month: 'numeric',\n day: 'numeric',\n hour: 'numeric',\n minute: 'numeric',\n }).format(value)\n : '',\n },\n]",
1818
- "description": "Column definition, default to the UsersColumnConfig"
1819
- },
1820
- {
1821
- "kind": "field",
1822
- "name": "additionalCreateFields",
1823
- "type": {
1824
- "text": "any"
1825
- },
1826
- "default": "[]"
1827
- },
1828
- {
1829
- "kind": "field",
1830
- "name": "additionalUpdateFields",
1831
- "type": {
1832
- "text": "any"
1833
- },
1834
- "default": "[]"
1835
- },
1836
- {
1837
- "kind": "field",
1838
- "name": "allAccessType",
1839
- "type": {
1840
- "text": "boolean"
1841
- }
1842
- },
1843
- {
1844
- "kind": "field",
1845
- "name": "entityIdValue",
1846
- "type": {
1847
- "text": "string"
1848
- },
1849
- "privacy": "private"
1850
- },
1851
- {
1852
- "kind": "field",
1853
- "name": "createEvent",
1854
- "type": {
1855
- "text": "string"
1856
- },
1857
- "description": "String which contains event if we have permission to insert user of empty string if not"
1858
- },
1859
- {
1860
- "kind": "field",
1861
- "name": "deleteEvent",
1862
- "type": {
1863
- "text": "string"
1864
- },
1865
- "description": "String which contains event if we have permission to delete user of empty string if not"
1866
- },
1867
- {
1868
- "kind": "field",
1869
- "name": "updateEvent",
1870
- "type": {
1871
- "text": "string"
1872
- },
1873
- "description": "String which contains event if we have permission to update user of empty string if not"
1874
- },
1875
- {
1876
- "kind": "method",
1877
- "name": "deepClone",
1878
- "return": {
1879
- "type": {
1880
- "text": "Node"
1881
- }
1882
- }
1883
- }
1884
- ],
1885
- "mixins": [
1886
- {
1887
- "name": "LifecycleMixin",
1888
- "package": "@genesislcap/foundation-utils"
1889
- }
1890
- ],
1891
- "superclass": {
1892
- "name": "FASTElement",
1893
- "package": "@microsoft/fast-element"
1894
- },
1895
- "tagName": "user-management",
1896
- "customElement": true
1897
- }
1898
- ],
1899
- "exports": [
1900
- {
1901
- "kind": "js",
1902
- "name": "UsersColumnConfig",
1903
- "declaration": {
1904
- "name": "UsersColumnConfig",
1905
- "module": "src/users/users.ts"
1906
- }
1907
- },
1908
- {
1909
- "kind": "js",
1910
- "name": "Users",
1911
- "declaration": {
1912
- "name": "Users",
1913
- "module": "src/users/users.ts"
1914
- }
1915
- },
1916
- {
1917
- "kind": "custom-element-definition",
1918
- "name": "user-management",
1919
- "declaration": {
1920
- "name": "Users",
1921
- "module": "src/users/users.ts"
1922
- }
1923
- }
1924
- ]
1925
- },
1926
1926
  {
1927
1927
  "kind": "javascript-module",
1928
1928
  "path": "src/utils/formatting.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.28.0",
4
+ "version": "14.29.0",
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.28.0",
52
- "@genesislcap/genx": "^14.28.0",
51
+ "@genesislcap/foundation-testing": "^14.29.0",
52
+ "@genesislcap/genx": "^14.29.0",
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.28.0",
69
- "@genesislcap/foundation-errors": "^14.28.0",
70
- "@genesislcap/foundation-forms": "^14.28.0",
71
- "@genesislcap/foundation-login": "^14.28.0",
72
- "@genesislcap/foundation-ui": "^14.28.0",
73
- "@genesislcap/foundation-utils": "^14.28.0",
74
- "@genesislcap/foundation-zero": "^14.28.0",
75
- "@genesislcap/foundation-zero-grid-pro": "^14.28.0",
76
- "@genesislcap/grid-pro": "^14.28.0",
68
+ "@genesislcap/foundation-comms": "^14.29.0",
69
+ "@genesislcap/foundation-errors": "^14.29.0",
70
+ "@genesislcap/foundation-forms": "^14.29.0",
71
+ "@genesislcap/foundation-login": "^14.29.0",
72
+ "@genesislcap/foundation-ui": "^14.29.0",
73
+ "@genesislcap/foundation-utils": "^14.29.0",
74
+ "@genesislcap/foundation-zero": "^14.29.0",
75
+ "@genesislcap/foundation-zero-grid-pro": "^14.29.0",
76
+ "@genesislcap/grid-pro": "^14.29.0",
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": "fcf71da3c5d4780fc557a01487181de1d0aabad2"
101
+ "gitHead": "1271507cd084976e0fa827776cf136b1c3c83578"
102
102
  }