@genesislcap/foundation-entity-management 14.174.0 → 14.176.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.
- package/dist/custom-elements.json +221 -68
- package/dist/dts/entities/entities.d.ts +37 -4
- package/dist/dts/entities/entities.d.ts.map +1 -1
- package/dist/dts/entities/entities.styles.d.ts.map +1 -1
- package/dist/dts/entities/entities.template.d.ts +4 -2
- package/dist/dts/entities/entities.template.d.ts.map +1 -1
- package/dist/dts/list/list.d.ts +6 -0
- package/dist/dts/list/list.d.ts.map +1 -1
- package/dist/dts/list/list.template.d.ts +2 -0
- package/dist/dts/list/list.template.d.ts.map +1 -1
- package/dist/dts/users/users.d.ts +12 -5
- package/dist/dts/users/users.d.ts.map +1 -1
- package/dist/dts/users/users.template.d.ts +4 -2
- package/dist/dts/users/users.template.d.ts.map +1 -1
- package/dist/esm/entities/entities.js +22 -5
- package/dist/esm/entities/entities.styles.js +3 -1
- package/dist/esm/entities/entities.template.js +20 -13
- package/dist/esm/list/list.js +15 -4
- package/dist/esm/list/list.template.js +10 -6
- package/dist/esm/users/users.js +9 -1
- package/dist/esm/users/users.template.js +6 -1
- package/dist/foundation-entity-management.api.json +90 -0
- package/dist/foundation-entity-management.d.ts +49 -9
- package/docs/api/foundation-entity-management.entitymanagement.md +2 -0
- package/docs/api/foundation-entity-management.entitymanagement.prefix.md +13 -0
- package/docs/api/foundation-entity-management.entitymanagement.rowselection.md +18 -0
- package/docs/api/foundation-entity-management.users.md +1 -0
- package/docs/api/foundation-entity-management.users.prefix.md +13 -0
- package/docs/api-report.md +3 -0
- package/package.json +21 -21
|
@@ -64,10 +64,12 @@ Where:<br /> - the title of the grid is `Counterparty Management`<br /> - the na
|
|
|
64
64
|
| [hideEdit](./foundation-entity-management.entitymanagement.hideedit.md) | | boolean | |
|
|
65
65
|
| [modalPosition](./foundation-entity-management.entitymanagement.modalposition.md) | | 'centre' \| 'left' \| 'right' | Determines where the modal dialog will appear on screen |
|
|
66
66
|
| [persistColumnStateKey](./foundation-entity-management.entitymanagement.persistcolumnstatekey.md) | | string | 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. |
|
|
67
|
+
| [prefix](./foundation-entity-management.entitymanagement.prefix.md) | | string | Name of the design system prefix that will be used in renderers. |
|
|
67
68
|
| [readEvent](./foundation-entity-management.entitymanagement.readevent.md) | | string | |
|
|
68
69
|
| [readEventFn](./foundation-entity-management.entitymanagement.readeventfn.md) | | (...args: any\[\]) => {} | |
|
|
69
70
|
| [readonly](./foundation-entity-management.entitymanagement.readonly.md) | | boolean | |
|
|
70
71
|
| [resourceName](./foundation-entity-management.entitymanagement.resourcename.md) | | string | Name of the backend resource which contain the entities to manage |
|
|
72
|
+
| [rowSelection](./foundation-entity-management.entitymanagement.rowselection.md) | | string | This attribute allows you to change row-selection to 'single' or 'multiple' which will allow you to select single or multiple rows. |
|
|
71
73
|
| [searchBarConfig](./foundation-entity-management.entitymanagement.searchbarconfig.md) | | AvailableOption\[\] | |
|
|
72
74
|
| [selectedEntity](./foundation-entity-management.entitymanagement.selectedentity.md) | | any | Reference to the currently selected entity from the grid. |
|
|
73
75
|
| [sizeColumnsToFit](./foundation-entity-management.entitymanagement.sizecolumnstofit.md) | | boolean | |
|
|
@@ -0,0 +1,13 @@
|
|
|
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) > [EntityManagement](./foundation-entity-management.entitymanagement.md) > [prefix](./foundation-entity-management.entitymanagement.prefix.md)
|
|
4
|
+
|
|
5
|
+
## EntityManagement.prefix property
|
|
6
|
+
|
|
7
|
+
Name of the design system prefix that will be used in renderers.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
prefix: string;
|
|
13
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
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) > [EntityManagement](./foundation-entity-management.entitymanagement.md) > [rowSelection](./foundation-entity-management.entitymanagement.rowselection.md)
|
|
4
|
+
|
|
5
|
+
## EntityManagement.rowSelection property
|
|
6
|
+
|
|
7
|
+
This attribute allows you to change row-selection to 'single' or 'multiple' which will allow you to select single or multiple rows.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
rowSelection: string;
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Remarks
|
|
16
|
+
|
|
17
|
+
Defaults to single
|
|
18
|
+
|
|
@@ -66,6 +66,7 @@ const userColumns = [
|
|
|
66
66
|
| [enableSearchBar](./foundation-entity-management.users.enablesearchbar.md) | | boolean | This attribute controls whether to enable the search-bar. |
|
|
67
67
|
| [gridOptions](./foundation-entity-management.users.gridoptions.md) | | GridOptions | GridOptions to be passed down from application |
|
|
68
68
|
| [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>. |
|
|
69
|
+
| [prefix](./foundation-entity-management.users.prefix.md) | | string | Name of the design system prefix that will be used for components. |
|
|
69
70
|
| [updateEvent](./foundation-entity-management.users.updateevent.md) | | string | String which contains event if we have permission to update user of empty string if not |
|
|
70
71
|
|
|
71
72
|
## Methods
|
|
@@ -0,0 +1,13 @@
|
|
|
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) > [Users](./foundation-entity-management.users.md) > [prefix](./foundation-entity-management.users.prefix.md)
|
|
4
|
+
|
|
5
|
+
## Users.prefix property
|
|
6
|
+
|
|
7
|
+
Name of the design system prefix that will be used for components.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
prefix: string;
|
|
13
|
+
```
|
package/docs/api-report.md
CHANGED
|
@@ -99,6 +99,7 @@ export class EntityManagement extends EntityManagement_base {
|
|
|
99
99
|
hideEdit: boolean;
|
|
100
100
|
modalPosition: 'centre' | 'left' | 'right';
|
|
101
101
|
persistColumnStateKey: string;
|
|
102
|
+
prefix: string;
|
|
102
103
|
// (undocumented)
|
|
103
104
|
readEvent: string;
|
|
104
105
|
// (undocumented)
|
|
@@ -106,6 +107,7 @@ export class EntityManagement extends EntityManagement_base {
|
|
|
106
107
|
// (undocumented)
|
|
107
108
|
readonly: boolean;
|
|
108
109
|
resourceName: string;
|
|
110
|
+
rowSelection: string;
|
|
109
111
|
// (undocumented)
|
|
110
112
|
searchBarConfig: AvailableOption[];
|
|
111
113
|
// (undocumented)
|
|
@@ -220,6 +222,7 @@ export class Users extends Users_base {
|
|
|
220
222
|
entityLabelKey: string;
|
|
221
223
|
gridOptions: GridOptions;
|
|
222
224
|
persistColumnStateKey: string;
|
|
225
|
+
prefix: string;
|
|
223
226
|
// @internal (undocumented)
|
|
224
227
|
readUserData(user: any): Promise<{
|
|
225
228
|
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.
|
|
4
|
+
"version": "14.176.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.
|
|
47
|
-
"@genesislcap/genx": "14.
|
|
48
|
-
"@genesislcap/rollup-builder": "14.
|
|
49
|
-
"@genesislcap/ts-builder": "14.
|
|
50
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
51
|
-
"@genesislcap/vite-builder": "14.
|
|
52
|
-
"@genesislcap/webpack-builder": "14.
|
|
46
|
+
"@genesislcap/foundation-testing": "14.176.0",
|
|
47
|
+
"@genesislcap/genx": "14.176.0",
|
|
48
|
+
"@genesislcap/rollup-builder": "14.176.0",
|
|
49
|
+
"@genesislcap/ts-builder": "14.176.0",
|
|
50
|
+
"@genesislcap/uvu-playwright-builder": "14.176.0",
|
|
51
|
+
"@genesislcap/vite-builder": "14.176.0",
|
|
52
|
+
"@genesislcap/webpack-builder": "14.176.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.
|
|
58
|
-
"@genesislcap/foundation-errors": "14.
|
|
59
|
-
"@genesislcap/foundation-events": "14.
|
|
60
|
-
"@genesislcap/foundation-forms": "14.
|
|
61
|
-
"@genesislcap/foundation-logger": "14.
|
|
62
|
-
"@genesislcap/foundation-login": "14.
|
|
63
|
-
"@genesislcap/foundation-notifications": "14.
|
|
64
|
-
"@genesislcap/foundation-ui": "14.
|
|
65
|
-
"@genesislcap/foundation-utils": "14.
|
|
66
|
-
"@genesislcap/foundation-zero": "14.
|
|
67
|
-
"@genesislcap/foundation-zero-grid-pro": "14.
|
|
68
|
-
"@genesislcap/grid-pro": "14.
|
|
57
|
+
"@genesislcap/foundation-comms": "14.176.0",
|
|
58
|
+
"@genesislcap/foundation-errors": "14.176.0",
|
|
59
|
+
"@genesislcap/foundation-events": "14.176.0",
|
|
60
|
+
"@genesislcap/foundation-forms": "14.176.0",
|
|
61
|
+
"@genesislcap/foundation-logger": "14.176.0",
|
|
62
|
+
"@genesislcap/foundation-login": "14.176.0",
|
|
63
|
+
"@genesislcap/foundation-notifications": "14.176.0",
|
|
64
|
+
"@genesislcap/foundation-ui": "14.176.0",
|
|
65
|
+
"@genesislcap/foundation-utils": "14.176.0",
|
|
66
|
+
"@genesislcap/foundation-zero": "14.176.0",
|
|
67
|
+
"@genesislcap/foundation-zero-grid-pro": "14.176.0",
|
|
68
|
+
"@genesislcap/grid-pro": "14.176.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": "
|
|
84
|
+
"gitHead": "e8d311eaf27cd3d155813081ad70a18aa0a826fd"
|
|
85
85
|
}
|