@genesislcap/foundation-entity-management 14.26.2-alpha-4e419a3.0 → 14.26.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +228 -228
- package/package.json +13 -13
|
@@ -593,55 +593,6 @@
|
|
|
593
593
|
}
|
|
594
594
|
]
|
|
595
595
|
},
|
|
596
|
-
{
|
|
597
|
-
"kind": "javascript-module",
|
|
598
|
-
"path": "src/layouts/default.ts",
|
|
599
|
-
"declarations": [
|
|
600
|
-
{
|
|
601
|
-
"kind": "variable",
|
|
602
|
-
"name": "loginLayout",
|
|
603
|
-
"default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss\n)"
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
"kind": "variable",
|
|
607
|
-
"name": "defaultLayout",
|
|
608
|
-
"default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n css`\n ${baseLayoutCss}\n `\n)"
|
|
609
|
-
}
|
|
610
|
-
],
|
|
611
|
-
"exports": [
|
|
612
|
-
{
|
|
613
|
-
"kind": "js",
|
|
614
|
-
"name": "loginLayout",
|
|
615
|
-
"declaration": {
|
|
616
|
-
"name": "loginLayout",
|
|
617
|
-
"module": "src/layouts/default.ts"
|
|
618
|
-
}
|
|
619
|
-
},
|
|
620
|
-
{
|
|
621
|
-
"kind": "js",
|
|
622
|
-
"name": "defaultLayout",
|
|
623
|
-
"declaration": {
|
|
624
|
-
"name": "defaultLayout",
|
|
625
|
-
"module": "src/layouts/default.ts"
|
|
626
|
-
}
|
|
627
|
-
}
|
|
628
|
-
]
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
"kind": "javascript-module",
|
|
632
|
-
"path": "src/layouts/index.ts",
|
|
633
|
-
"declarations": [],
|
|
634
|
-
"exports": [
|
|
635
|
-
{
|
|
636
|
-
"kind": "js",
|
|
637
|
-
"name": "*",
|
|
638
|
-
"declaration": {
|
|
639
|
-
"name": "*",
|
|
640
|
-
"package": "./default"
|
|
641
|
-
}
|
|
642
|
-
}
|
|
643
|
-
]
|
|
644
|
-
},
|
|
645
596
|
{
|
|
646
597
|
"kind": "javascript-module",
|
|
647
598
|
"path": "src/list/index.ts",
|
|
@@ -1107,6 +1058,185 @@
|
|
|
1107
1058
|
}
|
|
1108
1059
|
]
|
|
1109
1060
|
},
|
|
1061
|
+
{
|
|
1062
|
+
"kind": "javascript-module",
|
|
1063
|
+
"path": "src/routes/config.ts",
|
|
1064
|
+
"declarations": [],
|
|
1065
|
+
"exports": []
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"kind": "javascript-module",
|
|
1069
|
+
"path": "src/routes/index.ts",
|
|
1070
|
+
"declarations": [],
|
|
1071
|
+
"exports": [
|
|
1072
|
+
{
|
|
1073
|
+
"kind": "js",
|
|
1074
|
+
"name": "*",
|
|
1075
|
+
"declaration": {
|
|
1076
|
+
"name": "*",
|
|
1077
|
+
"package": "./config"
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1080
|
+
]
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"kind": "javascript-module",
|
|
1084
|
+
"path": "src/users/users.template.ts",
|
|
1085
|
+
"declarations": [
|
|
1086
|
+
{
|
|
1087
|
+
"kind": "variable",
|
|
1088
|
+
"name": "UsersTemplate",
|
|
1089
|
+
"type": {
|
|
1090
|
+
"text": "ViewTemplate"
|
|
1091
|
+
},
|
|
1092
|
+
"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`"
|
|
1093
|
+
}
|
|
1094
|
+
],
|
|
1095
|
+
"exports": [
|
|
1096
|
+
{
|
|
1097
|
+
"kind": "js",
|
|
1098
|
+
"name": "UsersTemplate",
|
|
1099
|
+
"declaration": {
|
|
1100
|
+
"name": "UsersTemplate",
|
|
1101
|
+
"module": "src/users/users.template.ts"
|
|
1102
|
+
}
|
|
1103
|
+
}
|
|
1104
|
+
]
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"kind": "javascript-module",
|
|
1108
|
+
"path": "src/users/users.ts",
|
|
1109
|
+
"declarations": [
|
|
1110
|
+
{
|
|
1111
|
+
"kind": "variable",
|
|
1112
|
+
"name": "UsersColumnConfig",
|
|
1113
|
+
"type": {
|
|
1114
|
+
"text": "array"
|
|
1115
|
+
},
|
|
1116
|
+
"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]",
|
|
1117
|
+
"description": "Defines the default columns which are present on the user management component",
|
|
1118
|
+
"privacy": "public"
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
"kind": "class",
|
|
1122
|
+
"description": "Main class which defines the user management functionality",
|
|
1123
|
+
"name": "Users",
|
|
1124
|
+
"members": [
|
|
1125
|
+
{
|
|
1126
|
+
"kind": "field",
|
|
1127
|
+
"name": "columns",
|
|
1128
|
+
"type": {
|
|
1129
|
+
"text": "any"
|
|
1130
|
+
},
|
|
1131
|
+
"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]",
|
|
1132
|
+
"description": "Column definition, default to the UsersColumnConfig"
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"kind": "field",
|
|
1136
|
+
"name": "additionalCreateFields",
|
|
1137
|
+
"type": {
|
|
1138
|
+
"text": "any"
|
|
1139
|
+
},
|
|
1140
|
+
"default": "[]"
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"kind": "field",
|
|
1144
|
+
"name": "additionalUpdateFields",
|
|
1145
|
+
"type": {
|
|
1146
|
+
"text": "any"
|
|
1147
|
+
},
|
|
1148
|
+
"default": "[]"
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"kind": "field",
|
|
1152
|
+
"name": "allAccessType",
|
|
1153
|
+
"type": {
|
|
1154
|
+
"text": "boolean"
|
|
1155
|
+
}
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"kind": "field",
|
|
1159
|
+
"name": "entityIdValue",
|
|
1160
|
+
"type": {
|
|
1161
|
+
"text": "string"
|
|
1162
|
+
},
|
|
1163
|
+
"privacy": "private"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"kind": "field",
|
|
1167
|
+
"name": "createEvent",
|
|
1168
|
+
"type": {
|
|
1169
|
+
"text": "string"
|
|
1170
|
+
},
|
|
1171
|
+
"description": "String which contains event if we have permission to insert user of empty string if not"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"kind": "field",
|
|
1175
|
+
"name": "deleteEvent",
|
|
1176
|
+
"type": {
|
|
1177
|
+
"text": "string"
|
|
1178
|
+
},
|
|
1179
|
+
"description": "String which contains event if we have permission to delete user of empty string if not"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"kind": "field",
|
|
1183
|
+
"name": "updateEvent",
|
|
1184
|
+
"type": {
|
|
1185
|
+
"text": "string"
|
|
1186
|
+
},
|
|
1187
|
+
"description": "String which contains event if we have permission to update user of empty string if not"
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
"kind": "method",
|
|
1191
|
+
"name": "deepClone",
|
|
1192
|
+
"return": {
|
|
1193
|
+
"type": {
|
|
1194
|
+
"text": "Node"
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
],
|
|
1199
|
+
"mixins": [
|
|
1200
|
+
{
|
|
1201
|
+
"name": "LifecycleMixin",
|
|
1202
|
+
"package": "@genesislcap/foundation-utils"
|
|
1203
|
+
}
|
|
1204
|
+
],
|
|
1205
|
+
"superclass": {
|
|
1206
|
+
"name": "FASTElement",
|
|
1207
|
+
"package": "@microsoft/fast-element"
|
|
1208
|
+
},
|
|
1209
|
+
"tagName": "user-management",
|
|
1210
|
+
"customElement": true
|
|
1211
|
+
}
|
|
1212
|
+
],
|
|
1213
|
+
"exports": [
|
|
1214
|
+
{
|
|
1215
|
+
"kind": "js",
|
|
1216
|
+
"name": "UsersColumnConfig",
|
|
1217
|
+
"declaration": {
|
|
1218
|
+
"name": "UsersColumnConfig",
|
|
1219
|
+
"module": "src/users/users.ts"
|
|
1220
|
+
}
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"kind": "js",
|
|
1224
|
+
"name": "Users",
|
|
1225
|
+
"declaration": {
|
|
1226
|
+
"name": "Users",
|
|
1227
|
+
"module": "src/users/users.ts"
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"kind": "custom-element-definition",
|
|
1232
|
+
"name": "user-management",
|
|
1233
|
+
"declaration": {
|
|
1234
|
+
"name": "Users",
|
|
1235
|
+
"module": "src/users/users.ts"
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
]
|
|
1239
|
+
},
|
|
1110
1240
|
{
|
|
1111
1241
|
"kind": "javascript-module",
|
|
1112
1242
|
"path": "src/profiles/editProfileSchema.ts",
|
|
@@ -1714,13 +1844,41 @@
|
|
|
1714
1844
|
},
|
|
1715
1845
|
{
|
|
1716
1846
|
"kind": "javascript-module",
|
|
1717
|
-
"path": "src/
|
|
1718
|
-
"declarations": [
|
|
1719
|
-
|
|
1847
|
+
"path": "src/layouts/default.ts",
|
|
1848
|
+
"declarations": [
|
|
1849
|
+
{
|
|
1850
|
+
"kind": "variable",
|
|
1851
|
+
"name": "loginLayout",
|
|
1852
|
+
"default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss\n)"
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"kind": "variable",
|
|
1856
|
+
"name": "defaultLayout",
|
|
1857
|
+
"default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n css`\n ${baseLayoutCss}\n `\n)"
|
|
1858
|
+
}
|
|
1859
|
+
],
|
|
1860
|
+
"exports": [
|
|
1861
|
+
{
|
|
1862
|
+
"kind": "js",
|
|
1863
|
+
"name": "loginLayout",
|
|
1864
|
+
"declaration": {
|
|
1865
|
+
"name": "loginLayout",
|
|
1866
|
+
"module": "src/layouts/default.ts"
|
|
1867
|
+
}
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"kind": "js",
|
|
1871
|
+
"name": "defaultLayout",
|
|
1872
|
+
"declaration": {
|
|
1873
|
+
"name": "defaultLayout",
|
|
1874
|
+
"module": "src/layouts/default.ts"
|
|
1875
|
+
}
|
|
1876
|
+
}
|
|
1877
|
+
]
|
|
1720
1878
|
},
|
|
1721
1879
|
{
|
|
1722
1880
|
"kind": "javascript-module",
|
|
1723
|
-
"path": "src/
|
|
1881
|
+
"path": "src/layouts/index.ts",
|
|
1724
1882
|
"declarations": [],
|
|
1725
1883
|
"exports": [
|
|
1726
1884
|
{
|
|
@@ -1728,165 +1886,66 @@
|
|
|
1728
1886
|
"name": "*",
|
|
1729
1887
|
"declaration": {
|
|
1730
1888
|
"name": "*",
|
|
1731
|
-
"package": "./
|
|
1889
|
+
"package": "./default"
|
|
1732
1890
|
}
|
|
1733
1891
|
}
|
|
1734
1892
|
]
|
|
1735
1893
|
},
|
|
1736
1894
|
{
|
|
1737
1895
|
"kind": "javascript-module",
|
|
1738
|
-
"path": "src/
|
|
1896
|
+
"path": "src/routes/admin/admin.template.ts",
|
|
1739
1897
|
"declarations": [
|
|
1740
1898
|
{
|
|
1741
1899
|
"kind": "variable",
|
|
1742
|
-
"name": "
|
|
1900
|
+
"name": "AdminTemplate",
|
|
1743
1901
|
"type": {
|
|
1744
1902
|
"text": "ViewTemplate"
|
|
1745
1903
|
},
|
|
1746
|
-
"default": "html<
|
|
1904
|
+
"default": "html<Admin>`\n <zero-tabs>\n <span slot=\"start\">Admin Entity Management</span>\n <zero-tab slot=\"tab\">Split</zero-tab>\n <zero-tab slot=\"tab\">Users</zero-tab>\n <zero-tab slot=\"tab\">Profiles</zero-tab>\n <zero-tab-panel slot=\"tabpanel\">\n <zero-error-boundary>\n <user-management :columns=${() => [...UsersColumnConfig, ...userColumns]}></user-management>\n </zero-error-boundary>\n </zero-tab-panel>\n <zero-tab-panel slot=\"tabpanel\">\n <zero-error-boundary>\n <profile-management></profile-management>\n </zero-error-boundary>\n </zero-tab-panel>\n <zero-tab-panel slot=\"tabpanel\">\n <zero-error-boundary>\n <entity-management\n resourceName=\"ALL_COUNTERPARTYS\"\n title=\"Counterparty Management\"\n updateEvent=\"EVENT_COUNTERPARTY_MODIFY\"\n deleteEvent=\"EVENT_COUNTERPARTY_DELETE\"\n createEvent=\"EVENT_COUNTERPARTY_INSERT\"\n ></entity-management>\n </zero-error-boundary>\n </zero-tab-panel>\n </zero-tabs>\n`"
|
|
1747
1905
|
}
|
|
1748
1906
|
],
|
|
1749
1907
|
"exports": [
|
|
1750
1908
|
{
|
|
1751
1909
|
"kind": "js",
|
|
1752
|
-
"name": "
|
|
1910
|
+
"name": "AdminTemplate",
|
|
1753
1911
|
"declaration": {
|
|
1754
|
-
"name": "
|
|
1755
|
-
"module": "src/
|
|
1912
|
+
"name": "AdminTemplate",
|
|
1913
|
+
"module": "src/routes/admin/admin.template.ts"
|
|
1756
1914
|
}
|
|
1757
1915
|
}
|
|
1758
1916
|
]
|
|
1759
1917
|
},
|
|
1760
1918
|
{
|
|
1761
1919
|
"kind": "javascript-module",
|
|
1762
|
-
"path": "src/
|
|
1920
|
+
"path": "src/routes/admin/admin.ts",
|
|
1763
1921
|
"declarations": [
|
|
1764
|
-
{
|
|
1765
|
-
"kind": "variable",
|
|
1766
|
-
"name": "UsersColumnConfig",
|
|
1767
|
-
"type": {
|
|
1768
|
-
"text": "array"
|
|
1769
|
-
},
|
|
1770
|
-
"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]",
|
|
1771
|
-
"description": "Defines the default columns which are present on the user management component",
|
|
1772
|
-
"privacy": "public"
|
|
1773
|
-
},
|
|
1774
1922
|
{
|
|
1775
1923
|
"kind": "class",
|
|
1776
|
-
"description": "
|
|
1777
|
-
"name": "
|
|
1778
|
-
"members": [
|
|
1779
|
-
{
|
|
1780
|
-
"kind": "field",
|
|
1781
|
-
"name": "columns",
|
|
1782
|
-
"type": {
|
|
1783
|
-
"text": "any"
|
|
1784
|
-
},
|
|
1785
|
-
"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]",
|
|
1786
|
-
"description": "Column definition, default to the UsersColumnConfig"
|
|
1787
|
-
},
|
|
1788
|
-
{
|
|
1789
|
-
"kind": "field",
|
|
1790
|
-
"name": "additionalCreateFields",
|
|
1791
|
-
"type": {
|
|
1792
|
-
"text": "any"
|
|
1793
|
-
},
|
|
1794
|
-
"default": "[]"
|
|
1795
|
-
},
|
|
1796
|
-
{
|
|
1797
|
-
"kind": "field",
|
|
1798
|
-
"name": "additionalUpdateFields",
|
|
1799
|
-
"type": {
|
|
1800
|
-
"text": "any"
|
|
1801
|
-
},
|
|
1802
|
-
"default": "[]"
|
|
1803
|
-
},
|
|
1804
|
-
{
|
|
1805
|
-
"kind": "field",
|
|
1806
|
-
"name": "allAccessType",
|
|
1807
|
-
"type": {
|
|
1808
|
-
"text": "boolean"
|
|
1809
|
-
}
|
|
1810
|
-
},
|
|
1811
|
-
{
|
|
1812
|
-
"kind": "field",
|
|
1813
|
-
"name": "entityIdValue",
|
|
1814
|
-
"type": {
|
|
1815
|
-
"text": "string"
|
|
1816
|
-
},
|
|
1817
|
-
"privacy": "private"
|
|
1818
|
-
},
|
|
1819
|
-
{
|
|
1820
|
-
"kind": "field",
|
|
1821
|
-
"name": "createEvent",
|
|
1822
|
-
"type": {
|
|
1823
|
-
"text": "string"
|
|
1824
|
-
},
|
|
1825
|
-
"description": "String which contains event if we have permission to insert user of empty string if not"
|
|
1826
|
-
},
|
|
1827
|
-
{
|
|
1828
|
-
"kind": "field",
|
|
1829
|
-
"name": "deleteEvent",
|
|
1830
|
-
"type": {
|
|
1831
|
-
"text": "string"
|
|
1832
|
-
},
|
|
1833
|
-
"description": "String which contains event if we have permission to delete user of empty string if not"
|
|
1834
|
-
},
|
|
1835
|
-
{
|
|
1836
|
-
"kind": "field",
|
|
1837
|
-
"name": "updateEvent",
|
|
1838
|
-
"type": {
|
|
1839
|
-
"text": "string"
|
|
1840
|
-
},
|
|
1841
|
-
"description": "String which contains event if we have permission to update user of empty string if not"
|
|
1842
|
-
},
|
|
1843
|
-
{
|
|
1844
|
-
"kind": "method",
|
|
1845
|
-
"name": "deepClone",
|
|
1846
|
-
"return": {
|
|
1847
|
-
"type": {
|
|
1848
|
-
"text": "Node"
|
|
1849
|
-
}
|
|
1850
|
-
}
|
|
1851
|
-
}
|
|
1852
|
-
],
|
|
1853
|
-
"mixins": [
|
|
1854
|
-
{
|
|
1855
|
-
"name": "LifecycleMixin",
|
|
1856
|
-
"package": "@genesislcap/foundation-utils"
|
|
1857
|
-
}
|
|
1858
|
-
],
|
|
1924
|
+
"description": "",
|
|
1925
|
+
"name": "Admin",
|
|
1859
1926
|
"superclass": {
|
|
1860
1927
|
"name": "FASTElement",
|
|
1861
1928
|
"package": "@microsoft/fast-element"
|
|
1862
1929
|
},
|
|
1863
|
-
"tagName": "user-
|
|
1930
|
+
"tagName": "user-admin",
|
|
1864
1931
|
"customElement": true
|
|
1865
1932
|
}
|
|
1866
1933
|
],
|
|
1867
1934
|
"exports": [
|
|
1868
1935
|
{
|
|
1869
1936
|
"kind": "js",
|
|
1870
|
-
"name": "
|
|
1871
|
-
"declaration": {
|
|
1872
|
-
"name": "UsersColumnConfig",
|
|
1873
|
-
"module": "src/users/users.ts"
|
|
1874
|
-
}
|
|
1875
|
-
},
|
|
1876
|
-
{
|
|
1877
|
-
"kind": "js",
|
|
1878
|
-
"name": "Users",
|
|
1937
|
+
"name": "Admin",
|
|
1879
1938
|
"declaration": {
|
|
1880
|
-
"name": "
|
|
1881
|
-
"module": "src/
|
|
1939
|
+
"name": "Admin",
|
|
1940
|
+
"module": "src/routes/admin/admin.ts"
|
|
1882
1941
|
}
|
|
1883
1942
|
},
|
|
1884
1943
|
{
|
|
1885
1944
|
"kind": "custom-element-definition",
|
|
1886
|
-
"name": "user-
|
|
1945
|
+
"name": "user-admin",
|
|
1887
1946
|
"declaration": {
|
|
1888
|
-
"name": "
|
|
1889
|
-
"module": "src/
|
|
1947
|
+
"name": "Admin",
|
|
1948
|
+
"module": "src/routes/admin/admin.ts"
|
|
1890
1949
|
}
|
|
1891
1950
|
}
|
|
1892
1951
|
]
|
|
@@ -1961,65 +2020,6 @@
|
|
|
1961
2020
|
}
|
|
1962
2021
|
}
|
|
1963
2022
|
]
|
|
1964
|
-
},
|
|
1965
|
-
{
|
|
1966
|
-
"kind": "javascript-module",
|
|
1967
|
-
"path": "src/routes/admin/admin.template.ts",
|
|
1968
|
-
"declarations": [
|
|
1969
|
-
{
|
|
1970
|
-
"kind": "variable",
|
|
1971
|
-
"name": "AdminTemplate",
|
|
1972
|
-
"type": {
|
|
1973
|
-
"text": "ViewTemplate"
|
|
1974
|
-
},
|
|
1975
|
-
"default": "html<Admin>`\n <zero-tabs>\n <span slot=\"start\">Admin Entity Management</span>\n <zero-tab slot=\"tab\">Split</zero-tab>\n <zero-tab slot=\"tab\">Users</zero-tab>\n <zero-tab slot=\"tab\">Profiles</zero-tab>\n <zero-tab-panel slot=\"tabpanel\">\n <zero-error-boundary>\n <user-management :columns=${() => [...UsersColumnConfig, ...userColumns]}></user-management>\n </zero-error-boundary>\n </zero-tab-panel>\n <zero-tab-panel slot=\"tabpanel\">\n <zero-error-boundary>\n <profile-management></profile-management>\n </zero-error-boundary>\n </zero-tab-panel>\n <zero-tab-panel slot=\"tabpanel\">\n <zero-error-boundary>\n <entity-management\n resourceName=\"ALL_COUNTERPARTYS\"\n title=\"Counterparty Management\"\n updateEvent=\"EVENT_COUNTERPARTY_MODIFY\"\n deleteEvent=\"EVENT_COUNTERPARTY_DELETE\"\n createEvent=\"EVENT_COUNTERPARTY_INSERT\"\n ></entity-management>\n </zero-error-boundary>\n </zero-tab-panel>\n </zero-tabs>\n`"
|
|
1976
|
-
}
|
|
1977
|
-
],
|
|
1978
|
-
"exports": [
|
|
1979
|
-
{
|
|
1980
|
-
"kind": "js",
|
|
1981
|
-
"name": "AdminTemplate",
|
|
1982
|
-
"declaration": {
|
|
1983
|
-
"name": "AdminTemplate",
|
|
1984
|
-
"module": "src/routes/admin/admin.template.ts"
|
|
1985
|
-
}
|
|
1986
|
-
}
|
|
1987
|
-
]
|
|
1988
|
-
},
|
|
1989
|
-
{
|
|
1990
|
-
"kind": "javascript-module",
|
|
1991
|
-
"path": "src/routes/admin/admin.ts",
|
|
1992
|
-
"declarations": [
|
|
1993
|
-
{
|
|
1994
|
-
"kind": "class",
|
|
1995
|
-
"description": "",
|
|
1996
|
-
"name": "Admin",
|
|
1997
|
-
"superclass": {
|
|
1998
|
-
"name": "FASTElement",
|
|
1999
|
-
"package": "@microsoft/fast-element"
|
|
2000
|
-
},
|
|
2001
|
-
"tagName": "user-admin",
|
|
2002
|
-
"customElement": true
|
|
2003
|
-
}
|
|
2004
|
-
],
|
|
2005
|
-
"exports": [
|
|
2006
|
-
{
|
|
2007
|
-
"kind": "js",
|
|
2008
|
-
"name": "Admin",
|
|
2009
|
-
"declaration": {
|
|
2010
|
-
"name": "Admin",
|
|
2011
|
-
"module": "src/routes/admin/admin.ts"
|
|
2012
|
-
}
|
|
2013
|
-
},
|
|
2014
|
-
{
|
|
2015
|
-
"kind": "custom-element-definition",
|
|
2016
|
-
"name": "user-admin",
|
|
2017
|
-
"declaration": {
|
|
2018
|
-
"name": "Admin",
|
|
2019
|
-
"module": "src/routes/admin/admin.ts"
|
|
2020
|
-
}
|
|
2021
|
-
}
|
|
2022
|
-
]
|
|
2023
2023
|
}
|
|
2024
2024
|
]
|
|
2025
2025
|
}
|
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.2
|
|
4
|
+
"version": "14.26.2",
|
|
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.2
|
|
42
|
-
"@genesislcap/genx": "14.26.2
|
|
41
|
+
"@genesislcap/foundation-testing": "^14.26.2",
|
|
42
|
+
"@genesislcap/genx": "^14.26.2",
|
|
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.2
|
|
59
|
-
"@genesislcap/foundation-errors": "14.26.2
|
|
60
|
-
"@genesislcap/foundation-forms": "14.26.2
|
|
61
|
-
"@genesislcap/foundation-login": "14.26.2
|
|
62
|
-
"@genesislcap/foundation-ui": "14.26.2
|
|
63
|
-
"@genesislcap/foundation-utils": "14.26.2
|
|
64
|
-
"@genesislcap/foundation-zero": "14.26.2
|
|
65
|
-
"@genesislcap/foundation-zero-grid-pro": "14.26.2
|
|
66
|
-
"@genesislcap/grid-pro": "14.26.2
|
|
58
|
+
"@genesislcap/foundation-comms": "^14.26.2",
|
|
59
|
+
"@genesislcap/foundation-errors": "^14.26.2",
|
|
60
|
+
"@genesislcap/foundation-forms": "^14.26.2",
|
|
61
|
+
"@genesislcap/foundation-login": "^14.26.2",
|
|
62
|
+
"@genesislcap/foundation-ui": "^14.26.2",
|
|
63
|
+
"@genesislcap/foundation-utils": "^14.26.2",
|
|
64
|
+
"@genesislcap/foundation-zero": "^14.26.2",
|
|
65
|
+
"@genesislcap/foundation-zero-grid-pro": "^14.26.2",
|
|
66
|
+
"@genesislcap/grid-pro": "^14.26.2",
|
|
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": "
|
|
91
|
+
"gitHead": "60c523f3f5ac39cc3fe9a6aa4e52871d245f66c2"
|
|
92
92
|
}
|