@genesislcap/grid-pro 14.83.3 → 14.83.4-alpha-7f87e78.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 +767 -726
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +19 -11
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts +18 -1
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +18 -12
- package/dist/esm/grid-pro.js +30 -4
- package/dist/grid-pro.api.json +112 -3
- package/dist/grid-pro.d.ts +37 -12
- package/docs/api/grid-pro.gridpro.applytemplatedefinitions.md +12 -3
- package/docs/api/grid-pro.gridpro.md +2 -1
- package/docs/api/grid-pro.gridpro.mergeallcolumndefsandstates.md +31 -0
- package/docs/api/grid-pro.gridprogenesisdatasource.deferredcolumnstates.md +11 -0
- package/docs/api/grid-pro.gridprogenesisdatasource.md +1 -0
- package/docs/api-report.md +6 -3
- package/package.json +8 -8
package/docs/api-report.md
CHANGED
|
@@ -25,7 +25,7 @@ import { FoundationElementRegistry } from '@microsoft/fast-foundation';
|
|
|
25
25
|
import { FoundationLayoutContainer } from '@genesislcap/foundation-utils';
|
|
26
26
|
import { Grid } from '@ag-grid-community/core';
|
|
27
27
|
import type { GridApi } from '@ag-grid-community/core';
|
|
28
|
-
import { GridOptions } from '@ag-grid-community/core';
|
|
28
|
+
import type { GridOptions } from '@ag-grid-community/core';
|
|
29
29
|
import { ICellRendererComp } from '@ag-grid-community/core';
|
|
30
30
|
import { ICellRendererFunc } from '@ag-grid-community/core';
|
|
31
31
|
import { ICellRendererParams } from '@ag-grid-community/core';
|
|
@@ -541,8 +541,8 @@ export class GridPro extends GridPro_base {
|
|
|
541
541
|
protected agGridOptions: GridOptions;
|
|
542
542
|
// (undocumented)
|
|
543
543
|
protected agPropertiesMap: Record<string, string>;
|
|
544
|
-
//
|
|
545
|
-
applyTemplateDefinitions(columnDefs: ColDef[],
|
|
544
|
+
// @deprecated
|
|
545
|
+
applyTemplateDefinitions(columnDefs: ColDef[], deferredColumnDefsOrState?: boolean): ColDef<any>[];
|
|
546
546
|
asyncAdd: boolean;
|
|
547
547
|
asyncRemove: boolean;
|
|
548
548
|
asyncUpdate: boolean;
|
|
@@ -589,6 +589,7 @@ export class GridPro extends GridPro_base {
|
|
|
589
589
|
headerHeight: number;
|
|
590
590
|
// (undocumented)
|
|
591
591
|
protected initialised: boolean;
|
|
592
|
+
mergeAllColumnDefsAndStates(columnDefs: ColDef[], deferredColumnDefsOrState?: boolean): ColDef<any>[];
|
|
592
593
|
// (undocumented)
|
|
593
594
|
get observedAttributes(): string[];
|
|
594
595
|
// (undocumented)
|
|
@@ -648,6 +649,8 @@ export class GridProGenesisDatasource extends GridProGenesisDatasource_base {
|
|
|
648
649
|
// (undocumented)
|
|
649
650
|
deepClone(): Node;
|
|
650
651
|
// (undocumented)
|
|
652
|
+
deferredColumnStates: ColumnState[];
|
|
653
|
+
// (undocumented)
|
|
651
654
|
deferredGridOptions: GridOptions;
|
|
652
655
|
deinit(): void;
|
|
653
656
|
// (undocumented)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/grid-pro",
|
|
3
3
|
"description": "Genesis Foundation AG Grid",
|
|
4
|
-
"version": "14.83.
|
|
4
|
+
"version": "14.83.4-alpha-7f87e78.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"test:debug": "genx test --debug"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@genesislcap/foundation-testing": "14.83.
|
|
35
|
-
"@genesislcap/genx": "14.83.
|
|
34
|
+
"@genesislcap/foundation-testing": "14.83.4-alpha-7f87e78.0",
|
|
35
|
+
"@genesislcap/genx": "14.83.4-alpha-7f87e78.0",
|
|
36
36
|
"rimraf": "^3.0.2"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@genesislcap/foundation-comms": "14.83.
|
|
40
|
-
"@genesislcap/foundation-logger": "14.83.
|
|
41
|
-
"@genesislcap/foundation-ui": "14.83.
|
|
42
|
-
"@genesislcap/foundation-utils": "14.83.
|
|
39
|
+
"@genesislcap/foundation-comms": "14.83.4-alpha-7f87e78.0",
|
|
40
|
+
"@genesislcap/foundation-logger": "14.83.4-alpha-7f87e78.0",
|
|
41
|
+
"@genesislcap/foundation-ui": "14.83.4-alpha-7f87e78.0",
|
|
42
|
+
"@genesislcap/foundation-utils": "14.83.4-alpha-7f87e78.0",
|
|
43
43
|
"@microsoft/fast-colors": "^5.1.4",
|
|
44
44
|
"@microsoft/fast-components": "^2.21.3",
|
|
45
45
|
"@microsoft/fast-element": "^1.7.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
64
|
"customElements": "dist/custom-elements.json",
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "4ca2b9cbc3b519f5d64ad80e3b7b85362066f12a"
|
|
66
66
|
}
|