@genesislcap/foundation-entity-management 14.68.3-alpha-43b6152.0 → 14.69.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 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`",
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.readonly}\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,13 +214,6 @@
214
214
  "text": "boolean"
215
215
  }
216
216
  },
217
- {
218
- "kind": "field",
219
- "name": "readonlyForm",
220
- "type": {
221
- "text": "boolean"
222
- }
223
- },
224
217
  {
225
218
  "kind": "field",
226
219
  "name": "updateEvent",
@@ -520,12 +513,6 @@
520
513
  },
521
514
  "fieldName": "readonly"
522
515
  },
523
- {
524
- "type": {
525
- "text": "boolean"
526
- },
527
- "fieldName": "readonlyForm"
528
- },
529
516
  {
530
517
  "name": "updateEvent",
531
518
  "type": {
@@ -1423,17 +1410,6 @@
1423
1410
  "module": "src/entities/entities.ts"
1424
1411
  }
1425
1412
  },
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
- },
1437
1413
  {
1438
1414
  "kind": "field",
1439
1415
  "name": "gridOptions",
@@ -29,6 +29,10 @@ 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
+ */
32
36
  $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
33
37
  disconnectedCallback(): void;
34
38
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
@@ -59,7 +63,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
59
63
  readonly attributes: NamedNodeMap;
60
64
  readonly classList: DOMTokenList;
61
65
  className: string;
62
- readonly clientHeight: number;
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
+ */
63
70
  readonly clientLeft: number;
64
71
  readonly clientTop: number;
65
72
  readonly clientWidth: number;
@@ -73,12 +80,12 @@ declare const EntityManagement_base: (new (...args: any[]) => {
73
80
  readonly part: DOMTokenList;
74
81
  readonly prefix: string;
75
82
  readonly scrollHeight: number;
76
- scrollLeft: number;
77
- scrollTop: number;
78
83
  /**
79
84
  * Disables the form while enabled to stop the user dispatching a large number of duplicate events
80
85
  * @public
81
86
  */
87
+ scrollLeft: number;
88
+ scrollTop: number;
82
89
  readonly scrollWidth: number;
83
90
  readonly shadowRoot: ShadowRoot;
84
91
  slot: string;
@@ -225,10 +232,7 @@ declare const EntityManagement_base: (new (...args: any[]) => {
225
232
  readonly nextElementSibling: Element;
226
233
  readonly previousElementSibling: Element;
227
234
  readonly childElementCount: number;
228
- readonly children: HTMLCollection; /**
229
- * Show notifications if the executed event returned an error.
230
- * @internal
231
- */
235
+ readonly children: HTMLCollection;
232
236
  readonly firstElementChild: Element;
233
237
  readonly lastElementChild: Element;
234
238
  append(...nodes: (string | Node)[]): void;
@@ -402,7 +406,6 @@ export declare class EntityManagement extends EntityManagement_base {
402
406
  readEvent: string;
403
407
  readEventFn: (...args: any[]) => {};
404
408
  readonly: boolean;
405
- readonlyForm: boolean;
406
409
  /**
407
410
  * Name of the event handler on the Genesis server which handles updating the entity
408
411
  * @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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"}
@@ -273,9 +273,6 @@ __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);
279
276
  __decorate([
280
277
  attr
281
278
  ], EntityManagement.prototype, "updateEvent", void 0);
@@ -52,7 +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
+ readonly=${(x) => x.readonly}
56
56
  @submit-success=${(x, c) => x.submitEntityChanges(c.event)}
57
57
  @submit-failure=${(x, c) => x.errorSnack(c.event.detail.errors)}
58
58
  ></foundation-form>
@@ -1146,36 +1146,6 @@
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
- },
1179
1149
  {
1180
1150
  "kind": "Property",
1181
1151
  "canonicalReference": "@genesislcap/foundation-entity-management!EntityManagement#resourceName:member",
@@ -98,7 +98,6 @@ export declare class EntityManagement extends EntityManagement_base {
98
98
  readEvent: string;
99
99
  readEventFn: (...args: any[]) => {};
100
100
  readonly: boolean;
101
- readonlyForm: boolean;
102
101
  /**
103
102
  * Name of the event handler on the Genesis server which handles updating the entity
104
103
  * @public
@@ -267,6 +266,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
267
266
  "__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
268
267
  connectedCallback(): void;
269
268
  readonly $fastController: Controller;
269
+ /**
270
+ * Title of the grid
271
+ * @public
272
+ */
270
273
  $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
271
274
  disconnectedCallback(): void;
272
275
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
@@ -297,7 +300,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
297
300
  readonly attributes: NamedNodeMap;
298
301
  readonly classList: DOMTokenList;
299
302
  className: string;
300
- readonly clientHeight: number;
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
+ */
301
307
  readonly clientLeft: number;
302
308
  readonly clientTop: number;
303
309
  readonly clientWidth: number;
@@ -311,12 +317,12 @@ declare const EntityManagement_base: (new (...args: any[]) => {
311
317
  readonly part: DOMTokenList;
312
318
  readonly prefix: string;
313
319
  readonly scrollHeight: number;
314
- scrollLeft: number;
315
- scrollTop: number;
316
320
  /**
317
321
  * Disables the form while enabled to stop the user dispatching a large number of duplicate events
318
322
  * @public
319
323
  */
324
+ scrollLeft: number;
325
+ scrollTop: number;
320
326
  readonly scrollWidth: number;
321
327
  readonly shadowRoot: ShadowRoot;
322
328
  slot: string;
@@ -463,10 +469,7 @@ declare const EntityManagement_base: (new (...args: any[]) => {
463
469
  readonly nextElementSibling: Element;
464
470
  readonly previousElementSibling: Element;
465
471
  readonly childElementCount: number;
466
- readonly children: HTMLCollection; /**
467
- * Show notifications if the executed event returned an error.
468
- * @internal
469
- */
472
+ readonly children: HTMLCollection;
470
473
  readonly firstElementChild: Element;
471
474
  readonly lastElementChild: Element;
472
475
  append(...nodes: (string | Node)[]): void;
@@ -59,7 +59,6 @@ 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 | |
63
62
  | [resourceName](./foundation-entity-management.entitymanagement.resourcename.md) | | string | Name of the backend resource which contain the entities to manage |
64
63
  | [selectedEntity](./foundation-entity-management.entitymanagement.selectedentity.md) | | any | Reference to the currently selected entity from the grid. |
65
64
  | [sizeColumnsToFit](./foundation-entity-management.entitymanagement.sizecolumnstofit.md) | | boolean | |
@@ -96,8 +96,6 @@ export class EntityManagement extends EntityManagement_base {
96
96
  readEventFn: (...args: any[]) => {};
97
97
  // (undocumented)
98
98
  readonly: boolean;
99
- // (undocumented)
100
- readonlyForm: boolean;
101
99
  resourceName: string;
102
100
  selectedEntity: any;
103
101
  // (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.3-alpha-43b6152.0",
4
+ "version": "14.69.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.3-alpha-43b6152.0",
45
- "@genesislcap/genx": "14.68.3-alpha-43b6152.0",
44
+ "@genesislcap/foundation-testing": "14.69.0",
45
+ "@genesislcap/genx": "14.69.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.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",
50
+ "@genesislcap/foundation-comms": "14.69.0",
51
+ "@genesislcap/foundation-errors": "14.69.0",
52
+ "@genesislcap/foundation-forms": "14.69.0",
53
+ "@genesislcap/foundation-login": "14.69.0",
54
+ "@genesislcap/foundation-ui": "14.69.0",
55
+ "@genesislcap/foundation-utils": "14.69.0",
56
+ "@genesislcap/foundation-zero": "14.69.0",
57
+ "@genesislcap/foundation-zero-grid-pro": "14.69.0",
58
+ "@genesislcap/grid-pro": "14.69.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": "86cd12b91d5e5abfc932bb89286f0ff71b85d72f"
74
+ "gitHead": "523435f78e10050f548668b811383a0d5317db26"
75
75
  }
@@ -1,11 +0,0 @@
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
- ```