@genesislcap/foundation-entity-management 14.161.0 → 14.162.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.
@@ -838,55 +838,6 @@
838
838
  }
839
839
  ]
840
840
  },
841
- {
842
- "kind": "javascript-module",
843
- "path": "src/layouts/default.ts",
844
- "declarations": [
845
- {
846
- "kind": "variable",
847
- "name": "loginLayout",
848
- "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
849
- },
850
- {
851
- "kind": "variable",
852
- "name": "defaultLayout",
853
- "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)"
854
- }
855
- ],
856
- "exports": [
857
- {
858
- "kind": "js",
859
- "name": "loginLayout",
860
- "declaration": {
861
- "name": "loginLayout",
862
- "module": "src/layouts/default.ts"
863
- }
864
- },
865
- {
866
- "kind": "js",
867
- "name": "defaultLayout",
868
- "declaration": {
869
- "name": "defaultLayout",
870
- "module": "src/layouts/default.ts"
871
- }
872
- }
873
- ]
874
- },
875
- {
876
- "kind": "javascript-module",
877
- "path": "src/layouts/index.ts",
878
- "declarations": [],
879
- "exports": [
880
- {
881
- "kind": "js",
882
- "name": "*",
883
- "declaration": {
884
- "name": "*",
885
- "package": "./default"
886
- }
887
- }
888
- ]
889
- },
890
841
  {
891
842
  "kind": "javascript-module",
892
843
  "path": "src/list/index.ts",
@@ -1460,6 +1411,55 @@
1460
1411
  }
1461
1412
  ]
1462
1413
  },
1414
+ {
1415
+ "kind": "javascript-module",
1416
+ "path": "src/layouts/default.ts",
1417
+ "declarations": [
1418
+ {
1419
+ "kind": "variable",
1420
+ "name": "loginLayout",
1421
+ "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
1422
+ },
1423
+ {
1424
+ "kind": "variable",
1425
+ "name": "defaultLayout",
1426
+ "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)"
1427
+ }
1428
+ ],
1429
+ "exports": [
1430
+ {
1431
+ "kind": "js",
1432
+ "name": "loginLayout",
1433
+ "declaration": {
1434
+ "name": "loginLayout",
1435
+ "module": "src/layouts/default.ts"
1436
+ }
1437
+ },
1438
+ {
1439
+ "kind": "js",
1440
+ "name": "defaultLayout",
1441
+ "declaration": {
1442
+ "name": "defaultLayout",
1443
+ "module": "src/layouts/default.ts"
1444
+ }
1445
+ }
1446
+ ]
1447
+ },
1448
+ {
1449
+ "kind": "javascript-module",
1450
+ "path": "src/layouts/index.ts",
1451
+ "declarations": [],
1452
+ "exports": [
1453
+ {
1454
+ "kind": "js",
1455
+ "name": "*",
1456
+ "declaration": {
1457
+ "name": "*",
1458
+ "package": "./default"
1459
+ }
1460
+ }
1461
+ ]
1462
+ },
1463
1463
  {
1464
1464
  "kind": "javascript-module",
1465
1465
  "path": "src/profiles/editProfileSchema.ts",
@@ -2611,6 +2611,7 @@
2611
2611
  "name": "FASTElement",
2612
2612
  "package": "@microsoft/fast-element"
2613
2613
  },
2614
+ "deprecated": "- Use '\\@genesislcap/pbc-auth' instead. 'https://www.npmjs.com/package/\\@genesislcap/pbc-auth'",
2614
2615
  "tagName": "user-management",
2615
2616
  "customElement": true
2616
2617
  }
@@ -86,14 +86,14 @@ declare const Users_base: (new (...args: any[]) => {
86
86
  readonly shadowRoot: ShadowRoot;
87
87
  slot: string;
88
88
  readonly tagName: string;
89
- attachShadow(init: ShadowRootInit): ShadowRoot; /**
90
- * entityID used to control the definition of an optional entity column which is created with the {@link Users.entityColumn} function.
91
- * @internal
92
- */
89
+ attachShadow(init: ShadowRootInit): ShadowRoot;
93
90
  closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
94
91
  closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
95
92
  closest<E extends Element = Element>(selectors: string): E;
96
- getAttribute(qualifiedName: string): string;
93
+ getAttribute(qualifiedName: string): string; /**
94
+ * Definition of the `DATASERVER` query which is used when managing Counterpartys
95
+ * @internal
96
+ */
97
97
  getAttributeNS(namespace: string, localName: string): string;
98
98
  getAttributeNames(): string[];
99
99
  getAttributeNode(qualifiedName: string): Attr;
@@ -363,7 +363,8 @@ declare const Users_base: (new (...args: any[]) => {
363
363
  *
364
364
  * Under the hood the user-management is the entity-management micro-frontend configured for use
365
365
  * with the `ALL_USERS` resource.
366
- *
366
+ * @deprecated - Use '\@genesislcap/pbc-auth' instead.
367
+ * 'https://www.npmjs.com/package/\@genesislcap/pbc-auth'
367
368
  * @public
368
369
  *
369
370
  * @example
@@ -1 +1 @@
1
- {"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/users/users.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAItD,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAC7E,OAAO,EAA4B,WAAW,EAAc,MAAM,yBAAyB,CAAC;AAC5F,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAQtD;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;IAoC7B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oDA0LA;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA3LL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;OAGG;IACwD,eAAe,EAAE,OAAO,CAAS;IAE5F;;;OAGG;IACS,WAAW,EAAE,WAAW,CAAC;IAErC;;;;;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;IAe1B;;;OAGG;IACH,sBAAsB,CAAC,MAAM,KAAA;;;;;;;;IAW7B;;;;;;;;OAQG;IACG,YAAY,CAAC,MAAM,KAAA;IAoCzB;;OAEG;IACG,YAAY,CAAC,IAAI,KAAA;;;;;;;;;;;;;;;CAwBxB"}
1
+ {"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/users/users.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAItD,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAC7E,OAAO,EAA4B,WAAW,EAAc,MAAM,yBAAyB,CAAC;AAC5F,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAQtD;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;IAoC7B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iDAiMA;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlML;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;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;;;OAGG;IACwD,eAAe,EAAE,OAAO,CAAS;IAE5F;;;OAGG;IACS,WAAW,EAAE,WAAW,CAAC;IAErC;;;;;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;IAe1B;;;OAGG;IACH,sBAAsB,CAAC,MAAM,KAAA;;;;;;;;IAW7B;;;;;;;;OAQG;IACG,YAAY,CAAC,MAAM,KAAA;IAoCzB;;OAEG;IACG,YAAY,CAAC,IAAI,KAAA;;;;;;;;;;;;;;;CAwBxB"}
@@ -39,7 +39,8 @@ export const UsersColumnConfig = [
39
39
  *
40
40
  * Under the hood the user-management is the entity-management micro-frontend configured for use
41
41
  * with the `ALL_USERS` resource.
42
- *
42
+ * @deprecated - Use '\@genesislcap/pbc-auth' instead.
43
+ * 'https://www.npmjs.com/package/\@genesislcap/pbc-auth'
43
44
  * @public
44
45
  *
45
46
  * @example
@@ -2419,7 +2419,7 @@
2419
2419
  {
2420
2420
  "kind": "Class",
2421
2421
  "canonicalReference": "@genesislcap/foundation-entity-management!Users:class",
2422
- "docComment": "/**\n * Main class which defines the user management functionality\n *\n * @remarks\n *\n * Under the hood the user-management is the entity-management micro-frontend configured for use with the `ALL_USERS` resource.\n *\n * @example\n *\n * With no customisation required the user management micro-frontend can simply be dropped into the template as shown. However, it is advised to wrap it in an error boundary component.\n * ```javascript\n * <user-management></user-management>\n * ```\n *\n * With this default example above the columns will be the {@link UsersColumnConfig} as well as the entity and status columns. The entity and status columns are always added regardless of the other columns which are configured.\n *\n * You can add in additional customisation options. For example you can define a custom column and then mix-in with the standard columns\n * ```javascript\n * import { Users, UsersColumnConfig, } from '@genesislcap/foundation-entity-management';\n *\n * const userColumns = [\n * {\n * field: 'ACCESS_TYPE',\n * headerName: 'Access Type',\n * },\n * ];\n *\n * // Definition inside of the html template\n * <user-management :columns=${() => [...UsersColumnConfig, ...userColumns]}></user-management>\n * ```\n *\n * @public\n */\n",
2422
+ "docComment": "/**\n * Main class which defines the user management functionality\n *\n * @remarks\n *\n * Under the hood the user-management is the entity-management micro-frontend configured for use with the `ALL_USERS` resource.\n *\n * @deprecated\n *\n * - Use '\\@genesislcap/pbc-auth' instead. 'https://www.npmjs.com/package/\\@genesislcap/pbc-auth'\n *\n * @example\n *\n * With no customisation required the user management micro-frontend can simply be dropped into the template as shown. However, it is advised to wrap it in an error boundary component.\n * ```javascript\n * <user-management></user-management>\n * ```\n *\n * With this default example above the columns will be the {@link UsersColumnConfig} as well as the entity and status columns. The entity and status columns are always added regardless of the other columns which are configured.\n *\n * You can add in additional customisation options. For example you can define a custom column and then mix-in with the standard columns\n * ```javascript\n * import { Users, UsersColumnConfig, } from '@genesislcap/foundation-entity-management';\n *\n * const userColumns = [\n * {\n * field: 'ACCESS_TYPE',\n * headerName: 'Access Type',\n * },\n * ];\n *\n * // Definition inside of the html template\n * <user-management :columns=${() => [...UsersColumnConfig, ...userColumns]}></user-management>\n * ```\n *\n * @public\n */\n",
2423
2423
  "excerptTokens": [
2424
2424
  {
2425
2425
  "kind": "Content",
@@ -757,7 +757,8 @@ declare type RouterSettings = {
757
757
  *
758
758
  * Under the hood the user-management is the entity-management micro-frontend configured for use
759
759
  * with the `ALL_USERS` resource.
760
- *
760
+ * @deprecated - Use '\@genesislcap/pbc-auth' instead.
761
+ * 'https://www.npmjs.com/package/\@genesislcap/pbc-auth'
761
762
  * @public
762
763
  *
763
764
  * @example
@@ -1021,14 +1022,14 @@ declare const Users_base: (new (...args: any[]) => {
1021
1022
  readonly shadowRoot: ShadowRoot;
1022
1023
  slot: string;
1023
1024
  readonly tagName: string;
1024
- attachShadow(init: ShadowRootInit): ShadowRoot; /**
1025
- * entityID used to control the definition of an optional entity column which is created with the {@link Users.entityColumn} function.
1026
- * @internal
1027
- */
1025
+ attachShadow(init: ShadowRootInit): ShadowRoot;
1028
1026
  closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
1029
1027
  closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
1030
1028
  closest<E extends Element = Element>(selectors: string): E;
1031
- getAttribute(qualifiedName: string): string;
1029
+ getAttribute(qualifiedName: string): string; /**
1030
+ * Definition of the `DATASERVER` query which is used when managing Counterpartys
1031
+ * @internal
1032
+ */
1032
1033
  getAttributeNS(namespace: string, localName: string): string;
1033
1034
  getAttributeNames(): string[];
1034
1035
  getAttributeNode(qualifiedName: string): Attr;
@@ -4,6 +4,11 @@
4
4
 
5
5
  ## Users class
6
6
 
7
+ > Warning: This API is now obsolete.
8
+ >
9
+ > - Use '<!-- -->@<!-- -->genesislcap/pbc-auth' instead. 'https://www.npmjs.com/package/<!-- -->@<!-- -->genesislcap/pbc-auth'
10
+ >
11
+
7
12
  Main class which defines the user management functionality
8
13
 
9
14
  **Signature:**
@@ -183,7 +183,7 @@ export class Profiles extends EntityManagement {
183
183
 
184
184
  // Warning: (ae-forgotten-export) The symbol "Users_base" needs to be exported by the entry point index.d.ts
185
185
  //
186
- // @public
186
+ // @public @deprecated
187
187
  export class Users extends Users_base {
188
188
  constructor();
189
189
  // (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.161.0",
4
+ "version": "14.162.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -43,29 +43,29 @@
43
43
  "test:debug": "genx test --debug"
44
44
  },
45
45
  "devDependencies": {
46
- "@genesislcap/foundation-testing": "14.161.0",
47
- "@genesislcap/genx": "14.161.0",
48
- "@genesislcap/rollup-builder": "14.161.0",
49
- "@genesislcap/ts-builder": "14.161.0",
50
- "@genesislcap/uvu-playwright-builder": "14.161.0",
51
- "@genesislcap/vite-builder": "14.161.0",
52
- "@genesislcap/webpack-builder": "14.161.0",
46
+ "@genesislcap/foundation-testing": "14.162.0",
47
+ "@genesislcap/genx": "14.162.0",
48
+ "@genesislcap/rollup-builder": "14.162.0",
49
+ "@genesislcap/ts-builder": "14.162.0",
50
+ "@genesislcap/uvu-playwright-builder": "14.162.0",
51
+ "@genesislcap/vite-builder": "14.162.0",
52
+ "@genesislcap/webpack-builder": "14.162.0",
53
53
  "rimraf": "^3.0.2"
54
54
  },
55
55
  "dependencies": {
56
56
  "@ag-grid-community/core": "29.2.0",
57
- "@genesislcap/foundation-comms": "14.161.0",
58
- "@genesislcap/foundation-errors": "14.161.0",
59
- "@genesislcap/foundation-events": "14.161.0",
60
- "@genesislcap/foundation-forms": "14.161.0",
61
- "@genesislcap/foundation-logger": "14.161.0",
62
- "@genesislcap/foundation-login": "14.161.0",
63
- "@genesislcap/foundation-notifications": "14.161.0",
64
- "@genesislcap/foundation-ui": "14.161.0",
65
- "@genesislcap/foundation-utils": "14.161.0",
66
- "@genesislcap/foundation-zero": "14.161.0",
67
- "@genesislcap/foundation-zero-grid-pro": "14.161.0",
68
- "@genesislcap/grid-pro": "14.161.0",
57
+ "@genesislcap/foundation-comms": "14.162.0",
58
+ "@genesislcap/foundation-errors": "14.162.0",
59
+ "@genesislcap/foundation-events": "14.162.0",
60
+ "@genesislcap/foundation-forms": "14.162.0",
61
+ "@genesislcap/foundation-logger": "14.162.0",
62
+ "@genesislcap/foundation-login": "14.162.0",
63
+ "@genesislcap/foundation-notifications": "14.162.0",
64
+ "@genesislcap/foundation-ui": "14.162.0",
65
+ "@genesislcap/foundation-utils": "14.162.0",
66
+ "@genesislcap/foundation-zero": "14.162.0",
67
+ "@genesislcap/foundation-zero-grid-pro": "14.162.0",
68
+ "@genesislcap/grid-pro": "14.162.0",
69
69
  "@microsoft/fast-components": "^2.30.6",
70
70
  "@microsoft/fast-element": "^1.12.0",
71
71
  "@microsoft/fast-foundation": "^2.49.4",
@@ -81,5 +81,5 @@
81
81
  "access": "public"
82
82
  },
83
83
  "customElements": "dist/custom-elements.json",
84
- "gitHead": "75ef6861f287624c5efcee0f3ca24d1c167102d3"
84
+ "gitHead": "874e7ee403e4cfab01c6fb2542ae3264c7202831"
85
85
  }