@genesislcap/foundation-entity-management 14.78.2 → 14.78.4-alpha-b87d7d2.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 +380 -120
- package/dist/dts/entities/entities.d.ts +44 -20
- package/dist/dts/entities/entities.d.ts.map +1 -1
- package/dist/dts/entities/entities.template.d.ts.map +1 -1
- package/dist/dts/list/list.d.ts +4 -0
- package/dist/dts/list/list.d.ts.map +1 -1
- package/dist/dts/list/list.template.d.ts.map +1 -1
- package/dist/esm/entities/entities.js +44 -3
- package/dist/esm/entities/entities.template.js +5 -0
- package/dist/esm/list/list.js +17 -0
- package/dist/esm/list/list.template.js +4 -0
- package/dist/foundation-entity-management.api.json +121 -1
- package/dist/foundation-entity-management.d.ts +44 -20
- package/docs/api/foundation-entity-management.entitymanagement.asyncadd.md +18 -0
- package/docs/api/foundation-entity-management.entitymanagement.asyncremove.md +18 -0
- package/docs/api/foundation-entity-management.entitymanagement.asyncupdate.md +18 -0
- package/docs/api/foundation-entity-management.entitymanagement.enablecellflashing.md +7 -0
- package/docs/api/foundation-entity-management.entitymanagement.enablerowflashing.md +13 -0
- package/docs/api/foundation-entity-management.entitymanagement.md +5 -1
- package/docs/api-report.md +4 -1
- package/package.json +13 -13
package/docs/api-report.md
CHANGED
|
@@ -40,6 +40,9 @@ export const DynamicTemplate: ViewTemplate<MainApplication>;
|
|
|
40
40
|
//
|
|
41
41
|
// @public
|
|
42
42
|
export class EntityManagement extends EntityManagement_base {
|
|
43
|
+
asyncAdd: boolean;
|
|
44
|
+
asyncRemove: boolean;
|
|
45
|
+
asyncUpdate: boolean;
|
|
43
46
|
// (undocumented)
|
|
44
47
|
closeModal(): void;
|
|
45
48
|
columns: ColDef[];
|
|
@@ -70,10 +73,10 @@ export class EntityManagement extends EntityManagement_base {
|
|
|
70
73
|
editModalVisible: boolean;
|
|
71
74
|
// (undocumented)
|
|
72
75
|
editModalVisibleChanged(): void;
|
|
73
|
-
// (undocumented)
|
|
74
76
|
enableCellFlashing: boolean;
|
|
75
77
|
// (undocumented)
|
|
76
78
|
enableFilterBar: boolean;
|
|
79
|
+
enableRowFlashing: boolean;
|
|
77
80
|
entityLabel: string;
|
|
78
81
|
// @internal
|
|
79
82
|
errorNotify(request: any): void;
|
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.78.
|
|
4
|
+
"version": "14.78.4-alpha-b87d7d2.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.78.
|
|
45
|
-
"@genesislcap/genx": "14.78.
|
|
44
|
+
"@genesislcap/foundation-testing": "14.78.4-alpha-b87d7d2.0",
|
|
45
|
+
"@genesislcap/genx": "14.78.4-alpha-b87d7d2.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.78.
|
|
51
|
-
"@genesislcap/foundation-errors": "14.78.
|
|
52
|
-
"@genesislcap/foundation-forms": "14.78.
|
|
53
|
-
"@genesislcap/foundation-login": "14.78.
|
|
54
|
-
"@genesislcap/foundation-ui": "14.78.
|
|
55
|
-
"@genesislcap/foundation-utils": "14.78.
|
|
56
|
-
"@genesislcap/foundation-zero": "14.78.
|
|
57
|
-
"@genesislcap/foundation-zero-grid-pro": "14.78.
|
|
58
|
-
"@genesislcap/grid-pro": "14.78.
|
|
50
|
+
"@genesislcap/foundation-comms": "14.78.4-alpha-b87d7d2.0",
|
|
51
|
+
"@genesislcap/foundation-errors": "14.78.4-alpha-b87d7d2.0",
|
|
52
|
+
"@genesislcap/foundation-forms": "14.78.4-alpha-b87d7d2.0",
|
|
53
|
+
"@genesislcap/foundation-login": "14.78.4-alpha-b87d7d2.0",
|
|
54
|
+
"@genesislcap/foundation-ui": "14.78.4-alpha-b87d7d2.0",
|
|
55
|
+
"@genesislcap/foundation-utils": "14.78.4-alpha-b87d7d2.0",
|
|
56
|
+
"@genesislcap/foundation-zero": "14.78.4-alpha-b87d7d2.0",
|
|
57
|
+
"@genesislcap/foundation-zero-grid-pro": "14.78.4-alpha-b87d7d2.0",
|
|
58
|
+
"@genesislcap/grid-pro": "14.78.4-alpha-b87d7d2.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": "
|
|
74
|
+
"gitHead": "f1db3abee2153a56a4c39a93639c28f5aab008a4"
|
|
75
75
|
}
|