@genesislcap/foundation-entity-management 14.194.4 → 14.194.6
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.
- package/dist/custom-elements.json +30 -34
- package/dist/dts/entities/entities.d.ts +26 -10
- package/dist/dts/entities/entities.d.ts.map +1 -1
- package/dist/dts/main/main.d.ts +1 -2
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/dts/profiles/editProfileSchema.d.ts +2 -18
- package/dist/dts/profiles/editProfileSchema.d.ts.map +1 -1
- package/dist/dts/types.d.ts +13 -0
- package/dist/dts/types.d.ts.map +1 -1
- package/dist/dts/users/users.d.ts +16 -20
- package/dist/dts/users/users.d.ts.map +1 -1
- package/dist/dts/users/users.template.d.ts.map +1 -1
- package/dist/esm/entities/entities.js +2 -2
- package/dist/esm/main/main.js +0 -4
- package/dist/foundation-entity-management.api.json +71 -53
- package/dist/foundation-entity-management.d.ts +55 -31
- package/docs/api/foundation-entity-management.entitymanagement.createformuischema.md +1 -1
- package/docs/api/foundation-entity-management.entitymanagement.defaultentityvalues.md +3 -1
- package/docs/api/foundation-entity-management.entitymanagement.editedentity.md +1 -1
- package/docs/api/foundation-entity-management.entitymanagement.editentitymodal.md +1 -1
- package/docs/api/foundation-entity-management.entitymanagement.formuischema.md +1 -1
- package/docs/api/foundation-entity-management.entitymanagement.md +7 -7
- package/docs/api/foundation-entity-management.entitymanagement.selectedentity.md +1 -1
- package/docs/api/foundation-entity-management.entitymanagement.updateformuischema.md +1 -1
- package/docs/api/foundation-entity-management.mainapplication.md +1 -2
- package/docs/api/foundation-entity-management.mainapplication.provider.md +1 -1
- package/docs/api/foundation-entity-management.users.additionalcreatefields.md +1 -1
- package/docs/api/foundation-entity-management.users.additionalupdatefields.md +1 -1
- package/docs/api/foundation-entity-management.users.columns.md +1 -1
- package/docs/api/foundation-entity-management.users.md +3 -3
- package/docs/api-report.md +16 -14
- package/package.json +21 -21
- package/docs/api/foundation-entity-management.mainapplication.data.md +0 -11
package/docs/api-report.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
import { Auth } from '@genesislcap/foundation-comms';
|
|
8
8
|
import { AvailableOption } from '@genesislcap/foundation-ui';
|
|
9
9
|
import { ColDef } from '@ag-grid-community/core';
|
|
10
|
+
import type { ColGroupDef } from '@ag-grid-community/core';
|
|
10
11
|
import { Connect } from '@genesislcap/foundation-comms';
|
|
11
12
|
import { Constructable } from '@microsoft/fast-element';
|
|
12
13
|
import { Container } from '@microsoft/fast-foundation';
|
|
@@ -21,11 +22,13 @@ import type { GridProCaseType } from '@genesislcap/grid-pro';
|
|
|
21
22
|
import { GridProRendererTypes } from '@genesislcap/foundation-zero-grid-pro';
|
|
22
23
|
import { LayoutCacheContainer } from '@genesislcap/foundation-utils';
|
|
23
24
|
import { Logger } from '@genesislcap/foundation-logger';
|
|
25
|
+
import type { Modal } from '@genesislcap/foundation-ui';
|
|
24
26
|
import { PartialFASTElementDefinition } from '@microsoft/fast-element';
|
|
25
27
|
import { RendererEntry } from '@genesislcap/foundation-forms';
|
|
26
28
|
import { RouterConfiguration } from '@microsoft/fast-router';
|
|
27
29
|
import { SelectedOption } from '@genesislcap/foundation-ui';
|
|
28
30
|
import { Session } from '@genesislcap/foundation-comms';
|
|
31
|
+
import { UiSchema } from '@genesislcap/foundation-forms';
|
|
29
32
|
import { ViewTemplate } from '@microsoft/fast-element';
|
|
30
33
|
|
|
31
34
|
// @public (undocumented)
|
|
@@ -58,22 +61,21 @@ export class EntityManagement extends EntityManagement_base {
|
|
|
58
61
|
createEntity(): void;
|
|
59
62
|
createEvent: string;
|
|
60
63
|
// (undocumented)
|
|
61
|
-
createFormUiSchema:
|
|
64
|
+
createFormUiSchema: UiSchema;
|
|
62
65
|
// (undocumented)
|
|
63
66
|
criteriaChanged(e: CustomEvent<string>): void;
|
|
64
67
|
datasourceConfig: DatasourceConfiguration;
|
|
65
68
|
deepClone(): Node;
|
|
66
|
-
|
|
67
|
-
defaultEntityValues: any;
|
|
69
|
+
defaultEntityValues: Record<string, unknown>;
|
|
68
70
|
// @internal
|
|
69
71
|
deleteEntity(e: CustomEvent): Promise<void>;
|
|
70
72
|
deleteEvent: string;
|
|
71
73
|
// (undocumented)
|
|
72
74
|
disconnectedCallback(): Promise<void>;
|
|
73
75
|
editDialogTitle: string;
|
|
74
|
-
editedEntity:
|
|
76
|
+
editedEntity: Record<string, unknown>;
|
|
75
77
|
// (undocumented)
|
|
76
|
-
editEntityModal:
|
|
78
|
+
editEntityModal: Modal;
|
|
77
79
|
// (undocumented)
|
|
78
80
|
editModalVisible: boolean;
|
|
79
81
|
// (undocumented)
|
|
@@ -90,7 +92,7 @@ export class EntityManagement extends EntityManagement_base {
|
|
|
90
92
|
// @internal
|
|
91
93
|
formResourceName: string;
|
|
92
94
|
// (undocumented)
|
|
93
|
-
formUiSchema:
|
|
95
|
+
formUiSchema: UiSchema;
|
|
94
96
|
gridOptions: GridOptions;
|
|
95
97
|
headerCaseType: GridProCaseType;
|
|
96
98
|
// (undocumented)
|
|
@@ -120,7 +122,7 @@ export class EntityManagement extends EntityManagement_base {
|
|
|
120
122
|
searchBarReqServer(options: SelectedOption<string>[]): void;
|
|
121
123
|
// (undocumented)
|
|
122
124
|
searchChanged(event: CustomEvent<Array<SelectedOption>>): void;
|
|
123
|
-
selectedEntity:
|
|
125
|
+
selectedEntity: Record<string, unknown>;
|
|
124
126
|
// (undocumented)
|
|
125
127
|
sizeColumnsToFit: boolean;
|
|
126
128
|
submitEntityChanges(e: CustomEvent): Promise<void>;
|
|
@@ -131,7 +133,7 @@ export class EntityManagement extends EntityManagement_base {
|
|
|
131
133
|
title: string;
|
|
132
134
|
updateEvent: string;
|
|
133
135
|
// (undocumented)
|
|
134
|
-
updateFormUiSchema:
|
|
136
|
+
updateFormUiSchema: UiSchema;
|
|
135
137
|
}
|
|
136
138
|
|
|
137
139
|
// @public
|
|
@@ -158,13 +160,11 @@ export class MainApplication extends FASTElement {
|
|
|
158
160
|
// (undocumented)
|
|
159
161
|
container: Container;
|
|
160
162
|
// (undocumented)
|
|
161
|
-
data: any;
|
|
162
|
-
// (undocumented)
|
|
163
163
|
loadRemotes(): Promise<void>;
|
|
164
164
|
// (undocumented)
|
|
165
165
|
onLuminanceToggle(): void;
|
|
166
166
|
// (undocumented)
|
|
167
|
-
provider:
|
|
167
|
+
provider: HTMLElement;
|
|
168
168
|
// (undocumented)
|
|
169
169
|
ready: boolean;
|
|
170
170
|
// (undocumented)
|
|
@@ -196,17 +196,19 @@ export class Profiles extends EntityManagement {
|
|
|
196
196
|
// @public @deprecated
|
|
197
197
|
export class Users extends Users_base {
|
|
198
198
|
constructor();
|
|
199
|
+
// Warning: (ae-forgotten-export) The symbol "AdditionalEntry" needs to be exported by the entry point index.d.ts
|
|
200
|
+
//
|
|
199
201
|
// (undocumented)
|
|
200
|
-
additionalCreateFields:
|
|
202
|
+
additionalCreateFields: AdditionalEntry[];
|
|
201
203
|
// (undocumented)
|
|
202
|
-
additionalUpdateFields:
|
|
204
|
+
additionalUpdateFields: AdditionalEntry[];
|
|
203
205
|
// (undocumented)
|
|
204
206
|
allAccessType: boolean;
|
|
205
207
|
// @internal
|
|
206
208
|
availableEntitiesEndpoint: string;
|
|
207
209
|
// @internal
|
|
208
210
|
changeStatus(params: any): Promise<void>;
|
|
209
|
-
columns: any;
|
|
211
|
+
columns: (ColDef<any> | ColGroupDef<any>)[];
|
|
210
212
|
// (undocumented)
|
|
211
213
|
connectedCallback(): Promise<void>;
|
|
212
214
|
createEvent: string;
|
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.194.
|
|
4
|
+
"version": "14.194.6",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -52,29 +52,29 @@
|
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@genesislcap/foundation-testing": "14.194.
|
|
56
|
-
"@genesislcap/genx": "14.194.
|
|
57
|
-
"@genesislcap/rollup-builder": "14.194.
|
|
58
|
-
"@genesislcap/ts-builder": "14.194.
|
|
59
|
-
"@genesislcap/uvu-playwright-builder": "14.194.
|
|
60
|
-
"@genesislcap/vite-builder": "14.194.
|
|
61
|
-
"@genesislcap/webpack-builder": "14.194.
|
|
55
|
+
"@genesislcap/foundation-testing": "14.194.6",
|
|
56
|
+
"@genesislcap/genx": "14.194.6",
|
|
57
|
+
"@genesislcap/rollup-builder": "14.194.6",
|
|
58
|
+
"@genesislcap/ts-builder": "14.194.6",
|
|
59
|
+
"@genesislcap/uvu-playwright-builder": "14.194.6",
|
|
60
|
+
"@genesislcap/vite-builder": "14.194.6",
|
|
61
|
+
"@genesislcap/webpack-builder": "14.194.6",
|
|
62
62
|
"rimraf": "^5.0.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@ag-grid-community/core": "29.2.0",
|
|
66
|
-
"@genesislcap/foundation-comms": "14.194.
|
|
67
|
-
"@genesislcap/foundation-errors": "14.194.
|
|
68
|
-
"@genesislcap/foundation-events": "14.194.
|
|
69
|
-
"@genesislcap/foundation-forms": "14.194.
|
|
70
|
-
"@genesislcap/foundation-logger": "14.194.
|
|
71
|
-
"@genesislcap/foundation-login": "14.194.
|
|
72
|
-
"@genesislcap/foundation-notifications": "14.194.
|
|
73
|
-
"@genesislcap/foundation-ui": "14.194.
|
|
74
|
-
"@genesislcap/foundation-utils": "14.194.
|
|
75
|
-
"@genesislcap/foundation-zero": "14.194.
|
|
76
|
-
"@genesislcap/foundation-zero-grid-pro": "14.194.
|
|
77
|
-
"@genesislcap/grid-pro": "14.194.
|
|
66
|
+
"@genesislcap/foundation-comms": "14.194.6",
|
|
67
|
+
"@genesislcap/foundation-errors": "14.194.6",
|
|
68
|
+
"@genesislcap/foundation-events": "14.194.6",
|
|
69
|
+
"@genesislcap/foundation-forms": "14.194.6",
|
|
70
|
+
"@genesislcap/foundation-logger": "14.194.6",
|
|
71
|
+
"@genesislcap/foundation-login": "14.194.6",
|
|
72
|
+
"@genesislcap/foundation-notifications": "14.194.6",
|
|
73
|
+
"@genesislcap/foundation-ui": "14.194.6",
|
|
74
|
+
"@genesislcap/foundation-utils": "14.194.6",
|
|
75
|
+
"@genesislcap/foundation-zero": "14.194.6",
|
|
76
|
+
"@genesislcap/foundation-zero-grid-pro": "14.194.6",
|
|
77
|
+
"@genesislcap/grid-pro": "14.194.6",
|
|
78
78
|
"@microsoft/fast-components": "^2.30.6",
|
|
79
79
|
"@microsoft/fast-element": "^1.12.0",
|
|
80
80
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
@@ -90,5 +90,5 @@
|
|
|
90
90
|
"access": "public"
|
|
91
91
|
},
|
|
92
92
|
"customElements": "dist/custom-elements.json",
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "0b3c1bca850d1c06169e8184619724394b8a73ca"
|
|
94
94
|
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
-
|
|
3
|
-
[Home](./index.md) > [@genesislcap/foundation-entity-management](./foundation-entity-management.md) > [MainApplication](./foundation-entity-management.mainapplication.md) > [data](./foundation-entity-management.mainapplication.data.md)
|
|
4
|
-
|
|
5
|
-
## MainApplication.data property
|
|
6
|
-
|
|
7
|
-
**Signature:**
|
|
8
|
-
|
|
9
|
-
```typescript
|
|
10
|
-
data: any;
|
|
11
|
-
```
|