@genesislcap/foundation-entity-management 14.69.4 → 14.70.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.
@@ -1946,7 +1946,7 @@
1946
1946
  "type": {
1947
1947
  "text": "ViewTemplate"
1948
1948
  },
1949
- "default": "html<Users>`\n <entity-management\n resourceName=${(x) => x.resourceName}\n title=\"User Management\"\n entityLabel=\"User\"\n createEvent=\"${(x) => x.createEvent}\"\n :readEventFn=${(x) => (user) => x.readUserData(user)}\n updateEvent=\"${(x) => x.updateEvent}\"\n deleteEvent=\"${(x) => x.deleteEvent}\"\n entityLabel=\"User Details\"\n :updateFormUiSchema=${(x) =>\n editUserSchema(\n true,\n x.allAccessType,\n x.entityID,\n x.entityLabel,\n x.entityLabelKey,\n x.availableEntitiesEndpoint,\n x.additionalUpdateFields,\n )}\n :createFormUiSchema=${(x) =>\n editUserSchema(\n false,\n x.allAccessType,\n x.entityID,\n x.entityLabel,\n x.entityLabelKey,\n x.availableEntitiesEndpoint,\n x.additionalCreateFields,\n )}\n persist-column-state-key=\"entity_users_management\"\n size-columns-to-fit\n :columns=${(x) => [...x.columns, ...x.entityColumn(), x.statusColumn()]}\n :datasourceConfig=${(x) => x.datasourceConfig}\n ></entity-management>\n`"
1949
+ "default": "html<Users>`\n <entity-management\n resourceName=${(x) => x.resourceName}\n title=\"User Management\"\n entityLabel=\"User\"\n createEvent=\"${(x) => x.createEvent}\"\n :readEventFn=${(x) => (user) => x.readUserData(user)}\n updateEvent=\"${(x) => x.updateEvent}\"\n deleteEvent=\"${(x) => x.deleteEvent}\"\n entityLabel=\"User Details\"\n :updateFormUiSchema=${(x) =>\n editUserSchema(\n true,\n x.allAccessType,\n x.entityID,\n x.entityLabel,\n x.entityLabelKey,\n x.availableEntitiesEndpoint,\n x.additionalUpdateFields,\n )}\n :createFormUiSchema=${(x) =>\n editUserSchema(\n false,\n x.allAccessType,\n x.entityID,\n x.entityLabel,\n x.entityLabelKey,\n x.availableEntitiesEndpoint,\n x.additionalCreateFields,\n )}\n persist-column-state-key=${(x) => x.persistColumnStateKey}\n size-columns-to-fit\n :columns=${(x) => [...x.columns, ...x.entityColumn(), x.statusColumn()]}\n :datasourceConfig=${(x) => x.datasourceConfig}\n ></entity-management>\n`"
1950
1950
  }
1951
1951
  ],
1952
1952
  "exports": [
@@ -1979,6 +1979,16 @@
1979
1979
  "description": "Main class which defines the user management functionality",
1980
1980
  "name": "Users",
1981
1981
  "members": [
1982
+ {
1983
+ "kind": "field",
1984
+ "name": "persistColumnStateKey",
1985
+ "type": {
1986
+ "text": "string"
1987
+ },
1988
+ "default": "'entity_users_management'",
1989
+ "description": "This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`.",
1990
+ "privacy": "public"
1991
+ },
1982
1992
  {
1983
1993
  "kind": "field",
1984
1994
  "name": "columns",
@@ -2053,6 +2063,17 @@
2053
2063
  }
2054
2064
  }
2055
2065
  ],
2066
+ "attributes": [
2067
+ {
2068
+ "name": "persist-column-state-key",
2069
+ "type": {
2070
+ "text": "string"
2071
+ },
2072
+ "default": "'entity_users_management'",
2073
+ "description": "This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`.",
2074
+ "fieldName": "persistColumnStateKey"
2075
+ }
2076
+ ],
2056
2077
  "mixins": [
2057
2078
  {
2058
2079
  "name": "LifecycleMixin",
@@ -66,9 +66,7 @@ declare const Users_base: (new (...args: any[]) => {
66
66
  readonly attributes: NamedNodeMap;
67
67
  readonly classList: DOMTokenList;
68
68
  className: string;
69
- readonly clientHeight: number; /**
70
- * Column definition, default to the UsersColumnConfig
71
- */
69
+ readonly clientHeight: number;
72
70
  readonly clientLeft: number;
73
71
  readonly clientTop: number;
74
72
  readonly clientWidth: number;
@@ -93,7 +91,9 @@ declare const Users_base: (new (...args: any[]) => {
93
91
  closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
94
92
  closest<E extends Element = Element>(selectors: string): E;
95
93
  getAttribute(qualifiedName: string): string;
96
- getAttributeNS(namespace: string, localName: string): string;
94
+ getAttributeNS(namespace: string, localName: string): string; /**
95
+ * String which contains event if we have permission to delete user of empty string if not
96
+ */
97
97
  getAttributeNames(): string[];
98
98
  getAttributeNode(qualifiedName: string): Attr;
99
99
  getAttributeNodeNS(namespace: string, localName: string): Attr;
@@ -147,6 +147,15 @@ declare const Users_base: (new (...args: any[]) => {
147
147
  readonly parentNode: ParentNode;
148
148
  readonly previousSibling: ChildNode;
149
149
  textContent: string;
150
+ /**
151
+ * Changes the status of an entity
152
+ *
153
+ * @remarks
154
+ *
155
+ * The action which is run on the status button from {@link Users.statusRendererSelector}
156
+ *
157
+ * @internal
158
+ */
150
159
  appendChild<T_1 extends Node>(node: T_1): T_1;
151
160
  compareDocumentPosition(other: Node): number;
152
161
  contains(other: Node): boolean;
@@ -427,6 +436,17 @@ export declare class Users extends Users_base {
427
436
  * @internal
428
437
  */
429
438
  resourceName: string;
439
+ /**
440
+ * This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`.
441
+ *
442
+ * @remarks
443
+ *
444
+ * 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.
445
+ * This value must be unique for each table in your app otherwise the persisted data will be corrupted.
446
+ * There is an option on the grid for the user to reset the table to the default layout if they wish.
447
+ * @public
448
+ */
449
+ persistColumnStateKey: string;
430
450
  /**
431
451
  * Returns a configuration for an optional status column
432
452
  *
@@ -1 +1 @@
1
- {"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/users/users.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAC7E,OAAO,EAA4B,WAAW,EAAc,MAAM,yBAAyB,CAAC;AAC5F,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAWtD;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;IAoC7B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCA2HA;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA3HL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,qBASa,KAAM,SAAQ,UAA2B;IACpD;;;;;;;;OAQG;IACM,OAAO,CAAC,OAAO,CAAU;IAElC;;;;;;;;OAQG;IACG,OAAO,CAAC,IAAI,CAAO;IAEzB;;;;;;;OAOG;IACS,gBAAgB,EAAE,uBAAuB,CAAC;IAEtD;;;OAGG;IACG,YAAY,SAAe;IAEjC;;;;;OAKG;IACI,YAAY;;;;;;;;;;;;IAYnB;;;;;OAKG;IACI,YAAY;;;;;;;;IAYnB;;OAEG;IACS,OAAO,EAAE,GAAG,CAAqB;IAEjC,sBAAsB,EAAE,GAAG,CAAM;IACjC,sBAAsB,EAAE,GAAG,CAAM;IAEjC,aAAa,EAAE,OAAO,CAAC;IACnC,OAAO,CAAC,aAAa,CAAS;IAE9B;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACG,QAAQ,EAAE,MAAM,CAAqB;IAE3C;;;OAGG;IACG,cAAc,EAAE,MAAM,CAAU;IAEtC;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAkB;IAE3C;;;OAGG;IACG,yBAAyB,EAAE,MAAM,CAAuB;IAE9D;;OAEG;;IAaG,iBAAiB;IAcd,SAAS,IAAI,IAAI;IAc1B;;;OAGG;IACH,sBAAsB,CAAC,MAAM,KAAA;;;;;;;;IAW7B;;;;;;;;OAQG;IACG,YAAY,CAAC,MAAM,KAAA;IAwCzB;;OAEG;IACG,YAAY,CAAC,IAAI,KAAA;;;;;;;;;;;;;;;CAwBxB"}
1
+ {"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/users/users.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAC7E,OAAO,EAA4B,WAAW,EAAc,MAAM,yBAAyB,CAAC;AAC5F,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAWtD;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;IAoC7B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kEAwJA;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0FH;;;;;;;;OAQG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA1PL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,qBASa,KAAM,SAAQ,UAA2B;IACpD;;;;;;;;OAQG;IACM,OAAO,CAAC,OAAO,CAAU;IAElC;;;;;;;;OAQG;IACG,OAAO,CAAC,IAAI,CAAO;IAEzB;;;;;;;OAOG;IACS,gBAAgB,EAAE,uBAAuB,CAAC;IAEtD;;;OAGG;IACG,YAAY,SAAe;IAEjC;;;;;;;;;OASG;IAC8C,qBAAqB,EAAE,MAAM,CAClD;IAE5B;;;;;OAKG;IACI,YAAY;;;;;;;;;;;;IAYnB;;;;;OAKG;IACI,YAAY;;;;;;;;IAYnB;;OAEG;IACS,OAAO,EAAE,GAAG,CAAqB;IAEjC,sBAAsB,EAAE,GAAG,CAAM;IACjC,sBAAsB,EAAE,GAAG,CAAM;IAEjC,aAAa,EAAE,OAAO,CAAC;IACnC,OAAO,CAAC,aAAa,CAAS;IAE9B;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACG,QAAQ,EAAE,MAAM,CAAqB;IAE3C;;;OAGG;IACG,cAAc,EAAE,MAAM,CAAU;IAEtC;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAkB;IAE3C;;;OAGG;IACG,yBAAyB,EAAE,MAAM,CAAuB;IAE9D;;OAEG;;IAaG,iBAAiB;IAcd,SAAS,IAAI,IAAI;IAc1B;;;OAGG;IACH,sBAAsB,CAAC,MAAM,KAAA;;;;;;;;IAW7B;;;;;;;;OAQG;IACG,YAAY,CAAC,MAAM,KAAA;IAwCzB;;OAEG;IACG,YAAY,CAAC,IAAI,KAAA;;;;;;;;;;;;;;;CAwBxB"}
@@ -105,6 +105,17 @@ let Users = class Users extends LifecycleMixin(FASTElement) {
105
105
  * @internal
106
106
  */
107
107
  this.resourceName = 'ALL_USERS';
108
+ /**
109
+ * This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`.
110
+ *
111
+ * @remarks
112
+ *
113
+ * 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.
114
+ * This value must be unique for each table in your app otherwise the persisted data will be corrupted.
115
+ * There is an option on the grid for the user to reset the table to the default layout if they wish.
116
+ * @public
117
+ */
118
+ this.persistColumnStateKey = 'entity_users_management';
108
119
  /**
109
120
  * Column definition, default to the UsersColumnConfig
110
121
  */
@@ -254,6 +265,9 @@ __decorate([
254
265
  __decorate([
255
266
  attr
256
267
  ], Users.prototype, "resourceName", void 0);
268
+ __decorate([
269
+ attr({ attribute: 'persist-column-state-key' })
270
+ ], Users.prototype, "persistColumnStateKey", void 0);
257
271
  __decorate([
258
272
  observable
259
273
  ], Users.prototype, "columns", void 0);
@@ -82,7 +82,7 @@ export const UsersTemplate = html `
82
82
  entityLabel="User Details"
83
83
  :updateFormUiSchema=${(x) => editUserSchema(true, x.allAccessType, x.entityID, x.entityLabel, x.entityLabelKey, x.availableEntitiesEndpoint, x.additionalUpdateFields)}
84
84
  :createFormUiSchema=${(x) => editUserSchema(false, x.allAccessType, x.entityID, x.entityLabel, x.entityLabelKey, x.availableEntitiesEndpoint, x.additionalCreateFields)}
85
- persist-column-state-key="entity_users_management"
85
+ persist-column-state-key=${(x) => x.persistColumnStateKey}
86
86
  size-columns-to-fit
87
87
  :columns=${(x) => [...x.columns, ...x.entityColumn(), x.statusColumn()]}
88
88
  :datasourceConfig=${(x) => x.datasourceConfig}
@@ -2285,6 +2285,36 @@
2285
2285
  "isProtected": false,
2286
2286
  "isAbstract": false
2287
2287
  },
2288
+ {
2289
+ "kind": "Property",
2290
+ "canonicalReference": "@genesislcap/foundation-entity-management!Users#persistColumnStateKey:member",
2291
+ "docComment": "/**\n * This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`.\n *\n * @remarks\n *\n * 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. This value must be unique for each table in your app otherwise the persisted data will be corrupted. There is an option on the grid for the user to reset the table to the default layout if they wish.\n *\n * @public\n */\n",
2292
+ "excerptTokens": [
2293
+ {
2294
+ "kind": "Content",
2295
+ "text": "persistColumnStateKey: "
2296
+ },
2297
+ {
2298
+ "kind": "Content",
2299
+ "text": "string"
2300
+ },
2301
+ {
2302
+ "kind": "Content",
2303
+ "text": ";"
2304
+ }
2305
+ ],
2306
+ "isReadonly": false,
2307
+ "isOptional": false,
2308
+ "releaseTag": "Public",
2309
+ "name": "persistColumnStateKey",
2310
+ "propertyTypeTokenRange": {
2311
+ "startIndex": 1,
2312
+ "endIndex": 2
2313
+ },
2314
+ "isStatic": false,
2315
+ "isProtected": false,
2316
+ "isAbstract": false
2317
+ },
2288
2318
  {
2289
2319
  "kind": "Property",
2290
2320
  "canonicalReference": "@genesislcap/foundation-entity-management!Users#updateEvent:member",
@@ -774,6 +774,17 @@ export declare class Users extends Users_base {
774
774
  * @internal
775
775
  */
776
776
  resourceName: string;
777
+ /**
778
+ * This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`.
779
+ *
780
+ * @remarks
781
+ *
782
+ * 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.
783
+ * This value must be unique for each table in your app otherwise the persisted data will be corrupted.
784
+ * There is an option on the grid for the user to reset the table to the default layout if they wish.
785
+ * @public
786
+ */
787
+ persistColumnStateKey: string;
777
788
  /**
778
789
  * Returns a configuration for an optional status column
779
790
  *
@@ -933,9 +944,7 @@ declare const Users_base: (new (...args: any[]) => {
933
944
  readonly attributes: NamedNodeMap;
934
945
  readonly classList: DOMTokenList;
935
946
  className: string;
936
- readonly clientHeight: number; /**
937
- * Column definition, default to the UsersColumnConfig
938
- */
947
+ readonly clientHeight: number;
939
948
  readonly clientLeft: number;
940
949
  readonly clientTop: number;
941
950
  readonly clientWidth: number;
@@ -960,7 +969,9 @@ declare const Users_base: (new (...args: any[]) => {
960
969
  closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
961
970
  closest<E extends Element = Element>(selectors: string): E;
962
971
  getAttribute(qualifiedName: string): string;
963
- getAttributeNS(namespace: string, localName: string): string;
972
+ getAttributeNS(namespace: string, localName: string): string; /**
973
+ * String which contains event if we have permission to delete user of empty string if not
974
+ */
964
975
  getAttributeNames(): string[];
965
976
  getAttributeNode(qualifiedName: string): Attr;
966
977
  getAttributeNodeNS(namespace: string, localName: string): Attr;
@@ -1014,6 +1025,15 @@ declare const Users_base: (new (...args: any[]) => {
1014
1025
  readonly parentNode: ParentNode;
1015
1026
  readonly previousSibling: ChildNode;
1016
1027
  textContent: string;
1028
+ /**
1029
+ * Changes the status of an entity
1030
+ *
1031
+ * @remarks
1032
+ *
1033
+ * The action which is run on the status button from {@link Users.statusRendererSelector}
1034
+ *
1035
+ * @internal
1036
+ */
1017
1037
  appendChild<T_1 extends Node>(node: T_1): T_1;
1018
1038
  compareDocumentPosition(other: Node): number;
1019
1039
  contains(other: Node): boolean;
@@ -58,6 +58,7 @@ const userColumns = [
58
58
  | [columns](./foundation-entity-management.users.columns.md) | | any | Column definition, default to the UsersColumnConfig |
59
59
  | [createEvent](./foundation-entity-management.users.createevent.md) | | string | String which contains event if we have permission to insert user of empty string if not |
60
60
  | [deleteEvent](./foundation-entity-management.users.deleteevent.md) | | string | String which contains event if we have permission to delete user of empty string if not |
61
+ | [persistColumnStateKey](./foundation-entity-management.users.persistcolumnstatekey.md) | | string | This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to <code>entity_users_management</code>. |
61
62
  | [updateEvent](./foundation-entity-management.users.updateevent.md) | | string | String which contains event if we have permission to update user of empty string if not |
62
63
 
63
64
  ## Methods
@@ -0,0 +1,18 @@
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; [Users](./foundation-entity-management.users.md) &gt; [persistColumnStateKey](./foundation-entity-management.users.persistcolumnstatekey.md)
4
+
5
+ ## Users.persistColumnStateKey property
6
+
7
+ This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`<!-- -->.
8
+
9
+ **Signature:**
10
+
11
+ ```typescript
12
+ persistColumnStateKey: string;
13
+ ```
14
+
15
+ ## Remarks
16
+
17
+ 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. This value must be unique for each table in your app otherwise the persisted data will be corrupted. There is an option on the grid for the user to reset the table to the default layout if they wish.
18
+
@@ -205,6 +205,7 @@ export class Users extends Users_base {
205
205
  entityLabel: string;
206
206
  // @internal
207
207
  entityLabelKey: string;
208
+ persistColumnStateKey: string;
208
209
  // @internal (undocumented)
209
210
  readUserData(user: any): Promise<{
210
211
  USER_PROFILES: any[];
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.69.4",
4
+ "version": "14.70.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.69.4",
45
- "@genesislcap/genx": "14.69.4",
44
+ "@genesislcap/foundation-testing": "14.70.0",
45
+ "@genesislcap/genx": "14.70.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.69.4",
51
- "@genesislcap/foundation-errors": "14.69.4",
52
- "@genesislcap/foundation-forms": "14.69.4",
53
- "@genesislcap/foundation-login": "14.69.4",
54
- "@genesislcap/foundation-ui": "14.69.4",
55
- "@genesislcap/foundation-utils": "14.69.4",
56
- "@genesislcap/foundation-zero": "14.69.4",
57
- "@genesislcap/foundation-zero-grid-pro": "14.69.4",
58
- "@genesislcap/grid-pro": "14.69.4",
50
+ "@genesislcap/foundation-comms": "14.70.0",
51
+ "@genesislcap/foundation-errors": "14.70.0",
52
+ "@genesislcap/foundation-forms": "14.70.0",
53
+ "@genesislcap/foundation-login": "14.70.0",
54
+ "@genesislcap/foundation-ui": "14.70.0",
55
+ "@genesislcap/foundation-utils": "14.70.0",
56
+ "@genesislcap/foundation-zero": "14.70.0",
57
+ "@genesislcap/foundation-zero-grid-pro": "14.70.0",
58
+ "@genesislcap/grid-pro": "14.70.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": "925fcce3220054f613f3ddf3c2455c1a0ad3c208"
74
+ "gitHead": "2e21c1ea5b2db1ac4c74d47343a295a29f925f6a"
75
75
  }