@genesislcap/foundation-entity-management 14.107.1-alpha-2ab4599.0 → 14.107.1
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 +4 -4
- package/dist/dts/entities/entities.d.ts +17 -2
- package/dist/dts/entities/entities.d.ts.map +1 -1
- package/dist/esm/entities/entities.js +1 -1
- package/dist/foundation-entity-management.api.json +1 -1
- package/dist/foundation-entity-management.d.ts +17 -2
- package/docs/api/foundation-entity-management.entitymanagement.enablerowflashing.md +1 -1
- package/docs/api/foundation-entity-management.entitymanagement.md +1 -1
- package/package.json +15 -15
|
@@ -307,7 +307,7 @@
|
|
|
307
307
|
"text": "boolean"
|
|
308
308
|
},
|
|
309
309
|
"default": "false",
|
|
310
|
-
"description": "If true, will enable row flashing for all rows for `add`
|
|
310
|
+
"description": "If true, will enable row flashing for all rows for `add` transactions",
|
|
311
311
|
"privacy": "public"
|
|
312
312
|
},
|
|
313
313
|
{
|
|
@@ -662,7 +662,7 @@
|
|
|
662
662
|
"text": "boolean"
|
|
663
663
|
},
|
|
664
664
|
"default": "false",
|
|
665
|
-
"description": "If true, will enable row flashing for all rows for `add`
|
|
665
|
+
"description": "If true, will enable row flashing for all rows for `add` transactions",
|
|
666
666
|
"fieldName": "enableRowFlashing"
|
|
667
667
|
},
|
|
668
668
|
{
|
|
@@ -1664,7 +1664,7 @@
|
|
|
1664
1664
|
"text": "boolean"
|
|
1665
1665
|
},
|
|
1666
1666
|
"default": "false",
|
|
1667
|
-
"description": "If true, will enable row flashing for all rows for `add`
|
|
1667
|
+
"description": "If true, will enable row flashing for all rows for `add` transactions",
|
|
1668
1668
|
"privacy": "public",
|
|
1669
1669
|
"inheritedFrom": {
|
|
1670
1670
|
"name": "EntityManagement",
|
|
@@ -2150,7 +2150,7 @@
|
|
|
2150
2150
|
"text": "boolean"
|
|
2151
2151
|
},
|
|
2152
2152
|
"default": "false",
|
|
2153
|
-
"description": "If true, will enable row flashing for all rows for `add`
|
|
2153
|
+
"description": "If true, will enable row flashing for all rows for `add` transactions",
|
|
2154
2154
|
"fieldName": "enableRowFlashing",
|
|
2155
2155
|
"inheritedFrom": {
|
|
2156
2156
|
"name": "EntityManagement",
|
|
@@ -36,11 +36,22 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
36
36
|
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
37
37
|
"__#1@#_tryFindContainingLayout"(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
38
38
|
connectedCallback(): void; /**
|
|
39
|
-
* If true, will enable row flashing for all rows for `add`
|
|
39
|
+
* If true, will enable row flashing for all rows for `add` transactions
|
|
40
40
|
* @public
|
|
41
41
|
*/
|
|
42
42
|
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
43
43
|
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
|
44
|
+
/**
|
|
45
|
+
* 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.
|
|
46
|
+
*
|
|
47
|
+
* @remarks
|
|
48
|
+
*
|
|
49
|
+
* 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.
|
|
50
|
+
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
51
|
+
* There is an option on the grid for the user to reset the table to the default layout if they wish.
|
|
52
|
+
* If you omit this attribute then nothing is persisted
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
44
55
|
disconnectedCallback(): void;
|
|
45
56
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
46
57
|
accessKey: string;
|
|
@@ -84,6 +95,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
84
95
|
readonly part: DOMTokenList;
|
|
85
96
|
readonly prefix: string;
|
|
86
97
|
readonly scrollHeight: number;
|
|
98
|
+
/**
|
|
99
|
+
* Disables the form while enabled to stop the user dispatching a large number of duplicate events
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
87
102
|
scrollLeft: number;
|
|
88
103
|
scrollTop: number;
|
|
89
104
|
readonly scrollWidth: number;
|
|
@@ -456,7 +471,7 @@ export declare class EntityManagement extends EntityManagement_base {
|
|
|
456
471
|
*/
|
|
457
472
|
enableCellFlashing: boolean;
|
|
458
473
|
/**
|
|
459
|
-
* If true, will enable row flashing for all rows for `add`
|
|
474
|
+
* If true, will enable row flashing for all rows for `add` transactions
|
|
460
475
|
* @public
|
|
461
476
|
*/
|
|
462
477
|
enableRowFlashing: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAa,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAUzE,OAAO,EAAuB,WAAW,EAAc,MAAM,yBAAyB,CAAC;AAKvF;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,MAAM,uBAAuB,GAAG,IAAI,CAAC,iBAAiB,EAAE,cAAc,GAAG,SAAS,CAAC,CAAC;;;;;;;;;;;;;+BAoHxF;;;OAGG
|
|
1
|
+
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.ts"],"names":[],"mappings":"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"}
|
|
@@ -71,7 +71,7 @@ let EntityManagement = class EntityManagement extends LifecycleMixin(FASTElement
|
|
|
71
71
|
*/
|
|
72
72
|
this.enableCellFlashing = false;
|
|
73
73
|
/**
|
|
74
|
-
* If true, will enable row flashing for all rows for `add`
|
|
74
|
+
* If true, will enable row flashing for all rows for `add` transactions
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
77
|
this.enableRowFlashing = false;
|
|
@@ -938,7 +938,7 @@
|
|
|
938
938
|
{
|
|
939
939
|
"kind": "Property",
|
|
940
940
|
"canonicalReference": "@genesislcap/foundation-entity-management!EntityManagement#enableRowFlashing:member",
|
|
941
|
-
"docComment": "/**\n * If true, will enable row flashing for all rows for `add`
|
|
941
|
+
"docComment": "/**\n * If true, will enable row flashing for all rows for `add` transactions\n *\n * @public\n */\n",
|
|
942
942
|
"excerptTokens": [
|
|
943
943
|
{
|
|
944
944
|
"kind": "Content",
|
|
@@ -150,7 +150,7 @@ export declare class EntityManagement extends EntityManagement_base {
|
|
|
150
150
|
*/
|
|
151
151
|
enableCellFlashing: boolean;
|
|
152
152
|
/**
|
|
153
|
-
* If true, will enable row flashing for all rows for `add`
|
|
153
|
+
* If true, will enable row flashing for all rows for `add` transactions
|
|
154
154
|
* @public
|
|
155
155
|
*/
|
|
156
156
|
enableRowFlashing: boolean;
|
|
@@ -302,11 +302,22 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
302
302
|
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
303
303
|
"__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
|
304
304
|
connectedCallback(): void; /**
|
|
305
|
-
* If true, will enable row flashing for all rows for `add`
|
|
305
|
+
* If true, will enable row flashing for all rows for `add` transactions
|
|
306
306
|
* @public
|
|
307
307
|
*/
|
|
308
308
|
readonly $fastController: Controller;
|
|
309
309
|
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
|
310
|
+
/**
|
|
311
|
+
* 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.
|
|
312
|
+
*
|
|
313
|
+
* @remarks
|
|
314
|
+
*
|
|
315
|
+
* 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.
|
|
316
|
+
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
317
|
+
* There is an option on the grid for the user to reset the table to the default layout if they wish.
|
|
318
|
+
* If you omit this attribute then nothing is persisted
|
|
319
|
+
* @public
|
|
320
|
+
*/
|
|
310
321
|
disconnectedCallback(): void;
|
|
311
322
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
312
323
|
accessKey: string;
|
|
@@ -350,6 +361,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
350
361
|
readonly part: DOMTokenList;
|
|
351
362
|
readonly prefix: string;
|
|
352
363
|
readonly scrollHeight: number;
|
|
364
|
+
/**
|
|
365
|
+
* Disables the form while enabled to stop the user dispatching a large number of duplicate events
|
|
366
|
+
* @public
|
|
367
|
+
*/
|
|
353
368
|
scrollLeft: number;
|
|
354
369
|
scrollTop: number;
|
|
355
370
|
readonly scrollWidth: number;
|
|
@@ -52,7 +52,7 @@ Where:<br /> - the title of the grid is `Counterparty Management`<br /> - the na
|
|
|
52
52
|
| [editModalVisible](./foundation-entity-management.entitymanagement.editmodalvisible.md) | | boolean | |
|
|
53
53
|
| [enableCellFlashing](./foundation-entity-management.entitymanagement.enablecellflashing.md) | | boolean | If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef |
|
|
54
54
|
| [enableFilterBar](./foundation-entity-management.entitymanagement.enablefilterbar.md) | | boolean | |
|
|
55
|
-
| [enableRowFlashing](./foundation-entity-management.entitymanagement.enablerowflashing.md) | | boolean | If true, will enable row flashing for all rows for <code>add</code>
|
|
55
|
+
| [enableRowFlashing](./foundation-entity-management.entitymanagement.enablerowflashing.md) | | boolean | If true, will enable row flashing for all rows for <code>add</code> transactions |
|
|
56
56
|
| [entityLabel](./foundation-entity-management.entitymanagement.entitylabel.md) | | string | Label for the entity which has usages such as being shown in the title of the modal wen editing the entity |
|
|
57
57
|
| [formRenderers](./foundation-entity-management.entitymanagement.formrenderers.md) | | RendererEntry\[\] | Array with renderers used by foundation-forms |
|
|
58
58
|
| [formUiSchema](./foundation-entity-management.entitymanagement.formuischema.md) | | 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.107.1
|
|
4
|
+
"version": "14.107.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -44,23 +44,23 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@genesislcap/foundation-login": "^14.40.0",
|
|
47
|
-
"@genesislcap/foundation-testing": "14.107.1
|
|
48
|
-
"@genesislcap/genx": "14.107.1
|
|
47
|
+
"@genesislcap/foundation-testing": "14.107.1",
|
|
48
|
+
"@genesislcap/genx": "14.107.1",
|
|
49
49
|
"rimraf": "^3.0.2"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@ag-grid-community/core": "29.2.0",
|
|
53
|
-
"@genesislcap/foundation-comms": "14.107.1
|
|
54
|
-
"@genesislcap/foundation-errors": "14.107.1
|
|
55
|
-
"@genesislcap/foundation-forms": "14.107.1
|
|
56
|
-
"@genesislcap/foundation-logger": "14.107.1
|
|
57
|
-
"@genesislcap/foundation-login": "14.107.1
|
|
58
|
-
"@genesislcap/foundation-notifications": "14.107.1
|
|
59
|
-
"@genesislcap/foundation-ui": "14.107.1
|
|
60
|
-
"@genesislcap/foundation-utils": "14.107.1
|
|
61
|
-
"@genesislcap/foundation-zero": "14.107.1
|
|
62
|
-
"@genesislcap/foundation-zero-grid-pro": "14.107.1
|
|
63
|
-
"@genesislcap/grid-pro": "14.107.1
|
|
53
|
+
"@genesislcap/foundation-comms": "14.107.1",
|
|
54
|
+
"@genesislcap/foundation-errors": "14.107.1",
|
|
55
|
+
"@genesislcap/foundation-forms": "14.107.1",
|
|
56
|
+
"@genesislcap/foundation-logger": "14.107.1",
|
|
57
|
+
"@genesislcap/foundation-login": "14.107.1",
|
|
58
|
+
"@genesislcap/foundation-notifications": "14.107.1",
|
|
59
|
+
"@genesislcap/foundation-ui": "14.107.1",
|
|
60
|
+
"@genesislcap/foundation-utils": "14.107.1",
|
|
61
|
+
"@genesislcap/foundation-zero": "14.107.1",
|
|
62
|
+
"@genesislcap/foundation-zero-grid-pro": "14.107.1",
|
|
63
|
+
"@genesislcap/grid-pro": "14.107.1",
|
|
64
64
|
"@microsoft/fast-components": "^2.21.3",
|
|
65
65
|
"@microsoft/fast-element": "^1.7.0",
|
|
66
66
|
"@microsoft/fast-foundation": "^2.33.2",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"access": "public"
|
|
77
77
|
},
|
|
78
78
|
"customElements": "dist/custom-elements.json",
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "afc294d9a52a1eac3286416444bfd29c18910490"
|
|
80
80
|
}
|