@genesislcap/foundation-entity-management 14.114.2 → 14.115.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.
- package/dist/custom-elements.json +175 -175
- package/dist/dts/entities/entities.d.ts +5 -20
- package/dist/dts/entities/entities.d.ts.map +1 -1
- package/dist/dts/users/users.d.ts +23 -8
- package/dist/dts/users/users.d.ts.map +1 -1
- package/dist/esm/entities/entities.js +35 -31
- package/dist/esm/users/users.js +8 -10
- package/dist/foundation-entity-management.d.ts +28 -28
- package/package.json +15 -15
|
@@ -777,6 +777,55 @@
|
|
|
777
777
|
}
|
|
778
778
|
]
|
|
779
779
|
},
|
|
780
|
+
{
|
|
781
|
+
"kind": "javascript-module",
|
|
782
|
+
"path": "src/layouts/default.ts",
|
|
783
|
+
"declarations": [
|
|
784
|
+
{
|
|
785
|
+
"kind": "variable",
|
|
786
|
+
"name": "loginLayout",
|
|
787
|
+
"default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"kind": "variable",
|
|
791
|
+
"name": "defaultLayout",
|
|
792
|
+
"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)"
|
|
793
|
+
}
|
|
794
|
+
],
|
|
795
|
+
"exports": [
|
|
796
|
+
{
|
|
797
|
+
"kind": "js",
|
|
798
|
+
"name": "loginLayout",
|
|
799
|
+
"declaration": {
|
|
800
|
+
"name": "loginLayout",
|
|
801
|
+
"module": "src/layouts/default.ts"
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"kind": "js",
|
|
806
|
+
"name": "defaultLayout",
|
|
807
|
+
"declaration": {
|
|
808
|
+
"name": "defaultLayout",
|
|
809
|
+
"module": "src/layouts/default.ts"
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
]
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"kind": "javascript-module",
|
|
816
|
+
"path": "src/layouts/index.ts",
|
|
817
|
+
"declarations": [],
|
|
818
|
+
"exports": [
|
|
819
|
+
{
|
|
820
|
+
"kind": "js",
|
|
821
|
+
"name": "*",
|
|
822
|
+
"declaration": {
|
|
823
|
+
"name": "*",
|
|
824
|
+
"package": "./default"
|
|
825
|
+
}
|
|
826
|
+
}
|
|
827
|
+
]
|
|
828
|
+
},
|
|
780
829
|
{
|
|
781
830
|
"kind": "javascript-module",
|
|
782
831
|
"path": "src/list/index.ts",
|
|
@@ -1185,49 +1234,153 @@
|
|
|
1185
1234
|
},
|
|
1186
1235
|
{
|
|
1187
1236
|
"kind": "javascript-module",
|
|
1188
|
-
"path": "src/
|
|
1189
|
-
"declarations": [
|
|
1237
|
+
"path": "src/main/index.ts",
|
|
1238
|
+
"declarations": [],
|
|
1239
|
+
"exports": [
|
|
1190
1240
|
{
|
|
1191
|
-
"kind": "
|
|
1192
|
-
"name": "
|
|
1193
|
-
"
|
|
1241
|
+
"kind": "js",
|
|
1242
|
+
"name": "*",
|
|
1243
|
+
"declaration": {
|
|
1244
|
+
"name": "*",
|
|
1245
|
+
"package": "./main.template"
|
|
1246
|
+
}
|
|
1194
1247
|
},
|
|
1248
|
+
{
|
|
1249
|
+
"kind": "js",
|
|
1250
|
+
"name": "*",
|
|
1251
|
+
"declaration": {
|
|
1252
|
+
"name": "*",
|
|
1253
|
+
"package": "./main"
|
|
1254
|
+
}
|
|
1255
|
+
}
|
|
1256
|
+
]
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
"kind": "javascript-module",
|
|
1260
|
+
"path": "src/main/main.styles.ts",
|
|
1261
|
+
"declarations": [
|
|
1195
1262
|
{
|
|
1196
1263
|
"kind": "variable",
|
|
1197
|
-
"name": "
|
|
1198
|
-
"default": "
|
|
1264
|
+
"name": "MainStyles",
|
|
1265
|
+
"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`"
|
|
1199
1266
|
}
|
|
1200
1267
|
],
|
|
1201
1268
|
"exports": [
|
|
1202
1269
|
{
|
|
1203
1270
|
"kind": "js",
|
|
1204
|
-
"name": "
|
|
1205
|
-
"declaration": {
|
|
1206
|
-
"name": "loginLayout",
|
|
1207
|
-
"module": "src/layouts/default.ts"
|
|
1208
|
-
}
|
|
1209
|
-
},
|
|
1210
|
-
{
|
|
1211
|
-
"kind": "js",
|
|
1212
|
-
"name": "defaultLayout",
|
|
1271
|
+
"name": "MainStyles",
|
|
1213
1272
|
"declaration": {
|
|
1214
|
-
"name": "
|
|
1215
|
-
"module": "src/
|
|
1273
|
+
"name": "MainStyles",
|
|
1274
|
+
"module": "src/main/main.styles.ts"
|
|
1216
1275
|
}
|
|
1217
1276
|
}
|
|
1218
1277
|
]
|
|
1219
1278
|
},
|
|
1220
1279
|
{
|
|
1221
1280
|
"kind": "javascript-module",
|
|
1222
|
-
"path": "src/
|
|
1281
|
+
"path": "src/main/main.template.ts",
|
|
1223
1282
|
"declarations": [],
|
|
1283
|
+
"exports": []
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"kind": "javascript-module",
|
|
1287
|
+
"path": "src/main/main.ts",
|
|
1288
|
+
"declarations": [
|
|
1289
|
+
{
|
|
1290
|
+
"kind": "class",
|
|
1291
|
+
"description": "",
|
|
1292
|
+
"name": "MainApplication",
|
|
1293
|
+
"members": [
|
|
1294
|
+
{
|
|
1295
|
+
"kind": "field",
|
|
1296
|
+
"name": "config",
|
|
1297
|
+
"type": {
|
|
1298
|
+
"text": "MainRouterConfig"
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"kind": "field",
|
|
1303
|
+
"name": "connect",
|
|
1304
|
+
"type": {
|
|
1305
|
+
"text": "Connect"
|
|
1306
|
+
}
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"kind": "field",
|
|
1310
|
+
"name": "session",
|
|
1311
|
+
"type": {
|
|
1312
|
+
"text": "Session"
|
|
1313
|
+
}
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"kind": "field",
|
|
1317
|
+
"name": "container",
|
|
1318
|
+
"type": {
|
|
1319
|
+
"text": "Container"
|
|
1320
|
+
}
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"kind": "field",
|
|
1324
|
+
"name": "provider",
|
|
1325
|
+
"type": {
|
|
1326
|
+
"text": "any"
|
|
1327
|
+
}
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"kind": "field",
|
|
1331
|
+
"name": "ready",
|
|
1332
|
+
"type": {
|
|
1333
|
+
"text": "boolean"
|
|
1334
|
+
},
|
|
1335
|
+
"default": "false"
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"kind": "field",
|
|
1339
|
+
"name": "data",
|
|
1340
|
+
"type": {
|
|
1341
|
+
"text": "any"
|
|
1342
|
+
},
|
|
1343
|
+
"default": "null"
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"kind": "method",
|
|
1347
|
+
"name": "onLuminanceToggle"
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
"kind": "method",
|
|
1351
|
+
"name": "loadRemotes"
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
"kind": "method",
|
|
1355
|
+
"name": "selectTemplate"
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"kind": "method",
|
|
1359
|
+
"name": "registerDIDependencies",
|
|
1360
|
+
"privacy": "private"
|
|
1361
|
+
}
|
|
1362
|
+
],
|
|
1363
|
+
"superclass": {
|
|
1364
|
+
"name": "FASTElement",
|
|
1365
|
+
"package": "@microsoft/fast-element"
|
|
1366
|
+
},
|
|
1367
|
+
"customElement": true
|
|
1368
|
+
}
|
|
1369
|
+
],
|
|
1224
1370
|
"exports": [
|
|
1225
1371
|
{
|
|
1226
1372
|
"kind": "js",
|
|
1227
|
-
"name": "
|
|
1373
|
+
"name": "MainApplication",
|
|
1228
1374
|
"declaration": {
|
|
1229
|
-
"name": "
|
|
1230
|
-
"
|
|
1375
|
+
"name": "MainApplication",
|
|
1376
|
+
"module": "src/main/main.ts"
|
|
1377
|
+
}
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"kind": "custom-element-definition",
|
|
1381
|
+
"declaration": {
|
|
1382
|
+
"name": "MainApplication",
|
|
1383
|
+
"module": "src/main/main.ts"
|
|
1231
1384
|
}
|
|
1232
1385
|
}
|
|
1233
1386
|
]
|
|
@@ -2097,159 +2250,6 @@
|
|
|
2097
2250
|
}
|
|
2098
2251
|
]
|
|
2099
2252
|
},
|
|
2100
|
-
{
|
|
2101
|
-
"kind": "javascript-module",
|
|
2102
|
-
"path": "src/main/index.ts",
|
|
2103
|
-
"declarations": [],
|
|
2104
|
-
"exports": [
|
|
2105
|
-
{
|
|
2106
|
-
"kind": "js",
|
|
2107
|
-
"name": "*",
|
|
2108
|
-
"declaration": {
|
|
2109
|
-
"name": "*",
|
|
2110
|
-
"package": "./main.template"
|
|
2111
|
-
}
|
|
2112
|
-
},
|
|
2113
|
-
{
|
|
2114
|
-
"kind": "js",
|
|
2115
|
-
"name": "*",
|
|
2116
|
-
"declaration": {
|
|
2117
|
-
"name": "*",
|
|
2118
|
-
"package": "./main"
|
|
2119
|
-
}
|
|
2120
|
-
}
|
|
2121
|
-
]
|
|
2122
|
-
},
|
|
2123
|
-
{
|
|
2124
|
-
"kind": "javascript-module",
|
|
2125
|
-
"path": "src/main/main.styles.ts",
|
|
2126
|
-
"declarations": [
|
|
2127
|
-
{
|
|
2128
|
-
"kind": "variable",
|
|
2129
|
-
"name": "MainStyles",
|
|
2130
|
-
"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`"
|
|
2131
|
-
}
|
|
2132
|
-
],
|
|
2133
|
-
"exports": [
|
|
2134
|
-
{
|
|
2135
|
-
"kind": "js",
|
|
2136
|
-
"name": "MainStyles",
|
|
2137
|
-
"declaration": {
|
|
2138
|
-
"name": "MainStyles",
|
|
2139
|
-
"module": "src/main/main.styles.ts"
|
|
2140
|
-
}
|
|
2141
|
-
}
|
|
2142
|
-
]
|
|
2143
|
-
},
|
|
2144
|
-
{
|
|
2145
|
-
"kind": "javascript-module",
|
|
2146
|
-
"path": "src/main/main.template.ts",
|
|
2147
|
-
"declarations": [],
|
|
2148
|
-
"exports": []
|
|
2149
|
-
},
|
|
2150
|
-
{
|
|
2151
|
-
"kind": "javascript-module",
|
|
2152
|
-
"path": "src/main/main.ts",
|
|
2153
|
-
"declarations": [
|
|
2154
|
-
{
|
|
2155
|
-
"kind": "class",
|
|
2156
|
-
"description": "",
|
|
2157
|
-
"name": "MainApplication",
|
|
2158
|
-
"members": [
|
|
2159
|
-
{
|
|
2160
|
-
"kind": "field",
|
|
2161
|
-
"name": "config",
|
|
2162
|
-
"type": {
|
|
2163
|
-
"text": "MainRouterConfig"
|
|
2164
|
-
}
|
|
2165
|
-
},
|
|
2166
|
-
{
|
|
2167
|
-
"kind": "field",
|
|
2168
|
-
"name": "connect",
|
|
2169
|
-
"type": {
|
|
2170
|
-
"text": "Connect"
|
|
2171
|
-
}
|
|
2172
|
-
},
|
|
2173
|
-
{
|
|
2174
|
-
"kind": "field",
|
|
2175
|
-
"name": "session",
|
|
2176
|
-
"type": {
|
|
2177
|
-
"text": "Session"
|
|
2178
|
-
}
|
|
2179
|
-
},
|
|
2180
|
-
{
|
|
2181
|
-
"kind": "field",
|
|
2182
|
-
"name": "container",
|
|
2183
|
-
"type": {
|
|
2184
|
-
"text": "Container"
|
|
2185
|
-
}
|
|
2186
|
-
},
|
|
2187
|
-
{
|
|
2188
|
-
"kind": "field",
|
|
2189
|
-
"name": "provider",
|
|
2190
|
-
"type": {
|
|
2191
|
-
"text": "any"
|
|
2192
|
-
}
|
|
2193
|
-
},
|
|
2194
|
-
{
|
|
2195
|
-
"kind": "field",
|
|
2196
|
-
"name": "ready",
|
|
2197
|
-
"type": {
|
|
2198
|
-
"text": "boolean"
|
|
2199
|
-
},
|
|
2200
|
-
"default": "false"
|
|
2201
|
-
},
|
|
2202
|
-
{
|
|
2203
|
-
"kind": "field",
|
|
2204
|
-
"name": "data",
|
|
2205
|
-
"type": {
|
|
2206
|
-
"text": "any"
|
|
2207
|
-
},
|
|
2208
|
-
"default": "null"
|
|
2209
|
-
},
|
|
2210
|
-
{
|
|
2211
|
-
"kind": "method",
|
|
2212
|
-
"name": "onLuminanceToggle"
|
|
2213
|
-
},
|
|
2214
|
-
{
|
|
2215
|
-
"kind": "method",
|
|
2216
|
-
"name": "loadRemotes"
|
|
2217
|
-
},
|
|
2218
|
-
{
|
|
2219
|
-
"kind": "method",
|
|
2220
|
-
"name": "selectTemplate"
|
|
2221
|
-
},
|
|
2222
|
-
{
|
|
2223
|
-
"kind": "method",
|
|
2224
|
-
"name": "registerDIDependencies",
|
|
2225
|
-
"privacy": "private"
|
|
2226
|
-
}
|
|
2227
|
-
],
|
|
2228
|
-
"superclass": {
|
|
2229
|
-
"name": "FASTElement",
|
|
2230
|
-
"package": "@microsoft/fast-element"
|
|
2231
|
-
},
|
|
2232
|
-
"customElement": true
|
|
2233
|
-
}
|
|
2234
|
-
],
|
|
2235
|
-
"exports": [
|
|
2236
|
-
{
|
|
2237
|
-
"kind": "js",
|
|
2238
|
-
"name": "MainApplication",
|
|
2239
|
-
"declaration": {
|
|
2240
|
-
"name": "MainApplication",
|
|
2241
|
-
"module": "src/main/main.ts"
|
|
2242
|
-
}
|
|
2243
|
-
},
|
|
2244
|
-
{
|
|
2245
|
-
"kind": "custom-element-definition",
|
|
2246
|
-
"declaration": {
|
|
2247
|
-
"name": "MainApplication",
|
|
2248
|
-
"module": "src/main/main.ts"
|
|
2249
|
-
}
|
|
2250
|
-
}
|
|
2251
|
-
]
|
|
2252
|
-
},
|
|
2253
2253
|
{
|
|
2254
2254
|
"kind": "javascript-module",
|
|
2255
2255
|
"path": "src/routes/config.ts",
|
|
@@ -35,23 +35,9 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
35
35
|
readonly shouldRunConnect: boolean;
|
|
36
36
|
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
37
37
|
"__#1@#_tryFindContainingLayout"(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
38
|
-
connectedCallback(): void;
|
|
39
|
-
* If true, will enable row flashing for all rows for `add` transactions
|
|
40
|
-
* @public
|
|
41
|
-
*/
|
|
38
|
+
connectedCallback(): void;
|
|
42
39
|
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
43
40
|
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
|
44
|
-
/**
|
|
45
|
-
* This attribute controls whether and how the entity manager stores the state of the columns when the user edits them. Omit this attribute to disable the functionality, set it to a unique value to enable it.
|
|
46
|
-
*
|
|
47
|
-
* @remarks
|
|
48
|
-
*
|
|
49
|
-
* Setting this value will set the entity manager to persist the column states through page refreshes etc. An example of what is stored is when the user resizes or reorders columns.
|
|
50
|
-
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
51
|
-
* There is an option on the grid for the user to reset the table to the default layout if they wish.
|
|
52
|
-
* If you omit this attribute then nothing is persisted
|
|
53
|
-
* @public
|
|
54
|
-
*/
|
|
55
41
|
disconnectedCallback(): void;
|
|
56
42
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
57
43
|
accessKey: string;
|
|
@@ -72,7 +58,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
72
58
|
spellcheck: boolean;
|
|
73
59
|
title: string;
|
|
74
60
|
translate: boolean;
|
|
75
|
-
attachInternals(): ElementInternals;
|
|
61
|
+
attachInternals(): ElementInternals; /**
|
|
62
|
+
* GridOptions to be passed down from application
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
76
65
|
click(): void;
|
|
77
66
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
78
67
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -95,10 +84,6 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
95
84
|
readonly part: DOMTokenList;
|
|
96
85
|
readonly prefix: string;
|
|
97
86
|
readonly scrollHeight: number;
|
|
98
|
-
/**
|
|
99
|
-
* Disables the form while enabled to stop the user dispatching a large number of duplicate events
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
87
|
scrollLeft: number;
|
|
103
88
|
scrollTop: number;
|
|
104
89
|
readonly scrollWidth: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAa,aAAa,EAAE,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.ts"],"names":[],"mappings":"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"}
|
|
@@ -36,7 +36,18 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
36
36
|
cloneNode(deep?: boolean): Node;
|
|
37
37
|
deepClone(): Node;
|
|
38
38
|
readonly shouldRunDisconnect: boolean;
|
|
39
|
-
|
|
39
|
+
/**
|
|
40
|
+
* The configuration which is used when interacting with the resource on the backend
|
|
41
|
+
*
|
|
42
|
+
* @remarks
|
|
43
|
+
*
|
|
44
|
+
* Handles the configuration such as how many rows of entities to fetch at a time
|
|
45
|
+
* @internal
|
|
46
|
+
*/
|
|
47
|
+
readonly shouldRunConnect: boolean; /**
|
|
48
|
+
* Configuring the resourceName from the entity-management, set to manage the users resource specifically
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
40
51
|
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
41
52
|
"__#1@#_tryFindContainingLayout"(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
42
53
|
connectedCallback(): void;
|
|
@@ -56,6 +67,12 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
56
67
|
readonly offsetHeight: number;
|
|
57
68
|
readonly offsetLeft: number;
|
|
58
69
|
readonly offsetParent: Element;
|
|
70
|
+
/**
|
|
71
|
+
* Returns the config for an entity column if the entityID attribute is defined
|
|
72
|
+
*
|
|
73
|
+
* @returns Config for an entity column if the entityID is defined, else an empty array
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
59
76
|
readonly offsetTop: number;
|
|
60
77
|
readonly offsetWidth: number;
|
|
61
78
|
outerText: string;
|
|
@@ -75,10 +92,7 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
75
92
|
readonly clientLeft: number;
|
|
76
93
|
readonly clientTop: number;
|
|
77
94
|
readonly clientWidth: number;
|
|
78
|
-
id: string;
|
|
79
|
-
* entityID used to control the definition of an optional entity column which is created with the {@link Users.entityColumn} function.
|
|
80
|
-
* @internal
|
|
81
|
-
*/
|
|
95
|
+
id: string;
|
|
82
96
|
readonly localName: string;
|
|
83
97
|
readonly namespaceURI: string;
|
|
84
98
|
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
@@ -118,6 +132,10 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
118
132
|
hasPointerCapture(pointerId: number): boolean;
|
|
119
133
|
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
120
134
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
135
|
+
/**
|
|
136
|
+
* Used as the callback function in {@link Users.statusColumn}
|
|
137
|
+
* @internal
|
|
138
|
+
*/
|
|
121
139
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
122
140
|
matches(selectors: string): boolean;
|
|
123
141
|
releasePointerCapture(pointerId: number): void;
|
|
@@ -154,9 +172,6 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
154
172
|
readonly previousSibling: ChildNode;
|
|
155
173
|
textContent: string;
|
|
156
174
|
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
157
|
-
/**
|
|
158
|
-
* @internal
|
|
159
|
-
*/
|
|
160
175
|
compareDocumentPosition(other: Node): number;
|
|
161
176
|
contains(other: Node): boolean;
|
|
162
177
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/users/users.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/users/users.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAC7E,OAAO,EAA4B,WAAW,EAAc,MAAM,yBAAyB,CAAC;AAC5F,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAWtD;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;IAoC7B,CAAC;;;;;;;;;;IAuEA;;;;;;;OAOG;wCAGH;;;OAGG;;;;;;;;;;;;;;;;;;;;IAkCH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0GH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAtOL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,qBASa,KAAM,SAAQ,UAA2B;IACpD;;;;;;;;OAQG;IACM,OAAO,CAAC,OAAO,CAAU;IAElC;;;;;;;;OAQG;IACG,OAAO,CAAC,IAAI,CAAO;IAEzB;;;;;;;OAOG;IACS,gBAAgB,EAAE,uBAAuB,CAAC;IAEtD;;;OAGG;IACG,YAAY,SAAe;IAEjC;;;;;;;;;OASG;IAC8C,qBAAqB,EAAE,MAAM,CAClD;IAE5B;;;;;OAKG;IACI,YAAY;;;;;;;;;;;;IAYnB;;;;;OAKG;IACI,YAAY;;;;;;;;IAYnB;;OAEG;IACS,OAAO,EAAE,GAAG,CAAqB;IAEjC,sBAAsB,EAAE,GAAG,CAAM;IACjC,sBAAsB,EAAE,GAAG,CAAM;IAEjC,aAAa,EAAE,OAAO,CAAC;IACnC,OAAO,CAAC,aAAa,CAAS;IAE9B;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACG,QAAQ,EAAE,MAAM,CAAqB;IAE3C;;;OAGG;IACG,cAAc,EAAE,MAAM,CAAU;IAEtC;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAkB;IAE3C;;;OAGG;IACG,yBAAyB,EAAE,MAAM,CAAuB;IAE9D;;OAEG;;IAaG,iBAAiB;IAcd,SAAS,IAAI,IAAI;IAc1B;;;OAGG;IACH,sBAAsB,CAAC,MAAM,KAAA;;;;;;;;IAW7B;;;;;;;;OAQG;IACG,YAAY,CAAC,MAAM,KAAA;IAoCzB;;OAEG;IACG,YAAY,CAAC,IAAI,KAAA;;;;;;;;;;;;;;;CAwBxB"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __awaiter, __decorate, __rest } from "tslib";
|
|
2
2
|
import { Connect } from '@genesislcap/foundation-comms';
|
|
3
3
|
import { renderers } from '@genesislcap/foundation-forms';
|
|
4
|
-
import {
|
|
4
|
+
import { showNotification, showNotificationDialog } from '@genesislcap/foundation-notifications';
|
|
5
5
|
import { LifecycleMixin } from '@genesislcap/foundation-utils';
|
|
6
6
|
import { attr, customElement, FASTElement, observable } from '@microsoft/fast-element';
|
|
7
7
|
import { getErrorFormat, logger } from '../utils';
|
|
@@ -221,21 +221,27 @@ let EntityManagement = class EntityManagement extends LifecycleMixin(FASTElement
|
|
|
221
221
|
submitFailureNotification(e) {
|
|
222
222
|
e.detail.errors.forEach((submitFailureError) => {
|
|
223
223
|
if (submitFailureError.CODE === 'OPTIMISTIC_CONCURRENCY_ERROR') {
|
|
224
|
-
showNotification(
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
224
|
+
showNotification({
|
|
225
|
+
title: 'Warning',
|
|
226
|
+
body: 'You’re editing an old revision. Please close the form and try editing again',
|
|
227
|
+
config: {
|
|
228
|
+
snackbar: {
|
|
229
|
+
type: 'error',
|
|
230
|
+
},
|
|
231
|
+
},
|
|
232
|
+
}, 'zero');
|
|
229
233
|
}
|
|
230
234
|
else {
|
|
231
|
-
showNotification(
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
235
|
+
showNotification({
|
|
236
|
+
title: 'Error submitting form',
|
|
237
|
+
body: (submitFailureError.CODE + ': ' + submitFailureError.TEXT).toString(),
|
|
238
|
+
config: {
|
|
239
|
+
snackbar: {
|
|
240
|
+
type: 'error',
|
|
241
|
+
confirmingActions: [{ label: '', action: () => { } }],
|
|
242
|
+
},
|
|
243
|
+
},
|
|
244
|
+
}, 'zero');
|
|
239
245
|
}
|
|
240
246
|
});
|
|
241
247
|
}
|
|
@@ -273,14 +279,14 @@ let EntityManagement = class EntityManagement extends LifecycleMixin(FASTElement
|
|
|
273
279
|
});
|
|
274
280
|
}
|
|
275
281
|
showDeleteConfirmation() {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
282
|
+
showNotificationDialog({
|
|
283
|
+
title: 'Confirm Delete',
|
|
284
|
+
body: 'Do you really want to delete this entity?',
|
|
285
|
+
dialog: {
|
|
286
|
+
dismissingAction: { label: 'Dismiss', action: () => (this.selectedEntity = null) },
|
|
287
|
+
confirmingActions: [{ label: 'Confirm', action: () => this.confirmDelete() }],
|
|
288
|
+
},
|
|
289
|
+
}, 'zero');
|
|
284
290
|
}
|
|
285
291
|
/**
|
|
286
292
|
* Show notifications if the executed event returned an error.
|
|
@@ -291,15 +297,13 @@ let EntityManagement = class EntityManagement extends LifecycleMixin(FASTElement
|
|
|
291
297
|
if (request.ERROR) {
|
|
292
298
|
logger.error(request.ERROR);
|
|
293
299
|
request.ERROR.forEach((err) => {
|
|
294
|
-
showNotification(
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
.build())
|
|
302
|
-
.build(), 'zero');
|
|
300
|
+
showNotification({
|
|
301
|
+
title: err.CODE,
|
|
302
|
+
body: getErrorFormat(err),
|
|
303
|
+
config: {
|
|
304
|
+
toast: { type: 'warning', autoClose: true, closeTimeout: notificationCloseTimeout },
|
|
305
|
+
},
|
|
306
|
+
}, 'zero');
|
|
303
307
|
});
|
|
304
308
|
}
|
|
305
309
|
}
|
package/dist/esm/users/users.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __awaiter, __decorate } from "tslib";
|
|
2
2
|
import { Auth, Connect } from '@genesislcap/foundation-comms';
|
|
3
|
-
import {
|
|
3
|
+
import { showNotification } from '@genesislcap/foundation-notifications';
|
|
4
4
|
import { LifecycleMixin } from '@genesislcap/foundation-utils';
|
|
5
5
|
import { GridProRendererTypes } from '@genesislcap/foundation-zero-grid-pro';
|
|
6
6
|
import { attr, css, customElement, FASTElement, observable } from '@microsoft/fast-element';
|
|
@@ -217,15 +217,13 @@ let Users = class Users extends LifecycleMixin(FASTElement) {
|
|
|
217
217
|
logger.error(changeStatusRequest.ERROR);
|
|
218
218
|
const notificationCloseTimeout = 5000;
|
|
219
219
|
changeStatusRequest.ERROR.forEach((err) => {
|
|
220
|
-
showNotification(
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
.build())
|
|
228
|
-
.build(), 'zero');
|
|
220
|
+
showNotification({
|
|
221
|
+
title: err.CODE,
|
|
222
|
+
body: getErrorFormat(err),
|
|
223
|
+
config: {
|
|
224
|
+
toast: { type: 'warning', autoClose: true, closeTimeout: notificationCloseTimeout },
|
|
225
|
+
},
|
|
226
|
+
}, 'zero');
|
|
229
227
|
});
|
|
230
228
|
// bring back original value
|
|
231
229
|
params.setValue(previousValue);
|
|
@@ -301,23 +301,9 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
301
301
|
readonly shouldRunConnect: boolean;
|
|
302
302
|
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
303
303
|
"__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
|
304
|
-
connectedCallback(): void;
|
|
305
|
-
* If true, will enable row flashing for all rows for `add` transactions
|
|
306
|
-
* @public
|
|
307
|
-
*/
|
|
304
|
+
connectedCallback(): void;
|
|
308
305
|
readonly $fastController: Controller;
|
|
309
306
|
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
|
310
|
-
/**
|
|
311
|
-
* This attribute controls whether and how the entity manager stores the state of the columns when the user edits them. Omit this attribute to disable the functionality, set it to a unique value to enable it.
|
|
312
|
-
*
|
|
313
|
-
* @remarks
|
|
314
|
-
*
|
|
315
|
-
* Setting this value will set the entity manager to persist the column states through page refreshes etc. An example of what is stored is when the user resizes or reorders columns.
|
|
316
|
-
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
317
|
-
* There is an option on the grid for the user to reset the table to the default layout if they wish.
|
|
318
|
-
* If you omit this attribute then nothing is persisted
|
|
319
|
-
* @public
|
|
320
|
-
*/
|
|
321
307
|
disconnectedCallback(): void;
|
|
322
308
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
323
309
|
accessKey: string;
|
|
@@ -338,7 +324,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
338
324
|
spellcheck: boolean;
|
|
339
325
|
title: string;
|
|
340
326
|
translate: boolean;
|
|
341
|
-
attachInternals(): ElementInternals;
|
|
327
|
+
attachInternals(): ElementInternals; /**
|
|
328
|
+
* GridOptions to be passed down from application
|
|
329
|
+
* @public
|
|
330
|
+
*/
|
|
342
331
|
click(): void;
|
|
343
332
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
344
333
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -361,10 +350,6 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
361
350
|
readonly part: DOMTokenList;
|
|
362
351
|
readonly prefix: string;
|
|
363
352
|
readonly scrollHeight: number;
|
|
364
|
-
/**
|
|
365
|
-
* Disables the form while enabled to stop the user dispatching a large number of duplicate events
|
|
366
|
-
* @public
|
|
367
|
-
*/
|
|
368
353
|
scrollLeft: number;
|
|
369
354
|
scrollTop: number;
|
|
370
355
|
readonly scrollWidth: number;
|
|
@@ -958,7 +943,18 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
958
943
|
cloneNode(deep?: boolean): Node;
|
|
959
944
|
deepClone(): Node;
|
|
960
945
|
readonly shouldRunDisconnect: boolean;
|
|
961
|
-
|
|
946
|
+
/**
|
|
947
|
+
* The configuration which is used when interacting with the resource on the backend
|
|
948
|
+
*
|
|
949
|
+
* @remarks
|
|
950
|
+
*
|
|
951
|
+
* Handles the configuration such as how many rows of entities to fetch at a time
|
|
952
|
+
* @internal
|
|
953
|
+
*/
|
|
954
|
+
readonly shouldRunConnect: boolean; /**
|
|
955
|
+
* Configuring the resourceName from the entity-management, set to manage the users resource specifically
|
|
956
|
+
* @internal
|
|
957
|
+
*/
|
|
962
958
|
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
963
959
|
"__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
|
964
960
|
connectedCallback(): void;
|
|
@@ -978,6 +974,12 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
978
974
|
readonly offsetHeight: number;
|
|
979
975
|
readonly offsetLeft: number;
|
|
980
976
|
readonly offsetParent: Element;
|
|
977
|
+
/**
|
|
978
|
+
* Returns the config for an entity column if the entityID attribute is defined
|
|
979
|
+
*
|
|
980
|
+
* @returns Config for an entity column if the entityID is defined, else an empty array
|
|
981
|
+
* @internal
|
|
982
|
+
*/
|
|
981
983
|
readonly offsetTop: number;
|
|
982
984
|
readonly offsetWidth: number;
|
|
983
985
|
outerText: string;
|
|
@@ -997,10 +999,7 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
997
999
|
readonly clientLeft: number;
|
|
998
1000
|
readonly clientTop: number;
|
|
999
1001
|
readonly clientWidth: number;
|
|
1000
|
-
id: string;
|
|
1001
|
-
* entityID used to control the definition of an optional entity column which is created with the {@link Users.entityColumn} function.
|
|
1002
|
-
* @internal
|
|
1003
|
-
*/
|
|
1002
|
+
id: string;
|
|
1004
1003
|
readonly localName: string;
|
|
1005
1004
|
readonly namespaceURI: string;
|
|
1006
1005
|
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
@@ -1040,6 +1039,10 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1040
1039
|
hasPointerCapture(pointerId: number): boolean;
|
|
1041
1040
|
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
1042
1041
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
1042
|
+
/**
|
|
1043
|
+
* Used as the callback function in {@link Users.statusColumn}
|
|
1044
|
+
* @internal
|
|
1045
|
+
*/
|
|
1043
1046
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
1044
1047
|
matches(selectors: string): boolean;
|
|
1045
1048
|
releasePointerCapture(pointerId: number): void;
|
|
@@ -1076,9 +1079,6 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1076
1079
|
readonly previousSibling: ChildNode;
|
|
1077
1080
|
textContent: string;
|
|
1078
1081
|
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
1079
|
-
/**
|
|
1080
|
-
* @internal
|
|
1081
|
-
*/
|
|
1082
1082
|
compareDocumentPosition(other: Node): number;
|
|
1083
1083
|
contains(other: Node): boolean;
|
|
1084
1084
|
getRootNode(options?: GetRootNodeOptions): Node;
|
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.
|
|
4
|
+
"version": "14.115.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -44,23 +44,23 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@genesislcap/foundation-login": "^14.40.0",
|
|
47
|
-
"@genesislcap/foundation-testing": "14.
|
|
48
|
-
"@genesislcap/genx": "14.
|
|
47
|
+
"@genesislcap/foundation-testing": "14.115.0",
|
|
48
|
+
"@genesislcap/genx": "14.115.0",
|
|
49
49
|
"rimraf": "^3.0.2"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@ag-grid-community/core": "29.2.0",
|
|
53
|
-
"@genesislcap/foundation-comms": "14.
|
|
54
|
-
"@genesislcap/foundation-errors": "14.
|
|
55
|
-
"@genesislcap/foundation-forms": "14.
|
|
56
|
-
"@genesislcap/foundation-logger": "14.
|
|
57
|
-
"@genesislcap/foundation-login": "14.
|
|
58
|
-
"@genesislcap/foundation-notifications": "14.
|
|
59
|
-
"@genesislcap/foundation-ui": "14.
|
|
60
|
-
"@genesislcap/foundation-utils": "14.
|
|
61
|
-
"@genesislcap/foundation-zero": "14.
|
|
62
|
-
"@genesislcap/foundation-zero-grid-pro": "14.
|
|
63
|
-
"@genesislcap/grid-pro": "14.
|
|
53
|
+
"@genesislcap/foundation-comms": "14.115.0",
|
|
54
|
+
"@genesislcap/foundation-errors": "14.115.0",
|
|
55
|
+
"@genesislcap/foundation-forms": "14.115.0",
|
|
56
|
+
"@genesislcap/foundation-logger": "14.115.0",
|
|
57
|
+
"@genesislcap/foundation-login": "14.115.0",
|
|
58
|
+
"@genesislcap/foundation-notifications": "14.115.0",
|
|
59
|
+
"@genesislcap/foundation-ui": "14.115.0",
|
|
60
|
+
"@genesislcap/foundation-utils": "14.115.0",
|
|
61
|
+
"@genesislcap/foundation-zero": "14.115.0",
|
|
62
|
+
"@genesislcap/foundation-zero-grid-pro": "14.115.0",
|
|
63
|
+
"@genesislcap/grid-pro": "14.115.0",
|
|
64
64
|
"@microsoft/fast-components": "^2.21.3",
|
|
65
65
|
"@microsoft/fast-element": "^1.7.0",
|
|
66
66
|
"@microsoft/fast-foundation": "^2.33.2",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"access": "public"
|
|
77
77
|
},
|
|
78
78
|
"customElements": "dist/custom-elements.json",
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "51edda70c230e7bd0d1a168126a9a9d9efddba63"
|
|
80
80
|
}
|