@genesislcap/foundation-entity-management 14.68.2 → 14.68.3-alpha-43b6152.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -151,7 +151,7 @@
151
151
  {
152
152
  "kind": "variable",
153
153
  "name": "template",
154
- "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`",
154
+ "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 readonly=${(x) => x.readonlyForm}\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`",
155
155
  "description": "Defines the html of the entity component as a ViewTemplate object"
156
156
  }
157
157
  ],
@@ -214,6 +214,13 @@
214
214
  "text": "boolean"
215
215
  }
216
216
  },
217
+ {
218
+ "kind": "field",
219
+ "name": "readonlyForm",
220
+ "type": {
221
+ "text": "boolean"
222
+ }
223
+ },
217
224
  {
218
225
  "kind": "field",
219
226
  "name": "updateEvent",
@@ -513,6 +520,12 @@
513
520
  },
514
521
  "fieldName": "readonly"
515
522
  },
523
+ {
524
+ "type": {
525
+ "text": "boolean"
526
+ },
527
+ "fieldName": "readonlyForm"
528
+ },
516
529
  {
517
530
  "name": "updateEvent",
518
531
  "type": {
@@ -1410,6 +1423,17 @@
1410
1423
  "module": "src/entities/entities.ts"
1411
1424
  }
1412
1425
  },
1426
+ {
1427
+ "kind": "field",
1428
+ "name": "readonlyForm",
1429
+ "type": {
1430
+ "text": "boolean"
1431
+ },
1432
+ "inheritedFrom": {
1433
+ "name": "EntityManagement",
1434
+ "module": "src/entities/entities.ts"
1435
+ }
1436
+ },
1413
1437
  {
1414
1438
  "kind": "field",
1415
1439
  "name": "gridOptions",
@@ -29,10 +29,6 @@ declare const EntityManagement_base: (new (...args: any[]) => {
29
29
  "__#1@#_tryFindContainingLayout"(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
30
30
  connectedCallback(): void;
31
31
  readonly $fastController: import("@microsoft/fast-element").Controller;
32
- /**
33
- * Title of the grid
34
- * @public
35
- */
36
32
  $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
37
33
  disconnectedCallback(): void;
38
34
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
@@ -63,10 +59,7 @@ declare const EntityManagement_base: (new (...args: any[]) => {
63
59
  readonly attributes: NamedNodeMap;
64
60
  readonly classList: DOMTokenList;
65
61
  className: string;
66
- readonly clientHeight: number; /**
67
- * The name of the resource in the backend to interact with when dispatching actions from the update/create modal
68
- * @internal
69
- */
62
+ readonly clientHeight: number;
70
63
  readonly clientLeft: number;
71
64
  readonly clientTop: number;
72
65
  readonly clientWidth: number;
@@ -80,12 +73,12 @@ declare const EntityManagement_base: (new (...args: any[]) => {
80
73
  readonly part: DOMTokenList;
81
74
  readonly prefix: string;
82
75
  readonly scrollHeight: number;
76
+ scrollLeft: number;
77
+ scrollTop: number;
83
78
  /**
84
79
  * Disables the form while enabled to stop the user dispatching a large number of duplicate events
85
80
  * @public
86
81
  */
87
- scrollLeft: number;
88
- scrollTop: number;
89
82
  readonly scrollWidth: number;
90
83
  readonly shadowRoot: ShadowRoot;
91
84
  slot: string;
@@ -232,7 +225,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
232
225
  readonly nextElementSibling: Element;
233
226
  readonly previousElementSibling: Element;
234
227
  readonly childElementCount: number;
235
- readonly children: HTMLCollection;
228
+ readonly children: HTMLCollection; /**
229
+ * Show notifications if the executed event returned an error.
230
+ * @internal
231
+ */
236
232
  readonly firstElementChild: Element;
237
233
  readonly lastElementChild: Element;
238
234
  append(...nodes: (string | Node)[]): void;
@@ -406,6 +402,7 @@ export declare class EntityManagement extends EntityManagement_base {
406
402
  readEvent: string;
407
403
  readEventFn: (...args: any[]) => {};
408
404
  readonly: boolean;
405
+ readonlyForm: boolean;
409
406
  /**
410
407
  * Name of the event handler on the Genesis server which handles updating the entity
411
408
  * @public
@@ -1 +1 @@
1
- {"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"entities.template.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.template.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAmB9C;;;GAGG;AACH,eAAO,MAAM,QAAQ,uEA8CpB,CAAC"}
1
+ {"version":3,"file":"entities.template.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.template.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAmB9C;;;GAGG;AACH,eAAO,MAAM,QAAQ,uEA+CpB,CAAC"}
@@ -273,6 +273,9 @@ __decorate([
273
273
  __decorate([
274
274
  attr({ mode: 'boolean' })
275
275
  ], EntityManagement.prototype, "readonly", void 0);
276
+ __decorate([
277
+ attr({ mode: 'boolean' })
278
+ ], EntityManagement.prototype, "readonlyForm", void 0);
276
279
  __decorate([
277
280
  attr
278
281
  ], EntityManagement.prototype, "updateEvent", void 0);
@@ -52,6 +52,7 @@ export const template = html `
52
52
  resourceName=${(x) => x.formResourceName}
53
53
  :data=${(x) => x.editedEntity}
54
54
  :uischema=${(x) => x.formUiSchema}
55
+ readonly=${(x) => x.readonlyForm}
55
56
  @submit-success=${(x, c) => x.submitEntityChanges(c.event)}
56
57
  @submit-failure=${(x, c) => x.errorSnack(c.event.detail.errors)}
57
58
  ></foundation-form>
@@ -1146,6 +1146,36 @@
1146
1146
  "isProtected": false,
1147
1147
  "isAbstract": false
1148
1148
  },
1149
+ {
1150
+ "kind": "Property",
1151
+ "canonicalReference": "@genesislcap/foundation-entity-management!EntityManagement#readonlyForm:member",
1152
+ "docComment": "",
1153
+ "excerptTokens": [
1154
+ {
1155
+ "kind": "Content",
1156
+ "text": "readonlyForm: "
1157
+ },
1158
+ {
1159
+ "kind": "Content",
1160
+ "text": "boolean"
1161
+ },
1162
+ {
1163
+ "kind": "Content",
1164
+ "text": ";"
1165
+ }
1166
+ ],
1167
+ "isReadonly": false,
1168
+ "isOptional": false,
1169
+ "releaseTag": "Public",
1170
+ "name": "readonlyForm",
1171
+ "propertyTypeTokenRange": {
1172
+ "startIndex": 1,
1173
+ "endIndex": 2
1174
+ },
1175
+ "isStatic": false,
1176
+ "isProtected": false,
1177
+ "isAbstract": false
1178
+ },
1149
1179
  {
1150
1180
  "kind": "Property",
1151
1181
  "canonicalReference": "@genesislcap/foundation-entity-management!EntityManagement#resourceName:member",
@@ -98,6 +98,7 @@ export declare class EntityManagement extends EntityManagement_base {
98
98
  readEvent: string;
99
99
  readEventFn: (...args: any[]) => {};
100
100
  readonly: boolean;
101
+ readonlyForm: boolean;
101
102
  /**
102
103
  * Name of the event handler on the Genesis server which handles updating the entity
103
104
  * @public
@@ -266,10 +267,6 @@ declare const EntityManagement_base: (new (...args: any[]) => {
266
267
  "__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
267
268
  connectedCallback(): void;
268
269
  readonly $fastController: Controller;
269
- /**
270
- * Title of the grid
271
- * @public
272
- */
273
270
  $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
274
271
  disconnectedCallback(): void;
275
272
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
@@ -300,10 +297,7 @@ declare const EntityManagement_base: (new (...args: any[]) => {
300
297
  readonly attributes: NamedNodeMap;
301
298
  readonly classList: DOMTokenList;
302
299
  className: string;
303
- readonly clientHeight: number; /**
304
- * The name of the resource in the backend to interact with when dispatching actions from the update/create modal
305
- * @internal
306
- */
300
+ readonly clientHeight: number;
307
301
  readonly clientLeft: number;
308
302
  readonly clientTop: number;
309
303
  readonly clientWidth: number;
@@ -317,12 +311,12 @@ declare const EntityManagement_base: (new (...args: any[]) => {
317
311
  readonly part: DOMTokenList;
318
312
  readonly prefix: string;
319
313
  readonly scrollHeight: number;
314
+ scrollLeft: number;
315
+ scrollTop: number;
320
316
  /**
321
317
  * Disables the form while enabled to stop the user dispatching a large number of duplicate events
322
318
  * @public
323
319
  */
324
- scrollLeft: number;
325
- scrollTop: number;
326
320
  readonly scrollWidth: number;
327
321
  readonly shadowRoot: ShadowRoot;
328
322
  slot: string;
@@ -469,7 +463,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
469
463
  readonly nextElementSibling: Element;
470
464
  readonly previousElementSibling: Element;
471
465
  readonly childElementCount: number;
472
- readonly children: HTMLCollection;
466
+ readonly children: HTMLCollection; /**
467
+ * Show notifications if the executed event returned an error.
468
+ * @internal
469
+ */
473
470
  readonly firstElementChild: Element;
474
471
  readonly lastElementChild: Element;
475
472
  append(...nodes: (string | Node)[]): void;
@@ -59,6 +59,7 @@ Where:<br /> - the title of the grid is `Counterparty Management`<br /> - the na
59
59
  | [readEvent](./foundation-entity-management.entitymanagement.readevent.md) | | string | |
60
60
  | [readEventFn](./foundation-entity-management.entitymanagement.readeventfn.md) | | (...args: any\[\]) =&gt; {} | |
61
61
  | [readonly](./foundation-entity-management.entitymanagement.readonly.md) | | boolean | |
62
+ | [readonlyForm](./foundation-entity-management.entitymanagement.readonlyform.md) | | boolean | |
62
63
  | [resourceName](./foundation-entity-management.entitymanagement.resourcename.md) | | string | Name of the backend resource which contain the entities to manage |
63
64
  | [selectedEntity](./foundation-entity-management.entitymanagement.selectedentity.md) | | any | Reference to the currently selected entity from the grid. |
64
65
  | [sizeColumnsToFit](./foundation-entity-management.entitymanagement.sizecolumnstofit.md) | | boolean | |
@@ -0,0 +1,11 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-entity-management](./foundation-entity-management.md) &gt; [EntityManagement](./foundation-entity-management.entitymanagement.md) &gt; [readonlyForm](./foundation-entity-management.entitymanagement.readonlyform.md)
4
+
5
+ ## EntityManagement.readonlyForm property
6
+
7
+ **Signature:**
8
+
9
+ ```typescript
10
+ readonlyForm: boolean;
11
+ ```
@@ -96,6 +96,8 @@ export class EntityManagement extends EntityManagement_base {
96
96
  readEventFn: (...args: any[]) => {};
97
97
  // (undocumented)
98
98
  readonly: boolean;
99
+ // (undocumented)
100
+ readonlyForm: boolean;
99
101
  resourceName: string;
100
102
  selectedEntity: any;
101
103
  // (undocumented)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-entity-management",
3
3
  "description": "Genesis Foundation Entity Management",
4
- "version": "14.68.2",
4
+ "version": "14.68.3-alpha-43b6152.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -41,21 +41,21 @@
41
41
  },
42
42
  "devDependencies": {
43
43
  "@genesislcap/foundation-login": "^14.40.0",
44
- "@genesislcap/foundation-testing": "14.68.2",
45
- "@genesislcap/genx": "14.68.2",
44
+ "@genesislcap/foundation-testing": "14.68.3-alpha-43b6152.0",
45
+ "@genesislcap/genx": "14.68.3-alpha-43b6152.0",
46
46
  "rimraf": "^3.0.2"
47
47
  },
48
48
  "dependencies": {
49
49
  "@ag-grid-community/core": "29.2.0",
50
- "@genesislcap/foundation-comms": "14.68.2",
51
- "@genesislcap/foundation-errors": "14.68.2",
52
- "@genesislcap/foundation-forms": "14.68.2",
53
- "@genesislcap/foundation-login": "14.68.2",
54
- "@genesislcap/foundation-ui": "14.68.2",
55
- "@genesislcap/foundation-utils": "14.68.2",
56
- "@genesislcap/foundation-zero": "14.68.2",
57
- "@genesislcap/foundation-zero-grid-pro": "14.68.2",
58
- "@genesislcap/grid-pro": "14.68.2",
50
+ "@genesislcap/foundation-comms": "14.68.3-alpha-43b6152.0",
51
+ "@genesislcap/foundation-errors": "14.68.3-alpha-43b6152.0",
52
+ "@genesislcap/foundation-forms": "14.68.3-alpha-43b6152.0",
53
+ "@genesislcap/foundation-login": "14.68.3-alpha-43b6152.0",
54
+ "@genesislcap/foundation-ui": "14.68.3-alpha-43b6152.0",
55
+ "@genesislcap/foundation-utils": "14.68.3-alpha-43b6152.0",
56
+ "@genesislcap/foundation-zero": "14.68.3-alpha-43b6152.0",
57
+ "@genesislcap/foundation-zero-grid-pro": "14.68.3-alpha-43b6152.0",
58
+ "@genesislcap/grid-pro": "14.68.3-alpha-43b6152.0",
59
59
  "@microsoft/fast-components": "^2.21.3",
60
60
  "@microsoft/fast-element": "^1.7.0",
61
61
  "@microsoft/fast-foundation": "^2.33.2",
@@ -71,5 +71,5 @@
71
71
  "access": "public"
72
72
  },
73
73
  "customElements": "dist/custom-elements.json",
74
- "gitHead": "5366046018e36151b75f74ec6a088aed80b12686"
74
+ "gitHead": "86cd12b91d5e5abfc932bb89286f0ff71b85d72f"
75
75
  }