@genesislcap/foundation-entity-management 14.64.4-alpha-732a0c5.0 → 14.65.1
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 +956 -951
- package/dist/dts/users/users.d.ts +1 -1
- package/dist/dts/utils/renderer.d.ts +2 -25
- package/dist/dts/utils/renderer.d.ts.map +1 -1
- package/dist/esm/users/users.js +1 -1
- package/dist/esm/utils/renderer.js +1 -1
- package/dist/foundation-entity-management.api.json +7 -2
- package/dist/foundation-entity-management.d.ts +2 -26
- package/docs/api/foundation-entity-management.buttoncellrenderer.md +1 -25
- package/docs/api-report.md +2 -26
- package/package.json +13 -13
|
@@ -124,149 +124,193 @@
|
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
126
|
"kind": "javascript-module",
|
|
127
|
-
"path": "src/
|
|
127
|
+
"path": "src/layouts/default.ts",
|
|
128
128
|
"declarations": [
|
|
129
129
|
{
|
|
130
130
|
"kind": "variable",
|
|
131
|
-
"name": "
|
|
132
|
-
"default": "
|
|
133
|
-
|
|
131
|
+
"name": "loginLayout",
|
|
132
|
+
"default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"kind": "variable",
|
|
136
|
+
"name": "defaultLayout",
|
|
137
|
+
"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)"
|
|
134
138
|
}
|
|
135
139
|
],
|
|
136
140
|
"exports": [
|
|
137
141
|
{
|
|
138
142
|
"kind": "js",
|
|
139
|
-
"name": "
|
|
143
|
+
"name": "loginLayout",
|
|
140
144
|
"declaration": {
|
|
141
|
-
"name": "
|
|
142
|
-
"module": "src/
|
|
145
|
+
"name": "loginLayout",
|
|
146
|
+
"module": "src/layouts/default.ts"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"kind": "js",
|
|
151
|
+
"name": "defaultLayout",
|
|
152
|
+
"declaration": {
|
|
153
|
+
"name": "defaultLayout",
|
|
154
|
+
"module": "src/layouts/default.ts"
|
|
143
155
|
}
|
|
144
156
|
}
|
|
145
157
|
]
|
|
146
158
|
},
|
|
147
159
|
{
|
|
148
160
|
"kind": "javascript-module",
|
|
149
|
-
"path": "src/
|
|
161
|
+
"path": "src/layouts/index.ts",
|
|
162
|
+
"declarations": [],
|
|
163
|
+
"exports": [
|
|
164
|
+
{
|
|
165
|
+
"kind": "js",
|
|
166
|
+
"name": "*",
|
|
167
|
+
"declaration": {
|
|
168
|
+
"name": "*",
|
|
169
|
+
"package": "./default"
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
]
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"kind": "javascript-module",
|
|
176
|
+
"path": "src/list/index.ts",
|
|
177
|
+
"declarations": [],
|
|
178
|
+
"exports": [
|
|
179
|
+
{
|
|
180
|
+
"kind": "js",
|
|
181
|
+
"name": "*",
|
|
182
|
+
"declaration": {
|
|
183
|
+
"name": "*",
|
|
184
|
+
"package": "./list"
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
]
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"kind": "javascript-module",
|
|
191
|
+
"path": "src/list/list.styles.ts",
|
|
150
192
|
"declarations": [
|
|
151
193
|
{
|
|
152
194
|
"kind": "variable",
|
|
153
|
-
"name": "
|
|
154
|
-
"default": "
|
|
155
|
-
"description": "Defines the html of the entity component as a ViewTemplate object"
|
|
195
|
+
"name": "listStyles",
|
|
196
|
+
"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`"
|
|
156
197
|
}
|
|
157
198
|
],
|
|
158
199
|
"exports": [
|
|
159
200
|
{
|
|
160
201
|
"kind": "js",
|
|
161
|
-
"name": "
|
|
202
|
+
"name": "listStyles",
|
|
162
203
|
"declaration": {
|
|
163
|
-
"name": "
|
|
164
|
-
"module": "src/
|
|
204
|
+
"name": "listStyles",
|
|
205
|
+
"module": "src/list/list.styles.ts"
|
|
165
206
|
}
|
|
166
207
|
}
|
|
167
208
|
]
|
|
168
209
|
},
|
|
169
210
|
{
|
|
170
211
|
"kind": "javascript-module",
|
|
171
|
-
"path": "src/
|
|
212
|
+
"path": "src/list/list.template.ts",
|
|
213
|
+
"declarations": [
|
|
214
|
+
{
|
|
215
|
+
"kind": "variable",
|
|
216
|
+
"name": "listTemplate",
|
|
217
|
+
"default": "html<List>`\n <div class=\"container\">\n ${when(\n (x) => x.enableFilterBar,\n html<List>`\n <zero-filter-bar\n resource=${(x) => x.resourceName}\n only=${(x) => x.columns?.map((colDef) => colDef.field).filter((field) => !!field)}\n labels=${(x) => x.columns?.map((colDef) => colDef.headerName || '')}\n target=\"datasource\"\n ></zero-filter-bar>\n `,\n )}\n <zero-grid-pro\n ${ref('grid')}\n auto-cell-renderer-by-type\n rowSelection=\"single\"\n rowHeight=\"36\"\n headerHeight=\"36\"\n persist-column-state-key=${(x) => x.persistColumnStateKey}\n ?only-template-col-defs=${(x) => !!x.columns}\n suppressCellFocus=\"true\"\n suppressRowDeselection=\"true\"\n enable-cell-flashing=${(x) => x.enableCellFlashing}\n >\n <grid-pro-genesis-datasource\n ${ref('datasource')}\n :deferredGridOptions=${(x) => x.gridOptions}\n resource-name=${(x) => x.resourceName}\n criteria=${(x) => x.datasourceConfig?.criteria}\n fields=${(x) => x.datasourceConfig?.fields}\n is-snapshot=${(x) => x.datasourceConfig?.isSnapshot}\n max-rows=${(x) => x.datasourceConfig?.maxRows}\n max-view=${(x) => x.datasourceConfig?.maxView}\n order-by=${(x) => x.datasourceConfig?.orderBy}\n reverse=${(x) => x.datasourceConfig?.reverse}\n ></grid-pro-genesis-datasource>\n ${repeat(\n (x) => x.columns,\n html`\n <grid-pro-column :definition=${(x) => x}></grid-pro-column>\n `,\n )}\n ${repeat(\n (x) => x.actionButtonsConfig,\n html`\n <grid-pro-column :definition=${(x) => x}></grid-pro-column>\n `,\n )}\n </zero-grid-pro>\n </div>\n`"
|
|
218
|
+
}
|
|
219
|
+
],
|
|
220
|
+
"exports": [
|
|
221
|
+
{
|
|
222
|
+
"kind": "js",
|
|
223
|
+
"name": "listTemplate",
|
|
224
|
+
"declaration": {
|
|
225
|
+
"name": "listTemplate",
|
|
226
|
+
"module": "src/list/list.template.ts"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
]
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"kind": "javascript-module",
|
|
233
|
+
"path": "src/list/list.ts",
|
|
172
234
|
"declarations": [
|
|
173
235
|
{
|
|
174
236
|
"kind": "class",
|
|
175
|
-
"description": "
|
|
176
|
-
"name": "
|
|
237
|
+
"description": "",
|
|
238
|
+
"name": "List",
|
|
177
239
|
"members": [
|
|
178
240
|
{
|
|
179
241
|
"kind": "field",
|
|
180
|
-
"name": "
|
|
242
|
+
"name": "resourceName",
|
|
181
243
|
"type": {
|
|
182
|
-
"text": "
|
|
244
|
+
"text": "string"
|
|
183
245
|
},
|
|
184
|
-
"
|
|
185
|
-
"description": "DI connect object which is used to interact with the backend."
|
|
246
|
+
"default": "''"
|
|
186
247
|
},
|
|
187
248
|
{
|
|
188
249
|
"kind": "field",
|
|
189
|
-
"name": "
|
|
250
|
+
"name": "title",
|
|
190
251
|
"type": {
|
|
191
252
|
"text": "string"
|
|
192
253
|
},
|
|
193
|
-
"
|
|
194
|
-
"privacy": "public"
|
|
254
|
+
"default": "''"
|
|
195
255
|
},
|
|
196
256
|
{
|
|
197
257
|
"kind": "field",
|
|
198
|
-
"name": "
|
|
258
|
+
"name": "persistColumnStateKey",
|
|
199
259
|
"type": {
|
|
200
260
|
"text": "string"
|
|
201
261
|
}
|
|
202
262
|
},
|
|
203
263
|
{
|
|
204
264
|
"kind": "field",
|
|
205
|
-
"name": "
|
|
265
|
+
"name": "sizeColumnsToFit",
|
|
206
266
|
"type": {
|
|
207
|
-
"text": "
|
|
267
|
+
"text": "boolean"
|
|
208
268
|
}
|
|
209
269
|
},
|
|
210
270
|
{
|
|
211
271
|
"kind": "field",
|
|
212
|
-
"name": "
|
|
272
|
+
"name": "enableFilterBar",
|
|
213
273
|
"type": {
|
|
214
274
|
"text": "boolean"
|
|
215
275
|
}
|
|
216
276
|
},
|
|
217
277
|
{
|
|
218
278
|
"kind": "field",
|
|
219
|
-
"name": "
|
|
220
|
-
"type": {
|
|
221
|
-
"text": "string"
|
|
222
|
-
},
|
|
223
|
-
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
224
|
-
"privacy": "public"
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
"kind": "field",
|
|
228
|
-
"name": "deleteEvent",
|
|
279
|
+
"name": "enableCellFlashing",
|
|
229
280
|
"type": {
|
|
230
|
-
"text": "
|
|
231
|
-
}
|
|
232
|
-
"description": "Name of the event handler on the Genesis server which handles deleting the entity",
|
|
233
|
-
"privacy": "public"
|
|
281
|
+
"text": "boolean"
|
|
282
|
+
}
|
|
234
283
|
},
|
|
235
284
|
{
|
|
236
285
|
"kind": "field",
|
|
237
|
-
"name": "
|
|
286
|
+
"name": "hideEdit",
|
|
238
287
|
"type": {
|
|
239
|
-
"text": "
|
|
288
|
+
"text": "boolean"
|
|
240
289
|
},
|
|
241
|
-
"
|
|
242
|
-
"privacy": "public"
|
|
290
|
+
"default": "false"
|
|
243
291
|
},
|
|
244
292
|
{
|
|
245
293
|
"kind": "field",
|
|
246
|
-
"name": "
|
|
294
|
+
"name": "hideDelete",
|
|
247
295
|
"type": {
|
|
248
|
-
"text": "
|
|
296
|
+
"text": "boolean"
|
|
249
297
|
},
|
|
250
|
-
"
|
|
251
|
-
"privacy": "public"
|
|
298
|
+
"default": "false"
|
|
252
299
|
},
|
|
253
300
|
{
|
|
254
301
|
"kind": "field",
|
|
255
|
-
"name": "
|
|
302
|
+
"name": "grid",
|
|
256
303
|
"type": {
|
|
257
|
-
"text": "
|
|
304
|
+
"text": "ZeroGridPro"
|
|
258
305
|
},
|
|
259
|
-
"default": "''",
|
|
260
|
-
"description": "Label for the entity which has usages such as being shown in the title of the modal wen editing the entity",
|
|
261
306
|
"privacy": "public"
|
|
262
307
|
},
|
|
263
308
|
{
|
|
264
309
|
"kind": "field",
|
|
265
|
-
"name": "
|
|
310
|
+
"name": "datasource",
|
|
266
311
|
"type": {
|
|
267
|
-
"text": "
|
|
312
|
+
"text": "GridProGenesisDatasource"
|
|
268
313
|
},
|
|
269
|
-
"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.",
|
|
270
314
|
"privacy": "public"
|
|
271
315
|
},
|
|
272
316
|
{
|
|
@@ -274,292 +318,111 @@
|
|
|
274
318
|
"name": "gridOptions",
|
|
275
319
|
"type": {
|
|
276
320
|
"text": "GridOptions"
|
|
277
|
-
}
|
|
278
|
-
"description": "GridOptions to be passed down from application",
|
|
279
|
-
"privacy": "public"
|
|
321
|
+
}
|
|
280
322
|
},
|
|
281
323
|
{
|
|
282
324
|
"kind": "field",
|
|
283
325
|
"name": "columns",
|
|
284
326
|
"type": {
|
|
285
327
|
"text": "ColDef[]"
|
|
286
|
-
}
|
|
287
|
-
"description": "Array which holds the column definitions.",
|
|
288
|
-
"privacy": "public"
|
|
328
|
+
}
|
|
289
329
|
},
|
|
290
330
|
{
|
|
291
331
|
"kind": "field",
|
|
292
332
|
"name": "datasourceConfig",
|
|
293
333
|
"type": {
|
|
294
334
|
"text": "DatasourceConfiguration"
|
|
295
|
-
}
|
|
296
|
-
"description": "The configuration which is used when interacting with the resource on the backend",
|
|
297
|
-
"privacy": "public"
|
|
335
|
+
}
|
|
298
336
|
},
|
|
299
337
|
{
|
|
300
338
|
"kind": "field",
|
|
301
|
-
"name": "
|
|
339
|
+
"name": "actionButtonsConfig",
|
|
302
340
|
"type": {
|
|
303
|
-
"text": "
|
|
304
|
-
}
|
|
341
|
+
"text": "array"
|
|
342
|
+
},
|
|
343
|
+
"default": "[]"
|
|
305
344
|
},
|
|
306
345
|
{
|
|
307
346
|
"kind": "field",
|
|
308
|
-
"name": "
|
|
347
|
+
"name": "deleteEvent",
|
|
309
348
|
"type": {
|
|
310
|
-
"text": "
|
|
349
|
+
"text": "string"
|
|
311
350
|
}
|
|
312
351
|
},
|
|
313
352
|
{
|
|
314
353
|
"kind": "field",
|
|
315
|
-
"name": "
|
|
354
|
+
"name": "updateEvent",
|
|
316
355
|
"type": {
|
|
317
|
-
"text": "
|
|
356
|
+
"text": "string"
|
|
318
357
|
}
|
|
319
358
|
},
|
|
320
359
|
{
|
|
321
|
-
"kind": "
|
|
322
|
-
"name": "
|
|
323
|
-
"
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
360
|
+
"kind": "method",
|
|
361
|
+
"name": "handleFilterChanged",
|
|
362
|
+
"privacy": "private",
|
|
363
|
+
"parameters": [
|
|
364
|
+
{
|
|
365
|
+
"name": "e"
|
|
366
|
+
}
|
|
367
|
+
]
|
|
328
368
|
},
|
|
329
369
|
{
|
|
330
|
-
"kind": "
|
|
331
|
-
"name": "
|
|
332
|
-
"
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
370
|
+
"kind": "method",
|
|
371
|
+
"name": "handleFilterCleared",
|
|
372
|
+
"privacy": "private",
|
|
373
|
+
"parameters": [
|
|
374
|
+
{
|
|
375
|
+
"name": "e"
|
|
376
|
+
}
|
|
377
|
+
]
|
|
337
378
|
},
|
|
338
379
|
{
|
|
339
|
-
"kind": "
|
|
340
|
-
"name": "
|
|
341
|
-
"
|
|
342
|
-
|
|
343
|
-
|
|
380
|
+
"kind": "method",
|
|
381
|
+
"name": "select",
|
|
382
|
+
"privacy": "private",
|
|
383
|
+
"parameters": [
|
|
384
|
+
{
|
|
385
|
+
"name": "e"
|
|
386
|
+
}
|
|
387
|
+
]
|
|
344
388
|
},
|
|
345
389
|
{
|
|
346
390
|
"kind": "field",
|
|
347
|
-
"name": "
|
|
348
|
-
"
|
|
349
|
-
"text": "any"
|
|
350
|
-
}
|
|
391
|
+
"name": "edit",
|
|
392
|
+
"privacy": "private"
|
|
351
393
|
},
|
|
352
394
|
{
|
|
353
|
-
"kind": "
|
|
354
|
-
"name": "
|
|
395
|
+
"kind": "method",
|
|
396
|
+
"name": "delete",
|
|
397
|
+
"parameters": [
|
|
398
|
+
{
|
|
399
|
+
"name": "e"
|
|
400
|
+
}
|
|
401
|
+
]
|
|
402
|
+
}
|
|
403
|
+
],
|
|
404
|
+
"attributes": [
|
|
405
|
+
{
|
|
406
|
+
"name": "resourceName",
|
|
355
407
|
"type": {
|
|
356
408
|
"text": "string"
|
|
357
409
|
},
|
|
358
|
-
"
|
|
410
|
+
"default": "''",
|
|
411
|
+
"fieldName": "resourceName"
|
|
359
412
|
},
|
|
360
413
|
{
|
|
361
|
-
"
|
|
362
|
-
"name": "editModalVisible",
|
|
414
|
+
"name": "title",
|
|
363
415
|
"type": {
|
|
364
|
-
"text": "
|
|
365
|
-
},
|
|
366
|
-
"default": "false"
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
"kind": "method",
|
|
370
|
-
"name": "editModalVisibleChanged"
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"kind": "field",
|
|
374
|
-
"name": "editEntityModal",
|
|
375
|
-
"type": {
|
|
376
|
-
"text": "any"
|
|
377
|
-
},
|
|
378
|
-
"privacy": "public"
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
"kind": "field",
|
|
382
|
-
"name": "sizeColumnsToFit",
|
|
383
|
-
"type": {
|
|
384
|
-
"text": "boolean"
|
|
385
|
-
}
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"kind": "field",
|
|
389
|
-
"name": "enableFilterBar",
|
|
390
|
-
"type": {
|
|
391
|
-
"text": "boolean"
|
|
392
|
-
}
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"kind": "field",
|
|
396
|
-
"name": "enableCellFlashing",
|
|
397
|
-
"type": {
|
|
398
|
-
"text": "boolean"
|
|
399
|
-
}
|
|
400
|
-
},
|
|
401
|
-
{
|
|
402
|
-
"kind": "field",
|
|
403
|
-
"name": "hideEdit",
|
|
404
|
-
"type": {
|
|
405
|
-
"text": "boolean"
|
|
406
|
-
},
|
|
407
|
-
"default": "false"
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
"kind": "field",
|
|
411
|
-
"name": "hideDelete",
|
|
412
|
-
"type": {
|
|
413
|
-
"text": "boolean"
|
|
414
|
-
},
|
|
415
|
-
"default": "false"
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
"kind": "field",
|
|
419
|
-
"name": "modalPosition",
|
|
420
|
-
"type": {
|
|
421
|
-
"text": "'centre' | 'left' | 'right'"
|
|
422
|
-
},
|
|
423
|
-
"default": "'right'",
|
|
424
|
-
"description": "Determines where the modal dialog will appear on screen",
|
|
425
|
-
"privacy": "public"
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
"kind": "method",
|
|
429
|
-
"name": "deepClone",
|
|
430
|
-
"return": {
|
|
431
|
-
"type": {
|
|
432
|
-
"text": "Node"
|
|
433
|
-
}
|
|
434
|
-
},
|
|
435
|
-
"description": "Override the deepClone method to ensure that observable attributes are cloned",
|
|
436
|
-
"privacy": "public"
|
|
437
|
-
},
|
|
438
|
-
{
|
|
439
|
-
"kind": "method",
|
|
440
|
-
"name": "submitEntityChanges",
|
|
441
|
-
"privacy": "public",
|
|
442
|
-
"parameters": [
|
|
443
|
-
{
|
|
444
|
-
"name": "e",
|
|
445
|
-
"type": {
|
|
446
|
-
"text": "CustomEvent"
|
|
447
|
-
},
|
|
448
|
-
"description": "CustomEvent which contains the payload for the entity to submit to the backend\n\nEmits an event upon error"
|
|
449
|
-
}
|
|
450
|
-
],
|
|
451
|
-
"description": "Event handler for when the user submits the action for the currently open form, either editing or adding the entity"
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
"kind": "method",
|
|
455
|
-
"name": "readEntity",
|
|
456
|
-
"privacy": "private",
|
|
457
|
-
"parameters": [
|
|
458
|
-
{
|
|
459
|
-
"name": "e",
|
|
460
|
-
"type": {
|
|
461
|
-
"text": "CustomEvent"
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
]
|
|
465
|
-
},
|
|
466
|
-
{
|
|
467
|
-
"kind": "method",
|
|
468
|
-
"name": "closeModal",
|
|
469
|
-
"privacy": "public"
|
|
470
|
-
},
|
|
471
|
-
{
|
|
472
|
-
"kind": "method",
|
|
473
|
-
"name": "criteriaChanged",
|
|
474
|
-
"privacy": "public",
|
|
475
|
-
"parameters": [
|
|
476
|
-
{
|
|
477
|
-
"name": "e",
|
|
478
|
-
"type": {
|
|
479
|
-
"text": "CustomEvent<string>"
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
]
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
"kind": "method",
|
|
486
|
-
"name": "confirmDelete"
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
"kind": "method",
|
|
490
|
-
"name": "showDeleteConfirmation",
|
|
491
|
-
"privacy": "private"
|
|
492
|
-
}
|
|
493
|
-
],
|
|
494
|
-
"attributes": [
|
|
495
|
-
{
|
|
496
|
-
"name": "resourceName",
|
|
497
|
-
"type": {
|
|
498
|
-
"text": "string"
|
|
499
|
-
},
|
|
500
|
-
"description": "Name of the backend resource which contain the entities to manage",
|
|
501
|
-
"fieldName": "resourceName"
|
|
502
|
-
},
|
|
503
|
-
{
|
|
504
|
-
"name": "readEvent",
|
|
505
|
-
"type": {
|
|
506
|
-
"text": "string"
|
|
507
|
-
},
|
|
508
|
-
"fieldName": "readEvent"
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
"type": {
|
|
512
|
-
"text": "boolean"
|
|
513
|
-
},
|
|
514
|
-
"fieldName": "readonly"
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
"name": "updateEvent",
|
|
518
|
-
"type": {
|
|
519
|
-
"text": "string"
|
|
520
|
-
},
|
|
521
|
-
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
522
|
-
"fieldName": "updateEvent"
|
|
523
|
-
},
|
|
524
|
-
{
|
|
525
|
-
"name": "deleteEvent",
|
|
526
|
-
"type": {
|
|
527
|
-
"text": "string"
|
|
528
|
-
},
|
|
529
|
-
"description": "Name of the event handler on the Genesis server which handles deleting the entity",
|
|
530
|
-
"fieldName": "deleteEvent"
|
|
531
|
-
},
|
|
532
|
-
{
|
|
533
|
-
"name": "createEvent",
|
|
534
|
-
"type": {
|
|
535
|
-
"text": "string"
|
|
536
|
-
},
|
|
537
|
-
"description": "Name of the event handler on the Genesis server which handles creating an entity",
|
|
538
|
-
"fieldName": "createEvent"
|
|
539
|
-
},
|
|
540
|
-
{
|
|
541
|
-
"name": "title",
|
|
542
|
-
"type": {
|
|
543
|
-
"text": "string"
|
|
544
|
-
},
|
|
545
|
-
"description": "Title of the grid",
|
|
546
|
-
"fieldName": "title"
|
|
547
|
-
},
|
|
548
|
-
{
|
|
549
|
-
"name": "entityLabel",
|
|
550
|
-
"type": {
|
|
551
|
-
"text": "string"
|
|
416
|
+
"text": "string"
|
|
552
417
|
},
|
|
553
418
|
"default": "''",
|
|
554
|
-
"
|
|
555
|
-
"fieldName": "entityLabel"
|
|
419
|
+
"fieldName": "title"
|
|
556
420
|
},
|
|
557
421
|
{
|
|
558
422
|
"name": "persist-column-state-key",
|
|
559
423
|
"type": {
|
|
560
424
|
"text": "string"
|
|
561
425
|
},
|
|
562
|
-
"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.",
|
|
563
426
|
"fieldName": "persistColumnStateKey"
|
|
564
427
|
},
|
|
565
428
|
{
|
|
@@ -598,53 +461,38 @@
|
|
|
598
461
|
},
|
|
599
462
|
"default": "false",
|
|
600
463
|
"fieldName": "hideDelete"
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
"name": "modal-position",
|
|
604
|
-
"type": {
|
|
605
|
-
"text": "'centre' | 'left' | 'right'"
|
|
606
|
-
},
|
|
607
|
-
"default": "'right'",
|
|
608
|
-
"description": "Determines where the modal dialog will appear on screen",
|
|
609
|
-
"fieldName": "modalPosition"
|
|
610
|
-
}
|
|
611
|
-
],
|
|
612
|
-
"mixins": [
|
|
613
|
-
{
|
|
614
|
-
"name": "LifecycleMixin",
|
|
615
|
-
"package": "@genesislcap/foundation-utils"
|
|
616
464
|
}
|
|
617
465
|
],
|
|
618
466
|
"superclass": {
|
|
619
467
|
"name": "FASTElement",
|
|
620
468
|
"package": "@microsoft/fast-element"
|
|
621
469
|
},
|
|
622
|
-
"tagName": "entity-
|
|
470
|
+
"tagName": "entity-list",
|
|
623
471
|
"customElement": true
|
|
624
472
|
}
|
|
625
473
|
],
|
|
626
474
|
"exports": [
|
|
627
475
|
{
|
|
628
476
|
"kind": "js",
|
|
629
|
-
"name": "
|
|
477
|
+
"name": "List",
|
|
630
478
|
"declaration": {
|
|
631
|
-
"name": "
|
|
632
|
-
"module": "src/
|
|
479
|
+
"name": "List",
|
|
480
|
+
"module": "src/list/list.ts"
|
|
633
481
|
}
|
|
634
482
|
},
|
|
635
483
|
{
|
|
636
484
|
"kind": "custom-element-definition",
|
|
637
|
-
"name": "entity-
|
|
485
|
+
"name": "entity-list",
|
|
638
486
|
"declaration": {
|
|
639
|
-
"name": "
|
|
640
|
-
"module": "src/
|
|
487
|
+
"name": "List",
|
|
488
|
+
"module": "src/list/list.ts"
|
|
641
489
|
}
|
|
642
490
|
}
|
|
643
491
|
]
|
|
644
492
|
},
|
|
645
493
|
{
|
|
646
494
|
"kind": "javascript-module",
|
|
647
|
-
"path": "src/
|
|
495
|
+
"path": "src/main/index.ts",
|
|
648
496
|
"declarations": [],
|
|
649
497
|
"exports": [
|
|
650
498
|
{
|
|
@@ -652,15 +500,7 @@
|
|
|
652
500
|
"name": "*",
|
|
653
501
|
"declaration": {
|
|
654
502
|
"name": "*",
|
|
655
|
-
"package": "./
|
|
656
|
-
}
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
"kind": "js",
|
|
660
|
-
"name": "*",
|
|
661
|
-
"declaration": {
|
|
662
|
-
"name": "*",
|
|
663
|
-
"package": "./entities.template"
|
|
503
|
+
"package": "./main.template"
|
|
664
504
|
}
|
|
665
505
|
},
|
|
666
506
|
{
|
|
@@ -668,207 +508,368 @@
|
|
|
668
508
|
"name": "*",
|
|
669
509
|
"declaration": {
|
|
670
510
|
"name": "*",
|
|
671
|
-
"package": "./
|
|
511
|
+
"package": "./main"
|
|
672
512
|
}
|
|
673
513
|
}
|
|
674
514
|
]
|
|
675
515
|
},
|
|
676
516
|
{
|
|
677
517
|
"kind": "javascript-module",
|
|
678
|
-
"path": "src/
|
|
518
|
+
"path": "src/main/main.styles.ts",
|
|
679
519
|
"declarations": [
|
|
680
520
|
{
|
|
681
521
|
"kind": "variable",
|
|
682
|
-
"name": "
|
|
683
|
-
"default": "
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
"kind": "variable",
|
|
687
|
-
"name": "defaultLayout",
|
|
688
|
-
"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)"
|
|
522
|
+
"name": "MainStyles",
|
|
523
|
+
"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`"
|
|
689
524
|
}
|
|
690
525
|
],
|
|
691
526
|
"exports": [
|
|
692
527
|
{
|
|
693
528
|
"kind": "js",
|
|
694
|
-
"name": "
|
|
529
|
+
"name": "MainStyles",
|
|
695
530
|
"declaration": {
|
|
696
|
-
"name": "
|
|
697
|
-
"module": "src/
|
|
698
|
-
}
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
"kind": "js",
|
|
702
|
-
"name": "defaultLayout",
|
|
703
|
-
"declaration": {
|
|
704
|
-
"name": "defaultLayout",
|
|
705
|
-
"module": "src/layouts/default.ts"
|
|
706
|
-
}
|
|
707
|
-
}
|
|
708
|
-
]
|
|
709
|
-
},
|
|
710
|
-
{
|
|
711
|
-
"kind": "javascript-module",
|
|
712
|
-
"path": "src/layouts/index.ts",
|
|
713
|
-
"declarations": [],
|
|
714
|
-
"exports": [
|
|
715
|
-
{
|
|
716
|
-
"kind": "js",
|
|
717
|
-
"name": "*",
|
|
718
|
-
"declaration": {
|
|
719
|
-
"name": "*",
|
|
720
|
-
"package": "./default"
|
|
531
|
+
"name": "MainStyles",
|
|
532
|
+
"module": "src/main/main.styles.ts"
|
|
721
533
|
}
|
|
722
534
|
}
|
|
723
535
|
]
|
|
724
536
|
},
|
|
725
537
|
{
|
|
726
538
|
"kind": "javascript-module",
|
|
727
|
-
"path": "src/
|
|
539
|
+
"path": "src/main/main.template.ts",
|
|
728
540
|
"declarations": [],
|
|
729
|
-
"exports": [
|
|
730
|
-
{
|
|
731
|
-
"kind": "js",
|
|
732
|
-
"name": "*",
|
|
733
|
-
"declaration": {
|
|
734
|
-
"name": "*",
|
|
735
|
-
"package": "./list"
|
|
736
|
-
}
|
|
737
|
-
}
|
|
738
|
-
]
|
|
541
|
+
"exports": []
|
|
739
542
|
},
|
|
740
543
|
{
|
|
741
544
|
"kind": "javascript-module",
|
|
742
|
-
"path": "src/
|
|
545
|
+
"path": "src/main/main.ts",
|
|
743
546
|
"declarations": [
|
|
744
547
|
{
|
|
745
|
-
"kind": "
|
|
746
|
-
"
|
|
747
|
-
"
|
|
548
|
+
"kind": "class",
|
|
549
|
+
"description": "",
|
|
550
|
+
"name": "MainApplication",
|
|
551
|
+
"members": [
|
|
552
|
+
{
|
|
553
|
+
"kind": "field",
|
|
554
|
+
"name": "config",
|
|
555
|
+
"type": {
|
|
556
|
+
"text": "MainRouterConfig"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"kind": "field",
|
|
561
|
+
"name": "connect",
|
|
562
|
+
"type": {
|
|
563
|
+
"text": "Connect"
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"kind": "field",
|
|
568
|
+
"name": "session",
|
|
569
|
+
"type": {
|
|
570
|
+
"text": "Session"
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"kind": "field",
|
|
575
|
+
"name": "container",
|
|
576
|
+
"type": {
|
|
577
|
+
"text": "Container"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"kind": "field",
|
|
582
|
+
"name": "provider",
|
|
583
|
+
"type": {
|
|
584
|
+
"text": "any"
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"kind": "field",
|
|
589
|
+
"name": "ready",
|
|
590
|
+
"type": {
|
|
591
|
+
"text": "boolean"
|
|
592
|
+
},
|
|
593
|
+
"default": "false"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"kind": "field",
|
|
597
|
+
"name": "data",
|
|
598
|
+
"type": {
|
|
599
|
+
"text": "any"
|
|
600
|
+
},
|
|
601
|
+
"default": "null"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"kind": "method",
|
|
605
|
+
"name": "onLuminanceToggle"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"kind": "method",
|
|
609
|
+
"name": "loadRemotes"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"kind": "method",
|
|
613
|
+
"name": "selectTemplate"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"kind": "method",
|
|
617
|
+
"name": "registerDIDependencies",
|
|
618
|
+
"privacy": "private"
|
|
619
|
+
}
|
|
620
|
+
],
|
|
621
|
+
"superclass": {
|
|
622
|
+
"name": "FASTElement",
|
|
623
|
+
"package": "@microsoft/fast-element"
|
|
624
|
+
},
|
|
625
|
+
"customElement": true
|
|
748
626
|
}
|
|
749
627
|
],
|
|
750
628
|
"exports": [
|
|
751
629
|
{
|
|
752
630
|
"kind": "js",
|
|
753
|
-
"name": "
|
|
631
|
+
"name": "MainApplication",
|
|
754
632
|
"declaration": {
|
|
755
|
-
"name": "
|
|
756
|
-
"module": "src/
|
|
633
|
+
"name": "MainApplication",
|
|
634
|
+
"module": "src/main/main.ts"
|
|
635
|
+
}
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"kind": "custom-element-definition",
|
|
639
|
+
"declaration": {
|
|
640
|
+
"name": "MainApplication",
|
|
641
|
+
"module": "src/main/main.ts"
|
|
757
642
|
}
|
|
758
643
|
}
|
|
759
644
|
]
|
|
760
645
|
},
|
|
761
646
|
{
|
|
762
647
|
"kind": "javascript-module",
|
|
763
|
-
"path": "src/
|
|
648
|
+
"path": "src/profiles/editProfileSchema.ts",
|
|
764
649
|
"declarations": [
|
|
765
650
|
{
|
|
766
651
|
"kind": "variable",
|
|
767
|
-
"name": "
|
|
768
|
-
"
|
|
652
|
+
"name": "editProfileFormSchema",
|
|
653
|
+
"type": {
|
|
654
|
+
"text": "object"
|
|
655
|
+
},
|
|
656
|
+
"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}"
|
|
769
657
|
}
|
|
770
658
|
],
|
|
771
659
|
"exports": [
|
|
772
660
|
{
|
|
773
661
|
"kind": "js",
|
|
774
|
-
"name": "
|
|
662
|
+
"name": "editProfileFormSchema",
|
|
775
663
|
"declaration": {
|
|
776
|
-
"name": "
|
|
777
|
-
"module": "src/
|
|
664
|
+
"name": "editProfileFormSchema",
|
|
665
|
+
"module": "src/profiles/editProfileSchema.ts"
|
|
778
666
|
}
|
|
779
667
|
}
|
|
780
668
|
]
|
|
781
669
|
},
|
|
782
670
|
{
|
|
783
671
|
"kind": "javascript-module",
|
|
784
|
-
"path": "src/
|
|
672
|
+
"path": "src/profiles/profiles.ts",
|
|
785
673
|
"declarations": [
|
|
786
674
|
{
|
|
787
675
|
"kind": "class",
|
|
788
|
-
"description": "",
|
|
789
|
-
"name": "
|
|
676
|
+
"description": "Main class which defined the profile management functionality",
|
|
677
|
+
"name": "Profiles",
|
|
790
678
|
"members": [
|
|
679
|
+
{
|
|
680
|
+
"kind": "method",
|
|
681
|
+
"name": "readProfileData",
|
|
682
|
+
"privacy": "public",
|
|
683
|
+
"parameters": [
|
|
684
|
+
{
|
|
685
|
+
"name": "profile"
|
|
686
|
+
}
|
|
687
|
+
]
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"kind": "method",
|
|
691
|
+
"name": "confirmDelete",
|
|
692
|
+
"inheritedFrom": {
|
|
693
|
+
"name": "EntityManagement",
|
|
694
|
+
"module": "src/entities/entities.ts"
|
|
695
|
+
}
|
|
696
|
+
},
|
|
791
697
|
{
|
|
792
698
|
"kind": "field",
|
|
793
|
-
"name": "
|
|
699
|
+
"name": "createEvent",
|
|
794
700
|
"type": {
|
|
795
701
|
"text": "string"
|
|
796
702
|
},
|
|
797
|
-
"
|
|
703
|
+
"description": "Name of the event handler on the Genesis server which handles creating an entity",
|
|
704
|
+
"privacy": "public",
|
|
705
|
+
"inheritedFrom": {
|
|
706
|
+
"name": "EntityManagement",
|
|
707
|
+
"module": "src/entities/entities.ts"
|
|
708
|
+
}
|
|
798
709
|
},
|
|
799
710
|
{
|
|
800
711
|
"kind": "field",
|
|
801
|
-
"name": "
|
|
712
|
+
"name": "deleteEvent",
|
|
802
713
|
"type": {
|
|
803
714
|
"text": "string"
|
|
804
715
|
},
|
|
805
|
-
"
|
|
716
|
+
"description": "Name of the event handler on the Genesis server which handles deleting the entity",
|
|
717
|
+
"privacy": "public",
|
|
718
|
+
"inheritedFrom": {
|
|
719
|
+
"name": "EntityManagement",
|
|
720
|
+
"module": "src/entities/entities.ts"
|
|
721
|
+
}
|
|
806
722
|
},
|
|
807
723
|
{
|
|
808
724
|
"kind": "field",
|
|
809
|
-
"name": "
|
|
725
|
+
"name": "updateEvent",
|
|
810
726
|
"type": {
|
|
811
727
|
"text": "string"
|
|
728
|
+
},
|
|
729
|
+
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
730
|
+
"privacy": "public",
|
|
731
|
+
"inheritedFrom": {
|
|
732
|
+
"name": "EntityManagement",
|
|
733
|
+
"module": "src/entities/entities.ts"
|
|
812
734
|
}
|
|
813
735
|
},
|
|
814
736
|
{
|
|
815
737
|
"kind": "field",
|
|
816
|
-
"name": "
|
|
738
|
+
"name": "persistColumnStateKey",
|
|
817
739
|
"type": {
|
|
818
|
-
"text": "
|
|
740
|
+
"text": "string"
|
|
741
|
+
},
|
|
742
|
+
"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.",
|
|
743
|
+
"privacy": "public",
|
|
744
|
+
"default": "'entity_profiles_management'",
|
|
745
|
+
"inheritedFrom": {
|
|
746
|
+
"name": "EntityManagement",
|
|
747
|
+
"module": "src/entities/entities.ts"
|
|
819
748
|
}
|
|
820
749
|
},
|
|
821
750
|
{
|
|
822
751
|
"kind": "field",
|
|
823
|
-
"name": "
|
|
752
|
+
"name": "updateFormUiSchema",
|
|
824
753
|
"type": {
|
|
825
|
-
"text": "
|
|
754
|
+
"text": "any"
|
|
755
|
+
},
|
|
756
|
+
"default": "editProfileFormSchema",
|
|
757
|
+
"inheritedFrom": {
|
|
758
|
+
"name": "EntityManagement",
|
|
759
|
+
"module": "src/entities/entities.ts"
|
|
826
760
|
}
|
|
827
761
|
},
|
|
828
762
|
{
|
|
829
763
|
"kind": "field",
|
|
830
|
-
"name": "
|
|
764
|
+
"name": "createFormUiSchema",
|
|
831
765
|
"type": {
|
|
832
|
-
"text": "
|
|
766
|
+
"text": "any"
|
|
767
|
+
},
|
|
768
|
+
"default": "editProfileFormSchema",
|
|
769
|
+
"inheritedFrom": {
|
|
770
|
+
"name": "EntityManagement",
|
|
771
|
+
"module": "src/entities/entities.ts"
|
|
833
772
|
}
|
|
834
773
|
},
|
|
835
774
|
{
|
|
836
775
|
"kind": "field",
|
|
837
|
-
"name": "
|
|
776
|
+
"name": "readEventFn",
|
|
838
777
|
"type": {
|
|
839
|
-
"text": "
|
|
778
|
+
"text": "(...args) => {}"
|
|
840
779
|
},
|
|
841
|
-
"
|
|
780
|
+
"inheritedFrom": {
|
|
781
|
+
"name": "EntityManagement",
|
|
782
|
+
"module": "src/entities/entities.ts"
|
|
783
|
+
}
|
|
842
784
|
},
|
|
843
785
|
{
|
|
844
786
|
"kind": "field",
|
|
845
|
-
"name": "
|
|
787
|
+
"name": "resourceName",
|
|
846
788
|
"type": {
|
|
847
|
-
"text": "
|
|
789
|
+
"text": "string"
|
|
848
790
|
},
|
|
849
|
-
"
|
|
791
|
+
"description": "Name of the backend resource which contain the entities to manage",
|
|
792
|
+
"privacy": "public",
|
|
793
|
+
"default": "'ALL_PROFILES'",
|
|
794
|
+
"inheritedFrom": {
|
|
795
|
+
"name": "EntityManagement",
|
|
796
|
+
"module": "src/entities/entities.ts"
|
|
797
|
+
}
|
|
850
798
|
},
|
|
851
799
|
{
|
|
852
800
|
"kind": "field",
|
|
853
|
-
"name": "
|
|
801
|
+
"name": "title",
|
|
854
802
|
"type": {
|
|
855
|
-
"text": "
|
|
803
|
+
"text": "string"
|
|
856
804
|
},
|
|
857
|
-
"
|
|
805
|
+
"description": "Title of the grid",
|
|
806
|
+
"privacy": "public",
|
|
807
|
+
"default": "'Profile Management'",
|
|
808
|
+
"inheritedFrom": {
|
|
809
|
+
"name": "EntityManagement",
|
|
810
|
+
"module": "src/entities/entities.ts"
|
|
811
|
+
}
|
|
858
812
|
},
|
|
859
813
|
{
|
|
860
814
|
"kind": "field",
|
|
861
|
-
"name": "
|
|
815
|
+
"name": "entityLabel",
|
|
862
816
|
"type": {
|
|
863
|
-
"text": "
|
|
817
|
+
"text": "string"
|
|
864
818
|
},
|
|
865
|
-
"
|
|
819
|
+
"default": "'Profile'",
|
|
820
|
+
"description": "Label for the entity which has usages such as being shown in the title of the modal wen editing the entity",
|
|
821
|
+
"privacy": "public",
|
|
822
|
+
"inheritedFrom": {
|
|
823
|
+
"name": "EntityManagement",
|
|
824
|
+
"module": "src/entities/entities.ts"
|
|
825
|
+
}
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"kind": "field",
|
|
829
|
+
"name": "connect",
|
|
830
|
+
"type": {
|
|
831
|
+
"text": "Connect"
|
|
832
|
+
},
|
|
833
|
+
"privacy": "protected",
|
|
834
|
+
"description": "DI connect object which is used to interact with the backend.",
|
|
835
|
+
"inheritedFrom": {
|
|
836
|
+
"name": "EntityManagement",
|
|
837
|
+
"module": "src/entities/entities.ts"
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"kind": "field",
|
|
842
|
+
"name": "readEvent",
|
|
843
|
+
"type": {
|
|
844
|
+
"text": "string"
|
|
845
|
+
},
|
|
846
|
+
"inheritedFrom": {
|
|
847
|
+
"name": "EntityManagement",
|
|
848
|
+
"module": "src/entities/entities.ts"
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"kind": "field",
|
|
853
|
+
"name": "readonly",
|
|
854
|
+
"type": {
|
|
855
|
+
"text": "boolean"
|
|
856
|
+
},
|
|
857
|
+
"inheritedFrom": {
|
|
858
|
+
"name": "EntityManagement",
|
|
859
|
+
"module": "src/entities/entities.ts"
|
|
860
|
+
}
|
|
866
861
|
},
|
|
867
862
|
{
|
|
868
863
|
"kind": "field",
|
|
869
864
|
"name": "gridOptions",
|
|
870
865
|
"type": {
|
|
871
866
|
"text": "GridOptions"
|
|
867
|
+
},
|
|
868
|
+
"description": "GridOptions to be passed down from application",
|
|
869
|
+
"privacy": "public",
|
|
870
|
+
"inheritedFrom": {
|
|
871
|
+
"name": "EntityManagement",
|
|
872
|
+
"module": "src/entities/entities.ts"
|
|
872
873
|
}
|
|
873
874
|
},
|
|
874
875
|
{
|
|
@@ -876,6 +877,12 @@
|
|
|
876
877
|
"name": "columns",
|
|
877
878
|
"type": {
|
|
878
879
|
"text": "ColDef[]"
|
|
880
|
+
},
|
|
881
|
+
"description": "Array which holds the column definitions.",
|
|
882
|
+
"privacy": "public",
|
|
883
|
+
"inheritedFrom": {
|
|
884
|
+
"name": "EntityManagement",
|
|
885
|
+
"module": "src/entities/entities.ts"
|
|
879
886
|
}
|
|
880
887
|
},
|
|
881
888
|
{
|
|
@@ -883,469 +890,619 @@
|
|
|
883
890
|
"name": "datasourceConfig",
|
|
884
891
|
"type": {
|
|
885
892
|
"text": "DatasourceConfiguration"
|
|
893
|
+
},
|
|
894
|
+
"description": "The configuration which is used when interacting with the resource on the backend",
|
|
895
|
+
"privacy": "public",
|
|
896
|
+
"inheritedFrom": {
|
|
897
|
+
"name": "EntityManagement",
|
|
898
|
+
"module": "src/entities/entities.ts"
|
|
886
899
|
}
|
|
887
900
|
},
|
|
888
901
|
{
|
|
889
902
|
"kind": "field",
|
|
890
|
-
"name": "
|
|
903
|
+
"name": "formUiSchema",
|
|
891
904
|
"type": {
|
|
892
|
-
"text": "
|
|
905
|
+
"text": "any"
|
|
893
906
|
},
|
|
894
|
-
"
|
|
907
|
+
"inheritedFrom": {
|
|
908
|
+
"name": "EntityManagement",
|
|
909
|
+
"module": "src/entities/entities.ts"
|
|
910
|
+
}
|
|
895
911
|
},
|
|
896
912
|
{
|
|
897
913
|
"kind": "field",
|
|
898
|
-
"name": "
|
|
914
|
+
"name": "selectedEntity",
|
|
899
915
|
"type": {
|
|
900
|
-
"text": "
|
|
916
|
+
"text": "any"
|
|
917
|
+
},
|
|
918
|
+
"description": "Reference to the currently selected entity from the grid.",
|
|
919
|
+
"privacy": "public",
|
|
920
|
+
"inheritedFrom": {
|
|
921
|
+
"name": "EntityManagement",
|
|
922
|
+
"module": "src/entities/entities.ts"
|
|
901
923
|
}
|
|
902
924
|
},
|
|
903
925
|
{
|
|
904
926
|
"kind": "field",
|
|
905
|
-
"name": "
|
|
927
|
+
"name": "editedEntity",
|
|
906
928
|
"type": {
|
|
907
|
-
"text": "
|
|
929
|
+
"text": "any"
|
|
930
|
+
},
|
|
931
|
+
"description": "Disables the form while enabled to stop the user dispatching a large number of duplicate events",
|
|
932
|
+
"privacy": "public",
|
|
933
|
+
"inheritedFrom": {
|
|
934
|
+
"name": "EntityManagement",
|
|
935
|
+
"module": "src/entities/entities.ts"
|
|
908
936
|
}
|
|
909
937
|
},
|
|
910
938
|
{
|
|
911
|
-
"kind": "
|
|
912
|
-
"name": "
|
|
913
|
-
"
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
{
|
|
921
|
-
"kind": "method",
|
|
922
|
-
"name": "handleFilterCleared",
|
|
923
|
-
"privacy": "private",
|
|
924
|
-
"parameters": [
|
|
925
|
-
{
|
|
926
|
-
"name": "e"
|
|
927
|
-
}
|
|
928
|
-
]
|
|
929
|
-
},
|
|
930
|
-
{
|
|
931
|
-
"kind": "method",
|
|
932
|
-
"name": "select",
|
|
933
|
-
"privacy": "private",
|
|
934
|
-
"parameters": [
|
|
935
|
-
{
|
|
936
|
-
"name": "e"
|
|
937
|
-
}
|
|
938
|
-
]
|
|
939
|
+
"kind": "field",
|
|
940
|
+
"name": "submitting",
|
|
941
|
+
"type": {
|
|
942
|
+
"text": "boolean"
|
|
943
|
+
},
|
|
944
|
+
"inheritedFrom": {
|
|
945
|
+
"name": "EntityManagement",
|
|
946
|
+
"module": "src/entities/entities.ts"
|
|
947
|
+
}
|
|
939
948
|
},
|
|
940
949
|
{
|
|
941
950
|
"kind": "field",
|
|
942
|
-
"name": "
|
|
943
|
-
"
|
|
951
|
+
"name": "defaultEntityValues",
|
|
952
|
+
"type": {
|
|
953
|
+
"text": "any"
|
|
954
|
+
},
|
|
955
|
+
"inheritedFrom": {
|
|
956
|
+
"name": "EntityManagement",
|
|
957
|
+
"module": "src/entities/entities.ts"
|
|
958
|
+
}
|
|
944
959
|
},
|
|
945
960
|
{
|
|
946
|
-
"kind": "
|
|
947
|
-
"name": "
|
|
948
|
-
"parameters": [
|
|
949
|
-
{
|
|
950
|
-
"name": "e"
|
|
951
|
-
}
|
|
952
|
-
]
|
|
953
|
-
}
|
|
954
|
-
],
|
|
955
|
-
"attributes": [
|
|
956
|
-
{
|
|
957
|
-
"name": "resourceName",
|
|
961
|
+
"kind": "field",
|
|
962
|
+
"name": "editDialogTitle",
|
|
958
963
|
"type": {
|
|
959
964
|
"text": "string"
|
|
960
965
|
},
|
|
961
|
-
"
|
|
962
|
-
"
|
|
966
|
+
"description": "String which contains the text of the popup modal when the user is adding or editing an entity",
|
|
967
|
+
"inheritedFrom": {
|
|
968
|
+
"name": "EntityManagement",
|
|
969
|
+
"module": "src/entities/entities.ts"
|
|
970
|
+
}
|
|
963
971
|
},
|
|
964
972
|
{
|
|
965
|
-
"
|
|
973
|
+
"kind": "field",
|
|
974
|
+
"name": "editModalVisible",
|
|
966
975
|
"type": {
|
|
967
|
-
"text": "
|
|
976
|
+
"text": "boolean"
|
|
968
977
|
},
|
|
969
|
-
"default": "
|
|
970
|
-
"
|
|
978
|
+
"default": "false",
|
|
979
|
+
"inheritedFrom": {
|
|
980
|
+
"name": "EntityManagement",
|
|
981
|
+
"module": "src/entities/entities.ts"
|
|
982
|
+
}
|
|
971
983
|
},
|
|
972
984
|
{
|
|
973
|
-
"
|
|
985
|
+
"kind": "method",
|
|
986
|
+
"name": "editModalVisibleChanged",
|
|
987
|
+
"inheritedFrom": {
|
|
988
|
+
"name": "EntityManagement",
|
|
989
|
+
"module": "src/entities/entities.ts"
|
|
990
|
+
}
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"kind": "field",
|
|
994
|
+
"name": "editEntityModal",
|
|
974
995
|
"type": {
|
|
975
|
-
"text": "
|
|
996
|
+
"text": "any"
|
|
976
997
|
},
|
|
977
|
-
"
|
|
998
|
+
"privacy": "public",
|
|
999
|
+
"inheritedFrom": {
|
|
1000
|
+
"name": "EntityManagement",
|
|
1001
|
+
"module": "src/entities/entities.ts"
|
|
1002
|
+
}
|
|
978
1003
|
},
|
|
979
1004
|
{
|
|
980
|
-
"
|
|
1005
|
+
"kind": "field",
|
|
1006
|
+
"name": "sizeColumnsToFit",
|
|
981
1007
|
"type": {
|
|
982
1008
|
"text": "boolean"
|
|
983
1009
|
},
|
|
984
|
-
"
|
|
1010
|
+
"inheritedFrom": {
|
|
1011
|
+
"name": "EntityManagement",
|
|
1012
|
+
"module": "src/entities/entities.ts"
|
|
1013
|
+
}
|
|
985
1014
|
},
|
|
986
1015
|
{
|
|
987
|
-
"
|
|
1016
|
+
"kind": "field",
|
|
1017
|
+
"name": "enableFilterBar",
|
|
988
1018
|
"type": {
|
|
989
1019
|
"text": "boolean"
|
|
990
1020
|
},
|
|
991
|
-
"
|
|
1021
|
+
"inheritedFrom": {
|
|
1022
|
+
"name": "EntityManagement",
|
|
1023
|
+
"module": "src/entities/entities.ts"
|
|
1024
|
+
}
|
|
992
1025
|
},
|
|
993
1026
|
{
|
|
994
|
-
"
|
|
1027
|
+
"kind": "field",
|
|
1028
|
+
"name": "enableCellFlashing",
|
|
995
1029
|
"type": {
|
|
996
1030
|
"text": "boolean"
|
|
997
1031
|
},
|
|
998
|
-
"
|
|
1032
|
+
"inheritedFrom": {
|
|
1033
|
+
"name": "EntityManagement",
|
|
1034
|
+
"module": "src/entities/entities.ts"
|
|
1035
|
+
}
|
|
999
1036
|
},
|
|
1000
1037
|
{
|
|
1001
|
-
"
|
|
1038
|
+
"kind": "field",
|
|
1039
|
+
"name": "hideEdit",
|
|
1002
1040
|
"type": {
|
|
1003
1041
|
"text": "boolean"
|
|
1004
1042
|
},
|
|
1005
1043
|
"default": "false",
|
|
1006
|
-
"
|
|
1044
|
+
"inheritedFrom": {
|
|
1045
|
+
"name": "EntityManagement",
|
|
1046
|
+
"module": "src/entities/entities.ts"
|
|
1047
|
+
}
|
|
1007
1048
|
},
|
|
1008
1049
|
{
|
|
1009
|
-
"
|
|
1050
|
+
"kind": "field",
|
|
1051
|
+
"name": "hideDelete",
|
|
1010
1052
|
"type": {
|
|
1011
1053
|
"text": "boolean"
|
|
1012
1054
|
},
|
|
1013
1055
|
"default": "false",
|
|
1014
|
-
"
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
"package": "@microsoft/fast-element"
|
|
1020
|
-
},
|
|
1021
|
-
"tagName": "entity-list",
|
|
1022
|
-
"customElement": true
|
|
1023
|
-
}
|
|
1024
|
-
],
|
|
1025
|
-
"exports": [
|
|
1026
|
-
{
|
|
1027
|
-
"kind": "js",
|
|
1028
|
-
"name": "List",
|
|
1029
|
-
"declaration": {
|
|
1030
|
-
"name": "List",
|
|
1031
|
-
"module": "src/list/list.ts"
|
|
1032
|
-
}
|
|
1033
|
-
},
|
|
1034
|
-
{
|
|
1035
|
-
"kind": "custom-element-definition",
|
|
1036
|
-
"name": "entity-list",
|
|
1037
|
-
"declaration": {
|
|
1038
|
-
"name": "List",
|
|
1039
|
-
"module": "src/list/list.ts"
|
|
1040
|
-
}
|
|
1041
|
-
}
|
|
1042
|
-
]
|
|
1043
|
-
},
|
|
1044
|
-
{
|
|
1045
|
-
"kind": "javascript-module",
|
|
1046
|
-
"path": "src/main/index.ts",
|
|
1047
|
-
"declarations": [],
|
|
1048
|
-
"exports": [
|
|
1049
|
-
{
|
|
1050
|
-
"kind": "js",
|
|
1051
|
-
"name": "*",
|
|
1052
|
-
"declaration": {
|
|
1053
|
-
"name": "*",
|
|
1054
|
-
"package": "./main.template"
|
|
1055
|
-
}
|
|
1056
|
-
},
|
|
1057
|
-
{
|
|
1058
|
-
"kind": "js",
|
|
1059
|
-
"name": "*",
|
|
1060
|
-
"declaration": {
|
|
1061
|
-
"name": "*",
|
|
1062
|
-
"package": "./main"
|
|
1063
|
-
}
|
|
1064
|
-
}
|
|
1065
|
-
]
|
|
1066
|
-
},
|
|
1067
|
-
{
|
|
1068
|
-
"kind": "javascript-module",
|
|
1069
|
-
"path": "src/main/main.styles.ts",
|
|
1070
|
-
"declarations": [
|
|
1071
|
-
{
|
|
1072
|
-
"kind": "variable",
|
|
1073
|
-
"name": "MainStyles",
|
|
1074
|
-
"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`"
|
|
1075
|
-
}
|
|
1076
|
-
],
|
|
1077
|
-
"exports": [
|
|
1078
|
-
{
|
|
1079
|
-
"kind": "js",
|
|
1080
|
-
"name": "MainStyles",
|
|
1081
|
-
"declaration": {
|
|
1082
|
-
"name": "MainStyles",
|
|
1083
|
-
"module": "src/main/main.styles.ts"
|
|
1084
|
-
}
|
|
1085
|
-
}
|
|
1086
|
-
]
|
|
1087
|
-
},
|
|
1088
|
-
{
|
|
1089
|
-
"kind": "javascript-module",
|
|
1090
|
-
"path": "src/main/main.template.ts",
|
|
1091
|
-
"declarations": [],
|
|
1092
|
-
"exports": []
|
|
1093
|
-
},
|
|
1094
|
-
{
|
|
1095
|
-
"kind": "javascript-module",
|
|
1096
|
-
"path": "src/main/main.ts",
|
|
1097
|
-
"declarations": [
|
|
1098
|
-
{
|
|
1099
|
-
"kind": "class",
|
|
1100
|
-
"description": "",
|
|
1101
|
-
"name": "MainApplication",
|
|
1102
|
-
"members": [
|
|
1056
|
+
"inheritedFrom": {
|
|
1057
|
+
"name": "EntityManagement",
|
|
1058
|
+
"module": "src/entities/entities.ts"
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1103
1061
|
{
|
|
1104
1062
|
"kind": "field",
|
|
1105
|
-
"name": "
|
|
1063
|
+
"name": "modalPosition",
|
|
1106
1064
|
"type": {
|
|
1107
|
-
"text": "
|
|
1065
|
+
"text": "'centre' | 'left' | 'right'"
|
|
1066
|
+
},
|
|
1067
|
+
"default": "'right'",
|
|
1068
|
+
"description": "Determines where the modal dialog will appear on screen",
|
|
1069
|
+
"privacy": "public",
|
|
1070
|
+
"inheritedFrom": {
|
|
1071
|
+
"name": "EntityManagement",
|
|
1072
|
+
"module": "src/entities/entities.ts"
|
|
1108
1073
|
}
|
|
1109
1074
|
},
|
|
1110
1075
|
{
|
|
1111
|
-
"kind": "
|
|
1112
|
-
"name": "
|
|
1076
|
+
"kind": "method",
|
|
1077
|
+
"name": "deepClone",
|
|
1078
|
+
"return": {
|
|
1079
|
+
"type": {
|
|
1080
|
+
"text": "Node"
|
|
1081
|
+
}
|
|
1082
|
+
},
|
|
1083
|
+
"description": "Override the deepClone method to ensure that observable attributes are cloned",
|
|
1084
|
+
"privacy": "public",
|
|
1085
|
+
"inheritedFrom": {
|
|
1086
|
+
"name": "EntityManagement",
|
|
1087
|
+
"module": "src/entities/entities.ts"
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"kind": "method",
|
|
1092
|
+
"name": "submitEntityChanges",
|
|
1093
|
+
"privacy": "public",
|
|
1094
|
+
"parameters": [
|
|
1095
|
+
{
|
|
1096
|
+
"name": "e",
|
|
1097
|
+
"type": {
|
|
1098
|
+
"text": "CustomEvent"
|
|
1099
|
+
},
|
|
1100
|
+
"description": "CustomEvent which contains the payload for the entity to submit to the backend\n\nEmits an event upon error"
|
|
1101
|
+
}
|
|
1102
|
+
],
|
|
1103
|
+
"description": "Event handler for when the user submits the action for the currently open form, either editing or adding the entity",
|
|
1104
|
+
"inheritedFrom": {
|
|
1105
|
+
"name": "EntityManagement",
|
|
1106
|
+
"module": "src/entities/entities.ts"
|
|
1107
|
+
}
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"kind": "method",
|
|
1111
|
+
"name": "readEntity",
|
|
1112
|
+
"privacy": "private",
|
|
1113
|
+
"parameters": [
|
|
1114
|
+
{
|
|
1115
|
+
"name": "e",
|
|
1116
|
+
"type": {
|
|
1117
|
+
"text": "CustomEvent"
|
|
1118
|
+
}
|
|
1119
|
+
}
|
|
1120
|
+
],
|
|
1121
|
+
"inheritedFrom": {
|
|
1122
|
+
"name": "EntityManagement",
|
|
1123
|
+
"module": "src/entities/entities.ts"
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"kind": "method",
|
|
1128
|
+
"name": "closeModal",
|
|
1129
|
+
"privacy": "public",
|
|
1130
|
+
"inheritedFrom": {
|
|
1131
|
+
"name": "EntityManagement",
|
|
1132
|
+
"module": "src/entities/entities.ts"
|
|
1133
|
+
}
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"kind": "method",
|
|
1137
|
+
"name": "criteriaChanged",
|
|
1138
|
+
"privacy": "public",
|
|
1139
|
+
"parameters": [
|
|
1140
|
+
{
|
|
1141
|
+
"name": "e",
|
|
1142
|
+
"type": {
|
|
1143
|
+
"text": "CustomEvent<string>"
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
],
|
|
1147
|
+
"inheritedFrom": {
|
|
1148
|
+
"name": "EntityManagement",
|
|
1149
|
+
"module": "src/entities/entities.ts"
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"kind": "method",
|
|
1154
|
+
"name": "showDeleteConfirmation",
|
|
1155
|
+
"privacy": "private",
|
|
1156
|
+
"inheritedFrom": {
|
|
1157
|
+
"name": "EntityManagement",
|
|
1158
|
+
"module": "src/entities/entities.ts"
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
],
|
|
1162
|
+
"superclass": {
|
|
1163
|
+
"name": "EntityManagement",
|
|
1164
|
+
"module": "/src/entities"
|
|
1165
|
+
},
|
|
1166
|
+
"tagName": "profile-management",
|
|
1167
|
+
"customElement": true,
|
|
1168
|
+
"attributes": [
|
|
1169
|
+
{
|
|
1170
|
+
"name": "resourceName",
|
|
1113
1171
|
"type": {
|
|
1114
|
-
"text": "
|
|
1172
|
+
"text": "string"
|
|
1173
|
+
},
|
|
1174
|
+
"description": "Name of the backend resource which contain the entities to manage",
|
|
1175
|
+
"fieldName": "resourceName",
|
|
1176
|
+
"inheritedFrom": {
|
|
1177
|
+
"name": "EntityManagement",
|
|
1178
|
+
"module": "src/entities/entities.ts"
|
|
1115
1179
|
}
|
|
1116
1180
|
},
|
|
1117
1181
|
{
|
|
1118
|
-
"
|
|
1119
|
-
"name": "session",
|
|
1182
|
+
"name": "readEvent",
|
|
1120
1183
|
"type": {
|
|
1121
|
-
"text": "
|
|
1184
|
+
"text": "string"
|
|
1185
|
+
},
|
|
1186
|
+
"fieldName": "readEvent",
|
|
1187
|
+
"inheritedFrom": {
|
|
1188
|
+
"name": "EntityManagement",
|
|
1189
|
+
"module": "src/entities/entities.ts"
|
|
1122
1190
|
}
|
|
1123
1191
|
},
|
|
1124
1192
|
{
|
|
1125
|
-
"kind": "field",
|
|
1126
|
-
"name": "container",
|
|
1127
1193
|
"type": {
|
|
1128
|
-
"text": "
|
|
1194
|
+
"text": "boolean"
|
|
1195
|
+
},
|
|
1196
|
+
"fieldName": "readonly",
|
|
1197
|
+
"inheritedFrom": {
|
|
1198
|
+
"name": "EntityManagement",
|
|
1199
|
+
"module": "src/entities/entities.ts"
|
|
1129
1200
|
}
|
|
1130
1201
|
},
|
|
1131
1202
|
{
|
|
1132
|
-
"
|
|
1133
|
-
"name": "provider",
|
|
1203
|
+
"name": "updateEvent",
|
|
1134
1204
|
"type": {
|
|
1135
|
-
"text": "
|
|
1205
|
+
"text": "string"
|
|
1206
|
+
},
|
|
1207
|
+
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
1208
|
+
"fieldName": "updateEvent",
|
|
1209
|
+
"inheritedFrom": {
|
|
1210
|
+
"name": "EntityManagement",
|
|
1211
|
+
"module": "src/entities/entities.ts"
|
|
1136
1212
|
}
|
|
1137
1213
|
},
|
|
1138
1214
|
{
|
|
1139
|
-
"
|
|
1140
|
-
"
|
|
1215
|
+
"name": "deleteEvent",
|
|
1216
|
+
"type": {
|
|
1217
|
+
"text": "string"
|
|
1218
|
+
},
|
|
1219
|
+
"description": "Name of the event handler on the Genesis server which handles deleting the entity",
|
|
1220
|
+
"fieldName": "deleteEvent",
|
|
1221
|
+
"inheritedFrom": {
|
|
1222
|
+
"name": "EntityManagement",
|
|
1223
|
+
"module": "src/entities/entities.ts"
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"name": "createEvent",
|
|
1228
|
+
"type": {
|
|
1229
|
+
"text": "string"
|
|
1230
|
+
},
|
|
1231
|
+
"description": "Name of the event handler on the Genesis server which handles creating an entity",
|
|
1232
|
+
"fieldName": "createEvent",
|
|
1233
|
+
"inheritedFrom": {
|
|
1234
|
+
"name": "EntityManagement",
|
|
1235
|
+
"module": "src/entities/entities.ts"
|
|
1236
|
+
}
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"name": "title",
|
|
1240
|
+
"type": {
|
|
1241
|
+
"text": "string"
|
|
1242
|
+
},
|
|
1243
|
+
"description": "Title of the grid",
|
|
1244
|
+
"fieldName": "title",
|
|
1245
|
+
"inheritedFrom": {
|
|
1246
|
+
"name": "EntityManagement",
|
|
1247
|
+
"module": "src/entities/entities.ts"
|
|
1248
|
+
}
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"name": "entityLabel",
|
|
1252
|
+
"type": {
|
|
1253
|
+
"text": "string"
|
|
1254
|
+
},
|
|
1255
|
+
"default": "''",
|
|
1256
|
+
"description": "Label for the entity which has usages such as being shown in the title of the modal wen editing the entity",
|
|
1257
|
+
"fieldName": "entityLabel",
|
|
1258
|
+
"inheritedFrom": {
|
|
1259
|
+
"name": "EntityManagement",
|
|
1260
|
+
"module": "src/entities/entities.ts"
|
|
1261
|
+
}
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"name": "persist-column-state-key",
|
|
1265
|
+
"type": {
|
|
1266
|
+
"text": "string"
|
|
1267
|
+
},
|
|
1268
|
+
"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.",
|
|
1269
|
+
"fieldName": "persistColumnStateKey",
|
|
1270
|
+
"inheritedFrom": {
|
|
1271
|
+
"name": "EntityManagement",
|
|
1272
|
+
"module": "src/entities/entities.ts"
|
|
1273
|
+
}
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"name": "size-columns-to-fit",
|
|
1141
1277
|
"type": {
|
|
1142
1278
|
"text": "boolean"
|
|
1143
1279
|
},
|
|
1144
|
-
"
|
|
1280
|
+
"fieldName": "sizeColumnsToFit",
|
|
1281
|
+
"inheritedFrom": {
|
|
1282
|
+
"name": "EntityManagement",
|
|
1283
|
+
"module": "src/entities/entities.ts"
|
|
1284
|
+
}
|
|
1145
1285
|
},
|
|
1146
1286
|
{
|
|
1147
|
-
"
|
|
1148
|
-
"name": "data",
|
|
1287
|
+
"name": "enable-filter-bar",
|
|
1149
1288
|
"type": {
|
|
1150
|
-
"text": "
|
|
1289
|
+
"text": "boolean"
|
|
1151
1290
|
},
|
|
1152
|
-
"
|
|
1291
|
+
"fieldName": "enableFilterBar",
|
|
1292
|
+
"inheritedFrom": {
|
|
1293
|
+
"name": "EntityManagement",
|
|
1294
|
+
"module": "src/entities/entities.ts"
|
|
1295
|
+
}
|
|
1153
1296
|
},
|
|
1154
1297
|
{
|
|
1155
|
-
"
|
|
1156
|
-
"
|
|
1298
|
+
"name": "enable-cell-flashing",
|
|
1299
|
+
"type": {
|
|
1300
|
+
"text": "boolean"
|
|
1301
|
+
},
|
|
1302
|
+
"fieldName": "enableCellFlashing",
|
|
1303
|
+
"inheritedFrom": {
|
|
1304
|
+
"name": "EntityManagement",
|
|
1305
|
+
"module": "src/entities/entities.ts"
|
|
1306
|
+
}
|
|
1157
1307
|
},
|
|
1158
1308
|
{
|
|
1159
|
-
"
|
|
1160
|
-
"
|
|
1309
|
+
"name": "hide-edit",
|
|
1310
|
+
"type": {
|
|
1311
|
+
"text": "boolean"
|
|
1312
|
+
},
|
|
1313
|
+
"default": "false",
|
|
1314
|
+
"fieldName": "hideEdit",
|
|
1315
|
+
"inheritedFrom": {
|
|
1316
|
+
"name": "EntityManagement",
|
|
1317
|
+
"module": "src/entities/entities.ts"
|
|
1318
|
+
}
|
|
1161
1319
|
},
|
|
1162
1320
|
{
|
|
1163
|
-
"
|
|
1164
|
-
"
|
|
1321
|
+
"name": "hide-delete",
|
|
1322
|
+
"type": {
|
|
1323
|
+
"text": "boolean"
|
|
1324
|
+
},
|
|
1325
|
+
"default": "false",
|
|
1326
|
+
"fieldName": "hideDelete",
|
|
1327
|
+
"inheritedFrom": {
|
|
1328
|
+
"name": "EntityManagement",
|
|
1329
|
+
"module": "src/entities/entities.ts"
|
|
1330
|
+
}
|
|
1165
1331
|
},
|
|
1166
1332
|
{
|
|
1167
|
-
"
|
|
1168
|
-
"
|
|
1169
|
-
|
|
1333
|
+
"name": "modal-position",
|
|
1334
|
+
"type": {
|
|
1335
|
+
"text": "'centre' | 'left' | 'right'"
|
|
1336
|
+
},
|
|
1337
|
+
"default": "'right'",
|
|
1338
|
+
"description": "Determines where the modal dialog will appear on screen",
|
|
1339
|
+
"fieldName": "modalPosition",
|
|
1340
|
+
"inheritedFrom": {
|
|
1341
|
+
"name": "EntityManagement",
|
|
1342
|
+
"module": "src/entities/entities.ts"
|
|
1343
|
+
}
|
|
1170
1344
|
}
|
|
1171
|
-
]
|
|
1172
|
-
"superclass": {
|
|
1173
|
-
"name": "FASTElement",
|
|
1174
|
-
"package": "@microsoft/fast-element"
|
|
1175
|
-
},
|
|
1176
|
-
"customElement": true
|
|
1345
|
+
]
|
|
1177
1346
|
}
|
|
1178
1347
|
],
|
|
1179
1348
|
"exports": [
|
|
1180
1349
|
{
|
|
1181
1350
|
"kind": "js",
|
|
1182
|
-
"name": "
|
|
1351
|
+
"name": "Profiles",
|
|
1352
|
+
"declaration": {
|
|
1353
|
+
"name": "Profiles",
|
|
1354
|
+
"module": "src/profiles/profiles.ts"
|
|
1355
|
+
}
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"kind": "custom-element-definition",
|
|
1359
|
+
"name": "profile-management",
|
|
1360
|
+
"declaration": {
|
|
1361
|
+
"name": "Profiles",
|
|
1362
|
+
"module": "src/profiles/profiles.ts"
|
|
1363
|
+
}
|
|
1364
|
+
}
|
|
1365
|
+
]
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"kind": "javascript-module",
|
|
1369
|
+
"path": "src/routes/config.ts",
|
|
1370
|
+
"declarations": [],
|
|
1371
|
+
"exports": []
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"kind": "javascript-module",
|
|
1375
|
+
"path": "src/routes/index.ts",
|
|
1376
|
+
"declarations": [],
|
|
1377
|
+
"exports": [
|
|
1378
|
+
{
|
|
1379
|
+
"kind": "js",
|
|
1380
|
+
"name": "*",
|
|
1183
1381
|
"declaration": {
|
|
1184
|
-
"name": "
|
|
1185
|
-
"
|
|
1382
|
+
"name": "*",
|
|
1383
|
+
"package": "./config"
|
|
1186
1384
|
}
|
|
1187
|
-
}
|
|
1385
|
+
}
|
|
1386
|
+
]
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
"kind": "javascript-module",
|
|
1390
|
+
"path": "src/entities/entities.styles.ts",
|
|
1391
|
+
"declarations": [
|
|
1188
1392
|
{
|
|
1189
|
-
"kind": "
|
|
1393
|
+
"kind": "variable",
|
|
1394
|
+
"name": "styles",
|
|
1395
|
+
"default": "css`\n :host {\n contain: content;\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 :host::part(header) {\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n`",
|
|
1396
|
+
"description": "Defines the css of the entity component as an ElementStyles object"
|
|
1397
|
+
}
|
|
1398
|
+
],
|
|
1399
|
+
"exports": [
|
|
1400
|
+
{
|
|
1401
|
+
"kind": "js",
|
|
1402
|
+
"name": "styles",
|
|
1190
1403
|
"declaration": {
|
|
1191
|
-
"name": "
|
|
1192
|
-
"module": "src/
|
|
1404
|
+
"name": "styles",
|
|
1405
|
+
"module": "src/entities/entities.styles.ts"
|
|
1193
1406
|
}
|
|
1194
1407
|
}
|
|
1195
1408
|
]
|
|
1196
1409
|
},
|
|
1197
1410
|
{
|
|
1198
1411
|
"kind": "javascript-module",
|
|
1199
|
-
"path": "src/
|
|
1412
|
+
"path": "src/entities/entities.template.ts",
|
|
1200
1413
|
"declarations": [
|
|
1201
1414
|
{
|
|
1202
1415
|
"kind": "variable",
|
|
1203
|
-
"name": "
|
|
1204
|
-
"
|
|
1205
|
-
|
|
1206
|
-
},
|
|
1207
|
-
"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}"
|
|
1416
|
+
"name": "template",
|
|
1417
|
+
"default": "html<EntityManagement>`\n <div class=\"container\">\n <slot name=\"header\" part=\"header\">${defaultHeader}</slot>\n <entity-list\n title=${(x) => x.title}\n persist-column-state-key=${(x) => x.persistColumnStateKey}\n size-columns-to-fit=${(x) => x.sizeColumnsToFit}\n enable-filter-bar=${(x) => x.enableFilterBar}\n resourceName=${(x) => x.resourceName}\n :deleteEvent=${(x) => x.deleteEvent}\n :updateEvent=${(x) => x.updateEvent}\n :gridOptions=${(x) => x.gridOptions}\n :columns=${(x) => x.columns}\n :datasourceConfig=${(x) => x.datasourceConfig}\n data-test-id=\"entity-list\"\n hide-edit=${(x) => x.hideEdit}\n hide-delete=${(x) => x.hideDelete}\n >\n <slot name=\"header\" slot=\"header\">${defaultHeader}</slot>\n </entity-list>\n <zero-modal\n ${ref('editEntityModal')}\n position=${(x) => x.modalPosition}\n :onCloseCallback=${(x) => x.closeModal.bind(x)}\n data-test-id=\"edit-entity-modal\"\n >\n <div slot=\"top\" data-test-id=\"dialog-title\">${(x) => x.editDialogTitle}</div>\n\n <slot name=\"edit\">\n ${when(\n (x) => x.editModalVisible,\n html<EntityManagement>`\n <foundation-form\n part=\"form\"\n resourceName=${(x) => x.formResourceName}\n :data=${(x) => x.editedEntity}\n :uischema=${(x) => x.formUiSchema}\n @submit-success=${(x, c) => x.submitEntityChanges(c.event as CustomEvent)}\n @submit-failure=${(x, c) =>\n x.errorSnack((c.event as CustomEvent<{ errors: MessageError[] }>).detail.errors)}\n ></foundation-form>\n `,\n )}\n </slot>\n </zero-modal>\n </div>\n`",
|
|
1418
|
+
"description": "Defines the html of the entity component as a ViewTemplate object"
|
|
1208
1419
|
}
|
|
1209
1420
|
],
|
|
1210
1421
|
"exports": [
|
|
1211
1422
|
{
|
|
1212
1423
|
"kind": "js",
|
|
1213
|
-
"name": "
|
|
1424
|
+
"name": "template",
|
|
1214
1425
|
"declaration": {
|
|
1215
|
-
"name": "
|
|
1216
|
-
"module": "src/
|
|
1426
|
+
"name": "template",
|
|
1427
|
+
"module": "src/entities/entities.template.ts"
|
|
1217
1428
|
}
|
|
1218
1429
|
}
|
|
1219
1430
|
]
|
|
1220
1431
|
},
|
|
1221
1432
|
{
|
|
1222
1433
|
"kind": "javascript-module",
|
|
1223
|
-
"path": "src/
|
|
1434
|
+
"path": "src/entities/entities.ts",
|
|
1224
1435
|
"declarations": [
|
|
1225
1436
|
{
|
|
1226
1437
|
"kind": "class",
|
|
1227
|
-
"description": "Main class which
|
|
1228
|
-
"name": "
|
|
1438
|
+
"description": "Main class which defines the entity management functionality",
|
|
1439
|
+
"name": "EntityManagement",
|
|
1229
1440
|
"members": [
|
|
1230
|
-
{
|
|
1231
|
-
"kind": "method",
|
|
1232
|
-
"name": "readProfileData",
|
|
1233
|
-
"privacy": "public",
|
|
1234
|
-
"parameters": [
|
|
1235
|
-
{
|
|
1236
|
-
"name": "profile"
|
|
1237
|
-
}
|
|
1238
|
-
]
|
|
1239
|
-
},
|
|
1240
|
-
{
|
|
1241
|
-
"kind": "method",
|
|
1242
|
-
"name": "confirmDelete",
|
|
1243
|
-
"inheritedFrom": {
|
|
1244
|
-
"name": "EntityManagement",
|
|
1245
|
-
"module": "src/entities/entities.ts"
|
|
1246
|
-
}
|
|
1247
|
-
},
|
|
1248
1441
|
{
|
|
1249
1442
|
"kind": "field",
|
|
1250
|
-
"name": "
|
|
1443
|
+
"name": "connect",
|
|
1251
1444
|
"type": {
|
|
1252
|
-
"text": "
|
|
1445
|
+
"text": "Connect"
|
|
1253
1446
|
},
|
|
1254
|
-
"
|
|
1255
|
-
"
|
|
1256
|
-
"inheritedFrom": {
|
|
1257
|
-
"name": "EntityManagement",
|
|
1258
|
-
"module": "src/entities/entities.ts"
|
|
1259
|
-
}
|
|
1447
|
+
"privacy": "protected",
|
|
1448
|
+
"description": "DI connect object which is used to interact with the backend."
|
|
1260
1449
|
},
|
|
1261
1450
|
{
|
|
1262
1451
|
"kind": "field",
|
|
1263
|
-
"name": "
|
|
1452
|
+
"name": "resourceName",
|
|
1264
1453
|
"type": {
|
|
1265
1454
|
"text": "string"
|
|
1266
1455
|
},
|
|
1267
|
-
"description": "Name of the
|
|
1268
|
-
"privacy": "public"
|
|
1269
|
-
"inheritedFrom": {
|
|
1270
|
-
"name": "EntityManagement",
|
|
1271
|
-
"module": "src/entities/entities.ts"
|
|
1272
|
-
}
|
|
1456
|
+
"description": "Name of the backend resource which contain the entities to manage",
|
|
1457
|
+
"privacy": "public"
|
|
1273
1458
|
},
|
|
1274
1459
|
{
|
|
1275
1460
|
"kind": "field",
|
|
1276
|
-
"name": "
|
|
1461
|
+
"name": "readEvent",
|
|
1277
1462
|
"type": {
|
|
1278
1463
|
"text": "string"
|
|
1279
|
-
},
|
|
1280
|
-
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
1281
|
-
"privacy": "public",
|
|
1282
|
-
"inheritedFrom": {
|
|
1283
|
-
"name": "EntityManagement",
|
|
1284
|
-
"module": "src/entities/entities.ts"
|
|
1285
1464
|
}
|
|
1286
1465
|
},
|
|
1287
1466
|
{
|
|
1288
1467
|
"kind": "field",
|
|
1289
|
-
"name": "
|
|
1468
|
+
"name": "readEventFn",
|
|
1290
1469
|
"type": {
|
|
1291
|
-
"text": "
|
|
1292
|
-
},
|
|
1293
|
-
"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.",
|
|
1294
|
-
"privacy": "public",
|
|
1295
|
-
"default": "'entity_profiles_management'",
|
|
1296
|
-
"inheritedFrom": {
|
|
1297
|
-
"name": "EntityManagement",
|
|
1298
|
-
"module": "src/entities/entities.ts"
|
|
1470
|
+
"text": "(...args) => {}"
|
|
1299
1471
|
}
|
|
1300
1472
|
},
|
|
1301
1473
|
{
|
|
1302
1474
|
"kind": "field",
|
|
1303
|
-
"name": "
|
|
1475
|
+
"name": "readonly",
|
|
1304
1476
|
"type": {
|
|
1305
|
-
"text": "
|
|
1306
|
-
},
|
|
1307
|
-
"default": "editProfileFormSchema",
|
|
1308
|
-
"inheritedFrom": {
|
|
1309
|
-
"name": "EntityManagement",
|
|
1310
|
-
"module": "src/entities/entities.ts"
|
|
1477
|
+
"text": "boolean"
|
|
1311
1478
|
}
|
|
1312
1479
|
},
|
|
1313
1480
|
{
|
|
1314
1481
|
"kind": "field",
|
|
1315
|
-
"name": "
|
|
1482
|
+
"name": "updateEvent",
|
|
1316
1483
|
"type": {
|
|
1317
|
-
"text": "
|
|
1484
|
+
"text": "string"
|
|
1318
1485
|
},
|
|
1319
|
-
"
|
|
1320
|
-
"
|
|
1321
|
-
"name": "EntityManagement",
|
|
1322
|
-
"module": "src/entities/entities.ts"
|
|
1323
|
-
}
|
|
1486
|
+
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
1487
|
+
"privacy": "public"
|
|
1324
1488
|
},
|
|
1325
1489
|
{
|
|
1326
1490
|
"kind": "field",
|
|
1327
|
-
"name": "
|
|
1491
|
+
"name": "deleteEvent",
|
|
1328
1492
|
"type": {
|
|
1329
|
-
"text": "
|
|
1493
|
+
"text": "string"
|
|
1330
1494
|
},
|
|
1331
|
-
"
|
|
1332
|
-
|
|
1333
|
-
"module": "src/entities/entities.ts"
|
|
1334
|
-
}
|
|
1495
|
+
"description": "Name of the event handler on the Genesis server which handles deleting the entity",
|
|
1496
|
+
"privacy": "public"
|
|
1335
1497
|
},
|
|
1336
1498
|
{
|
|
1337
1499
|
"kind": "field",
|
|
1338
|
-
"name": "
|
|
1500
|
+
"name": "createEvent",
|
|
1339
1501
|
"type": {
|
|
1340
1502
|
"text": "string"
|
|
1341
1503
|
},
|
|
1342
|
-
"description": "Name of the
|
|
1343
|
-
"privacy": "public"
|
|
1344
|
-
"default": "'ALL_PROFILES'",
|
|
1345
|
-
"inheritedFrom": {
|
|
1346
|
-
"name": "EntityManagement",
|
|
1347
|
-
"module": "src/entities/entities.ts"
|
|
1348
|
-
}
|
|
1504
|
+
"description": "Name of the event handler on the Genesis server which handles creating an entity",
|
|
1505
|
+
"privacy": "public"
|
|
1349
1506
|
},
|
|
1350
1507
|
{
|
|
1351
1508
|
"kind": "field",
|
|
@@ -1354,12 +1511,7 @@
|
|
|
1354
1511
|
"text": "string"
|
|
1355
1512
|
},
|
|
1356
1513
|
"description": "Title of the grid",
|
|
1357
|
-
"privacy": "public"
|
|
1358
|
-
"default": "'Profile Management'",
|
|
1359
|
-
"inheritedFrom": {
|
|
1360
|
-
"name": "EntityManagement",
|
|
1361
|
-
"module": "src/entities/entities.ts"
|
|
1362
|
-
}
|
|
1514
|
+
"privacy": "public"
|
|
1363
1515
|
},
|
|
1364
1516
|
{
|
|
1365
1517
|
"kind": "field",
|
|
@@ -1367,48 +1519,18 @@
|
|
|
1367
1519
|
"type": {
|
|
1368
1520
|
"text": "string"
|
|
1369
1521
|
},
|
|
1370
|
-
"default": "'
|
|
1522
|
+
"default": "''",
|
|
1371
1523
|
"description": "Label for the entity which has usages such as being shown in the title of the modal wen editing the entity",
|
|
1372
|
-
"privacy": "public"
|
|
1373
|
-
"inheritedFrom": {
|
|
1374
|
-
"name": "EntityManagement",
|
|
1375
|
-
"module": "src/entities/entities.ts"
|
|
1376
|
-
}
|
|
1377
|
-
},
|
|
1378
|
-
{
|
|
1379
|
-
"kind": "field",
|
|
1380
|
-
"name": "connect",
|
|
1381
|
-
"type": {
|
|
1382
|
-
"text": "Connect"
|
|
1383
|
-
},
|
|
1384
|
-
"privacy": "protected",
|
|
1385
|
-
"description": "DI connect object which is used to interact with the backend.",
|
|
1386
|
-
"inheritedFrom": {
|
|
1387
|
-
"name": "EntityManagement",
|
|
1388
|
-
"module": "src/entities/entities.ts"
|
|
1389
|
-
}
|
|
1524
|
+
"privacy": "public"
|
|
1390
1525
|
},
|
|
1391
1526
|
{
|
|
1392
1527
|
"kind": "field",
|
|
1393
|
-
"name": "
|
|
1528
|
+
"name": "persistColumnStateKey",
|
|
1394
1529
|
"type": {
|
|
1395
1530
|
"text": "string"
|
|
1396
1531
|
},
|
|
1397
|
-
"
|
|
1398
|
-
|
|
1399
|
-
"module": "src/entities/entities.ts"
|
|
1400
|
-
}
|
|
1401
|
-
},
|
|
1402
|
-
{
|
|
1403
|
-
"kind": "field",
|
|
1404
|
-
"name": "readonly",
|
|
1405
|
-
"type": {
|
|
1406
|
-
"text": "boolean"
|
|
1407
|
-
},
|
|
1408
|
-
"inheritedFrom": {
|
|
1409
|
-
"name": "EntityManagement",
|
|
1410
|
-
"module": "src/entities/entities.ts"
|
|
1411
|
-
}
|
|
1532
|
+
"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.",
|
|
1533
|
+
"privacy": "public"
|
|
1412
1534
|
},
|
|
1413
1535
|
{
|
|
1414
1536
|
"kind": "field",
|
|
@@ -1417,11 +1539,7 @@
|
|
|
1417
1539
|
"text": "GridOptions"
|
|
1418
1540
|
},
|
|
1419
1541
|
"description": "GridOptions to be passed down from application",
|
|
1420
|
-
"privacy": "public"
|
|
1421
|
-
"inheritedFrom": {
|
|
1422
|
-
"name": "EntityManagement",
|
|
1423
|
-
"module": "src/entities/entities.ts"
|
|
1424
|
-
}
|
|
1542
|
+
"privacy": "public"
|
|
1425
1543
|
},
|
|
1426
1544
|
{
|
|
1427
1545
|
"kind": "field",
|
|
@@ -1430,11 +1548,7 @@
|
|
|
1430
1548
|
"text": "ColDef[]"
|
|
1431
1549
|
},
|
|
1432
1550
|
"description": "Array which holds the column definitions.",
|
|
1433
|
-
"privacy": "public"
|
|
1434
|
-
"inheritedFrom": {
|
|
1435
|
-
"name": "EntityManagement",
|
|
1436
|
-
"module": "src/entities/entities.ts"
|
|
1437
|
-
}
|
|
1551
|
+
"privacy": "public"
|
|
1438
1552
|
},
|
|
1439
1553
|
{
|
|
1440
1554
|
"kind": "field",
|
|
@@ -1443,21 +1557,27 @@
|
|
|
1443
1557
|
"text": "DatasourceConfiguration"
|
|
1444
1558
|
},
|
|
1445
1559
|
"description": "The configuration which is used when interacting with the resource on the backend",
|
|
1446
|
-
"privacy": "public"
|
|
1447
|
-
"inheritedFrom": {
|
|
1448
|
-
"name": "EntityManagement",
|
|
1449
|
-
"module": "src/entities/entities.ts"
|
|
1450
|
-
}
|
|
1560
|
+
"privacy": "public"
|
|
1451
1561
|
},
|
|
1452
1562
|
{
|
|
1453
1563
|
"kind": "field",
|
|
1454
1564
|
"name": "formUiSchema",
|
|
1455
1565
|
"type": {
|
|
1456
1566
|
"text": "any"
|
|
1457
|
-
}
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"kind": "field",
|
|
1571
|
+
"name": "createFormUiSchema",
|
|
1572
|
+
"type": {
|
|
1573
|
+
"text": "any"
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"kind": "field",
|
|
1578
|
+
"name": "updateFormUiSchema",
|
|
1579
|
+
"type": {
|
|
1580
|
+
"text": "any"
|
|
1461
1581
|
}
|
|
1462
1582
|
},
|
|
1463
1583
|
{
|
|
@@ -1467,34 +1587,22 @@
|
|
|
1467
1587
|
"text": "any"
|
|
1468
1588
|
},
|
|
1469
1589
|
"description": "Reference to the currently selected entity from the grid.",
|
|
1470
|
-
"privacy": "public"
|
|
1471
|
-
"inheritedFrom": {
|
|
1472
|
-
"name": "EntityManagement",
|
|
1473
|
-
"module": "src/entities/entities.ts"
|
|
1474
|
-
}
|
|
1590
|
+
"privacy": "public"
|
|
1475
1591
|
},
|
|
1476
1592
|
{
|
|
1477
1593
|
"kind": "field",
|
|
1478
1594
|
"name": "editedEntity",
|
|
1479
1595
|
"type": {
|
|
1480
|
-
"text": "any"
|
|
1481
|
-
},
|
|
1482
|
-
"description": "Disables the form while enabled to stop the user dispatching a large number of duplicate events",
|
|
1483
|
-
"privacy": "public"
|
|
1484
|
-
"inheritedFrom": {
|
|
1485
|
-
"name": "EntityManagement",
|
|
1486
|
-
"module": "src/entities/entities.ts"
|
|
1487
|
-
}
|
|
1596
|
+
"text": "any"
|
|
1597
|
+
},
|
|
1598
|
+
"description": "Disables the form while enabled to stop the user dispatching a large number of duplicate events",
|
|
1599
|
+
"privacy": "public"
|
|
1488
1600
|
},
|
|
1489
1601
|
{
|
|
1490
1602
|
"kind": "field",
|
|
1491
1603
|
"name": "submitting",
|
|
1492
1604
|
"type": {
|
|
1493
1605
|
"text": "boolean"
|
|
1494
|
-
},
|
|
1495
|
-
"inheritedFrom": {
|
|
1496
|
-
"name": "EntityManagement",
|
|
1497
|
-
"module": "src/entities/entities.ts"
|
|
1498
1606
|
}
|
|
1499
1607
|
},
|
|
1500
1608
|
{
|
|
@@ -1502,10 +1610,6 @@
|
|
|
1502
1610
|
"name": "defaultEntityValues",
|
|
1503
1611
|
"type": {
|
|
1504
1612
|
"text": "any"
|
|
1505
|
-
},
|
|
1506
|
-
"inheritedFrom": {
|
|
1507
|
-
"name": "EntityManagement",
|
|
1508
|
-
"module": "src/entities/entities.ts"
|
|
1509
1613
|
}
|
|
1510
1614
|
},
|
|
1511
1615
|
{
|
|
@@ -1514,11 +1618,7 @@
|
|
|
1514
1618
|
"type": {
|
|
1515
1619
|
"text": "string"
|
|
1516
1620
|
},
|
|
1517
|
-
"description": "String which contains the text of the popup modal when the user is adding or editing an entity"
|
|
1518
|
-
"inheritedFrom": {
|
|
1519
|
-
"name": "EntityManagement",
|
|
1520
|
-
"module": "src/entities/entities.ts"
|
|
1521
|
-
}
|
|
1621
|
+
"description": "String which contains the text of the popup modal when the user is adding or editing an entity"
|
|
1522
1622
|
},
|
|
1523
1623
|
{
|
|
1524
1624
|
"kind": "field",
|
|
@@ -1526,19 +1626,11 @@
|
|
|
1526
1626
|
"type": {
|
|
1527
1627
|
"text": "boolean"
|
|
1528
1628
|
},
|
|
1529
|
-
"default": "false"
|
|
1530
|
-
"inheritedFrom": {
|
|
1531
|
-
"name": "EntityManagement",
|
|
1532
|
-
"module": "src/entities/entities.ts"
|
|
1533
|
-
}
|
|
1629
|
+
"default": "false"
|
|
1534
1630
|
},
|
|
1535
1631
|
{
|
|
1536
1632
|
"kind": "method",
|
|
1537
|
-
"name": "editModalVisibleChanged"
|
|
1538
|
-
"inheritedFrom": {
|
|
1539
|
-
"name": "EntityManagement",
|
|
1540
|
-
"module": "src/entities/entities.ts"
|
|
1541
|
-
}
|
|
1633
|
+
"name": "editModalVisibleChanged"
|
|
1542
1634
|
},
|
|
1543
1635
|
{
|
|
1544
1636
|
"kind": "field",
|
|
@@ -1546,21 +1638,13 @@
|
|
|
1546
1638
|
"type": {
|
|
1547
1639
|
"text": "any"
|
|
1548
1640
|
},
|
|
1549
|
-
"privacy": "public"
|
|
1550
|
-
"inheritedFrom": {
|
|
1551
|
-
"name": "EntityManagement",
|
|
1552
|
-
"module": "src/entities/entities.ts"
|
|
1553
|
-
}
|
|
1641
|
+
"privacy": "public"
|
|
1554
1642
|
},
|
|
1555
1643
|
{
|
|
1556
1644
|
"kind": "field",
|
|
1557
1645
|
"name": "sizeColumnsToFit",
|
|
1558
1646
|
"type": {
|
|
1559
1647
|
"text": "boolean"
|
|
1560
|
-
},
|
|
1561
|
-
"inheritedFrom": {
|
|
1562
|
-
"name": "EntityManagement",
|
|
1563
|
-
"module": "src/entities/entities.ts"
|
|
1564
1648
|
}
|
|
1565
1649
|
},
|
|
1566
1650
|
{
|
|
@@ -1568,10 +1652,6 @@
|
|
|
1568
1652
|
"name": "enableFilterBar",
|
|
1569
1653
|
"type": {
|
|
1570
1654
|
"text": "boolean"
|
|
1571
|
-
},
|
|
1572
|
-
"inheritedFrom": {
|
|
1573
|
-
"name": "EntityManagement",
|
|
1574
|
-
"module": "src/entities/entities.ts"
|
|
1575
1655
|
}
|
|
1576
1656
|
},
|
|
1577
1657
|
{
|
|
@@ -1579,10 +1659,6 @@
|
|
|
1579
1659
|
"name": "enableCellFlashing",
|
|
1580
1660
|
"type": {
|
|
1581
1661
|
"text": "boolean"
|
|
1582
|
-
},
|
|
1583
|
-
"inheritedFrom": {
|
|
1584
|
-
"name": "EntityManagement",
|
|
1585
|
-
"module": "src/entities/entities.ts"
|
|
1586
1662
|
}
|
|
1587
1663
|
},
|
|
1588
1664
|
{
|
|
@@ -1591,11 +1667,7 @@
|
|
|
1591
1667
|
"type": {
|
|
1592
1668
|
"text": "boolean"
|
|
1593
1669
|
},
|
|
1594
|
-
"default": "false"
|
|
1595
|
-
"inheritedFrom": {
|
|
1596
|
-
"name": "EntityManagement",
|
|
1597
|
-
"module": "src/entities/entities.ts"
|
|
1598
|
-
}
|
|
1670
|
+
"default": "false"
|
|
1599
1671
|
},
|
|
1600
1672
|
{
|
|
1601
1673
|
"kind": "field",
|
|
@@ -1603,11 +1675,7 @@
|
|
|
1603
1675
|
"type": {
|
|
1604
1676
|
"text": "boolean"
|
|
1605
1677
|
},
|
|
1606
|
-
"default": "false"
|
|
1607
|
-
"inheritedFrom": {
|
|
1608
|
-
"name": "EntityManagement",
|
|
1609
|
-
"module": "src/entities/entities.ts"
|
|
1610
|
-
}
|
|
1678
|
+
"default": "false"
|
|
1611
1679
|
},
|
|
1612
1680
|
{
|
|
1613
1681
|
"kind": "field",
|
|
@@ -1617,11 +1685,7 @@
|
|
|
1617
1685
|
},
|
|
1618
1686
|
"default": "'right'",
|
|
1619
1687
|
"description": "Determines where the modal dialog will appear on screen",
|
|
1620
|
-
"privacy": "public"
|
|
1621
|
-
"inheritedFrom": {
|
|
1622
|
-
"name": "EntityManagement",
|
|
1623
|
-
"module": "src/entities/entities.ts"
|
|
1624
|
-
}
|
|
1688
|
+
"privacy": "public"
|
|
1625
1689
|
},
|
|
1626
1690
|
{
|
|
1627
1691
|
"kind": "method",
|
|
@@ -1632,11 +1696,7 @@
|
|
|
1632
1696
|
}
|
|
1633
1697
|
},
|
|
1634
1698
|
"description": "Override the deepClone method to ensure that observable attributes are cloned",
|
|
1635
|
-
"privacy": "public"
|
|
1636
|
-
"inheritedFrom": {
|
|
1637
|
-
"name": "EntityManagement",
|
|
1638
|
-
"module": "src/entities/entities.ts"
|
|
1639
|
-
}
|
|
1699
|
+
"privacy": "public"
|
|
1640
1700
|
},
|
|
1641
1701
|
{
|
|
1642
1702
|
"kind": "method",
|
|
@@ -1651,11 +1711,7 @@
|
|
|
1651
1711
|
"description": "CustomEvent which contains the payload for the entity to submit to the backend\n\nEmits an event upon error"
|
|
1652
1712
|
}
|
|
1653
1713
|
],
|
|
1654
|
-
"description": "Event handler for when the user submits the action for the currently open form, either editing or adding the entity"
|
|
1655
|
-
"inheritedFrom": {
|
|
1656
|
-
"name": "EntityManagement",
|
|
1657
|
-
"module": "src/entities/entities.ts"
|
|
1658
|
-
}
|
|
1714
|
+
"description": "Event handler for when the user submits the action for the currently open form, either editing or adding the entity"
|
|
1659
1715
|
},
|
|
1660
1716
|
{
|
|
1661
1717
|
"kind": "method",
|
|
@@ -1668,20 +1724,12 @@
|
|
|
1668
1724
|
"text": "CustomEvent"
|
|
1669
1725
|
}
|
|
1670
1726
|
}
|
|
1671
|
-
]
|
|
1672
|
-
"inheritedFrom": {
|
|
1673
|
-
"name": "EntityManagement",
|
|
1674
|
-
"module": "src/entities/entities.ts"
|
|
1675
|
-
}
|
|
1727
|
+
]
|
|
1676
1728
|
},
|
|
1677
1729
|
{
|
|
1678
1730
|
"kind": "method",
|
|
1679
1731
|
"name": "closeModal",
|
|
1680
|
-
"privacy": "public"
|
|
1681
|
-
"inheritedFrom": {
|
|
1682
|
-
"name": "EntityManagement",
|
|
1683
|
-
"module": "src/entities/entities.ts"
|
|
1684
|
-
}
|
|
1732
|
+
"privacy": "public"
|
|
1685
1733
|
},
|
|
1686
1734
|
{
|
|
1687
1735
|
"kind": "method",
|
|
@@ -1694,28 +1742,18 @@
|
|
|
1694
1742
|
"text": "CustomEvent<string>"
|
|
1695
1743
|
}
|
|
1696
1744
|
}
|
|
1697
|
-
]
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1745
|
+
]
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"kind": "method",
|
|
1749
|
+
"name": "confirmDelete"
|
|
1702
1750
|
},
|
|
1703
1751
|
{
|
|
1704
1752
|
"kind": "method",
|
|
1705
1753
|
"name": "showDeleteConfirmation",
|
|
1706
|
-
"privacy": "private"
|
|
1707
|
-
"inheritedFrom": {
|
|
1708
|
-
"name": "EntityManagement",
|
|
1709
|
-
"module": "src/entities/entities.ts"
|
|
1710
|
-
}
|
|
1754
|
+
"privacy": "private"
|
|
1711
1755
|
}
|
|
1712
1756
|
],
|
|
1713
|
-
"superclass": {
|
|
1714
|
-
"name": "EntityManagement",
|
|
1715
|
-
"module": "/src/entities"
|
|
1716
|
-
},
|
|
1717
|
-
"tagName": "profile-management",
|
|
1718
|
-
"customElement": true,
|
|
1719
1757
|
"attributes": [
|
|
1720
1758
|
{
|
|
1721
1759
|
"name": "resourceName",
|
|
@@ -1723,32 +1761,20 @@
|
|
|
1723
1761
|
"text": "string"
|
|
1724
1762
|
},
|
|
1725
1763
|
"description": "Name of the backend resource which contain the entities to manage",
|
|
1726
|
-
"fieldName": "resourceName"
|
|
1727
|
-
"inheritedFrom": {
|
|
1728
|
-
"name": "EntityManagement",
|
|
1729
|
-
"module": "src/entities/entities.ts"
|
|
1730
|
-
}
|
|
1764
|
+
"fieldName": "resourceName"
|
|
1731
1765
|
},
|
|
1732
1766
|
{
|
|
1733
1767
|
"name": "readEvent",
|
|
1734
1768
|
"type": {
|
|
1735
1769
|
"text": "string"
|
|
1736
1770
|
},
|
|
1737
|
-
"fieldName": "readEvent"
|
|
1738
|
-
"inheritedFrom": {
|
|
1739
|
-
"name": "EntityManagement",
|
|
1740
|
-
"module": "src/entities/entities.ts"
|
|
1741
|
-
}
|
|
1771
|
+
"fieldName": "readEvent"
|
|
1742
1772
|
},
|
|
1743
1773
|
{
|
|
1744
1774
|
"type": {
|
|
1745
1775
|
"text": "boolean"
|
|
1746
1776
|
},
|
|
1747
|
-
"fieldName": "readonly"
|
|
1748
|
-
"inheritedFrom": {
|
|
1749
|
-
"name": "EntityManagement",
|
|
1750
|
-
"module": "src/entities/entities.ts"
|
|
1751
|
-
}
|
|
1777
|
+
"fieldName": "readonly"
|
|
1752
1778
|
},
|
|
1753
1779
|
{
|
|
1754
1780
|
"name": "updateEvent",
|
|
@@ -1756,11 +1782,7 @@
|
|
|
1756
1782
|
"text": "string"
|
|
1757
1783
|
},
|
|
1758
1784
|
"description": "Name of the event handler on the Genesis server which handles updating the entity",
|
|
1759
|
-
"fieldName": "updateEvent"
|
|
1760
|
-
"inheritedFrom": {
|
|
1761
|
-
"name": "EntityManagement",
|
|
1762
|
-
"module": "src/entities/entities.ts"
|
|
1763
|
-
}
|
|
1785
|
+
"fieldName": "updateEvent"
|
|
1764
1786
|
},
|
|
1765
1787
|
{
|
|
1766
1788
|
"name": "deleteEvent",
|
|
@@ -1768,11 +1790,7 @@
|
|
|
1768
1790
|
"text": "string"
|
|
1769
1791
|
},
|
|
1770
1792
|
"description": "Name of the event handler on the Genesis server which handles deleting the entity",
|
|
1771
|
-
"fieldName": "deleteEvent"
|
|
1772
|
-
"inheritedFrom": {
|
|
1773
|
-
"name": "EntityManagement",
|
|
1774
|
-
"module": "src/entities/entities.ts"
|
|
1775
|
-
}
|
|
1793
|
+
"fieldName": "deleteEvent"
|
|
1776
1794
|
},
|
|
1777
1795
|
{
|
|
1778
1796
|
"name": "createEvent",
|
|
@@ -1780,11 +1798,7 @@
|
|
|
1780
1798
|
"text": "string"
|
|
1781
1799
|
},
|
|
1782
1800
|
"description": "Name of the event handler on the Genesis server which handles creating an entity",
|
|
1783
|
-
"fieldName": "createEvent"
|
|
1784
|
-
"inheritedFrom": {
|
|
1785
|
-
"name": "EntityManagement",
|
|
1786
|
-
"module": "src/entities/entities.ts"
|
|
1787
|
-
}
|
|
1801
|
+
"fieldName": "createEvent"
|
|
1788
1802
|
},
|
|
1789
1803
|
{
|
|
1790
1804
|
"name": "title",
|
|
@@ -1792,11 +1806,7 @@
|
|
|
1792
1806
|
"text": "string"
|
|
1793
1807
|
},
|
|
1794
1808
|
"description": "Title of the grid",
|
|
1795
|
-
"fieldName": "title"
|
|
1796
|
-
"inheritedFrom": {
|
|
1797
|
-
"name": "EntityManagement",
|
|
1798
|
-
"module": "src/entities/entities.ts"
|
|
1799
|
-
}
|
|
1809
|
+
"fieldName": "title"
|
|
1800
1810
|
},
|
|
1801
1811
|
{
|
|
1802
1812
|
"name": "entityLabel",
|
|
@@ -1805,11 +1815,7 @@
|
|
|
1805
1815
|
},
|
|
1806
1816
|
"default": "''",
|
|
1807
1817
|
"description": "Label for the entity which has usages such as being shown in the title of the modal wen editing the entity",
|
|
1808
|
-
"fieldName": "entityLabel"
|
|
1809
|
-
"inheritedFrom": {
|
|
1810
|
-
"name": "EntityManagement",
|
|
1811
|
-
"module": "src/entities/entities.ts"
|
|
1812
|
-
}
|
|
1818
|
+
"fieldName": "entityLabel"
|
|
1813
1819
|
},
|
|
1814
1820
|
{
|
|
1815
1821
|
"name": "persist-column-state-key",
|
|
@@ -1817,44 +1823,28 @@
|
|
|
1817
1823
|
"text": "string"
|
|
1818
1824
|
},
|
|
1819
1825
|
"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.",
|
|
1820
|
-
"fieldName": "persistColumnStateKey"
|
|
1821
|
-
"inheritedFrom": {
|
|
1822
|
-
"name": "EntityManagement",
|
|
1823
|
-
"module": "src/entities/entities.ts"
|
|
1824
|
-
}
|
|
1826
|
+
"fieldName": "persistColumnStateKey"
|
|
1825
1827
|
},
|
|
1826
1828
|
{
|
|
1827
1829
|
"name": "size-columns-to-fit",
|
|
1828
1830
|
"type": {
|
|
1829
1831
|
"text": "boolean"
|
|
1830
1832
|
},
|
|
1831
|
-
"fieldName": "sizeColumnsToFit"
|
|
1832
|
-
"inheritedFrom": {
|
|
1833
|
-
"name": "EntityManagement",
|
|
1834
|
-
"module": "src/entities/entities.ts"
|
|
1835
|
-
}
|
|
1833
|
+
"fieldName": "sizeColumnsToFit"
|
|
1836
1834
|
},
|
|
1837
1835
|
{
|
|
1838
1836
|
"name": "enable-filter-bar",
|
|
1839
1837
|
"type": {
|
|
1840
1838
|
"text": "boolean"
|
|
1841
1839
|
},
|
|
1842
|
-
"fieldName": "enableFilterBar"
|
|
1843
|
-
"inheritedFrom": {
|
|
1844
|
-
"name": "EntityManagement",
|
|
1845
|
-
"module": "src/entities/entities.ts"
|
|
1846
|
-
}
|
|
1840
|
+
"fieldName": "enableFilterBar"
|
|
1847
1841
|
},
|
|
1848
1842
|
{
|
|
1849
1843
|
"name": "enable-cell-flashing",
|
|
1850
1844
|
"type": {
|
|
1851
1845
|
"text": "boolean"
|
|
1852
1846
|
},
|
|
1853
|
-
"fieldName": "enableCellFlashing"
|
|
1854
|
-
"inheritedFrom": {
|
|
1855
|
-
"name": "EntityManagement",
|
|
1856
|
-
"module": "src/entities/entities.ts"
|
|
1857
|
-
}
|
|
1847
|
+
"fieldName": "enableCellFlashing"
|
|
1858
1848
|
},
|
|
1859
1849
|
{
|
|
1860
1850
|
"name": "hide-edit",
|
|
@@ -1862,11 +1852,7 @@
|
|
|
1862
1852
|
"text": "boolean"
|
|
1863
1853
|
},
|
|
1864
1854
|
"default": "false",
|
|
1865
|
-
"fieldName": "hideEdit"
|
|
1866
|
-
"inheritedFrom": {
|
|
1867
|
-
"name": "EntityManagement",
|
|
1868
|
-
"module": "src/entities/entities.ts"
|
|
1869
|
-
}
|
|
1855
|
+
"fieldName": "hideEdit"
|
|
1870
1856
|
},
|
|
1871
1857
|
{
|
|
1872
1858
|
"name": "hide-delete",
|
|
@@ -1874,11 +1860,7 @@
|
|
|
1874
1860
|
"text": "boolean"
|
|
1875
1861
|
},
|
|
1876
1862
|
"default": "false",
|
|
1877
|
-
"fieldName": "hideDelete"
|
|
1878
|
-
"inheritedFrom": {
|
|
1879
|
-
"name": "EntityManagement",
|
|
1880
|
-
"module": "src/entities/entities.ts"
|
|
1881
|
-
}
|
|
1863
|
+
"fieldName": "hideDelete"
|
|
1882
1864
|
},
|
|
1883
1865
|
{
|
|
1884
1866
|
"name": "modal-position",
|
|
@@ -1887,43 +1869,45 @@
|
|
|
1887
1869
|
},
|
|
1888
1870
|
"default": "'right'",
|
|
1889
1871
|
"description": "Determines where the modal dialog will appear on screen",
|
|
1890
|
-
"fieldName": "modalPosition"
|
|
1891
|
-
"inheritedFrom": {
|
|
1892
|
-
"name": "EntityManagement",
|
|
1893
|
-
"module": "src/entities/entities.ts"
|
|
1894
|
-
}
|
|
1872
|
+
"fieldName": "modalPosition"
|
|
1895
1873
|
}
|
|
1896
|
-
]
|
|
1874
|
+
],
|
|
1875
|
+
"mixins": [
|
|
1876
|
+
{
|
|
1877
|
+
"name": "LifecycleMixin",
|
|
1878
|
+
"package": "@genesislcap/foundation-utils"
|
|
1879
|
+
}
|
|
1880
|
+
],
|
|
1881
|
+
"superclass": {
|
|
1882
|
+
"name": "FASTElement",
|
|
1883
|
+
"package": "@microsoft/fast-element"
|
|
1884
|
+
},
|
|
1885
|
+
"tagName": "entity-management",
|
|
1886
|
+
"customElement": true
|
|
1897
1887
|
}
|
|
1898
1888
|
],
|
|
1899
1889
|
"exports": [
|
|
1900
1890
|
{
|
|
1901
1891
|
"kind": "js",
|
|
1902
|
-
"name": "
|
|
1892
|
+
"name": "EntityManagement",
|
|
1903
1893
|
"declaration": {
|
|
1904
|
-
"name": "
|
|
1905
|
-
"module": "src/
|
|
1894
|
+
"name": "EntityManagement",
|
|
1895
|
+
"module": "src/entities/entities.ts"
|
|
1906
1896
|
}
|
|
1907
1897
|
},
|
|
1908
1898
|
{
|
|
1909
1899
|
"kind": "custom-element-definition",
|
|
1910
|
-
"name": "
|
|
1900
|
+
"name": "entity-management",
|
|
1911
1901
|
"declaration": {
|
|
1912
|
-
"name": "
|
|
1913
|
-
"module": "src/
|
|
1902
|
+
"name": "EntityManagement",
|
|
1903
|
+
"module": "src/entities/entities.ts"
|
|
1914
1904
|
}
|
|
1915
1905
|
}
|
|
1916
1906
|
]
|
|
1917
1907
|
},
|
|
1918
1908
|
{
|
|
1919
1909
|
"kind": "javascript-module",
|
|
1920
|
-
"path": "src/
|
|
1921
|
-
"declarations": [],
|
|
1922
|
-
"exports": []
|
|
1923
|
-
},
|
|
1924
|
-
{
|
|
1925
|
-
"kind": "javascript-module",
|
|
1926
|
-
"path": "src/routes/index.ts",
|
|
1910
|
+
"path": "src/entities/index.ts",
|
|
1927
1911
|
"declarations": [],
|
|
1928
1912
|
"exports": [
|
|
1929
1913
|
{
|
|
@@ -1931,7 +1915,23 @@
|
|
|
1931
1915
|
"name": "*",
|
|
1932
1916
|
"declaration": {
|
|
1933
1917
|
"name": "*",
|
|
1934
|
-
"package": "./
|
|
1918
|
+
"package": "./entities"
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"kind": "js",
|
|
1923
|
+
"name": "*",
|
|
1924
|
+
"declaration": {
|
|
1925
|
+
"name": "*",
|
|
1926
|
+
"package": "./entities.template"
|
|
1927
|
+
}
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
"kind": "js",
|
|
1931
|
+
"name": "*",
|
|
1932
|
+
"declaration": {
|
|
1933
|
+
"name": "*",
|
|
1934
|
+
"package": "./entities.styles"
|
|
1935
1935
|
}
|
|
1936
1936
|
}
|
|
1937
1937
|
]
|
|
@@ -2180,6 +2180,11 @@
|
|
|
2180
2180
|
{
|
|
2181
2181
|
"kind": "function",
|
|
2182
2182
|
"name": "buttonCellRenderer",
|
|
2183
|
+
"return": {
|
|
2184
|
+
"type": {
|
|
2185
|
+
"text": "ColDef"
|
|
2186
|
+
}
|
|
2187
|
+
},
|
|
2183
2188
|
"parameters": [
|
|
2184
2189
|
{
|
|
2185
2190
|
"name": "title"
|