@genesislcap/foundation-entity-management 14.211.2 → 14.211.3
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 +1287 -1237
- package/dist/dts/entities/entities.styles.d.ts.map +1 -1
- package/dist/dts/entities/entities.template.d.ts.map +1 -1
- package/dist/dts/list/list.d.ts +10 -0
- package/dist/dts/list/list.d.ts.map +1 -1
- package/dist/esm/entities/entities.styles.js +6 -0
- package/dist/esm/entities/entities.template.js +12 -3
- package/dist/esm/list/list.js +71 -1
- package/dist/esm/list/list.template.js +20 -20
- package/package.json +21 -21
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
{
|
|
130
130
|
"kind": "variable",
|
|
131
131
|
"name": "styles",
|
|
132
|
-
"default": "css`\n :host {\n contain: content;\n }\n\n :host::part(header) {\n display: flex;\n justify-content: space-between;\n align-items: center;\n user-select: none;\n padding: 0 calc(var(--design-unit) * 2px);\n }\n\n :host([modal-position='centre']) .edit-modal {\n overflow-y: auto;\n }\n\n .container {\n display: flex;\n flex-direction: column;\n height: 100%;\n }\n\n foundation-form {\n height: 100%;\n overflow-y: auto;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n }\n\n .title {\n margin-left: 1px;\n }\n\n .header-title {\n color: var(--neutral-foreground-rest);\n font-size: var(--type-ramp-plus-4-font-size);\n font-family: var(--body-font);\n font-weight: 700;\n }\n\n .search-container {\n display: flex;\n align-items: center;\n gap: calc(var(--design-unit) * 2px);\n }\n\n .search-container zero-search-bar,\n .search-container rapid-search-bar {\n width: 500px;\n }\n\n .crud-buttons {\n display: flex;\n gap: calc(var(--design-unit) * 2px);\n }\n\n .crud-buttons-wrapper {\n display: flex;\n gap: calc(var(--design-unit) * 2px);\n justify-content: flex-end;\n }\n\n .crud-buttons-wrapper-bottom {\n padding: calc(var(--design-unit) * 2px);\n }\n`",
|
|
132
|
+
"default": "css`\n :host {\n contain: content;\n }\n\n :host::part(header) {\n display: flex;\n justify-content: space-between;\n align-items: center;\n user-select: none;\n padding: 0 calc(var(--design-unit) * 2px);\n }\n\n :host([modal-position='centre']) .edit-modal {\n overflow-y: auto;\n }\n\n .container {\n display: flex;\n flex-direction: column;\n height: 100%;\n }\n\n foundation-form {\n height: 100%;\n overflow-y: auto;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n }\n\n .title {\n margin-left: 1px;\n }\n\n .header-title {\n color: var(--neutral-foreground-rest);\n font-size: var(--type-ramp-plus-4-font-size);\n font-family: var(--body-font);\n font-weight: 700;\n }\n\n .search-container {\n display: flex;\n align-items: center;\n gap: calc(var(--design-unit) * 2px);\n }\n\n .search-container zero-search-bar,\n .search-container rapid-search-bar {\n width: 500px;\n }\n\n .crud-buttons {\n display: flex;\n gap: calc(var(--design-unit) * 2px);\n }\n\n .crud-buttons-wrapper {\n display: flex;\n gap: calc(var(--design-unit) * 2px);\n justify-content: flex-end;\n }\n\n .crud-buttons-wrapper-column,\n .crud-buttons-wrapper-top {\n flex: 1;\n padding: calc(var(--design-unit) * 2px) 0;\n }\n\n .crud-buttons-wrapper-bottom {\n padding: calc(var(--design-unit) * 2px);\n }\n`",
|
|
133
133
|
"description": "Defines the css of the entity component as an ElementStyles object"
|
|
134
134
|
}
|
|
135
135
|
],
|
|
@@ -1138,7 +1138,41 @@
|
|
|
1138
1138
|
},
|
|
1139
1139
|
{
|
|
1140
1140
|
"kind": "javascript-module",
|
|
1141
|
-
"path": "src/
|
|
1141
|
+
"path": "src/layouts/default.ts",
|
|
1142
|
+
"declarations": [
|
|
1143
|
+
{
|
|
1144
|
+
"kind": "variable",
|
|
1145
|
+
"name": "loginLayout",
|
|
1146
|
+
"default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
"kind": "variable",
|
|
1150
|
+
"name": "defaultLayout",
|
|
1151
|
+
"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)"
|
|
1152
|
+
}
|
|
1153
|
+
],
|
|
1154
|
+
"exports": [
|
|
1155
|
+
{
|
|
1156
|
+
"kind": "js",
|
|
1157
|
+
"name": "loginLayout",
|
|
1158
|
+
"declaration": {
|
|
1159
|
+
"name": "loginLayout",
|
|
1160
|
+
"module": "src/layouts/default.ts"
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"kind": "js",
|
|
1165
|
+
"name": "defaultLayout",
|
|
1166
|
+
"declaration": {
|
|
1167
|
+
"name": "defaultLayout",
|
|
1168
|
+
"module": "src/layouts/default.ts"
|
|
1169
|
+
}
|
|
1170
|
+
}
|
|
1171
|
+
]
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"kind": "javascript-module",
|
|
1175
|
+
"path": "src/layouts/index.ts",
|
|
1142
1176
|
"declarations": [],
|
|
1143
1177
|
"exports": [
|
|
1144
1178
|
{
|
|
@@ -1146,248 +1180,335 @@
|
|
|
1146
1180
|
"name": "*",
|
|
1147
1181
|
"declaration": {
|
|
1148
1182
|
"name": "*",
|
|
1149
|
-
"package": "./
|
|
1183
|
+
"package": "./default"
|
|
1150
1184
|
}
|
|
1151
1185
|
}
|
|
1152
1186
|
]
|
|
1153
1187
|
},
|
|
1154
1188
|
{
|
|
1155
1189
|
"kind": "javascript-module",
|
|
1156
|
-
"path": "src/
|
|
1157
|
-
"declarations": [
|
|
1158
|
-
{
|
|
1159
|
-
"kind": "variable",
|
|
1160
|
-
"name": "listStyles",
|
|
1161
|
-
"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`"
|
|
1162
|
-
}
|
|
1163
|
-
],
|
|
1190
|
+
"path": "src/main/index.ts",
|
|
1191
|
+
"declarations": [],
|
|
1164
1192
|
"exports": [
|
|
1165
1193
|
{
|
|
1166
1194
|
"kind": "js",
|
|
1167
|
-
"name": "
|
|
1195
|
+
"name": "*",
|
|
1168
1196
|
"declaration": {
|
|
1169
|
-
"name": "
|
|
1170
|
-
"
|
|
1197
|
+
"name": "*",
|
|
1198
|
+
"package": "./main.template"
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"kind": "js",
|
|
1203
|
+
"name": "*",
|
|
1204
|
+
"declaration": {
|
|
1205
|
+
"name": "*",
|
|
1206
|
+
"package": "./main"
|
|
1171
1207
|
}
|
|
1172
1208
|
}
|
|
1173
1209
|
]
|
|
1174
1210
|
},
|
|
1175
1211
|
{
|
|
1176
1212
|
"kind": "javascript-module",
|
|
1177
|
-
"path": "src/
|
|
1213
|
+
"path": "src/main/main.styles.ts",
|
|
1178
1214
|
"declarations": [
|
|
1179
1215
|
{
|
|
1180
|
-
"kind": "
|
|
1181
|
-
"name": "
|
|
1182
|
-
"
|
|
1183
|
-
{
|
|
1184
|
-
"name": "prefix"
|
|
1185
|
-
}
|
|
1186
|
-
]
|
|
1216
|
+
"kind": "variable",
|
|
1217
|
+
"name": "MainStyles",
|
|
1218
|
+
"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`"
|
|
1187
1219
|
}
|
|
1188
1220
|
],
|
|
1189
1221
|
"exports": [
|
|
1190
1222
|
{
|
|
1191
1223
|
"kind": "js",
|
|
1192
|
-
"name": "
|
|
1224
|
+
"name": "MainStyles",
|
|
1193
1225
|
"declaration": {
|
|
1194
|
-
"name": "
|
|
1195
|
-
"module": "src/
|
|
1226
|
+
"name": "MainStyles",
|
|
1227
|
+
"module": "src/main/main.styles.ts"
|
|
1196
1228
|
}
|
|
1197
1229
|
}
|
|
1198
1230
|
]
|
|
1199
1231
|
},
|
|
1200
1232
|
{
|
|
1201
1233
|
"kind": "javascript-module",
|
|
1202
|
-
"path": "src/
|
|
1234
|
+
"path": "src/main/main.template.ts",
|
|
1235
|
+
"declarations": [],
|
|
1236
|
+
"exports": []
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"kind": "javascript-module",
|
|
1240
|
+
"path": "src/main/main.ts",
|
|
1203
1241
|
"declarations": [
|
|
1204
1242
|
{
|
|
1205
1243
|
"kind": "class",
|
|
1206
1244
|
"description": "",
|
|
1207
|
-
"name": "
|
|
1245
|
+
"name": "MainApplication",
|
|
1208
1246
|
"members": [
|
|
1209
1247
|
{
|
|
1210
1248
|
"kind": "field",
|
|
1211
|
-
"name": "
|
|
1212
|
-
"type": {
|
|
1213
|
-
"text": "string"
|
|
1214
|
-
},
|
|
1215
|
-
"default": "'zero'",
|
|
1216
|
-
"description": "Name of the design system prefix that will be used in renderers.",
|
|
1217
|
-
"privacy": "public"
|
|
1218
|
-
},
|
|
1219
|
-
{
|
|
1220
|
-
"kind": "field",
|
|
1221
|
-
"name": "resourceName",
|
|
1222
|
-
"type": {
|
|
1223
|
-
"text": "string"
|
|
1224
|
-
},
|
|
1225
|
-
"default": "''"
|
|
1226
|
-
},
|
|
1227
|
-
{
|
|
1228
|
-
"kind": "field",
|
|
1229
|
-
"name": "title",
|
|
1249
|
+
"name": "config",
|
|
1230
1250
|
"type": {
|
|
1231
|
-
"text": "
|
|
1232
|
-
}
|
|
1233
|
-
"default": "''"
|
|
1251
|
+
"text": "MainRouterConfig"
|
|
1252
|
+
}
|
|
1234
1253
|
},
|
|
1235
1254
|
{
|
|
1236
1255
|
"kind": "field",
|
|
1237
|
-
"name": "
|
|
1256
|
+
"name": "connect",
|
|
1238
1257
|
"type": {
|
|
1239
|
-
"text": "
|
|
1258
|
+
"text": "Connect"
|
|
1240
1259
|
}
|
|
1241
1260
|
},
|
|
1242
1261
|
{
|
|
1243
1262
|
"kind": "field",
|
|
1244
|
-
"name": "
|
|
1263
|
+
"name": "session",
|
|
1245
1264
|
"type": {
|
|
1246
|
-
"text": "
|
|
1265
|
+
"text": "Session"
|
|
1247
1266
|
}
|
|
1248
1267
|
},
|
|
1249
1268
|
{
|
|
1250
1269
|
"kind": "field",
|
|
1251
|
-
"name": "
|
|
1270
|
+
"name": "container",
|
|
1252
1271
|
"type": {
|
|
1253
|
-
"text": "
|
|
1272
|
+
"text": "Container"
|
|
1254
1273
|
}
|
|
1255
1274
|
},
|
|
1256
1275
|
{
|
|
1257
1276
|
"kind": "field",
|
|
1258
|
-
"name": "
|
|
1277
|
+
"name": "provider",
|
|
1259
1278
|
"type": {
|
|
1260
|
-
"text": "
|
|
1279
|
+
"text": "HTMLElement"
|
|
1261
1280
|
}
|
|
1262
1281
|
},
|
|
1263
1282
|
{
|
|
1264
1283
|
"kind": "field",
|
|
1265
|
-
"name": "
|
|
1284
|
+
"name": "ready",
|
|
1266
1285
|
"type": {
|
|
1267
1286
|
"text": "boolean"
|
|
1268
1287
|
},
|
|
1269
1288
|
"default": "false"
|
|
1270
1289
|
},
|
|
1271
1290
|
{
|
|
1272
|
-
"kind": "
|
|
1273
|
-
"name": "
|
|
1274
|
-
"type": {
|
|
1275
|
-
"text": "boolean"
|
|
1276
|
-
},
|
|
1277
|
-
"default": "false"
|
|
1291
|
+
"kind": "method",
|
|
1292
|
+
"name": "onLuminanceToggle"
|
|
1278
1293
|
},
|
|
1279
1294
|
{
|
|
1280
|
-
"kind": "
|
|
1281
|
-
"name": "
|
|
1282
|
-
"type": {
|
|
1283
|
-
"text": "boolean"
|
|
1284
|
-
},
|
|
1285
|
-
"default": "true"
|
|
1295
|
+
"kind": "method",
|
|
1296
|
+
"name": "loadRemotes"
|
|
1286
1297
|
},
|
|
1287
1298
|
{
|
|
1288
|
-
"kind": "
|
|
1289
|
-
"name": "
|
|
1290
|
-
"type": {
|
|
1291
|
-
"text": "boolean"
|
|
1292
|
-
},
|
|
1293
|
-
"default": "false"
|
|
1299
|
+
"kind": "method",
|
|
1300
|
+
"name": "selectTemplate"
|
|
1294
1301
|
},
|
|
1295
1302
|
{
|
|
1296
|
-
"kind": "
|
|
1297
|
-
"name": "
|
|
1298
|
-
"
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1303
|
+
"kind": "method",
|
|
1304
|
+
"name": "registerDIDependencies",
|
|
1305
|
+
"privacy": "private"
|
|
1306
|
+
}
|
|
1307
|
+
],
|
|
1308
|
+
"superclass": {
|
|
1309
|
+
"name": "FASTElement",
|
|
1310
|
+
"package": "@microsoft/fast-element"
|
|
1311
|
+
},
|
|
1312
|
+
"customElement": true
|
|
1313
|
+
}
|
|
1314
|
+
],
|
|
1315
|
+
"exports": [
|
|
1316
|
+
{
|
|
1317
|
+
"kind": "js",
|
|
1318
|
+
"name": "MainApplication",
|
|
1319
|
+
"declaration": {
|
|
1320
|
+
"name": "MainApplication",
|
|
1321
|
+
"module": "src/main/main.ts"
|
|
1322
|
+
}
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"kind": "custom-element-definition",
|
|
1326
|
+
"declaration": {
|
|
1327
|
+
"name": "MainApplication",
|
|
1328
|
+
"module": "src/main/main.ts"
|
|
1329
|
+
}
|
|
1330
|
+
}
|
|
1331
|
+
]
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"kind": "javascript-module",
|
|
1335
|
+
"path": "src/profiles/editProfileSchema.ts",
|
|
1336
|
+
"declarations": [
|
|
1337
|
+
{
|
|
1338
|
+
"kind": "variable",
|
|
1339
|
+
"name": "editProfileFormSchema",
|
|
1340
|
+
"type": {
|
|
1341
|
+
"text": "UiSchema"
|
|
1342
|
+
},
|
|
1343
|
+
"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}"
|
|
1344
|
+
}
|
|
1345
|
+
],
|
|
1346
|
+
"exports": [
|
|
1347
|
+
{
|
|
1348
|
+
"kind": "js",
|
|
1349
|
+
"name": "editProfileFormSchema",
|
|
1350
|
+
"declaration": {
|
|
1351
|
+
"name": "editProfileFormSchema",
|
|
1352
|
+
"module": "src/profiles/editProfileSchema.ts"
|
|
1353
|
+
}
|
|
1354
|
+
}
|
|
1355
|
+
]
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"kind": "javascript-module",
|
|
1359
|
+
"path": "src/profiles/profiles.ts",
|
|
1360
|
+
"declarations": [
|
|
1361
|
+
{
|
|
1362
|
+
"kind": "class",
|
|
1363
|
+
"description": "Main class which defined the profile management functionality",
|
|
1364
|
+
"name": "Profiles",
|
|
1365
|
+
"members": [
|
|
1366
|
+
{
|
|
1367
|
+
"kind": "method",
|
|
1368
|
+
"name": "readProfileData",
|
|
1369
|
+
"privacy": "public",
|
|
1370
|
+
"parameters": [
|
|
1371
|
+
{
|
|
1372
|
+
"name": "profile"
|
|
1373
|
+
}
|
|
1374
|
+
]
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"kind": "method",
|
|
1378
|
+
"name": "confirmDelete",
|
|
1379
|
+
"inheritedFrom": {
|
|
1380
|
+
"name": "EntityManagement",
|
|
1381
|
+
"module": "src/entities/entities.ts"
|
|
1382
|
+
}
|
|
1302
1383
|
},
|
|
1303
1384
|
{
|
|
1304
1385
|
"kind": "field",
|
|
1305
|
-
"name": "
|
|
1386
|
+
"name": "createEvent",
|
|
1306
1387
|
"type": {
|
|
1307
|
-
"text": "
|
|
1388
|
+
"text": "string"
|
|
1308
1389
|
},
|
|
1309
|
-
"
|
|
1390
|
+
"description": "Name of the event handler on the Genesis server which handles creating an entity",
|
|
1391
|
+
"privacy": "public",
|
|
1392
|
+
"inheritedFrom": {
|
|
1393
|
+
"name": "EntityManagement",
|
|
1394
|
+
"module": "src/entities/entities.ts"
|
|
1395
|
+
}
|
|
1310
1396
|
},
|
|
1311
1397
|
{
|
|
1312
1398
|
"kind": "field",
|
|
1313
|
-
"name": "
|
|
1399
|
+
"name": "deleteEvent",
|
|
1314
1400
|
"type": {
|
|
1315
|
-
"text": "
|
|
1401
|
+
"text": "string"
|
|
1316
1402
|
},
|
|
1317
|
-
"
|
|
1403
|
+
"description": "Name of the event handler on the Genesis server which handles deleting the entity",
|
|
1404
|
+
"privacy": "public",
|
|
1405
|
+
"inheritedFrom": {
|
|
1406
|
+
"name": "EntityManagement",
|
|
1407
|
+
"module": "src/entities/entities.ts"
|
|
1408
|
+
}
|
|
1318
1409
|
},
|
|
1319
1410
|
{
|
|
1320
1411
|
"kind": "field",
|
|
1321
|
-
"name": "
|
|
1412
|
+
"name": "updateEvent",
|
|
1322
1413
|
"type": {
|
|
1323
|
-
"text": "
|
|
1414
|
+
"text": "string"
|
|
1324
1415
|
},
|
|
1325
|
-
"
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
"type": {
|
|
1331
|
-
"text": "GridProCaseType"
|
|
1416
|
+
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
1417
|
+
"privacy": "public",
|
|
1418
|
+
"inheritedFrom": {
|
|
1419
|
+
"name": "EntityManagement",
|
|
1420
|
+
"module": "src/entities/entities.ts"
|
|
1332
1421
|
}
|
|
1333
1422
|
},
|
|
1334
1423
|
{
|
|
1335
1424
|
"kind": "field",
|
|
1336
|
-
"name": "
|
|
1425
|
+
"name": "persistColumnStateKey",
|
|
1337
1426
|
"type": {
|
|
1338
|
-
"text": "
|
|
1427
|
+
"text": "string"
|
|
1339
1428
|
},
|
|
1340
|
-
"
|
|
1429
|
+
"description": "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.",
|
|
1430
|
+
"privacy": "public",
|
|
1431
|
+
"default": "'entity_profiles_management'",
|
|
1432
|
+
"inheritedFrom": {
|
|
1433
|
+
"name": "EntityManagement",
|
|
1434
|
+
"module": "src/entities/entities.ts"
|
|
1435
|
+
}
|
|
1341
1436
|
},
|
|
1342
1437
|
{
|
|
1343
1438
|
"kind": "field",
|
|
1344
|
-
"name": "
|
|
1439
|
+
"name": "updateFormUiSchema",
|
|
1345
1440
|
"type": {
|
|
1346
|
-
"text": "
|
|
1441
|
+
"text": "UiSchema"
|
|
1347
1442
|
},
|
|
1348
|
-
"
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
"name": "gridOptions",
|
|
1353
|
-
"type": {
|
|
1354
|
-
"text": "GridOptions"
|
|
1443
|
+
"default": "editProfileFormSchema",
|
|
1444
|
+
"inheritedFrom": {
|
|
1445
|
+
"name": "EntityManagement",
|
|
1446
|
+
"module": "src/entities/entities.ts"
|
|
1355
1447
|
}
|
|
1356
1448
|
},
|
|
1357
1449
|
{
|
|
1358
1450
|
"kind": "field",
|
|
1359
|
-
"name": "
|
|
1451
|
+
"name": "createFormUiSchema",
|
|
1360
1452
|
"type": {
|
|
1361
|
-
"text": "
|
|
1453
|
+
"text": "UiSchema"
|
|
1454
|
+
},
|
|
1455
|
+
"default": "editProfileFormSchema",
|
|
1456
|
+
"inheritedFrom": {
|
|
1457
|
+
"name": "EntityManagement",
|
|
1458
|
+
"module": "src/entities/entities.ts"
|
|
1362
1459
|
}
|
|
1363
1460
|
},
|
|
1364
1461
|
{
|
|
1365
1462
|
"kind": "field",
|
|
1366
|
-
"name": "
|
|
1463
|
+
"name": "readEventFn",
|
|
1367
1464
|
"type": {
|
|
1368
|
-
"text": "
|
|
1465
|
+
"text": "(...args) => {}"
|
|
1466
|
+
},
|
|
1467
|
+
"inheritedFrom": {
|
|
1468
|
+
"name": "EntityManagement",
|
|
1469
|
+
"module": "src/entities/entities.ts"
|
|
1369
1470
|
}
|
|
1370
1471
|
},
|
|
1371
1472
|
{
|
|
1372
1473
|
"kind": "field",
|
|
1373
|
-
"name": "
|
|
1474
|
+
"name": "resourceName",
|
|
1374
1475
|
"type": {
|
|
1375
|
-
"text": "
|
|
1476
|
+
"text": "string"
|
|
1376
1477
|
},
|
|
1377
|
-
"
|
|
1478
|
+
"description": "Name of the backend resource which contain the entities to manage",
|
|
1479
|
+
"privacy": "public",
|
|
1480
|
+
"default": "'ALL_PROFILES'",
|
|
1481
|
+
"inheritedFrom": {
|
|
1482
|
+
"name": "EntityManagement",
|
|
1483
|
+
"module": "src/entities/entities.ts"
|
|
1484
|
+
}
|
|
1378
1485
|
},
|
|
1379
1486
|
{
|
|
1380
1487
|
"kind": "field",
|
|
1381
|
-
"name": "
|
|
1488
|
+
"name": "title",
|
|
1382
1489
|
"type": {
|
|
1383
1490
|
"text": "string"
|
|
1491
|
+
},
|
|
1492
|
+
"description": "Title of the grid",
|
|
1493
|
+
"privacy": "public",
|
|
1494
|
+
"default": "'Profile Management'",
|
|
1495
|
+
"inheritedFrom": {
|
|
1496
|
+
"name": "EntityManagement",
|
|
1497
|
+
"module": "src/entities/entities.ts"
|
|
1384
1498
|
}
|
|
1385
1499
|
},
|
|
1386
1500
|
{
|
|
1387
1501
|
"kind": "field",
|
|
1388
|
-
"name": "
|
|
1502
|
+
"name": "entityLabel",
|
|
1389
1503
|
"type": {
|
|
1390
1504
|
"text": "string"
|
|
1505
|
+
},
|
|
1506
|
+
"description": "Label for the entity which has usages such as being shown in the title of the modal wen editing the entity",
|
|
1507
|
+
"privacy": "public",
|
|
1508
|
+
"default": "'Profile'",
|
|
1509
|
+
"inheritedFrom": {
|
|
1510
|
+
"name": "EntityManagement",
|
|
1511
|
+
"module": "src/entities/entities.ts"
|
|
1391
1512
|
}
|
|
1392
1513
|
},
|
|
1393
1514
|
{
|
|
@@ -1396,1233 +1517,1410 @@
|
|
|
1396
1517
|
"type": {
|
|
1397
1518
|
"text": "Connect"
|
|
1398
1519
|
},
|
|
1399
|
-
"privacy": "protected"
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
"text": "boolean"
|
|
1406
|
-
},
|
|
1407
|
-
"readonly": true
|
|
1408
|
-
},
|
|
1409
|
-
{
|
|
1410
|
-
"kind": "method",
|
|
1411
|
-
"name": "onCellEditingStopped",
|
|
1412
|
-
"privacy": "private",
|
|
1413
|
-
"parameters": [
|
|
1414
|
-
{
|
|
1415
|
-
"name": "event",
|
|
1416
|
-
"type": {
|
|
1417
|
-
"text": "CellEditRequestEvent"
|
|
1418
|
-
}
|
|
1419
|
-
}
|
|
1420
|
-
]
|
|
1421
|
-
},
|
|
1422
|
-
{
|
|
1423
|
-
"kind": "method",
|
|
1424
|
-
"name": "handleFilterChanged",
|
|
1425
|
-
"privacy": "private",
|
|
1426
|
-
"parameters": [
|
|
1427
|
-
{
|
|
1428
|
-
"name": "e"
|
|
1429
|
-
}
|
|
1430
|
-
]
|
|
1431
|
-
},
|
|
1432
|
-
{
|
|
1433
|
-
"kind": "method",
|
|
1434
|
-
"name": "handleFilterCleared",
|
|
1435
|
-
"privacy": "private",
|
|
1436
|
-
"parameters": [
|
|
1437
|
-
{
|
|
1438
|
-
"name": "e"
|
|
1439
|
-
}
|
|
1440
|
-
]
|
|
1441
|
-
},
|
|
1442
|
-
{
|
|
1443
|
-
"kind": "method",
|
|
1444
|
-
"name": "select",
|
|
1445
|
-
"privacy": "private",
|
|
1446
|
-
"parameters": [
|
|
1447
|
-
{
|
|
1448
|
-
"name": "e"
|
|
1449
|
-
}
|
|
1450
|
-
]
|
|
1451
|
-
},
|
|
1452
|
-
{
|
|
1453
|
-
"kind": "method",
|
|
1454
|
-
"name": "selectionChanged",
|
|
1455
|
-
"privacy": "private",
|
|
1456
|
-
"parameters": [
|
|
1457
|
-
{
|
|
1458
|
-
"name": "e",
|
|
1459
|
-
"type": {
|
|
1460
|
-
"text": "CustomEvent<SelectionChangedEvent>"
|
|
1461
|
-
}
|
|
1462
|
-
}
|
|
1463
|
-
]
|
|
1520
|
+
"privacy": "protected",
|
|
1521
|
+
"description": "DI connect object which is used to interact with the backend.",
|
|
1522
|
+
"inheritedFrom": {
|
|
1523
|
+
"name": "EntityManagement",
|
|
1524
|
+
"module": "src/entities/entities.ts"
|
|
1525
|
+
}
|
|
1464
1526
|
},
|
|
1465
1527
|
{
|
|
1466
1528
|
"kind": "field",
|
|
1467
|
-
"name": "
|
|
1468
|
-
"privacy": "private"
|
|
1469
|
-
},
|
|
1470
|
-
{
|
|
1471
|
-
"kind": "method",
|
|
1472
|
-
"name": "delete",
|
|
1473
|
-
"parameters": [
|
|
1474
|
-
{
|
|
1475
|
-
"name": "e"
|
|
1476
|
-
}
|
|
1477
|
-
]
|
|
1478
|
-
}
|
|
1479
|
-
],
|
|
1480
|
-
"attributes": [
|
|
1481
|
-
{
|
|
1482
|
-
"name": "design-system-prefix",
|
|
1529
|
+
"name": "prefix",
|
|
1483
1530
|
"type": {
|
|
1484
1531
|
"text": "string"
|
|
1485
1532
|
},
|
|
1486
1533
|
"default": "'zero'",
|
|
1487
1534
|
"description": "Name of the design system prefix that will be used in renderers.",
|
|
1488
|
-
"
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
"text": "string"
|
|
1494
|
-
},
|
|
1495
|
-
"default": "''",
|
|
1496
|
-
"fieldName": "resourceName"
|
|
1497
|
-
},
|
|
1498
|
-
{
|
|
1499
|
-
"name": "title",
|
|
1500
|
-
"type": {
|
|
1501
|
-
"text": "string"
|
|
1502
|
-
},
|
|
1503
|
-
"default": "''",
|
|
1504
|
-
"fieldName": "title"
|
|
1535
|
+
"privacy": "public",
|
|
1536
|
+
"inheritedFrom": {
|
|
1537
|
+
"name": "EntityManagement",
|
|
1538
|
+
"module": "src/entities/entities.ts"
|
|
1539
|
+
}
|
|
1505
1540
|
},
|
|
1506
1541
|
{
|
|
1507
|
-
"
|
|
1542
|
+
"kind": "field",
|
|
1543
|
+
"name": "readEvent",
|
|
1508
1544
|
"type": {
|
|
1509
1545
|
"text": "string"
|
|
1510
1546
|
},
|
|
1511
|
-
"
|
|
1547
|
+
"inheritedFrom": {
|
|
1548
|
+
"name": "EntityManagement",
|
|
1549
|
+
"module": "src/entities/entities.ts"
|
|
1550
|
+
}
|
|
1512
1551
|
},
|
|
1513
1552
|
{
|
|
1514
|
-
"
|
|
1553
|
+
"kind": "field",
|
|
1554
|
+
"name": "readonly",
|
|
1515
1555
|
"type": {
|
|
1516
1556
|
"text": "boolean"
|
|
1517
1557
|
},
|
|
1518
|
-
"
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
"type": {
|
|
1523
|
-
"text": "string"
|
|
1524
|
-
},
|
|
1525
|
-
"fieldName": "rowSelection"
|
|
1558
|
+
"inheritedFrom": {
|
|
1559
|
+
"name": "EntityManagement",
|
|
1560
|
+
"module": "src/entities/entities.ts"
|
|
1561
|
+
}
|
|
1526
1562
|
},
|
|
1527
1563
|
{
|
|
1528
|
-
"
|
|
1564
|
+
"kind": "field",
|
|
1565
|
+
"name": "asyncAdd",
|
|
1529
1566
|
"type": {
|
|
1530
1567
|
"text": "boolean"
|
|
1531
1568
|
},
|
|
1532
|
-
"
|
|
1569
|
+
"default": "false",
|
|
1570
|
+
"description": "Whether to use the `applyTransactionAsync` function for *add* transactions",
|
|
1571
|
+
"privacy": "public",
|
|
1572
|
+
"inheritedFrom": {
|
|
1573
|
+
"name": "EntityManagement",
|
|
1574
|
+
"module": "src/entities/entities.ts"
|
|
1575
|
+
}
|
|
1533
1576
|
},
|
|
1534
1577
|
{
|
|
1535
|
-
"
|
|
1578
|
+
"kind": "field",
|
|
1579
|
+
"name": "asyncRemove",
|
|
1536
1580
|
"type": {
|
|
1537
1581
|
"text": "boolean"
|
|
1538
1582
|
},
|
|
1539
1583
|
"default": "false",
|
|
1540
|
-
"
|
|
1584
|
+
"description": "Whether to use the `applyTransactionAsync` function for *remove* transactions",
|
|
1585
|
+
"privacy": "public",
|
|
1586
|
+
"inheritedFrom": {
|
|
1587
|
+
"name": "EntityManagement",
|
|
1588
|
+
"module": "src/entities/entities.ts"
|
|
1589
|
+
}
|
|
1541
1590
|
},
|
|
1542
1591
|
{
|
|
1543
|
-
"
|
|
1544
|
-
"
|
|
1545
|
-
"text": "boolean"
|
|
1546
|
-
},
|
|
1547
|
-
"default": "false",
|
|
1548
|
-
"fieldName": "asyncRemove"
|
|
1549
|
-
},
|
|
1550
|
-
{
|
|
1551
|
-
"name": "async-update",
|
|
1592
|
+
"kind": "field",
|
|
1593
|
+
"name": "asyncUpdate",
|
|
1552
1594
|
"type": {
|
|
1553
1595
|
"text": "boolean"
|
|
1554
1596
|
},
|
|
1555
1597
|
"default": "true",
|
|
1556
|
-
"
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
},
|
|
1563
|
-
"default": "false",
|
|
1564
|
-
"fieldName": "enableCellFlashing"
|
|
1598
|
+
"description": "Whether to use the `applyTransactionAsync` function for *update* transactions",
|
|
1599
|
+
"privacy": "public",
|
|
1600
|
+
"inheritedFrom": {
|
|
1601
|
+
"name": "EntityManagement",
|
|
1602
|
+
"module": "src/entities/entities.ts"
|
|
1603
|
+
}
|
|
1565
1604
|
},
|
|
1566
1605
|
{
|
|
1567
|
-
"
|
|
1606
|
+
"kind": "field",
|
|
1607
|
+
"name": "rowSelection",
|
|
1568
1608
|
"type": {
|
|
1569
|
-
"text": "
|
|
1609
|
+
"text": "string"
|
|
1570
1610
|
},
|
|
1571
|
-
"default": "
|
|
1572
|
-
"
|
|
1611
|
+
"default": "'single'",
|
|
1612
|
+
"description": "This attribute allows you to change row-selection to 'single' or 'multiple' which will allow you to select single or multiple rows.",
|
|
1613
|
+
"privacy": "public",
|
|
1614
|
+
"inheritedFrom": {
|
|
1615
|
+
"name": "EntityManagement",
|
|
1616
|
+
"module": "src/entities/entities.ts"
|
|
1617
|
+
}
|
|
1573
1618
|
},
|
|
1574
1619
|
{
|
|
1575
|
-
"
|
|
1620
|
+
"kind": "field",
|
|
1621
|
+
"name": "enableCellFlashing",
|
|
1576
1622
|
"type": {
|
|
1577
1623
|
"text": "boolean"
|
|
1578
1624
|
},
|
|
1579
1625
|
"default": "false",
|
|
1580
|
-
"
|
|
1626
|
+
"description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef",
|
|
1627
|
+
"privacy": "public",
|
|
1628
|
+
"inheritedFrom": {
|
|
1629
|
+
"name": "EntityManagement",
|
|
1630
|
+
"module": "src/entities/entities.ts"
|
|
1631
|
+
}
|
|
1581
1632
|
},
|
|
1582
1633
|
{
|
|
1583
|
-
"
|
|
1634
|
+
"kind": "field",
|
|
1635
|
+
"name": "enableRowFlashing",
|
|
1584
1636
|
"type": {
|
|
1585
1637
|
"text": "boolean"
|
|
1586
1638
|
},
|
|
1587
1639
|
"default": "false",
|
|
1588
|
-
"
|
|
1640
|
+
"description": "If true, will enable row flashing for all rows for `add` transactions",
|
|
1641
|
+
"privacy": "public",
|
|
1642
|
+
"inheritedFrom": {
|
|
1643
|
+
"name": "EntityManagement",
|
|
1644
|
+
"module": "src/entities/entities.ts"
|
|
1645
|
+
}
|
|
1589
1646
|
},
|
|
1590
1647
|
{
|
|
1591
|
-
"
|
|
1648
|
+
"kind": "field",
|
|
1649
|
+
"name": "datasourceType",
|
|
1592
1650
|
"type": {
|
|
1593
1651
|
"text": "DatasourceType"
|
|
1594
1652
|
},
|
|
1595
1653
|
"default": "'client'",
|
|
1596
|
-
"
|
|
1654
|
+
"description": "If set to 'server' it will enable Server-Side Row Model and use `grid-pro-server-side-datasource` for the grid of the `entity-list` sub-component.\nBy default `grid-pro-client-side-datasource` will be used.",
|
|
1655
|
+
"privacy": "public",
|
|
1656
|
+
"inheritedFrom": {
|
|
1657
|
+
"name": "EntityManagement",
|
|
1658
|
+
"module": "src/entities/entities.ts"
|
|
1659
|
+
}
|
|
1597
1660
|
},
|
|
1598
|
-
{
|
|
1599
|
-
"name": "header-case-type",
|
|
1600
|
-
"type": {
|
|
1601
|
-
"text": "GridProCaseType"
|
|
1602
|
-
},
|
|
1603
|
-
"fieldName": "headerCaseType"
|
|
1604
|
-
}
|
|
1605
|
-
],
|
|
1606
|
-
"mixins": [
|
|
1607
|
-
{
|
|
1608
|
-
"name": "LifecycleMixin",
|
|
1609
|
-
"package": "@genesislcap/foundation-utils"
|
|
1610
|
-
}
|
|
1611
|
-
],
|
|
1612
|
-
"superclass": {
|
|
1613
|
-
"name": "FASTElement",
|
|
1614
|
-
"package": "@microsoft/fast-element"
|
|
1615
|
-
},
|
|
1616
|
-
"tagName": "entity-list",
|
|
1617
|
-
"customElement": true
|
|
1618
|
-
}
|
|
1619
|
-
],
|
|
1620
|
-
"exports": [
|
|
1621
|
-
{
|
|
1622
|
-
"kind": "js",
|
|
1623
|
-
"name": "List",
|
|
1624
|
-
"declaration": {
|
|
1625
|
-
"name": "List",
|
|
1626
|
-
"module": "src/list/list.ts"
|
|
1627
|
-
}
|
|
1628
|
-
},
|
|
1629
|
-
{
|
|
1630
|
-
"kind": "custom-element-definition",
|
|
1631
|
-
"name": "entity-list",
|
|
1632
|
-
"declaration": {
|
|
1633
|
-
"name": "List",
|
|
1634
|
-
"module": "src/list/list.ts"
|
|
1635
|
-
}
|
|
1636
|
-
}
|
|
1637
|
-
]
|
|
1638
|
-
},
|
|
1639
|
-
{
|
|
1640
|
-
"kind": "javascript-module",
|
|
1641
|
-
"path": "src/layouts/default.ts",
|
|
1642
|
-
"declarations": [
|
|
1643
|
-
{
|
|
1644
|
-
"kind": "variable",
|
|
1645
|
-
"name": "loginLayout",
|
|
1646
|
-
"default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
|
|
1647
|
-
},
|
|
1648
|
-
{
|
|
1649
|
-
"kind": "variable",
|
|
1650
|
-
"name": "defaultLayout",
|
|
1651
|
-
"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)"
|
|
1652
|
-
}
|
|
1653
|
-
],
|
|
1654
|
-
"exports": [
|
|
1655
|
-
{
|
|
1656
|
-
"kind": "js",
|
|
1657
|
-
"name": "loginLayout",
|
|
1658
|
-
"declaration": {
|
|
1659
|
-
"name": "loginLayout",
|
|
1660
|
-
"module": "src/layouts/default.ts"
|
|
1661
|
-
}
|
|
1662
|
-
},
|
|
1663
|
-
{
|
|
1664
|
-
"kind": "js",
|
|
1665
|
-
"name": "defaultLayout",
|
|
1666
|
-
"declaration": {
|
|
1667
|
-
"name": "defaultLayout",
|
|
1668
|
-
"module": "src/layouts/default.ts"
|
|
1669
|
-
}
|
|
1670
|
-
}
|
|
1671
|
-
]
|
|
1672
|
-
},
|
|
1673
|
-
{
|
|
1674
|
-
"kind": "javascript-module",
|
|
1675
|
-
"path": "src/layouts/index.ts",
|
|
1676
|
-
"declarations": [],
|
|
1677
|
-
"exports": [
|
|
1678
|
-
{
|
|
1679
|
-
"kind": "js",
|
|
1680
|
-
"name": "*",
|
|
1681
|
-
"declaration": {
|
|
1682
|
-
"name": "*",
|
|
1683
|
-
"package": "./default"
|
|
1684
|
-
}
|
|
1685
|
-
}
|
|
1686
|
-
]
|
|
1687
|
-
},
|
|
1688
|
-
{
|
|
1689
|
-
"kind": "javascript-module",
|
|
1690
|
-
"path": "src/main/index.ts",
|
|
1691
|
-
"declarations": [],
|
|
1692
|
-
"exports": [
|
|
1693
|
-
{
|
|
1694
|
-
"kind": "js",
|
|
1695
|
-
"name": "*",
|
|
1696
|
-
"declaration": {
|
|
1697
|
-
"name": "*",
|
|
1698
|
-
"package": "./main.template"
|
|
1699
|
-
}
|
|
1700
|
-
},
|
|
1701
|
-
{
|
|
1702
|
-
"kind": "js",
|
|
1703
|
-
"name": "*",
|
|
1704
|
-
"declaration": {
|
|
1705
|
-
"name": "*",
|
|
1706
|
-
"package": "./main"
|
|
1707
|
-
}
|
|
1708
|
-
}
|
|
1709
|
-
]
|
|
1710
|
-
},
|
|
1711
|
-
{
|
|
1712
|
-
"kind": "javascript-module",
|
|
1713
|
-
"path": "src/main/main.styles.ts",
|
|
1714
|
-
"declarations": [
|
|
1715
|
-
{
|
|
1716
|
-
"kind": "variable",
|
|
1717
|
-
"name": "MainStyles",
|
|
1718
|
-
"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`"
|
|
1719
|
-
}
|
|
1720
|
-
],
|
|
1721
|
-
"exports": [
|
|
1722
|
-
{
|
|
1723
|
-
"kind": "js",
|
|
1724
|
-
"name": "MainStyles",
|
|
1725
|
-
"declaration": {
|
|
1726
|
-
"name": "MainStyles",
|
|
1727
|
-
"module": "src/main/main.styles.ts"
|
|
1728
|
-
}
|
|
1729
|
-
}
|
|
1730
|
-
]
|
|
1731
|
-
},
|
|
1732
|
-
{
|
|
1733
|
-
"kind": "javascript-module",
|
|
1734
|
-
"path": "src/main/main.template.ts",
|
|
1735
|
-
"declarations": [],
|
|
1736
|
-
"exports": []
|
|
1737
|
-
},
|
|
1738
|
-
{
|
|
1739
|
-
"kind": "javascript-module",
|
|
1740
|
-
"path": "src/main/main.ts",
|
|
1741
|
-
"declarations": [
|
|
1742
|
-
{
|
|
1743
|
-
"kind": "class",
|
|
1744
|
-
"description": "",
|
|
1745
|
-
"name": "MainApplication",
|
|
1746
|
-
"members": [
|
|
1747
1661
|
{
|
|
1748
1662
|
"kind": "field",
|
|
1749
|
-
"name": "
|
|
1663
|
+
"name": "gridOptions",
|
|
1750
1664
|
"type": {
|
|
1751
|
-
"text": "
|
|
1665
|
+
"text": "GridOptions"
|
|
1666
|
+
},
|
|
1667
|
+
"description": "GridOptions to be passed down from application",
|
|
1668
|
+
"privacy": "public",
|
|
1669
|
+
"inheritedFrom": {
|
|
1670
|
+
"name": "EntityManagement",
|
|
1671
|
+
"module": "src/entities/entities.ts"
|
|
1752
1672
|
}
|
|
1753
1673
|
},
|
|
1754
1674
|
{
|
|
1755
1675
|
"kind": "field",
|
|
1756
|
-
"name": "
|
|
1676
|
+
"name": "columns",
|
|
1757
1677
|
"type": {
|
|
1758
|
-
"text": "
|
|
1678
|
+
"text": "ColDef[]"
|
|
1679
|
+
},
|
|
1680
|
+
"description": "Array which holds the column definitions.",
|
|
1681
|
+
"privacy": "public",
|
|
1682
|
+
"inheritedFrom": {
|
|
1683
|
+
"name": "EntityManagement",
|
|
1684
|
+
"module": "src/entities/entities.ts"
|
|
1759
1685
|
}
|
|
1760
1686
|
},
|
|
1761
1687
|
{
|
|
1762
1688
|
"kind": "field",
|
|
1763
|
-
"name": "
|
|
1689
|
+
"name": "datasourceConfig",
|
|
1764
1690
|
"type": {
|
|
1765
|
-
"text": "
|
|
1691
|
+
"text": "DatasourceConfiguration"
|
|
1692
|
+
},
|
|
1693
|
+
"description": "The configuration which is used when interacting with the resource on the backend",
|
|
1694
|
+
"privacy": "public",
|
|
1695
|
+
"inheritedFrom": {
|
|
1696
|
+
"name": "EntityManagement",
|
|
1697
|
+
"module": "src/entities/entities.ts"
|
|
1766
1698
|
}
|
|
1767
1699
|
},
|
|
1768
1700
|
{
|
|
1769
1701
|
"kind": "field",
|
|
1770
|
-
"name": "
|
|
1702
|
+
"name": "formUiSchema",
|
|
1771
1703
|
"type": {
|
|
1772
|
-
"text": "
|
|
1704
|
+
"text": "UiSchema"
|
|
1705
|
+
},
|
|
1706
|
+
"inheritedFrom": {
|
|
1707
|
+
"name": "EntityManagement",
|
|
1708
|
+
"module": "src/entities/entities.ts"
|
|
1773
1709
|
}
|
|
1774
1710
|
},
|
|
1775
1711
|
{
|
|
1776
1712
|
"kind": "field",
|
|
1777
|
-
"name": "
|
|
1713
|
+
"name": "formRenderers",
|
|
1778
1714
|
"type": {
|
|
1779
|
-
"text": "
|
|
1715
|
+
"text": "RendererEntry[]"
|
|
1716
|
+
},
|
|
1717
|
+
"default": "renderers",
|
|
1718
|
+
"description": "Array with renderers used by foundation-forms",
|
|
1719
|
+
"privacy": "public",
|
|
1720
|
+
"inheritedFrom": {
|
|
1721
|
+
"name": "EntityManagement",
|
|
1722
|
+
"module": "src/entities/entities.ts"
|
|
1780
1723
|
}
|
|
1781
1724
|
},
|
|
1782
1725
|
{
|
|
1783
1726
|
"kind": "field",
|
|
1784
|
-
"name": "
|
|
1727
|
+
"name": "selectedEntity",
|
|
1728
|
+
"type": {
|
|
1729
|
+
"text": "Record<string, unknown>"
|
|
1730
|
+
},
|
|
1731
|
+
"description": "Reference to the currently selected entity from the grid.",
|
|
1732
|
+
"privacy": "public",
|
|
1733
|
+
"inheritedFrom": {
|
|
1734
|
+
"name": "EntityManagement",
|
|
1735
|
+
"module": "src/entities/entities.ts"
|
|
1736
|
+
}
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"kind": "field",
|
|
1740
|
+
"name": "editedEntity",
|
|
1741
|
+
"type": {
|
|
1742
|
+
"text": "Record<string, unknown>"
|
|
1743
|
+
},
|
|
1744
|
+
"description": "Disables the form while enabled to stop the user dispatching a large number of duplicate events",
|
|
1745
|
+
"privacy": "public",
|
|
1746
|
+
"inheritedFrom": {
|
|
1747
|
+
"name": "EntityManagement",
|
|
1748
|
+
"module": "src/entities/entities.ts"
|
|
1749
|
+
}
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
"kind": "field",
|
|
1753
|
+
"name": "defaultEntityValues",
|
|
1754
|
+
"type": {
|
|
1755
|
+
"text": "Record<string, unknown>"
|
|
1756
|
+
},
|
|
1757
|
+
"description": "The default values to populate the form with when the user is adding an entity",
|
|
1758
|
+
"privacy": "public",
|
|
1759
|
+
"inheritedFrom": {
|
|
1760
|
+
"name": "EntityManagement",
|
|
1761
|
+
"module": "src/entities/entities.ts"
|
|
1762
|
+
}
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
"kind": "field",
|
|
1766
|
+
"name": "submitting",
|
|
1785
1767
|
"type": {
|
|
1786
1768
|
"text": "boolean"
|
|
1787
1769
|
},
|
|
1788
|
-
"
|
|
1770
|
+
"inheritedFrom": {
|
|
1771
|
+
"name": "EntityManagement",
|
|
1772
|
+
"module": "src/entities/entities.ts"
|
|
1773
|
+
}
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"kind": "field",
|
|
1777
|
+
"name": "modalFormType",
|
|
1778
|
+
"type": {
|
|
1779
|
+
"text": "ModalFormType"
|
|
1780
|
+
},
|
|
1781
|
+
"description": "The type of form that is currently being displayed in the modal",
|
|
1782
|
+
"inheritedFrom": {
|
|
1783
|
+
"name": "EntityManagement",
|
|
1784
|
+
"module": "src/entities/entities.ts"
|
|
1785
|
+
}
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"kind": "field",
|
|
1789
|
+
"name": "editModalVisible",
|
|
1790
|
+
"type": {
|
|
1791
|
+
"text": "boolean"
|
|
1792
|
+
},
|
|
1793
|
+
"default": "false",
|
|
1794
|
+
"inheritedFrom": {
|
|
1795
|
+
"name": "EntityManagement",
|
|
1796
|
+
"module": "src/entities/entities.ts"
|
|
1797
|
+
}
|
|
1789
1798
|
},
|
|
1790
1799
|
{
|
|
1791
1800
|
"kind": "method",
|
|
1792
|
-
"name": "
|
|
1801
|
+
"name": "editModalVisibleChanged",
|
|
1802
|
+
"inheritedFrom": {
|
|
1803
|
+
"name": "EntityManagement",
|
|
1804
|
+
"module": "src/entities/entities.ts"
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"kind": "field",
|
|
1809
|
+
"name": "editEntityModal",
|
|
1810
|
+
"type": {
|
|
1811
|
+
"text": "Modal"
|
|
1812
|
+
},
|
|
1813
|
+
"privacy": "public",
|
|
1814
|
+
"inheritedFrom": {
|
|
1815
|
+
"name": "EntityManagement",
|
|
1816
|
+
"module": "src/entities/entities.ts"
|
|
1817
|
+
}
|
|
1818
|
+
},
|
|
1819
|
+
{
|
|
1820
|
+
"kind": "field",
|
|
1821
|
+
"name": "sizeColumnsToFit",
|
|
1822
|
+
"type": {
|
|
1823
|
+
"text": "boolean"
|
|
1824
|
+
},
|
|
1825
|
+
"inheritedFrom": {
|
|
1826
|
+
"name": "EntityManagement",
|
|
1827
|
+
"module": "src/entities/entities.ts"
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
"kind": "field",
|
|
1832
|
+
"name": "enableFilterBar",
|
|
1833
|
+
"type": {
|
|
1834
|
+
"text": "boolean"
|
|
1835
|
+
},
|
|
1836
|
+
"inheritedFrom": {
|
|
1837
|
+
"name": "EntityManagement",
|
|
1838
|
+
"module": "src/entities/entities.ts"
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"kind": "field",
|
|
1843
|
+
"name": "hideEdit",
|
|
1844
|
+
"type": {
|
|
1845
|
+
"text": "boolean"
|
|
1846
|
+
},
|
|
1847
|
+
"default": "false",
|
|
1848
|
+
"inheritedFrom": {
|
|
1849
|
+
"name": "EntityManagement",
|
|
1850
|
+
"module": "src/entities/entities.ts"
|
|
1851
|
+
}
|
|
1852
|
+
},
|
|
1853
|
+
{
|
|
1854
|
+
"kind": "field",
|
|
1855
|
+
"name": "hideDelete",
|
|
1856
|
+
"type": {
|
|
1857
|
+
"text": "boolean"
|
|
1858
|
+
},
|
|
1859
|
+
"default": "false",
|
|
1860
|
+
"inheritedFrom": {
|
|
1861
|
+
"name": "EntityManagement",
|
|
1862
|
+
"module": "src/entities/entities.ts"
|
|
1863
|
+
}
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
"kind": "field",
|
|
1867
|
+
"name": "enableSearchBar",
|
|
1868
|
+
"type": {
|
|
1869
|
+
"text": "boolean"
|
|
1870
|
+
},
|
|
1871
|
+
"default": "false",
|
|
1872
|
+
"description": "This attribute controls whether to enable the search-bar.",
|
|
1873
|
+
"privacy": "public",
|
|
1874
|
+
"inheritedFrom": {
|
|
1875
|
+
"name": "EntityManagement",
|
|
1876
|
+
"module": "src/entities/entities.ts"
|
|
1877
|
+
}
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"kind": "field",
|
|
1881
|
+
"name": "headerCaseType",
|
|
1882
|
+
"type": {
|
|
1883
|
+
"text": "GridProCaseType"
|
|
1884
|
+
},
|
|
1885
|
+
"description": "The case type to use for the header names. If not set, the default CONSTANT_CASE will be used.",
|
|
1886
|
+
"privacy": "public",
|
|
1887
|
+
"inheritedFrom": {
|
|
1888
|
+
"name": "EntityManagement",
|
|
1889
|
+
"module": "src/entities/entities.ts"
|
|
1890
|
+
}
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
"kind": "field",
|
|
1894
|
+
"name": "searchBarConfig",
|
|
1895
|
+
"type": {
|
|
1896
|
+
"text": "AvailableOption[]"
|
|
1897
|
+
},
|
|
1898
|
+
"inheritedFrom": {
|
|
1899
|
+
"name": "EntityManagement",
|
|
1900
|
+
"module": "src/entities/entities.ts"
|
|
1901
|
+
}
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
"kind": "field",
|
|
1905
|
+
"name": "modalPosition",
|
|
1906
|
+
"type": {
|
|
1907
|
+
"text": "'centre' | 'left' | 'right'"
|
|
1908
|
+
},
|
|
1909
|
+
"default": "'right'",
|
|
1910
|
+
"description": "Determines where the modal dialog will appear on screen",
|
|
1911
|
+
"privacy": "public",
|
|
1912
|
+
"inheritedFrom": {
|
|
1913
|
+
"name": "EntityManagement",
|
|
1914
|
+
"module": "src/entities/entities.ts"
|
|
1915
|
+
}
|
|
1916
|
+
},
|
|
1917
|
+
{
|
|
1918
|
+
"kind": "field",
|
|
1919
|
+
"name": "crudMenuPosition",
|
|
1920
|
+
"type": {
|
|
1921
|
+
"text": "CrudMenuPosition"
|
|
1922
|
+
},
|
|
1923
|
+
"description": "Determines where the buttons will appear",
|
|
1924
|
+
"privacy": "public",
|
|
1925
|
+
"inheritedFrom": {
|
|
1926
|
+
"name": "EntityManagement",
|
|
1927
|
+
"module": "src/entities/entities.ts"
|
|
1928
|
+
}
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"kind": "field",
|
|
1932
|
+
"name": "crudMenuStyle",
|
|
1933
|
+
"type": {
|
|
1934
|
+
"text": "ActionsMenuStyle"
|
|
1935
|
+
},
|
|
1936
|
+
"description": "Determines the style of the buttons",
|
|
1937
|
+
"privacy": "public",
|
|
1938
|
+
"inheritedFrom": {
|
|
1939
|
+
"name": "EntityManagement",
|
|
1940
|
+
"module": "src/entities/entities.ts"
|
|
1941
|
+
}
|
|
1942
|
+
},
|
|
1943
|
+
{
|
|
1944
|
+
"kind": "field",
|
|
1945
|
+
"name": "crudActionMenuName",
|
|
1946
|
+
"type": {
|
|
1947
|
+
"text": "string"
|
|
1948
|
+
},
|
|
1949
|
+
"default": "'⋮'",
|
|
1950
|
+
"description": "The label of the crud action menu",
|
|
1951
|
+
"inheritedFrom": {
|
|
1952
|
+
"name": "EntityManagement",
|
|
1953
|
+
"module": "src/entities/entities.ts"
|
|
1954
|
+
}
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
"kind": "field",
|
|
1958
|
+
"name": "crudMenuWrapper",
|
|
1959
|
+
"privacy": "public",
|
|
1960
|
+
"description": "The Id of the crud buttons wrapper element",
|
|
1961
|
+
"inheritedFrom": {
|
|
1962
|
+
"name": "EntityManagement",
|
|
1963
|
+
"module": "src/entities/entities.ts"
|
|
1964
|
+
}
|
|
1793
1965
|
},
|
|
1794
1966
|
{
|
|
1795
1967
|
"kind": "method",
|
|
1796
|
-
"name": "
|
|
1968
|
+
"name": "getTitleBasedOnActionOrType",
|
|
1969
|
+
"privacy": "public",
|
|
1970
|
+
"parameters": [
|
|
1971
|
+
{
|
|
1972
|
+
"name": "actionOrType",
|
|
1973
|
+
"type": {
|
|
1974
|
+
"text": "CrudAction | ModalFormType"
|
|
1975
|
+
},
|
|
1976
|
+
"description": "The crud action or modal form type"
|
|
1977
|
+
}
|
|
1978
|
+
],
|
|
1979
|
+
"description": "The helper function to determine the title of the modal form or button based on the action or type",
|
|
1980
|
+
"inheritedFrom": {
|
|
1981
|
+
"name": "EntityManagement",
|
|
1982
|
+
"module": "src/entities/entities.ts"
|
|
1983
|
+
}
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
"kind": "field",
|
|
1987
|
+
"name": "modalFormTitle",
|
|
1988
|
+
"description": "Getter for the title of the modal form",
|
|
1989
|
+
"readonly": true,
|
|
1990
|
+
"inheritedFrom": {
|
|
1991
|
+
"name": "EntityManagement",
|
|
1992
|
+
"module": "src/entities/entities.ts"
|
|
1993
|
+
}
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"kind": "field",
|
|
1997
|
+
"name": "shouldHideEditInColumn",
|
|
1998
|
+
"type": {
|
|
1999
|
+
"text": "boolean"
|
|
2000
|
+
},
|
|
2001
|
+
"description": "Determines whether the button edit should be hidden in the column",
|
|
2002
|
+
"readonly": true,
|
|
2003
|
+
"inheritedFrom": {
|
|
2004
|
+
"name": "EntityManagement",
|
|
2005
|
+
"module": "src/entities/entities.ts"
|
|
2006
|
+
}
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"kind": "field",
|
|
2010
|
+
"name": "shouldHideDeleteInColumn",
|
|
2011
|
+
"type": {
|
|
2012
|
+
"text": "boolean"
|
|
2013
|
+
},
|
|
2014
|
+
"description": "Determines whether the button delete should be hidden in the column",
|
|
2015
|
+
"readonly": true,
|
|
2016
|
+
"inheritedFrom": {
|
|
2017
|
+
"name": "EntityManagement",
|
|
2018
|
+
"module": "src/entities/entities.ts"
|
|
2019
|
+
}
|
|
2020
|
+
},
|
|
2021
|
+
{
|
|
2022
|
+
"kind": "field",
|
|
2023
|
+
"name": "hasSelectedEntity",
|
|
2024
|
+
"type": {
|
|
2025
|
+
"text": "boolean"
|
|
2026
|
+
},
|
|
2027
|
+
"description": "Determines whether there is a selected entity",
|
|
2028
|
+
"readonly": true,
|
|
2029
|
+
"inheritedFrom": {
|
|
2030
|
+
"name": "EntityManagement",
|
|
2031
|
+
"module": "src/entities/entities.ts"
|
|
2032
|
+
}
|
|
1797
2033
|
},
|
|
1798
2034
|
{
|
|
1799
2035
|
"kind": "method",
|
|
1800
|
-
"name": "
|
|
2036
|
+
"name": "hasContentInSlot",
|
|
2037
|
+
"privacy": "public",
|
|
2038
|
+
"return": {
|
|
2039
|
+
"type": {
|
|
2040
|
+
"text": ""
|
|
2041
|
+
}
|
|
2042
|
+
},
|
|
2043
|
+
"parameters": [
|
|
2044
|
+
{
|
|
2045
|
+
"name": "slotName",
|
|
2046
|
+
"type": {
|
|
2047
|
+
"text": "string"
|
|
2048
|
+
},
|
|
2049
|
+
"description": "The name of the slot to check."
|
|
2050
|
+
}
|
|
2051
|
+
],
|
|
2052
|
+
"description": "Checks if a slot contains any content.",
|
|
2053
|
+
"inheritedFrom": {
|
|
2054
|
+
"name": "EntityManagement",
|
|
2055
|
+
"module": "src/entities/entities.ts"
|
|
2056
|
+
}
|
|
1801
2057
|
},
|
|
1802
2058
|
{
|
|
1803
2059
|
"kind": "method",
|
|
1804
|
-
"name": "
|
|
1805
|
-
"
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
2060
|
+
"name": "deepClone",
|
|
2061
|
+
"return": {
|
|
2062
|
+
"type": {
|
|
2063
|
+
"text": "Node"
|
|
2064
|
+
}
|
|
2065
|
+
},
|
|
2066
|
+
"description": "Override the deepClone method to ensure that observable attributes are cloned",
|
|
2067
|
+
"privacy": "public",
|
|
2068
|
+
"inheritedFrom": {
|
|
2069
|
+
"name": "EntityManagement",
|
|
2070
|
+
"module": "src/entities/entities.ts"
|
|
2071
|
+
}
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
"kind": "method",
|
|
2075
|
+
"name": "submitEntityChanges",
|
|
2076
|
+
"privacy": "public",
|
|
2077
|
+
"parameters": [
|
|
2078
|
+
{
|
|
2079
|
+
"name": "e",
|
|
2080
|
+
"type": {
|
|
2081
|
+
"text": "CustomEvent"
|
|
2082
|
+
},
|
|
2083
|
+
"description": "CustomEvent which contains the payload for the entity to submit to the backend\n\nEmits an event upon error"
|
|
2084
|
+
}
|
|
2085
|
+
],
|
|
2086
|
+
"description": "Event handler for when the user submits the action for the currently open form, either editing or adding the entity",
|
|
2087
|
+
"inheritedFrom": {
|
|
2088
|
+
"name": "EntityManagement",
|
|
2089
|
+
"module": "src/entities/entities.ts"
|
|
2090
|
+
}
|
|
2091
|
+
},
|
|
2092
|
+
{
|
|
2093
|
+
"kind": "method",
|
|
2094
|
+
"name": "readEntity",
|
|
2095
|
+
"privacy": "private",
|
|
2096
|
+
"parameters": [
|
|
2097
|
+
{
|
|
2098
|
+
"name": "e",
|
|
2099
|
+
"type": {
|
|
2100
|
+
"text": "CustomEvent"
|
|
2101
|
+
}
|
|
2102
|
+
}
|
|
2103
|
+
],
|
|
2104
|
+
"inheritedFrom": {
|
|
2105
|
+
"name": "EntityManagement",
|
|
2106
|
+
"module": "src/entities/entities.ts"
|
|
2107
|
+
}
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
"kind": "method",
|
|
2111
|
+
"name": "closeModal",
|
|
2112
|
+
"privacy": "public",
|
|
2113
|
+
"inheritedFrom": {
|
|
2114
|
+
"name": "EntityManagement",
|
|
2115
|
+
"module": "src/entities/entities.ts"
|
|
2116
|
+
}
|
|
2117
|
+
},
|
|
2118
|
+
{
|
|
2119
|
+
"kind": "field",
|
|
2120
|
+
"name": "headerTempalate",
|
|
2121
|
+
"readonly": true,
|
|
2122
|
+
"inheritedFrom": {
|
|
2123
|
+
"name": "EntityManagement",
|
|
2124
|
+
"module": "src/entities/entities.ts"
|
|
2125
|
+
}
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
"kind": "field",
|
|
2129
|
+
"name": "isServerSideDatasource",
|
|
2130
|
+
"type": {
|
|
2131
|
+
"text": "boolean"
|
|
2132
|
+
},
|
|
2133
|
+
"readonly": true,
|
|
2134
|
+
"inheritedFrom": {
|
|
2135
|
+
"name": "EntityManagement",
|
|
2136
|
+
"module": "src/entities/entities.ts"
|
|
2137
|
+
}
|
|
2138
|
+
},
|
|
1866
2139
|
{
|
|
1867
2140
|
"kind": "method",
|
|
1868
|
-
"name": "
|
|
2141
|
+
"name": "searchChanged",
|
|
1869
2142
|
"privacy": "public",
|
|
1870
2143
|
"parameters": [
|
|
1871
2144
|
{
|
|
1872
|
-
"name": "
|
|
2145
|
+
"name": "event",
|
|
2146
|
+
"type": {
|
|
2147
|
+
"text": "CustomEvent<Array<SelectedOption>>"
|
|
2148
|
+
}
|
|
1873
2149
|
}
|
|
1874
|
-
]
|
|
2150
|
+
],
|
|
2151
|
+
"inheritedFrom": {
|
|
2152
|
+
"name": "EntityManagement",
|
|
2153
|
+
"module": "src/entities/entities.ts"
|
|
2154
|
+
}
|
|
1875
2155
|
},
|
|
1876
2156
|
{
|
|
1877
2157
|
"kind": "method",
|
|
1878
|
-
"name": "
|
|
2158
|
+
"name": "searchBarReqServer",
|
|
2159
|
+
"parameters": [
|
|
2160
|
+
{
|
|
2161
|
+
"name": "options",
|
|
2162
|
+
"type": {
|
|
2163
|
+
"text": "SelectedOption<string>[]"
|
|
2164
|
+
}
|
|
2165
|
+
}
|
|
2166
|
+
],
|
|
1879
2167
|
"inheritedFrom": {
|
|
1880
2168
|
"name": "EntityManagement",
|
|
1881
2169
|
"module": "src/entities/entities.ts"
|
|
1882
2170
|
}
|
|
1883
2171
|
},
|
|
1884
2172
|
{
|
|
1885
|
-
"kind": "
|
|
1886
|
-
"name": "
|
|
1887
|
-
"
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
2173
|
+
"kind": "method",
|
|
2174
|
+
"name": "searchBarDataserver",
|
|
2175
|
+
"parameters": [
|
|
2176
|
+
{
|
|
2177
|
+
"name": "options",
|
|
2178
|
+
"type": {
|
|
2179
|
+
"text": "SelectedOption<string>[]"
|
|
2180
|
+
}
|
|
2181
|
+
}
|
|
2182
|
+
],
|
|
1892
2183
|
"inheritedFrom": {
|
|
1893
2184
|
"name": "EntityManagement",
|
|
1894
2185
|
"module": "src/entities/entities.ts"
|
|
1895
2186
|
}
|
|
1896
2187
|
},
|
|
1897
2188
|
{
|
|
1898
|
-
"kind": "
|
|
1899
|
-
"name": "
|
|
1900
|
-
"type": {
|
|
1901
|
-
"text": "string"
|
|
1902
|
-
},
|
|
1903
|
-
"description": "Name of the event handler on the Genesis server which handles deleting the entity",
|
|
2189
|
+
"kind": "method",
|
|
2190
|
+
"name": "requestChanged",
|
|
1904
2191
|
"privacy": "public",
|
|
2192
|
+
"parameters": [
|
|
2193
|
+
{
|
|
2194
|
+
"name": "e",
|
|
2195
|
+
"type": {
|
|
2196
|
+
"text": "CustomEvent<string>"
|
|
2197
|
+
}
|
|
2198
|
+
}
|
|
2199
|
+
],
|
|
1905
2200
|
"inheritedFrom": {
|
|
1906
2201
|
"name": "EntityManagement",
|
|
1907
2202
|
"module": "src/entities/entities.ts"
|
|
1908
2203
|
}
|
|
1909
2204
|
},
|
|
1910
2205
|
{
|
|
1911
|
-
"kind": "
|
|
1912
|
-
"name": "
|
|
1913
|
-
"type": {
|
|
1914
|
-
"text": "string"
|
|
1915
|
-
},
|
|
1916
|
-
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
2206
|
+
"kind": "method",
|
|
2207
|
+
"name": "criteriaChanged",
|
|
1917
2208
|
"privacy": "public",
|
|
2209
|
+
"parameters": [
|
|
2210
|
+
{
|
|
2211
|
+
"name": "e",
|
|
2212
|
+
"type": {
|
|
2213
|
+
"text": "CustomEvent<string>"
|
|
2214
|
+
}
|
|
2215
|
+
}
|
|
2216
|
+
],
|
|
1918
2217
|
"inheritedFrom": {
|
|
1919
2218
|
"name": "EntityManagement",
|
|
1920
2219
|
"module": "src/entities/entities.ts"
|
|
1921
2220
|
}
|
|
1922
2221
|
},
|
|
1923
2222
|
{
|
|
1924
|
-
"kind": "
|
|
1925
|
-
"name": "
|
|
1926
|
-
"type": {
|
|
1927
|
-
"text": "string"
|
|
1928
|
-
},
|
|
1929
|
-
"description": "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.",
|
|
2223
|
+
"kind": "method",
|
|
2224
|
+
"name": "submitFailureNotification",
|
|
1930
2225
|
"privacy": "public",
|
|
1931
|
-
"
|
|
2226
|
+
"parameters": [
|
|
2227
|
+
{
|
|
2228
|
+
"name": "e",
|
|
2229
|
+
"type": {
|
|
2230
|
+
"text": "CustomEvent"
|
|
2231
|
+
}
|
|
2232
|
+
}
|
|
2233
|
+
],
|
|
1932
2234
|
"inheritedFrom": {
|
|
1933
2235
|
"name": "EntityManagement",
|
|
1934
2236
|
"module": "src/entities/entities.ts"
|
|
1935
2237
|
}
|
|
1936
2238
|
},
|
|
1937
2239
|
{
|
|
1938
|
-
"kind": "
|
|
1939
|
-
"name": "
|
|
1940
|
-
"
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
2240
|
+
"kind": "method",
|
|
2241
|
+
"name": "submitErrorHandler",
|
|
2242
|
+
"privacy": "private",
|
|
2243
|
+
"parameters": [
|
|
2244
|
+
{
|
|
2245
|
+
"name": "e",
|
|
2246
|
+
"type": {
|
|
2247
|
+
"text": "CustomEvent"
|
|
2248
|
+
}
|
|
2249
|
+
}
|
|
2250
|
+
],
|
|
1944
2251
|
"inheritedFrom": {
|
|
1945
2252
|
"name": "EntityManagement",
|
|
1946
2253
|
"module": "src/entities/entities.ts"
|
|
1947
2254
|
}
|
|
1948
2255
|
},
|
|
1949
2256
|
{
|
|
1950
|
-
"kind": "
|
|
1951
|
-
"name": "
|
|
1952
|
-
"
|
|
1953
|
-
"text": "UiSchema"
|
|
1954
|
-
},
|
|
1955
|
-
"default": "editProfileFormSchema",
|
|
2257
|
+
"kind": "method",
|
|
2258
|
+
"name": "showDeleteConfirmation",
|
|
2259
|
+
"privacy": "private",
|
|
1956
2260
|
"inheritedFrom": {
|
|
1957
2261
|
"name": "EntityManagement",
|
|
1958
2262
|
"module": "src/entities/entities.ts"
|
|
1959
2263
|
}
|
|
1960
2264
|
},
|
|
1961
2265
|
{
|
|
1962
|
-
"kind": "
|
|
1963
|
-
"name": "
|
|
2266
|
+
"kind": "method",
|
|
2267
|
+
"name": "emitCrud",
|
|
2268
|
+
"privacy": "public",
|
|
2269
|
+
"parameters": [
|
|
2270
|
+
{
|
|
2271
|
+
"name": "action",
|
|
2272
|
+
"type": {
|
|
2273
|
+
"text": "'create' | 'edit' | 'delete'"
|
|
2274
|
+
},
|
|
2275
|
+
"description": "the action to emit"
|
|
2276
|
+
}
|
|
2277
|
+
],
|
|
2278
|
+
"description": "Emit the CRUD event for the selected entity",
|
|
2279
|
+
"inheritedFrom": {
|
|
2280
|
+
"name": "EntityManagement",
|
|
2281
|
+
"module": "src/entities/entities.ts"
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
"kind": "method",
|
|
2286
|
+
"name": "selectionChanged",
|
|
2287
|
+
"privacy": "public",
|
|
2288
|
+
"parameters": [
|
|
2289
|
+
{
|
|
2290
|
+
"name": "event",
|
|
2291
|
+
"type": {
|
|
2292
|
+
"text": "CustomEvent<SelectionChangedEvent>"
|
|
2293
|
+
}
|
|
2294
|
+
}
|
|
2295
|
+
],
|
|
2296
|
+
"description": "The event handler for when the selection changes in the grid.",
|
|
2297
|
+
"inheritedFrom": {
|
|
2298
|
+
"name": "EntityManagement",
|
|
2299
|
+
"module": "src/entities/entities.ts"
|
|
2300
|
+
}
|
|
2301
|
+
}
|
|
2302
|
+
],
|
|
2303
|
+
"superclass": {
|
|
2304
|
+
"name": "EntityManagement",
|
|
2305
|
+
"module": "/src/entities"
|
|
2306
|
+
},
|
|
2307
|
+
"deprecated": "- Use '\\@genesislcap/pbc-auth' instead. 'https://www.npmjs.com/package/\\@genesislcap/pbc-auth'",
|
|
2308
|
+
"tagName": "profile-management",
|
|
2309
|
+
"customElement": true,
|
|
2310
|
+
"attributes": [
|
|
2311
|
+
{
|
|
2312
|
+
"name": "design-system-prefix",
|
|
1964
2313
|
"type": {
|
|
1965
|
-
"text": "
|
|
2314
|
+
"text": "string"
|
|
1966
2315
|
},
|
|
2316
|
+
"default": "'zero'",
|
|
2317
|
+
"description": "Name of the design system prefix that will be used in renderers.",
|
|
2318
|
+
"fieldName": "prefix",
|
|
1967
2319
|
"inheritedFrom": {
|
|
1968
2320
|
"name": "EntityManagement",
|
|
1969
2321
|
"module": "src/entities/entities.ts"
|
|
1970
2322
|
}
|
|
1971
2323
|
},
|
|
1972
2324
|
{
|
|
1973
|
-
"kind": "field",
|
|
1974
2325
|
"name": "resourceName",
|
|
1975
2326
|
"type": {
|
|
1976
2327
|
"text": "string"
|
|
1977
2328
|
},
|
|
1978
2329
|
"description": "Name of the backend resource which contain the entities to manage",
|
|
1979
|
-
"
|
|
1980
|
-
"default": "'ALL_PROFILES'",
|
|
2330
|
+
"fieldName": "resourceName",
|
|
1981
2331
|
"inheritedFrom": {
|
|
1982
2332
|
"name": "EntityManagement",
|
|
1983
2333
|
"module": "src/entities/entities.ts"
|
|
1984
2334
|
}
|
|
1985
2335
|
},
|
|
1986
2336
|
{
|
|
1987
|
-
"
|
|
1988
|
-
"name": "title",
|
|
2337
|
+
"name": "readEvent",
|
|
1989
2338
|
"type": {
|
|
1990
2339
|
"text": "string"
|
|
1991
2340
|
},
|
|
1992
|
-
"
|
|
1993
|
-
"privacy": "public",
|
|
1994
|
-
"default": "'Profile Management'",
|
|
2341
|
+
"fieldName": "readEvent",
|
|
1995
2342
|
"inheritedFrom": {
|
|
1996
2343
|
"name": "EntityManagement",
|
|
1997
2344
|
"module": "src/entities/entities.ts"
|
|
1998
2345
|
}
|
|
1999
2346
|
},
|
|
2000
2347
|
{
|
|
2001
|
-
"
|
|
2002
|
-
|
|
2348
|
+
"type": {
|
|
2349
|
+
"text": "boolean"
|
|
2350
|
+
},
|
|
2351
|
+
"fieldName": "readonly",
|
|
2352
|
+
"inheritedFrom": {
|
|
2353
|
+
"name": "EntityManagement",
|
|
2354
|
+
"module": "src/entities/entities.ts"
|
|
2355
|
+
}
|
|
2356
|
+
},
|
|
2357
|
+
{
|
|
2358
|
+
"name": "updateEvent",
|
|
2003
2359
|
"type": {
|
|
2004
2360
|
"text": "string"
|
|
2005
2361
|
},
|
|
2006
|
-
"description": "
|
|
2007
|
-
"
|
|
2008
|
-
"default": "'Profile'",
|
|
2362
|
+
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
2363
|
+
"fieldName": "updateEvent",
|
|
2009
2364
|
"inheritedFrom": {
|
|
2010
2365
|
"name": "EntityManagement",
|
|
2011
2366
|
"module": "src/entities/entities.ts"
|
|
2012
2367
|
}
|
|
2013
2368
|
},
|
|
2014
2369
|
{
|
|
2015
|
-
"
|
|
2016
|
-
"name": "connect",
|
|
2370
|
+
"name": "deleteEvent",
|
|
2017
2371
|
"type": {
|
|
2018
|
-
"text": "
|
|
2372
|
+
"text": "string"
|
|
2019
2373
|
},
|
|
2020
|
-
"
|
|
2021
|
-
"
|
|
2374
|
+
"description": "Name of the event handler on the Genesis server which handles deleting the entity",
|
|
2375
|
+
"fieldName": "deleteEvent",
|
|
2022
2376
|
"inheritedFrom": {
|
|
2023
2377
|
"name": "EntityManagement",
|
|
2024
2378
|
"module": "src/entities/entities.ts"
|
|
2025
2379
|
}
|
|
2026
2380
|
},
|
|
2027
2381
|
{
|
|
2028
|
-
"
|
|
2029
|
-
"name": "prefix",
|
|
2382
|
+
"name": "createEvent",
|
|
2030
2383
|
"type": {
|
|
2031
2384
|
"text": "string"
|
|
2032
2385
|
},
|
|
2033
|
-
"
|
|
2034
|
-
"
|
|
2035
|
-
"privacy": "public",
|
|
2386
|
+
"description": "Name of the event handler on the Genesis server which handles creating an entity",
|
|
2387
|
+
"fieldName": "createEvent",
|
|
2036
2388
|
"inheritedFrom": {
|
|
2037
2389
|
"name": "EntityManagement",
|
|
2038
2390
|
"module": "src/entities/entities.ts"
|
|
2039
2391
|
}
|
|
2040
2392
|
},
|
|
2041
2393
|
{
|
|
2042
|
-
"
|
|
2043
|
-
"name": "readEvent",
|
|
2394
|
+
"name": "title",
|
|
2044
2395
|
"type": {
|
|
2045
2396
|
"text": "string"
|
|
2046
2397
|
},
|
|
2398
|
+
"description": "Title of the grid",
|
|
2399
|
+
"fieldName": "title",
|
|
2047
2400
|
"inheritedFrom": {
|
|
2048
2401
|
"name": "EntityManagement",
|
|
2049
2402
|
"module": "src/entities/entities.ts"
|
|
2050
2403
|
}
|
|
2051
2404
|
},
|
|
2052
2405
|
{
|
|
2053
|
-
"
|
|
2054
|
-
"name": "readonly",
|
|
2406
|
+
"name": "entityLabel",
|
|
2055
2407
|
"type": {
|
|
2056
|
-
"text": "
|
|
2408
|
+
"text": "string"
|
|
2057
2409
|
},
|
|
2410
|
+
"description": "Label for the entity which has usages such as being shown in the title of the modal wen editing the entity",
|
|
2411
|
+
"fieldName": "entityLabel",
|
|
2058
2412
|
"inheritedFrom": {
|
|
2059
2413
|
"name": "EntityManagement",
|
|
2060
2414
|
"module": "src/entities/entities.ts"
|
|
2061
2415
|
}
|
|
2062
2416
|
},
|
|
2063
2417
|
{
|
|
2064
|
-
"
|
|
2065
|
-
"name": "asyncAdd",
|
|
2418
|
+
"name": "async-add",
|
|
2066
2419
|
"type": {
|
|
2067
2420
|
"text": "boolean"
|
|
2068
2421
|
},
|
|
2069
2422
|
"default": "false",
|
|
2070
2423
|
"description": "Whether to use the `applyTransactionAsync` function for *add* transactions",
|
|
2071
|
-
"
|
|
2424
|
+
"fieldName": "asyncAdd",
|
|
2072
2425
|
"inheritedFrom": {
|
|
2073
2426
|
"name": "EntityManagement",
|
|
2074
2427
|
"module": "src/entities/entities.ts"
|
|
2075
2428
|
}
|
|
2076
2429
|
},
|
|
2077
2430
|
{
|
|
2078
|
-
"
|
|
2079
|
-
"name": "asyncRemove",
|
|
2431
|
+
"name": "async-remove",
|
|
2080
2432
|
"type": {
|
|
2081
2433
|
"text": "boolean"
|
|
2082
2434
|
},
|
|
2083
2435
|
"default": "false",
|
|
2084
2436
|
"description": "Whether to use the `applyTransactionAsync` function for *remove* transactions",
|
|
2085
|
-
"
|
|
2437
|
+
"fieldName": "asyncRemove",
|
|
2086
2438
|
"inheritedFrom": {
|
|
2087
2439
|
"name": "EntityManagement",
|
|
2088
2440
|
"module": "src/entities/entities.ts"
|
|
2089
2441
|
}
|
|
2090
2442
|
},
|
|
2091
2443
|
{
|
|
2092
|
-
"
|
|
2093
|
-
"name": "asyncUpdate",
|
|
2444
|
+
"name": "async-update",
|
|
2094
2445
|
"type": {
|
|
2095
2446
|
"text": "boolean"
|
|
2096
2447
|
},
|
|
2097
2448
|
"default": "true",
|
|
2098
2449
|
"description": "Whether to use the `applyTransactionAsync` function for *update* transactions",
|
|
2099
|
-
"
|
|
2450
|
+
"fieldName": "asyncUpdate",
|
|
2100
2451
|
"inheritedFrom": {
|
|
2101
2452
|
"name": "EntityManagement",
|
|
2102
2453
|
"module": "src/entities/entities.ts"
|
|
2103
2454
|
}
|
|
2104
2455
|
},
|
|
2105
2456
|
{
|
|
2106
|
-
"
|
|
2107
|
-
"name": "rowSelection",
|
|
2457
|
+
"name": "row-selection",
|
|
2108
2458
|
"type": {
|
|
2109
2459
|
"text": "string"
|
|
2110
2460
|
},
|
|
2111
2461
|
"default": "'single'",
|
|
2112
2462
|
"description": "This attribute allows you to change row-selection to 'single' or 'multiple' which will allow you to select single or multiple rows.",
|
|
2113
|
-
"
|
|
2463
|
+
"fieldName": "rowSelection",
|
|
2114
2464
|
"inheritedFrom": {
|
|
2115
2465
|
"name": "EntityManagement",
|
|
2116
2466
|
"module": "src/entities/entities.ts"
|
|
2117
2467
|
}
|
|
2118
2468
|
},
|
|
2119
2469
|
{
|
|
2120
|
-
"
|
|
2121
|
-
"name": "enableCellFlashing",
|
|
2470
|
+
"name": "enable-cell-flashing",
|
|
2122
2471
|
"type": {
|
|
2123
2472
|
"text": "boolean"
|
|
2124
2473
|
},
|
|
2125
2474
|
"default": "false",
|
|
2126
2475
|
"description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef",
|
|
2127
|
-
"
|
|
2476
|
+
"fieldName": "enableCellFlashing",
|
|
2128
2477
|
"inheritedFrom": {
|
|
2129
2478
|
"name": "EntityManagement",
|
|
2130
2479
|
"module": "src/entities/entities.ts"
|
|
2131
2480
|
}
|
|
2132
2481
|
},
|
|
2133
2482
|
{
|
|
2134
|
-
"
|
|
2135
|
-
"name": "enableRowFlashing",
|
|
2483
|
+
"name": "enable-row-flashing",
|
|
2136
2484
|
"type": {
|
|
2137
2485
|
"text": "boolean"
|
|
2138
2486
|
},
|
|
2139
2487
|
"default": "false",
|
|
2140
2488
|
"description": "If true, will enable row flashing for all rows for `add` transactions",
|
|
2141
|
-
"
|
|
2489
|
+
"fieldName": "enableRowFlashing",
|
|
2142
2490
|
"inheritedFrom": {
|
|
2143
2491
|
"name": "EntityManagement",
|
|
2144
2492
|
"module": "src/entities/entities.ts"
|
|
2145
2493
|
}
|
|
2146
2494
|
},
|
|
2147
2495
|
{
|
|
2148
|
-
"
|
|
2149
|
-
"name": "datasourceType",
|
|
2496
|
+
"name": "datasource-type",
|
|
2150
2497
|
"type": {
|
|
2151
2498
|
"text": "DatasourceType"
|
|
2152
2499
|
},
|
|
2153
2500
|
"default": "'client'",
|
|
2154
2501
|
"description": "If set to 'server' it will enable Server-Side Row Model and use `grid-pro-server-side-datasource` for the grid of the `entity-list` sub-component.\nBy default `grid-pro-client-side-datasource` will be used.",
|
|
2155
|
-
"
|
|
2502
|
+
"fieldName": "datasourceType",
|
|
2156
2503
|
"inheritedFrom": {
|
|
2157
2504
|
"name": "EntityManagement",
|
|
2158
2505
|
"module": "src/entities/entities.ts"
|
|
2159
2506
|
}
|
|
2160
2507
|
},
|
|
2161
2508
|
{
|
|
2162
|
-
"
|
|
2163
|
-
"name": "gridOptions",
|
|
2509
|
+
"name": "persist-column-state-key",
|
|
2164
2510
|
"type": {
|
|
2165
|
-
"text": "
|
|
2511
|
+
"text": "string"
|
|
2166
2512
|
},
|
|
2167
|
-
"description": "
|
|
2168
|
-
"
|
|
2513
|
+
"description": "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.",
|
|
2514
|
+
"fieldName": "persistColumnStateKey",
|
|
2169
2515
|
"inheritedFrom": {
|
|
2170
2516
|
"name": "EntityManagement",
|
|
2171
2517
|
"module": "src/entities/entities.ts"
|
|
2172
2518
|
}
|
|
2173
2519
|
},
|
|
2174
2520
|
{
|
|
2175
|
-
"
|
|
2176
|
-
"name": "columns",
|
|
2521
|
+
"name": "size-columns-to-fit",
|
|
2177
2522
|
"type": {
|
|
2178
|
-
"text": "
|
|
2523
|
+
"text": "boolean"
|
|
2179
2524
|
},
|
|
2180
|
-
"
|
|
2181
|
-
"privacy": "public",
|
|
2525
|
+
"fieldName": "sizeColumnsToFit",
|
|
2182
2526
|
"inheritedFrom": {
|
|
2183
2527
|
"name": "EntityManagement",
|
|
2184
2528
|
"module": "src/entities/entities.ts"
|
|
2185
2529
|
}
|
|
2186
2530
|
},
|
|
2187
2531
|
{
|
|
2188
|
-
"
|
|
2189
|
-
"name": "datasourceConfig",
|
|
2532
|
+
"name": "enable-filter-bar",
|
|
2190
2533
|
"type": {
|
|
2191
|
-
"text": "
|
|
2534
|
+
"text": "boolean"
|
|
2192
2535
|
},
|
|
2193
|
-
"
|
|
2194
|
-
"privacy": "public",
|
|
2536
|
+
"fieldName": "enableFilterBar",
|
|
2195
2537
|
"inheritedFrom": {
|
|
2196
2538
|
"name": "EntityManagement",
|
|
2197
2539
|
"module": "src/entities/entities.ts"
|
|
2198
2540
|
}
|
|
2199
2541
|
},
|
|
2200
2542
|
{
|
|
2201
|
-
"
|
|
2202
|
-
"name": "formUiSchema",
|
|
2543
|
+
"name": "hide-edit",
|
|
2203
2544
|
"type": {
|
|
2204
|
-
"text": "
|
|
2545
|
+
"text": "boolean"
|
|
2205
2546
|
},
|
|
2547
|
+
"default": "false",
|
|
2548
|
+
"fieldName": "hideEdit",
|
|
2206
2549
|
"inheritedFrom": {
|
|
2207
2550
|
"name": "EntityManagement",
|
|
2208
2551
|
"module": "src/entities/entities.ts"
|
|
2209
2552
|
}
|
|
2210
2553
|
},
|
|
2211
2554
|
{
|
|
2212
|
-
"
|
|
2213
|
-
"name": "formRenderers",
|
|
2555
|
+
"name": "hide-delete",
|
|
2214
2556
|
"type": {
|
|
2215
|
-
"text": "
|
|
2557
|
+
"text": "boolean"
|
|
2216
2558
|
},
|
|
2217
|
-
"default": "
|
|
2218
|
-
"
|
|
2219
|
-
"privacy": "public",
|
|
2559
|
+
"default": "false",
|
|
2560
|
+
"fieldName": "hideDelete",
|
|
2220
2561
|
"inheritedFrom": {
|
|
2221
2562
|
"name": "EntityManagement",
|
|
2222
2563
|
"module": "src/entities/entities.ts"
|
|
2223
2564
|
}
|
|
2224
2565
|
},
|
|
2225
2566
|
{
|
|
2226
|
-
"
|
|
2227
|
-
"name": "selectedEntity",
|
|
2567
|
+
"name": "enable-search-bar",
|
|
2228
2568
|
"type": {
|
|
2229
|
-
"text": "
|
|
2569
|
+
"text": "boolean"
|
|
2230
2570
|
},
|
|
2231
|
-
"
|
|
2232
|
-
"
|
|
2571
|
+
"default": "false",
|
|
2572
|
+
"description": "This attribute controls whether to enable the search-bar.",
|
|
2573
|
+
"fieldName": "enableSearchBar",
|
|
2233
2574
|
"inheritedFrom": {
|
|
2234
2575
|
"name": "EntityManagement",
|
|
2235
2576
|
"module": "src/entities/entities.ts"
|
|
2236
2577
|
}
|
|
2237
2578
|
},
|
|
2238
2579
|
{
|
|
2239
|
-
"
|
|
2240
|
-
"name": "editedEntity",
|
|
2580
|
+
"name": "header-case-type",
|
|
2241
2581
|
"type": {
|
|
2242
|
-
"text": "
|
|
2582
|
+
"text": "GridProCaseType"
|
|
2243
2583
|
},
|
|
2244
|
-
"description": "
|
|
2245
|
-
"
|
|
2584
|
+
"description": "The case type to use for the header names. If not set, the default CONSTANT_CASE will be used.",
|
|
2585
|
+
"fieldName": "headerCaseType",
|
|
2246
2586
|
"inheritedFrom": {
|
|
2247
2587
|
"name": "EntityManagement",
|
|
2248
2588
|
"module": "src/entities/entities.ts"
|
|
2249
2589
|
}
|
|
2250
2590
|
},
|
|
2251
2591
|
{
|
|
2252
|
-
"
|
|
2253
|
-
"name": "defaultEntityValues",
|
|
2592
|
+
"name": "modal-position",
|
|
2254
2593
|
"type": {
|
|
2255
|
-
"text": "
|
|
2594
|
+
"text": "'centre' | 'left' | 'right'"
|
|
2256
2595
|
},
|
|
2257
|
-
"
|
|
2258
|
-
"
|
|
2596
|
+
"default": "'right'",
|
|
2597
|
+
"description": "Determines where the modal dialog will appear on screen",
|
|
2598
|
+
"fieldName": "modalPosition",
|
|
2259
2599
|
"inheritedFrom": {
|
|
2260
2600
|
"name": "EntityManagement",
|
|
2261
2601
|
"module": "src/entities/entities.ts"
|
|
2262
2602
|
}
|
|
2263
2603
|
},
|
|
2264
2604
|
{
|
|
2265
|
-
"
|
|
2266
|
-
"name": "submitting",
|
|
2605
|
+
"name": "crud-menu-position",
|
|
2267
2606
|
"type": {
|
|
2268
|
-
"text": "
|
|
2607
|
+
"text": "CrudMenuPosition"
|
|
2269
2608
|
},
|
|
2609
|
+
"description": "Determines where the buttons will appear",
|
|
2610
|
+
"fieldName": "crudMenuPosition",
|
|
2270
2611
|
"inheritedFrom": {
|
|
2271
2612
|
"name": "EntityManagement",
|
|
2272
2613
|
"module": "src/entities/entities.ts"
|
|
2273
2614
|
}
|
|
2274
2615
|
},
|
|
2275
2616
|
{
|
|
2276
|
-
"
|
|
2277
|
-
"name": "modalFormType",
|
|
2617
|
+
"name": "crud-menu-style",
|
|
2278
2618
|
"type": {
|
|
2279
|
-
"text": "
|
|
2619
|
+
"text": "ActionsMenuStyle"
|
|
2280
2620
|
},
|
|
2281
|
-
"description": "
|
|
2621
|
+
"description": "Determines the style of the buttons",
|
|
2622
|
+
"fieldName": "crudMenuStyle",
|
|
2282
2623
|
"inheritedFrom": {
|
|
2283
2624
|
"name": "EntityManagement",
|
|
2284
2625
|
"module": "src/entities/entities.ts"
|
|
2285
2626
|
}
|
|
2286
2627
|
},
|
|
2287
2628
|
{
|
|
2288
|
-
"
|
|
2289
|
-
"name": "editModalVisible",
|
|
2629
|
+
"name": "crud-action-menu-name",
|
|
2290
2630
|
"type": {
|
|
2291
|
-
"text": "
|
|
2631
|
+
"text": "string"
|
|
2292
2632
|
},
|
|
2293
|
-
"default": "
|
|
2633
|
+
"default": "'⋮'",
|
|
2634
|
+
"description": "The label of the crud action menu",
|
|
2635
|
+
"fieldName": "crudActionMenuName",
|
|
2294
2636
|
"inheritedFrom": {
|
|
2295
2637
|
"name": "EntityManagement",
|
|
2296
2638
|
"module": "src/entities/entities.ts"
|
|
2297
2639
|
}
|
|
2298
|
-
}
|
|
2640
|
+
}
|
|
2641
|
+
]
|
|
2642
|
+
}
|
|
2643
|
+
],
|
|
2644
|
+
"exports": [
|
|
2645
|
+
{
|
|
2646
|
+
"kind": "js",
|
|
2647
|
+
"name": "Profiles",
|
|
2648
|
+
"declaration": {
|
|
2649
|
+
"name": "Profiles",
|
|
2650
|
+
"module": "src/profiles/profiles.ts"
|
|
2651
|
+
}
|
|
2652
|
+
},
|
|
2653
|
+
{
|
|
2654
|
+
"kind": "custom-element-definition",
|
|
2655
|
+
"name": "profile-management",
|
|
2656
|
+
"declaration": {
|
|
2657
|
+
"name": "Profiles",
|
|
2658
|
+
"module": "src/profiles/profiles.ts"
|
|
2659
|
+
}
|
|
2660
|
+
}
|
|
2661
|
+
]
|
|
2662
|
+
},
|
|
2663
|
+
{
|
|
2664
|
+
"kind": "javascript-module",
|
|
2665
|
+
"path": "src/list/index.ts",
|
|
2666
|
+
"declarations": [],
|
|
2667
|
+
"exports": [
|
|
2668
|
+
{
|
|
2669
|
+
"kind": "js",
|
|
2670
|
+
"name": "*",
|
|
2671
|
+
"declaration": {
|
|
2672
|
+
"name": "*",
|
|
2673
|
+
"package": "./list"
|
|
2674
|
+
}
|
|
2675
|
+
}
|
|
2676
|
+
]
|
|
2677
|
+
},
|
|
2678
|
+
{
|
|
2679
|
+
"kind": "javascript-module",
|
|
2680
|
+
"path": "src/list/list.styles.ts",
|
|
2681
|
+
"declarations": [
|
|
2682
|
+
{
|
|
2683
|
+
"kind": "variable",
|
|
2684
|
+
"name": "listStyles",
|
|
2685
|
+
"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`"
|
|
2686
|
+
}
|
|
2687
|
+
],
|
|
2688
|
+
"exports": [
|
|
2689
|
+
{
|
|
2690
|
+
"kind": "js",
|
|
2691
|
+
"name": "listStyles",
|
|
2692
|
+
"declaration": {
|
|
2693
|
+
"name": "listStyles",
|
|
2694
|
+
"module": "src/list/list.styles.ts"
|
|
2695
|
+
}
|
|
2696
|
+
}
|
|
2697
|
+
]
|
|
2698
|
+
},
|
|
2699
|
+
{
|
|
2700
|
+
"kind": "javascript-module",
|
|
2701
|
+
"path": "src/list/list.template.ts",
|
|
2702
|
+
"declarations": [
|
|
2703
|
+
{
|
|
2704
|
+
"kind": "function",
|
|
2705
|
+
"name": "getPrefixedList",
|
|
2706
|
+
"parameters": [
|
|
2299
2707
|
{
|
|
2300
|
-
"
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2708
|
+
"name": "prefix"
|
|
2709
|
+
}
|
|
2710
|
+
]
|
|
2711
|
+
}
|
|
2712
|
+
],
|
|
2713
|
+
"exports": [
|
|
2714
|
+
{
|
|
2715
|
+
"kind": "js",
|
|
2716
|
+
"name": "getPrefixedList",
|
|
2717
|
+
"declaration": {
|
|
2718
|
+
"name": "getPrefixedList",
|
|
2719
|
+
"module": "src/list/list.template.ts"
|
|
2720
|
+
}
|
|
2721
|
+
}
|
|
2722
|
+
]
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
"kind": "javascript-module",
|
|
2726
|
+
"path": "src/list/list.ts",
|
|
2727
|
+
"declarations": [
|
|
2728
|
+
{
|
|
2729
|
+
"kind": "class",
|
|
2730
|
+
"description": "",
|
|
2731
|
+
"name": "List",
|
|
2732
|
+
"members": [
|
|
2307
2733
|
{
|
|
2308
2734
|
"kind": "field",
|
|
2309
|
-
"name": "
|
|
2735
|
+
"name": "prefix",
|
|
2310
2736
|
"type": {
|
|
2311
|
-
"text": "
|
|
2737
|
+
"text": "string"
|
|
2312
2738
|
},
|
|
2313
|
-
"
|
|
2314
|
-
"
|
|
2315
|
-
|
|
2316
|
-
"module": "src/entities/entities.ts"
|
|
2317
|
-
}
|
|
2739
|
+
"default": "'zero'",
|
|
2740
|
+
"description": "Name of the design system prefix that will be used in renderers.",
|
|
2741
|
+
"privacy": "public"
|
|
2318
2742
|
},
|
|
2319
2743
|
{
|
|
2320
2744
|
"kind": "field",
|
|
2321
|
-
"name": "
|
|
2745
|
+
"name": "resourceName",
|
|
2322
2746
|
"type": {
|
|
2323
|
-
"text": "
|
|
2747
|
+
"text": "string"
|
|
2324
2748
|
},
|
|
2325
|
-
"
|
|
2326
|
-
"name": "EntityManagement",
|
|
2327
|
-
"module": "src/entities/entities.ts"
|
|
2328
|
-
}
|
|
2749
|
+
"default": "''"
|
|
2329
2750
|
},
|
|
2330
2751
|
{
|
|
2331
2752
|
"kind": "field",
|
|
2332
|
-
"name": "
|
|
2753
|
+
"name": "title",
|
|
2333
2754
|
"type": {
|
|
2334
|
-
"text": "
|
|
2755
|
+
"text": "string"
|
|
2335
2756
|
},
|
|
2336
|
-
"
|
|
2337
|
-
|
|
2338
|
-
|
|
2757
|
+
"default": "''"
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"kind": "field",
|
|
2761
|
+
"name": "persistColumnStateKey",
|
|
2762
|
+
"type": {
|
|
2763
|
+
"text": "string"
|
|
2339
2764
|
}
|
|
2340
2765
|
},
|
|
2341
2766
|
{
|
|
2342
2767
|
"kind": "field",
|
|
2343
|
-
"name": "
|
|
2768
|
+
"name": "sizeColumnsToFit",
|
|
2344
2769
|
"type": {
|
|
2345
2770
|
"text": "boolean"
|
|
2346
|
-
},
|
|
2347
|
-
"default": "false",
|
|
2348
|
-
"inheritedFrom": {
|
|
2349
|
-
"name": "EntityManagement",
|
|
2350
|
-
"module": "src/entities/entities.ts"
|
|
2351
2771
|
}
|
|
2352
2772
|
},
|
|
2353
2773
|
{
|
|
2354
2774
|
"kind": "field",
|
|
2355
|
-
"name": "
|
|
2775
|
+
"name": "rowSelection",
|
|
2776
|
+
"type": {
|
|
2777
|
+
"text": "string"
|
|
2778
|
+
}
|
|
2779
|
+
},
|
|
2780
|
+
{
|
|
2781
|
+
"kind": "field",
|
|
2782
|
+
"name": "enableFilterBar",
|
|
2356
2783
|
"type": {
|
|
2357
2784
|
"text": "boolean"
|
|
2358
|
-
},
|
|
2359
|
-
"default": "false",
|
|
2360
|
-
"inheritedFrom": {
|
|
2361
|
-
"name": "EntityManagement",
|
|
2362
|
-
"module": "src/entities/entities.ts"
|
|
2363
2785
|
}
|
|
2364
2786
|
},
|
|
2365
2787
|
{
|
|
2366
2788
|
"kind": "field",
|
|
2367
|
-
"name": "
|
|
2789
|
+
"name": "asyncAdd",
|
|
2368
2790
|
"type": {
|
|
2369
2791
|
"text": "boolean"
|
|
2370
2792
|
},
|
|
2371
|
-
"default": "false"
|
|
2372
|
-
"description": "This attribute controls whether to enable the search-bar.",
|
|
2373
|
-
"privacy": "public",
|
|
2374
|
-
"inheritedFrom": {
|
|
2375
|
-
"name": "EntityManagement",
|
|
2376
|
-
"module": "src/entities/entities.ts"
|
|
2377
|
-
}
|
|
2793
|
+
"default": "false"
|
|
2378
2794
|
},
|
|
2379
2795
|
{
|
|
2380
2796
|
"kind": "field",
|
|
2381
|
-
"name": "
|
|
2797
|
+
"name": "asyncRemove",
|
|
2382
2798
|
"type": {
|
|
2383
|
-
"text": "
|
|
2799
|
+
"text": "boolean"
|
|
2384
2800
|
},
|
|
2385
|
-
"
|
|
2386
|
-
"privacy": "public",
|
|
2387
|
-
"inheritedFrom": {
|
|
2388
|
-
"name": "EntityManagement",
|
|
2389
|
-
"module": "src/entities/entities.ts"
|
|
2390
|
-
}
|
|
2801
|
+
"default": "false"
|
|
2391
2802
|
},
|
|
2392
2803
|
{
|
|
2393
2804
|
"kind": "field",
|
|
2394
|
-
"name": "
|
|
2805
|
+
"name": "asyncUpdate",
|
|
2395
2806
|
"type": {
|
|
2396
|
-
"text": "
|
|
2807
|
+
"text": "boolean"
|
|
2397
2808
|
},
|
|
2398
|
-
"
|
|
2399
|
-
"name": "EntityManagement",
|
|
2400
|
-
"module": "src/entities/entities.ts"
|
|
2401
|
-
}
|
|
2809
|
+
"default": "true"
|
|
2402
2810
|
},
|
|
2403
2811
|
{
|
|
2404
2812
|
"kind": "field",
|
|
2405
|
-
"name": "
|
|
2813
|
+
"name": "enableCellFlashing",
|
|
2406
2814
|
"type": {
|
|
2407
|
-
"text": "
|
|
2815
|
+
"text": "boolean"
|
|
2408
2816
|
},
|
|
2409
|
-
"default": "
|
|
2410
|
-
"description": "Determines where the modal dialog will appear on screen",
|
|
2411
|
-
"privacy": "public",
|
|
2412
|
-
"inheritedFrom": {
|
|
2413
|
-
"name": "EntityManagement",
|
|
2414
|
-
"module": "src/entities/entities.ts"
|
|
2415
|
-
}
|
|
2817
|
+
"default": "false"
|
|
2416
2818
|
},
|
|
2417
2819
|
{
|
|
2418
2820
|
"kind": "field",
|
|
2419
|
-
"name": "
|
|
2821
|
+
"name": "enableRowFlashing",
|
|
2420
2822
|
"type": {
|
|
2421
|
-
"text": "
|
|
2823
|
+
"text": "boolean"
|
|
2422
2824
|
},
|
|
2423
|
-
"
|
|
2424
|
-
"privacy": "public",
|
|
2425
|
-
"inheritedFrom": {
|
|
2426
|
-
"name": "EntityManagement",
|
|
2427
|
-
"module": "src/entities/entities.ts"
|
|
2428
|
-
}
|
|
2825
|
+
"default": "false"
|
|
2429
2826
|
},
|
|
2430
2827
|
{
|
|
2431
2828
|
"kind": "field",
|
|
2432
|
-
"name": "
|
|
2829
|
+
"name": "hideEdit",
|
|
2433
2830
|
"type": {
|
|
2434
|
-
"text": "
|
|
2831
|
+
"text": "boolean"
|
|
2435
2832
|
},
|
|
2436
|
-
"
|
|
2437
|
-
"privacy": "public",
|
|
2438
|
-
"inheritedFrom": {
|
|
2439
|
-
"name": "EntityManagement",
|
|
2440
|
-
"module": "src/entities/entities.ts"
|
|
2441
|
-
}
|
|
2833
|
+
"default": "false"
|
|
2442
2834
|
},
|
|
2443
2835
|
{
|
|
2444
2836
|
"kind": "field",
|
|
2445
|
-
"name": "
|
|
2837
|
+
"name": "hideDelete",
|
|
2446
2838
|
"type": {
|
|
2447
|
-
"text": "
|
|
2839
|
+
"text": "boolean"
|
|
2448
2840
|
},
|
|
2449
|
-
"default": "
|
|
2450
|
-
"description": "The label of the crud action menu",
|
|
2451
|
-
"inheritedFrom": {
|
|
2452
|
-
"name": "EntityManagement",
|
|
2453
|
-
"module": "src/entities/entities.ts"
|
|
2454
|
-
}
|
|
2841
|
+
"default": "false"
|
|
2455
2842
|
},
|
|
2456
2843
|
{
|
|
2457
2844
|
"kind": "field",
|
|
2458
|
-
"name": "
|
|
2459
|
-
"
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
"module": "src/entities/entities.ts"
|
|
2464
|
-
}
|
|
2465
|
-
},
|
|
2466
|
-
{
|
|
2467
|
-
"kind": "method",
|
|
2468
|
-
"name": "getTitleBasedOnActionOrType",
|
|
2469
|
-
"privacy": "public",
|
|
2470
|
-
"parameters": [
|
|
2471
|
-
{
|
|
2472
|
-
"name": "actionOrType",
|
|
2473
|
-
"type": {
|
|
2474
|
-
"text": "CrudAction | ModalFormType"
|
|
2475
|
-
},
|
|
2476
|
-
"description": "The crud action or modal form type"
|
|
2477
|
-
}
|
|
2478
|
-
],
|
|
2479
|
-
"description": "The helper function to determine the title of the modal form or button based on the action or type",
|
|
2480
|
-
"inheritedFrom": {
|
|
2481
|
-
"name": "EntityManagement",
|
|
2482
|
-
"module": "src/entities/entities.ts"
|
|
2483
|
-
}
|
|
2845
|
+
"name": "datasourceType",
|
|
2846
|
+
"type": {
|
|
2847
|
+
"text": "DatasourceType"
|
|
2848
|
+
},
|
|
2849
|
+
"default": "'client'"
|
|
2484
2850
|
},
|
|
2485
2851
|
{
|
|
2486
2852
|
"kind": "field",
|
|
2487
|
-
"name": "
|
|
2488
|
-
"
|
|
2489
|
-
|
|
2490
|
-
"inheritedFrom": {
|
|
2491
|
-
"name": "EntityManagement",
|
|
2492
|
-
"module": "src/entities/entities.ts"
|
|
2853
|
+
"name": "headerCaseType",
|
|
2854
|
+
"type": {
|
|
2855
|
+
"text": "GridProCaseType"
|
|
2493
2856
|
}
|
|
2494
2857
|
},
|
|
2495
2858
|
{
|
|
2496
2859
|
"kind": "field",
|
|
2497
|
-
"name": "
|
|
2860
|
+
"name": "grid",
|
|
2498
2861
|
"type": {
|
|
2499
|
-
"text": "
|
|
2862
|
+
"text": "ZeroGridPro"
|
|
2500
2863
|
},
|
|
2501
|
-
"
|
|
2502
|
-
"readonly": true,
|
|
2503
|
-
"inheritedFrom": {
|
|
2504
|
-
"name": "EntityManagement",
|
|
2505
|
-
"module": "src/entities/entities.ts"
|
|
2506
|
-
}
|
|
2864
|
+
"privacy": "public"
|
|
2507
2865
|
},
|
|
2508
2866
|
{
|
|
2509
2867
|
"kind": "field",
|
|
2510
|
-
"name": "
|
|
2868
|
+
"name": "datasource",
|
|
2511
2869
|
"type": {
|
|
2512
|
-
"text": "
|
|
2870
|
+
"text": "GridProGenesisDatasource"
|
|
2513
2871
|
},
|
|
2514
|
-
"
|
|
2515
|
-
"readonly": true,
|
|
2516
|
-
"inheritedFrom": {
|
|
2517
|
-
"name": "EntityManagement",
|
|
2518
|
-
"module": "src/entities/entities.ts"
|
|
2519
|
-
}
|
|
2872
|
+
"privacy": "public"
|
|
2520
2873
|
},
|
|
2521
2874
|
{
|
|
2522
2875
|
"kind": "field",
|
|
2523
|
-
"name": "
|
|
2876
|
+
"name": "gridOptions",
|
|
2524
2877
|
"type": {
|
|
2525
|
-
"text": "
|
|
2526
|
-
},
|
|
2527
|
-
"description": "Determines whether there is a selected entity",
|
|
2528
|
-
"readonly": true,
|
|
2529
|
-
"inheritedFrom": {
|
|
2530
|
-
"name": "EntityManagement",
|
|
2531
|
-
"module": "src/entities/entities.ts"
|
|
2878
|
+
"text": "GridOptions"
|
|
2532
2879
|
}
|
|
2533
2880
|
},
|
|
2534
2881
|
{
|
|
2535
|
-
"kind": "
|
|
2536
|
-
"name": "
|
|
2537
|
-
"
|
|
2538
|
-
|
|
2539
|
-
"type": {
|
|
2540
|
-
"text": ""
|
|
2541
|
-
}
|
|
2542
|
-
},
|
|
2543
|
-
"parameters": [
|
|
2544
|
-
{
|
|
2545
|
-
"name": "slotName",
|
|
2546
|
-
"type": {
|
|
2547
|
-
"text": "string"
|
|
2548
|
-
},
|
|
2549
|
-
"description": "The name of the slot to check."
|
|
2550
|
-
}
|
|
2551
|
-
],
|
|
2552
|
-
"description": "Checks if a slot contains any content.",
|
|
2553
|
-
"inheritedFrom": {
|
|
2554
|
-
"name": "EntityManagement",
|
|
2555
|
-
"module": "src/entities/entities.ts"
|
|
2882
|
+
"kind": "field",
|
|
2883
|
+
"name": "columns",
|
|
2884
|
+
"type": {
|
|
2885
|
+
"text": "ColDef[]"
|
|
2556
2886
|
}
|
|
2557
2887
|
},
|
|
2558
2888
|
{
|
|
2559
|
-
"kind": "
|
|
2560
|
-
"name": "
|
|
2561
|
-
"
|
|
2562
|
-
"
|
|
2563
|
-
"text": "Node"
|
|
2564
|
-
}
|
|
2565
|
-
},
|
|
2566
|
-
"description": "Override the deepClone method to ensure that observable attributes are cloned",
|
|
2567
|
-
"privacy": "public",
|
|
2568
|
-
"inheritedFrom": {
|
|
2569
|
-
"name": "EntityManagement",
|
|
2570
|
-
"module": "src/entities/entities.ts"
|
|
2889
|
+
"kind": "field",
|
|
2890
|
+
"name": "datasourceConfig",
|
|
2891
|
+
"type": {
|
|
2892
|
+
"text": "DatasourceConfiguration"
|
|
2571
2893
|
}
|
|
2572
2894
|
},
|
|
2573
2895
|
{
|
|
2574
|
-
"kind": "
|
|
2575
|
-
"name": "
|
|
2576
|
-
"
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
"type": {
|
|
2581
|
-
"text": "CustomEvent"
|
|
2582
|
-
},
|
|
2583
|
-
"description": "CustomEvent which contains the payload for the entity to submit to the backend\n\nEmits an event upon error"
|
|
2584
|
-
}
|
|
2585
|
-
],
|
|
2586
|
-
"description": "Event handler for when the user submits the action for the currently open form, either editing or adding the entity",
|
|
2587
|
-
"inheritedFrom": {
|
|
2588
|
-
"name": "EntityManagement",
|
|
2589
|
-
"module": "src/entities/entities.ts"
|
|
2590
|
-
}
|
|
2896
|
+
"kind": "field",
|
|
2897
|
+
"name": "actionButtonsConfig",
|
|
2898
|
+
"type": {
|
|
2899
|
+
"text": "array"
|
|
2900
|
+
},
|
|
2901
|
+
"default": "[]"
|
|
2591
2902
|
},
|
|
2592
2903
|
{
|
|
2593
|
-
"kind": "
|
|
2594
|
-
"name": "
|
|
2595
|
-
"
|
|
2596
|
-
|
|
2597
|
-
{
|
|
2598
|
-
"name": "e",
|
|
2599
|
-
"type": {
|
|
2600
|
-
"text": "CustomEvent"
|
|
2601
|
-
}
|
|
2602
|
-
}
|
|
2603
|
-
],
|
|
2604
|
-
"inheritedFrom": {
|
|
2605
|
-
"name": "EntityManagement",
|
|
2606
|
-
"module": "src/entities/entities.ts"
|
|
2904
|
+
"kind": "field",
|
|
2905
|
+
"name": "deleteEvent",
|
|
2906
|
+
"type": {
|
|
2907
|
+
"text": "string"
|
|
2607
2908
|
}
|
|
2608
2909
|
},
|
|
2609
2910
|
{
|
|
2610
|
-
"kind": "
|
|
2611
|
-
"name": "
|
|
2612
|
-
"
|
|
2613
|
-
|
|
2614
|
-
"name": "EntityManagement",
|
|
2615
|
-
"module": "src/entities/entities.ts"
|
|
2911
|
+
"kind": "field",
|
|
2912
|
+
"name": "updateEvent",
|
|
2913
|
+
"type": {
|
|
2914
|
+
"text": "string"
|
|
2616
2915
|
}
|
|
2617
2916
|
},
|
|
2618
2917
|
{
|
|
2619
|
-
"kind": "field",
|
|
2620
|
-
"name": "
|
|
2621
|
-
"
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
}
|
|
2918
|
+
"kind": "field",
|
|
2919
|
+
"name": "connect",
|
|
2920
|
+
"type": {
|
|
2921
|
+
"text": "Connect"
|
|
2922
|
+
},
|
|
2923
|
+
"privacy": "protected"
|
|
2626
2924
|
},
|
|
2627
2925
|
{
|
|
2628
2926
|
"kind": "field",
|
|
@@ -2630,414 +2928,222 @@
|
|
|
2630
2928
|
"type": {
|
|
2631
2929
|
"text": "boolean"
|
|
2632
2930
|
},
|
|
2633
|
-
"readonly": true
|
|
2634
|
-
"inheritedFrom": {
|
|
2635
|
-
"name": "EntityManagement",
|
|
2636
|
-
"module": "src/entities/entities.ts"
|
|
2637
|
-
}
|
|
2931
|
+
"readonly": true
|
|
2638
2932
|
},
|
|
2639
2933
|
{
|
|
2640
2934
|
"kind": "method",
|
|
2641
|
-
"name": "
|
|
2642
|
-
"privacy": "
|
|
2935
|
+
"name": "onCellEditingStopped",
|
|
2936
|
+
"privacy": "private",
|
|
2643
2937
|
"parameters": [
|
|
2644
2938
|
{
|
|
2645
2939
|
"name": "event",
|
|
2646
2940
|
"type": {
|
|
2647
|
-
"text": "
|
|
2941
|
+
"text": "CellEditRequestEvent"
|
|
2648
2942
|
}
|
|
2649
2943
|
}
|
|
2650
|
-
]
|
|
2651
|
-
"inheritedFrom": {
|
|
2652
|
-
"name": "EntityManagement",
|
|
2653
|
-
"module": "src/entities/entities.ts"
|
|
2654
|
-
}
|
|
2944
|
+
]
|
|
2655
2945
|
},
|
|
2656
2946
|
{
|
|
2657
|
-
"kind": "
|
|
2658
|
-
"name": "
|
|
2659
|
-
"
|
|
2660
|
-
{
|
|
2661
|
-
"name": "options",
|
|
2662
|
-
"type": {
|
|
2663
|
-
"text": "SelectedOption<string>[]"
|
|
2664
|
-
}
|
|
2665
|
-
}
|
|
2666
|
-
],
|
|
2667
|
-
"inheritedFrom": {
|
|
2668
|
-
"name": "EntityManagement",
|
|
2669
|
-
"module": "src/entities/entities.ts"
|
|
2670
|
-
}
|
|
2947
|
+
"kind": "field",
|
|
2948
|
+
"name": "criteria",
|
|
2949
|
+
"readonly": true
|
|
2671
2950
|
},
|
|
2672
2951
|
{
|
|
2673
|
-
"kind": "
|
|
2674
|
-
"name": "
|
|
2675
|
-
"
|
|
2676
|
-
{
|
|
2677
|
-
"name": "options",
|
|
2678
|
-
"type": {
|
|
2679
|
-
"text": "SelectedOption<string>[]"
|
|
2680
|
-
}
|
|
2681
|
-
}
|
|
2682
|
-
],
|
|
2683
|
-
"inheritedFrom": {
|
|
2684
|
-
"name": "EntityManagement",
|
|
2685
|
-
"module": "src/entities/entities.ts"
|
|
2686
|
-
}
|
|
2952
|
+
"kind": "field",
|
|
2953
|
+
"name": "fields",
|
|
2954
|
+
"readonly": true
|
|
2687
2955
|
},
|
|
2688
2956
|
{
|
|
2689
|
-
"kind": "
|
|
2690
|
-
"name": "
|
|
2691
|
-
"
|
|
2692
|
-
"parameters": [
|
|
2693
|
-
{
|
|
2694
|
-
"name": "e",
|
|
2695
|
-
"type": {
|
|
2696
|
-
"text": "CustomEvent<string>"
|
|
2697
|
-
}
|
|
2698
|
-
}
|
|
2699
|
-
],
|
|
2700
|
-
"inheritedFrom": {
|
|
2701
|
-
"name": "EntityManagement",
|
|
2702
|
-
"module": "src/entities/entities.ts"
|
|
2703
|
-
}
|
|
2957
|
+
"kind": "field",
|
|
2958
|
+
"name": "isSnapshot",
|
|
2959
|
+
"readonly": true
|
|
2704
2960
|
},
|
|
2705
2961
|
{
|
|
2706
|
-
"kind": "
|
|
2707
|
-
"name": "
|
|
2708
|
-
"
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
"
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2962
|
+
"kind": "field",
|
|
2963
|
+
"name": "maxRows",
|
|
2964
|
+
"readonly": true
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
"kind": "field",
|
|
2968
|
+
"name": "maxView",
|
|
2969
|
+
"readonly": true
|
|
2970
|
+
},
|
|
2971
|
+
{
|
|
2972
|
+
"kind": "field",
|
|
2973
|
+
"name": "movingView",
|
|
2974
|
+
"readonly": true
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
"kind": "field",
|
|
2978
|
+
"name": "orderBy",
|
|
2979
|
+
"readonly": true
|
|
2980
|
+
},
|
|
2981
|
+
{
|
|
2982
|
+
"kind": "field",
|
|
2983
|
+
"name": "pollingInterval",
|
|
2984
|
+
"readonly": true
|
|
2985
|
+
},
|
|
2986
|
+
{
|
|
2987
|
+
"kind": "field",
|
|
2988
|
+
"name": "request",
|
|
2989
|
+
"readonly": true
|
|
2990
|
+
},
|
|
2991
|
+
{
|
|
2992
|
+
"kind": "field",
|
|
2993
|
+
"name": "reverse",
|
|
2994
|
+
"readonly": true
|
|
2721
2995
|
},
|
|
2722
2996
|
{
|
|
2723
2997
|
"kind": "method",
|
|
2724
|
-
"name": "
|
|
2725
|
-
"privacy": "
|
|
2998
|
+
"name": "handleFilterChanged",
|
|
2999
|
+
"privacy": "private",
|
|
2726
3000
|
"parameters": [
|
|
2727
3001
|
{
|
|
2728
|
-
"name": "e"
|
|
2729
|
-
"type": {
|
|
2730
|
-
"text": "CustomEvent"
|
|
2731
|
-
}
|
|
3002
|
+
"name": "e"
|
|
2732
3003
|
}
|
|
2733
|
-
]
|
|
2734
|
-
"inheritedFrom": {
|
|
2735
|
-
"name": "EntityManagement",
|
|
2736
|
-
"module": "src/entities/entities.ts"
|
|
2737
|
-
}
|
|
3004
|
+
]
|
|
2738
3005
|
},
|
|
2739
3006
|
{
|
|
2740
3007
|
"kind": "method",
|
|
2741
|
-
"name": "
|
|
3008
|
+
"name": "handleFilterCleared",
|
|
2742
3009
|
"privacy": "private",
|
|
2743
3010
|
"parameters": [
|
|
2744
3011
|
{
|
|
2745
|
-
"name": "e"
|
|
2746
|
-
"type": {
|
|
2747
|
-
"text": "CustomEvent"
|
|
2748
|
-
}
|
|
3012
|
+
"name": "e"
|
|
2749
3013
|
}
|
|
2750
|
-
]
|
|
2751
|
-
"inheritedFrom": {
|
|
2752
|
-
"name": "EntityManagement",
|
|
2753
|
-
"module": "src/entities/entities.ts"
|
|
2754
|
-
}
|
|
3014
|
+
]
|
|
2755
3015
|
},
|
|
2756
3016
|
{
|
|
2757
3017
|
"kind": "method",
|
|
2758
|
-
"name": "
|
|
3018
|
+
"name": "select",
|
|
2759
3019
|
"privacy": "private",
|
|
2760
|
-
"inheritedFrom": {
|
|
2761
|
-
"name": "EntityManagement",
|
|
2762
|
-
"module": "src/entities/entities.ts"
|
|
2763
|
-
}
|
|
2764
|
-
},
|
|
2765
|
-
{
|
|
2766
|
-
"kind": "method",
|
|
2767
|
-
"name": "emitCrud",
|
|
2768
|
-
"privacy": "public",
|
|
2769
3020
|
"parameters": [
|
|
2770
3021
|
{
|
|
2771
|
-
"name": "
|
|
2772
|
-
"type": {
|
|
2773
|
-
"text": "'create' | 'edit' | 'delete'"
|
|
2774
|
-
},
|
|
2775
|
-
"description": "the action to emit"
|
|
3022
|
+
"name": "e"
|
|
2776
3023
|
}
|
|
2777
|
-
]
|
|
2778
|
-
"description": "Emit the CRUD event for the selected entity",
|
|
2779
|
-
"inheritedFrom": {
|
|
2780
|
-
"name": "EntityManagement",
|
|
2781
|
-
"module": "src/entities/entities.ts"
|
|
2782
|
-
}
|
|
3024
|
+
]
|
|
2783
3025
|
},
|
|
2784
3026
|
{
|
|
2785
3027
|
"kind": "method",
|
|
2786
3028
|
"name": "selectionChanged",
|
|
2787
|
-
"privacy": "
|
|
3029
|
+
"privacy": "private",
|
|
2788
3030
|
"parameters": [
|
|
2789
3031
|
{
|
|
2790
|
-
"name": "
|
|
3032
|
+
"name": "e",
|
|
2791
3033
|
"type": {
|
|
2792
3034
|
"text": "CustomEvent<SelectionChangedEvent>"
|
|
2793
3035
|
}
|
|
2794
3036
|
}
|
|
2795
|
-
]
|
|
2796
|
-
"description": "The event handler for when the selection changes in the grid.",
|
|
2797
|
-
"inheritedFrom": {
|
|
2798
|
-
"name": "EntityManagement",
|
|
2799
|
-
"module": "src/entities/entities.ts"
|
|
2800
|
-
}
|
|
2801
|
-
}
|
|
2802
|
-
],
|
|
2803
|
-
"superclass": {
|
|
2804
|
-
"name": "EntityManagement",
|
|
2805
|
-
"module": "/src/entities"
|
|
2806
|
-
},
|
|
2807
|
-
"deprecated": "- Use '\\@genesislcap/pbc-auth' instead. 'https://www.npmjs.com/package/\\@genesislcap/pbc-auth'",
|
|
2808
|
-
"tagName": "profile-management",
|
|
2809
|
-
"customElement": true,
|
|
2810
|
-
"attributes": [
|
|
2811
|
-
{
|
|
2812
|
-
"name": "design-system-prefix",
|
|
2813
|
-
"type": {
|
|
2814
|
-
"text": "string"
|
|
2815
|
-
},
|
|
2816
|
-
"default": "'zero'",
|
|
2817
|
-
"description": "Name of the design system prefix that will be used in renderers.",
|
|
2818
|
-
"fieldName": "prefix",
|
|
2819
|
-
"inheritedFrom": {
|
|
2820
|
-
"name": "EntityManagement",
|
|
2821
|
-
"module": "src/entities/entities.ts"
|
|
2822
|
-
}
|
|
2823
|
-
},
|
|
2824
|
-
{
|
|
2825
|
-
"name": "resourceName",
|
|
2826
|
-
"type": {
|
|
2827
|
-
"text": "string"
|
|
2828
|
-
},
|
|
2829
|
-
"description": "Name of the backend resource which contain the entities to manage",
|
|
2830
|
-
"fieldName": "resourceName",
|
|
2831
|
-
"inheritedFrom": {
|
|
2832
|
-
"name": "EntityManagement",
|
|
2833
|
-
"module": "src/entities/entities.ts"
|
|
2834
|
-
}
|
|
2835
|
-
},
|
|
2836
|
-
{
|
|
2837
|
-
"name": "readEvent",
|
|
2838
|
-
"type": {
|
|
2839
|
-
"text": "string"
|
|
2840
|
-
},
|
|
2841
|
-
"fieldName": "readEvent",
|
|
2842
|
-
"inheritedFrom": {
|
|
2843
|
-
"name": "EntityManagement",
|
|
2844
|
-
"module": "src/entities/entities.ts"
|
|
2845
|
-
}
|
|
2846
|
-
},
|
|
2847
|
-
{
|
|
2848
|
-
"type": {
|
|
2849
|
-
"text": "boolean"
|
|
2850
|
-
},
|
|
2851
|
-
"fieldName": "readonly",
|
|
2852
|
-
"inheritedFrom": {
|
|
2853
|
-
"name": "EntityManagement",
|
|
2854
|
-
"module": "src/entities/entities.ts"
|
|
2855
|
-
}
|
|
2856
|
-
},
|
|
2857
|
-
{
|
|
2858
|
-
"name": "updateEvent",
|
|
2859
|
-
"type": {
|
|
2860
|
-
"text": "string"
|
|
2861
|
-
},
|
|
2862
|
-
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
2863
|
-
"fieldName": "updateEvent",
|
|
2864
|
-
"inheritedFrom": {
|
|
2865
|
-
"name": "EntityManagement",
|
|
2866
|
-
"module": "src/entities/entities.ts"
|
|
2867
|
-
}
|
|
2868
|
-
},
|
|
2869
|
-
{
|
|
2870
|
-
"name": "deleteEvent",
|
|
2871
|
-
"type": {
|
|
2872
|
-
"text": "string"
|
|
2873
|
-
},
|
|
2874
|
-
"description": "Name of the event handler on the Genesis server which handles deleting the entity",
|
|
2875
|
-
"fieldName": "deleteEvent",
|
|
2876
|
-
"inheritedFrom": {
|
|
2877
|
-
"name": "EntityManagement",
|
|
2878
|
-
"module": "src/entities/entities.ts"
|
|
2879
|
-
}
|
|
3037
|
+
]
|
|
2880
3038
|
},
|
|
2881
3039
|
{
|
|
2882
|
-
"
|
|
2883
|
-
"
|
|
2884
|
-
|
|
2885
|
-
},
|
|
2886
|
-
"description": "Name of the event handler on the Genesis server which handles creating an entity",
|
|
2887
|
-
"fieldName": "createEvent",
|
|
2888
|
-
"inheritedFrom": {
|
|
2889
|
-
"name": "EntityManagement",
|
|
2890
|
-
"module": "src/entities/entities.ts"
|
|
2891
|
-
}
|
|
3040
|
+
"kind": "field",
|
|
3041
|
+
"name": "edit",
|
|
3042
|
+
"privacy": "private"
|
|
2892
3043
|
},
|
|
2893
3044
|
{
|
|
2894
|
-
"
|
|
3045
|
+
"kind": "method",
|
|
3046
|
+
"name": "delete",
|
|
3047
|
+
"parameters": [
|
|
3048
|
+
{
|
|
3049
|
+
"name": "e"
|
|
3050
|
+
}
|
|
3051
|
+
]
|
|
3052
|
+
}
|
|
3053
|
+
],
|
|
3054
|
+
"attributes": [
|
|
3055
|
+
{
|
|
3056
|
+
"name": "design-system-prefix",
|
|
2895
3057
|
"type": {
|
|
2896
3058
|
"text": "string"
|
|
2897
3059
|
},
|
|
2898
|
-
"
|
|
2899
|
-
"
|
|
2900
|
-
"
|
|
2901
|
-
"name": "EntityManagement",
|
|
2902
|
-
"module": "src/entities/entities.ts"
|
|
2903
|
-
}
|
|
3060
|
+
"default": "'zero'",
|
|
3061
|
+
"description": "Name of the design system prefix that will be used in renderers.",
|
|
3062
|
+
"fieldName": "prefix"
|
|
2904
3063
|
},
|
|
2905
3064
|
{
|
|
2906
|
-
"name": "
|
|
3065
|
+
"name": "resourceName",
|
|
2907
3066
|
"type": {
|
|
2908
3067
|
"text": "string"
|
|
2909
3068
|
},
|
|
2910
|
-
"
|
|
2911
|
-
"fieldName": "
|
|
2912
|
-
"inheritedFrom": {
|
|
2913
|
-
"name": "EntityManagement",
|
|
2914
|
-
"module": "src/entities/entities.ts"
|
|
2915
|
-
}
|
|
3069
|
+
"default": "''",
|
|
3070
|
+
"fieldName": "resourceName"
|
|
2916
3071
|
},
|
|
2917
3072
|
{
|
|
2918
|
-
"name": "
|
|
3073
|
+
"name": "title",
|
|
2919
3074
|
"type": {
|
|
2920
|
-
"text": "
|
|
3075
|
+
"text": "string"
|
|
2921
3076
|
},
|
|
2922
|
-
"default": "
|
|
2923
|
-
"
|
|
2924
|
-
"fieldName": "asyncAdd",
|
|
2925
|
-
"inheritedFrom": {
|
|
2926
|
-
"name": "EntityManagement",
|
|
2927
|
-
"module": "src/entities/entities.ts"
|
|
2928
|
-
}
|
|
3077
|
+
"default": "''",
|
|
3078
|
+
"fieldName": "title"
|
|
2929
3079
|
},
|
|
2930
3080
|
{
|
|
2931
|
-
"name": "
|
|
3081
|
+
"name": "persist-column-state-key",
|
|
2932
3082
|
"type": {
|
|
2933
|
-
"text": "
|
|
3083
|
+
"text": "string"
|
|
2934
3084
|
},
|
|
2935
|
-
"
|
|
2936
|
-
"description": "Whether to use the `applyTransactionAsync` function for *remove* transactions",
|
|
2937
|
-
"fieldName": "asyncRemove",
|
|
2938
|
-
"inheritedFrom": {
|
|
2939
|
-
"name": "EntityManagement",
|
|
2940
|
-
"module": "src/entities/entities.ts"
|
|
2941
|
-
}
|
|
3085
|
+
"fieldName": "persistColumnStateKey"
|
|
2942
3086
|
},
|
|
2943
3087
|
{
|
|
2944
|
-
"name": "
|
|
3088
|
+
"name": "size-columns-to-fit",
|
|
2945
3089
|
"type": {
|
|
2946
3090
|
"text": "boolean"
|
|
2947
3091
|
},
|
|
2948
|
-
"
|
|
2949
|
-
"description": "Whether to use the `applyTransactionAsync` function for *update* transactions",
|
|
2950
|
-
"fieldName": "asyncUpdate",
|
|
2951
|
-
"inheritedFrom": {
|
|
2952
|
-
"name": "EntityManagement",
|
|
2953
|
-
"module": "src/entities/entities.ts"
|
|
2954
|
-
}
|
|
3092
|
+
"fieldName": "sizeColumnsToFit"
|
|
2955
3093
|
},
|
|
2956
3094
|
{
|
|
2957
3095
|
"name": "row-selection",
|
|
2958
3096
|
"type": {
|
|
2959
3097
|
"text": "string"
|
|
2960
3098
|
},
|
|
2961
|
-
"
|
|
2962
|
-
"description": "This attribute allows you to change row-selection to 'single' or 'multiple' which will allow you to select single or multiple rows.",
|
|
2963
|
-
"fieldName": "rowSelection",
|
|
2964
|
-
"inheritedFrom": {
|
|
2965
|
-
"name": "EntityManagement",
|
|
2966
|
-
"module": "src/entities/entities.ts"
|
|
2967
|
-
}
|
|
3099
|
+
"fieldName": "rowSelection"
|
|
2968
3100
|
},
|
|
2969
3101
|
{
|
|
2970
|
-
"name": "enable-
|
|
3102
|
+
"name": "enable-filter-bar",
|
|
2971
3103
|
"type": {
|
|
2972
3104
|
"text": "boolean"
|
|
2973
3105
|
},
|
|
2974
|
-
"
|
|
2975
|
-
"description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef",
|
|
2976
|
-
"fieldName": "enableCellFlashing",
|
|
2977
|
-
"inheritedFrom": {
|
|
2978
|
-
"name": "EntityManagement",
|
|
2979
|
-
"module": "src/entities/entities.ts"
|
|
2980
|
-
}
|
|
3106
|
+
"fieldName": "enableFilterBar"
|
|
2981
3107
|
},
|
|
2982
3108
|
{
|
|
2983
|
-
"name": "
|
|
3109
|
+
"name": "async-add",
|
|
2984
3110
|
"type": {
|
|
2985
3111
|
"text": "boolean"
|
|
2986
3112
|
},
|
|
2987
3113
|
"default": "false",
|
|
2988
|
-
"
|
|
2989
|
-
"fieldName": "enableRowFlashing",
|
|
2990
|
-
"inheritedFrom": {
|
|
2991
|
-
"name": "EntityManagement",
|
|
2992
|
-
"module": "src/entities/entities.ts"
|
|
2993
|
-
}
|
|
3114
|
+
"fieldName": "asyncAdd"
|
|
2994
3115
|
},
|
|
2995
3116
|
{
|
|
2996
|
-
"name": "
|
|
3117
|
+
"name": "async-remove",
|
|
2997
3118
|
"type": {
|
|
2998
|
-
"text": "
|
|
3119
|
+
"text": "boolean"
|
|
2999
3120
|
},
|
|
3000
|
-
"default": "
|
|
3001
|
-
"
|
|
3002
|
-
"fieldName": "datasourceType",
|
|
3003
|
-
"inheritedFrom": {
|
|
3004
|
-
"name": "EntityManagement",
|
|
3005
|
-
"module": "src/entities/entities.ts"
|
|
3006
|
-
}
|
|
3121
|
+
"default": "false",
|
|
3122
|
+
"fieldName": "asyncRemove"
|
|
3007
3123
|
},
|
|
3008
3124
|
{
|
|
3009
|
-
"name": "
|
|
3125
|
+
"name": "async-update",
|
|
3010
3126
|
"type": {
|
|
3011
|
-
"text": "
|
|
3127
|
+
"text": "boolean"
|
|
3012
3128
|
},
|
|
3013
|
-
"
|
|
3014
|
-
"fieldName": "
|
|
3015
|
-
"inheritedFrom": {
|
|
3016
|
-
"name": "EntityManagement",
|
|
3017
|
-
"module": "src/entities/entities.ts"
|
|
3018
|
-
}
|
|
3129
|
+
"default": "true",
|
|
3130
|
+
"fieldName": "asyncUpdate"
|
|
3019
3131
|
},
|
|
3020
3132
|
{
|
|
3021
|
-
"name": "
|
|
3133
|
+
"name": "enable-cell-flashing",
|
|
3022
3134
|
"type": {
|
|
3023
3135
|
"text": "boolean"
|
|
3024
3136
|
},
|
|
3025
|
-
"
|
|
3026
|
-
"
|
|
3027
|
-
"name": "EntityManagement",
|
|
3028
|
-
"module": "src/entities/entities.ts"
|
|
3029
|
-
}
|
|
3137
|
+
"default": "false",
|
|
3138
|
+
"fieldName": "enableCellFlashing"
|
|
3030
3139
|
},
|
|
3031
3140
|
{
|
|
3032
|
-
"name": "enable-
|
|
3141
|
+
"name": "enable-row-flashing",
|
|
3033
3142
|
"type": {
|
|
3034
3143
|
"text": "boolean"
|
|
3035
3144
|
},
|
|
3036
|
-
"
|
|
3037
|
-
"
|
|
3038
|
-
"name": "EntityManagement",
|
|
3039
|
-
"module": "src/entities/entities.ts"
|
|
3040
|
-
}
|
|
3145
|
+
"default": "false",
|
|
3146
|
+
"fieldName": "enableRowFlashing"
|
|
3041
3147
|
},
|
|
3042
3148
|
{
|
|
3043
3149
|
"name": "hide-edit",
|
|
@@ -3045,11 +3151,7 @@
|
|
|
3045
3151
|
"text": "boolean"
|
|
3046
3152
|
},
|
|
3047
3153
|
"default": "false",
|
|
3048
|
-
"fieldName": "hideEdit"
|
|
3049
|
-
"inheritedFrom": {
|
|
3050
|
-
"name": "EntityManagement",
|
|
3051
|
-
"module": "src/entities/entities.ts"
|
|
3052
|
-
}
|
|
3154
|
+
"fieldName": "hideEdit"
|
|
3053
3155
|
},
|
|
3054
3156
|
{
|
|
3055
3157
|
"name": "hide-delete",
|
|
@@ -3057,105 +3159,53 @@
|
|
|
3057
3159
|
"text": "boolean"
|
|
3058
3160
|
},
|
|
3059
3161
|
"default": "false",
|
|
3060
|
-
"fieldName": "hideDelete"
|
|
3061
|
-
"inheritedFrom": {
|
|
3062
|
-
"name": "EntityManagement",
|
|
3063
|
-
"module": "src/entities/entities.ts"
|
|
3064
|
-
}
|
|
3162
|
+
"fieldName": "hideDelete"
|
|
3065
3163
|
},
|
|
3066
3164
|
{
|
|
3067
|
-
"name": "
|
|
3165
|
+
"name": "datasource-type",
|
|
3068
3166
|
"type": {
|
|
3069
|
-
"text": "
|
|
3167
|
+
"text": "DatasourceType"
|
|
3070
3168
|
},
|
|
3071
|
-
"default": "
|
|
3072
|
-
"
|
|
3073
|
-
"fieldName": "enableSearchBar",
|
|
3074
|
-
"inheritedFrom": {
|
|
3075
|
-
"name": "EntityManagement",
|
|
3076
|
-
"module": "src/entities/entities.ts"
|
|
3077
|
-
}
|
|
3169
|
+
"default": "'client'",
|
|
3170
|
+
"fieldName": "datasourceType"
|
|
3078
3171
|
},
|
|
3079
3172
|
{
|
|
3080
3173
|
"name": "header-case-type",
|
|
3081
3174
|
"type": {
|
|
3082
3175
|
"text": "GridProCaseType"
|
|
3083
3176
|
},
|
|
3084
|
-
"
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
"module": "src/entities/entities.ts"
|
|
3089
|
-
}
|
|
3090
|
-
},
|
|
3091
|
-
{
|
|
3092
|
-
"name": "modal-position",
|
|
3093
|
-
"type": {
|
|
3094
|
-
"text": "'centre' | 'left' | 'right'"
|
|
3095
|
-
},
|
|
3096
|
-
"default": "'right'",
|
|
3097
|
-
"description": "Determines where the modal dialog will appear on screen",
|
|
3098
|
-
"fieldName": "modalPosition",
|
|
3099
|
-
"inheritedFrom": {
|
|
3100
|
-
"name": "EntityManagement",
|
|
3101
|
-
"module": "src/entities/entities.ts"
|
|
3102
|
-
}
|
|
3103
|
-
},
|
|
3104
|
-
{
|
|
3105
|
-
"name": "crud-menu-position",
|
|
3106
|
-
"type": {
|
|
3107
|
-
"text": "CrudMenuPosition"
|
|
3108
|
-
},
|
|
3109
|
-
"description": "Determines where the buttons will appear",
|
|
3110
|
-
"fieldName": "crudMenuPosition",
|
|
3111
|
-
"inheritedFrom": {
|
|
3112
|
-
"name": "EntityManagement",
|
|
3113
|
-
"module": "src/entities/entities.ts"
|
|
3114
|
-
}
|
|
3115
|
-
},
|
|
3116
|
-
{
|
|
3117
|
-
"name": "crud-menu-style",
|
|
3118
|
-
"type": {
|
|
3119
|
-
"text": "ActionsMenuStyle"
|
|
3120
|
-
},
|
|
3121
|
-
"description": "Determines the style of the buttons",
|
|
3122
|
-
"fieldName": "crudMenuStyle",
|
|
3123
|
-
"inheritedFrom": {
|
|
3124
|
-
"name": "EntityManagement",
|
|
3125
|
-
"module": "src/entities/entities.ts"
|
|
3126
|
-
}
|
|
3127
|
-
},
|
|
3177
|
+
"fieldName": "headerCaseType"
|
|
3178
|
+
}
|
|
3179
|
+
],
|
|
3180
|
+
"mixins": [
|
|
3128
3181
|
{
|
|
3129
|
-
"name": "
|
|
3130
|
-
"
|
|
3131
|
-
"text": "string"
|
|
3132
|
-
},
|
|
3133
|
-
"default": "'⋮'",
|
|
3134
|
-
"description": "The label of the crud action menu",
|
|
3135
|
-
"fieldName": "crudActionMenuName",
|
|
3136
|
-
"inheritedFrom": {
|
|
3137
|
-
"name": "EntityManagement",
|
|
3138
|
-
"module": "src/entities/entities.ts"
|
|
3139
|
-
}
|
|
3182
|
+
"name": "LifecycleMixin",
|
|
3183
|
+
"package": "@genesislcap/foundation-utils"
|
|
3140
3184
|
}
|
|
3141
|
-
]
|
|
3185
|
+
],
|
|
3186
|
+
"superclass": {
|
|
3187
|
+
"name": "FASTElement",
|
|
3188
|
+
"package": "@microsoft/fast-element"
|
|
3189
|
+
},
|
|
3190
|
+
"tagName": "entity-list",
|
|
3191
|
+
"customElement": true
|
|
3142
3192
|
}
|
|
3143
3193
|
],
|
|
3144
3194
|
"exports": [
|
|
3145
3195
|
{
|
|
3146
3196
|
"kind": "js",
|
|
3147
|
-
"name": "
|
|
3197
|
+
"name": "List",
|
|
3148
3198
|
"declaration": {
|
|
3149
|
-
"name": "
|
|
3150
|
-
"module": "src/
|
|
3199
|
+
"name": "List",
|
|
3200
|
+
"module": "src/list/list.ts"
|
|
3151
3201
|
}
|
|
3152
3202
|
},
|
|
3153
3203
|
{
|
|
3154
3204
|
"kind": "custom-element-definition",
|
|
3155
|
-
"name": "
|
|
3205
|
+
"name": "entity-list",
|
|
3156
3206
|
"declaration": {
|
|
3157
|
-
"name": "
|
|
3158
|
-
"module": "src/
|
|
3207
|
+
"name": "List",
|
|
3208
|
+
"module": "src/list/list.ts"
|
|
3159
3209
|
}
|
|
3160
3210
|
}
|
|
3161
3211
|
]
|