@genesislcap/foundation-entity-management 14.77.1 → 14.77.2

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.
@@ -765,7 +765,7 @@
765
765
  {
766
766
  "kind": "variable",
767
767
  "name": "listTemplate",
768
- "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`"
768
+ "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 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 moving-view=${(x) => x.datasourceConfig?.movingView}\n order-by=${(x) => x.datasourceConfig?.orderBy}\n polling-interval=${(x) => x.datasourceConfig?.pollingInterval}\n resource-name=${(x) => x.resourceName}\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`"
769
769
  }
770
770
  ],
771
771
  "exports": [
@@ -14,6 +14,8 @@ import { FASTElement } from '@microsoft/fast-element';
14
14
  * isSnapshot?: boolean;
15
15
  * maxRows?: number;
16
16
  * maxView?: number;
17
+ * movingView?: boolean;
18
+ * pollingInterval?: number;
17
19
  * orderBy?: string;
18
20
  * reverse?: boolean;
19
21
  * }
@@ -29,6 +31,17 @@ declare const EntityManagement_base: (new (...args: any[]) => {
29
31
  cloneNode(deep?: boolean): Node;
30
32
  deepClone(): Node;
31
33
  readonly shouldRunDisconnect: boolean;
34
+ /**
35
+ * 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.
36
+ *
37
+ * @remarks
38
+ *
39
+ * Setting this value will set the entity manager to persist the column states through page refreshes etc. An example of what is stored is when the user resizes or reorders columns.
40
+ * This value must be unique for each table in your app otherwise the persisted data will be corrupted.
41
+ * There is an option on the grid for the user to reset the table to the default layout if they wish.
42
+ * If you omit this attribute then nothing is persisted
43
+ * @public
44
+ */
32
45
  readonly shouldRunConnect: boolean;
33
46
  "__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
34
47
  "__#1@#_tryFindContainingLayout"(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
@@ -43,6 +56,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
43
56
  dir: string;
44
57
  draggable: boolean;
45
58
  hidden: boolean;
59
+ /**
60
+ * The name of the resource in the backend to interact with when dispatching actions from the update/create modal
61
+ * @internal
62
+ */
46
63
  inert: boolean;
47
64
  innerText: string;
48
65
  lang: string;
@@ -152,7 +169,12 @@ declare const EntityManagement_base: (new (...args: any[]) => {
152
169
  isDefaultNamespace(namespace: string): boolean;
153
170
  isEqualNode(otherNode: Node): boolean;
154
171
  isSameNode(otherNode: Node): boolean;
155
- lookupNamespaceURI(prefix: string): string;
172
+ lookupNamespaceURI(prefix: string): string; /**
173
+ * Handler for deleting the entity. Added as an event listener on the class when receiving the `delete-entity` event.
174
+ *
175
+ * @param e - CustomEvent where `e.detail` contains data to update the selectedEntity reference with the entity to delete.
176
+ * @internal
177
+ */
156
178
  lookupPrefix(namespace: string): string;
157
179
  normalize(): void;
158
180
  removeChild<T_3 extends Node>(child: T_3): T_3;
@@ -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":"list.template.d.ts","sourceRoot":"","sources":["../../../src/list/list.template.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,eAAO,MAAM,YAAY,2DAmDxB,CAAC"}
1
+ {"version":3,"file":"list.template.d.ts","sourceRoot":"","sources":["../../../src/list/list.template.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,eAAO,MAAM,YAAY,2DAqDxB,CAAC"}
@@ -24,13 +24,15 @@ export const listTemplate = html `
24
24
  <grid-pro-genesis-datasource
25
25
  ${ref('datasource')}
26
26
  :deferredGridOptions=${(x) => x.gridOptions}
27
- resource-name=${(x) => x.resourceName}
28
27
  criteria=${(x) => { var _a; return (_a = x.datasourceConfig) === null || _a === void 0 ? void 0 : _a.criteria; }}
29
28
  fields=${(x) => { var _a; return (_a = x.datasourceConfig) === null || _a === void 0 ? void 0 : _a.fields; }}
30
29
  is-snapshot=${(x) => { var _a; return (_a = x.datasourceConfig) === null || _a === void 0 ? void 0 : _a.isSnapshot; }}
31
30
  max-rows=${(x) => { var _a; return (_a = x.datasourceConfig) === null || _a === void 0 ? void 0 : _a.maxRows; }}
32
31
  max-view=${(x) => { var _a; return (_a = x.datasourceConfig) === null || _a === void 0 ? void 0 : _a.maxView; }}
32
+ moving-view=${(x) => { var _a; return (_a = x.datasourceConfig) === null || _a === void 0 ? void 0 : _a.movingView; }}
33
33
  order-by=${(x) => { var _a; return (_a = x.datasourceConfig) === null || _a === void 0 ? void 0 : _a.orderBy; }}
34
+ polling-interval=${(x) => { var _a; return (_a = x.datasourceConfig) === null || _a === void 0 ? void 0 : _a.pollingInterval; }}
35
+ resource-name=${(x) => x.resourceName}
34
36
  reverse=${(x) => { var _a; return (_a = x.datasourceConfig) === null || _a === void 0 ? void 0 : _a.reverse; }}
35
37
  ></grid-pro-genesis-datasource>
36
38
  ${repeat((x) => x.columns, html `
@@ -203,7 +203,7 @@
203
203
  {
204
204
  "kind": "TypeAlias",
205
205
  "canonicalReference": "@genesislcap/foundation-entity-management!DatasourceConfiguration:type",
206
- "docComment": "/**\n * The attribute which is set to configure the resource that the entity manager is working with\n *\n * @example\n * ```javascript\n * type DatasourceConfiguration = {\n * criteria?: string;\n * fields?: string;\n * isSnapshot?: boolean;\n * maxRows?: number;\n * maxView?: number;\n * orderBy?: string;\n * reverse?: boolean;\n * }\n * ```\n *\n * @public\n */\n",
206
+ "docComment": "/**\n * The attribute which is set to configure the resource that the entity manager is working with\n *\n * @example\n * ```javascript\n * type DatasourceConfiguration = {\n * criteria?: string;\n * fields?: string;\n * isSnapshot?: boolean;\n * maxRows?: number;\n * maxView?: number;\n * movingView?: boolean;\n * pollingInterval?: number;\n * orderBy?: string;\n * reverse?: boolean;\n * }\n * ```\n *\n * @public\n */\n",
207
207
  "excerptTokens": [
208
208
  {
209
209
  "kind": "Content",
@@ -37,6 +37,8 @@ export declare const buttonCellRenderer: (title: any, clickHandler: any) => ColD
37
37
  * isSnapshot?: boolean;
38
38
  * maxRows?: number;
39
39
  * maxView?: number;
40
+ * movingView?: boolean;
41
+ * pollingInterval?: number;
40
42
  * orderBy?: string;
41
43
  * reverse?: boolean;
42
44
  * }
@@ -266,6 +268,17 @@ declare const EntityManagement_base: (new (...args: any[]) => {
266
268
  cloneNode(deep?: boolean): Node;
267
269
  deepClone(): Node;
268
270
  readonly shouldRunDisconnect: boolean;
271
+ /**
272
+ * 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.
273
+ *
274
+ * @remarks
275
+ *
276
+ * Setting this value will set the entity manager to persist the column states through page refreshes etc. An example of what is stored is when the user resizes or reorders columns.
277
+ * This value must be unique for each table in your app otherwise the persisted data will be corrupted.
278
+ * There is an option on the grid for the user to reset the table to the default layout if they wish.
279
+ * If you omit this attribute then nothing is persisted
280
+ * @public
281
+ */
269
282
  readonly shouldRunConnect: boolean;
270
283
  "__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
271
284
  "__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
@@ -280,6 +293,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
280
293
  dir: string;
281
294
  draggable: boolean;
282
295
  hidden: boolean;
296
+ /**
297
+ * The name of the resource in the backend to interact with when dispatching actions from the update/create modal
298
+ * @internal
299
+ */
283
300
  inert: boolean;
284
301
  innerText: string;
285
302
  lang: string;
@@ -389,7 +406,12 @@ declare const EntityManagement_base: (new (...args: any[]) => {
389
406
  isDefaultNamespace(namespace: string): boolean;
390
407
  isEqualNode(otherNode: Node): boolean;
391
408
  isSameNode(otherNode: Node): boolean;
392
- lookupNamespaceURI(prefix: string): string;
409
+ lookupNamespaceURI(prefix: string): string; /**
410
+ * Handler for deleting the entity. Added as an event listener on the class when receiving the `delete-entity` event.
411
+ *
412
+ * @param e - CustomEvent where `e.detail` contains data to update the selectedEntity reference with the entity to delete.
413
+ * @internal
414
+ */
393
415
  lookupPrefix(namespace: string): string;
394
416
  normalize(): void;
395
417
  removeChild<T_3 extends Node>(child: T_3): T_3;
@@ -22,6 +22,8 @@ type DatasourceConfiguration = {
22
22
  isSnapshot?: boolean;
23
23
  maxRows?: number;
24
24
  maxView?: number;
25
+ movingView?: boolean;
26
+ pollingInterval?: number;
25
27
  orderBy?: string;
26
28
  reverse?: boolean;
27
29
  }
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.77.1",
4
+ "version": "14.77.2",
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.77.1",
45
- "@genesislcap/genx": "14.77.1",
44
+ "@genesislcap/foundation-testing": "14.77.2",
45
+ "@genesislcap/genx": "14.77.2",
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.77.1",
51
- "@genesislcap/foundation-errors": "14.77.1",
52
- "@genesislcap/foundation-forms": "14.77.1",
53
- "@genesislcap/foundation-login": "14.77.1",
54
- "@genesislcap/foundation-ui": "14.77.1",
55
- "@genesislcap/foundation-utils": "14.77.1",
56
- "@genesislcap/foundation-zero": "14.77.1",
57
- "@genesislcap/foundation-zero-grid-pro": "14.77.1",
58
- "@genesislcap/grid-pro": "14.77.1",
50
+ "@genesislcap/foundation-comms": "14.77.2",
51
+ "@genesislcap/foundation-errors": "14.77.2",
52
+ "@genesislcap/foundation-forms": "14.77.2",
53
+ "@genesislcap/foundation-login": "14.77.2",
54
+ "@genesislcap/foundation-ui": "14.77.2",
55
+ "@genesislcap/foundation-utils": "14.77.2",
56
+ "@genesislcap/foundation-zero": "14.77.2",
57
+ "@genesislcap/foundation-zero-grid-pro": "14.77.2",
58
+ "@genesislcap/grid-pro": "14.77.2",
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": "3c3f770e8109ed802bc30409d3cd4d75bacac7bb"
74
+ "gitHead": "b47f3a7923044c6a2075e35d8bb066bddb9f9bad"
75
75
  }