@genesislcap/grid-pro 14.126.0 → 14.127.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 +989 -942
- package/dist/dts/grid-pro.d.ts +43 -11
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/grid-pro.types.d.ts +12 -0
- package/dist/dts/grid-pro.types.d.ts.map +1 -1
- package/dist/dts/utils/index.d.ts +1 -0
- package/dist/dts/utils/index.d.ts.map +1 -1
- package/dist/dts/utils/sanitasations.d.ts +7 -0
- package/dist/dts/utils/sanitasations.d.ts.map +1 -0
- package/dist/esm/grid-pro.js +5 -9
- package/dist/esm/grid-pro.types.js +6 -0
- package/dist/esm/utils/index.js +1 -0
- package/dist/esm/utils/sanitasations.js +12 -0
- package/dist/grid-pro.api.json +127 -0
- package/dist/grid-pro.d.ts +64 -11
- package/docs/api/grid-pro.csvexportparams.md +13 -0
- package/docs/api/grid-pro.gridoptionsconfig.md +13 -0
- package/docs/api/grid-pro.gridpro.gridoptionsconfig.md +25 -0
- package/docs/api/grid-pro.gridpro.md +1 -0
- package/docs/api/grid-pro.md +3 -0
- package/docs/api-report.md +14 -1
- package/package.json +13 -13
package/docs/api-report.md
CHANGED
|
@@ -16,6 +16,7 @@ import type { Container } from '@microsoft/fast-foundation';
|
|
|
16
16
|
import { Controller } from '@microsoft/fast-element';
|
|
17
17
|
import { CSSDesignToken } from '@microsoft/fast-foundation';
|
|
18
18
|
import { CSSVarTokenMap } from '@genesislcap/foundation-ui';
|
|
19
|
+
import { CsvExportParams } from '@ag-grid-community/core';
|
|
19
20
|
import { Datasource } from '@genesislcap/foundation-comms';
|
|
20
21
|
import { DatasourceOptions } from '@genesislcap/foundation-comms';
|
|
21
22
|
import { DOMContainer } from '@genesislcap/foundation-utils';
|
|
@@ -26,12 +27,13 @@ import { FoundationElementRegistry } from '@microsoft/fast-foundation';
|
|
|
26
27
|
import { FoundationLayoutContainer } from '@genesislcap/foundation-utils';
|
|
27
28
|
import { Grid } from '@ag-grid-community/core';
|
|
28
29
|
import type { GridApi } from '@ag-grid-community/core';
|
|
29
|
-
import
|
|
30
|
+
import { GridOptions } from '@ag-grid-community/core';
|
|
30
31
|
import { ICellEditorComp } from '@ag-grid-community/core';
|
|
31
32
|
import { ICellEditorParams } from '@ag-grid-community/core';
|
|
32
33
|
import { ICellRendererComp } from '@ag-grid-community/core';
|
|
33
34
|
import { ICellRendererFunc } from '@ag-grid-community/core';
|
|
34
35
|
import { ICellRendererParams } from '@ag-grid-community/core';
|
|
36
|
+
import { InterfaceSymbol } from '@microsoft/fast-foundation';
|
|
35
37
|
import type { IServerSideDatasource } from '@ag-grid-community/core';
|
|
36
38
|
import type { IServerSideGetRowsParams } from '@ag-grid-community/core';
|
|
37
39
|
import { ITooltipComp } from '@ag-grid-community/core';
|
|
@@ -337,6 +339,9 @@ export const ColumnTemplate: ViewTemplate<GridProColumn, any>;
|
|
|
337
339
|
// @public
|
|
338
340
|
export const convertToKebabCase: (value: string) => string;
|
|
339
341
|
|
|
342
|
+
// @public
|
|
343
|
+
export const csvExportParams: CsvExportParams;
|
|
344
|
+
|
|
340
345
|
// @public
|
|
341
346
|
export class DateEditor extends FoundationElement implements ICellEditorComp {
|
|
342
347
|
// (undocumented)
|
|
@@ -751,6 +756,13 @@ export type GridComponents = {
|
|
|
751
756
|
[componentName: string]: any;
|
|
752
757
|
};
|
|
753
758
|
|
|
759
|
+
// @public
|
|
760
|
+
export interface GridOptionsConfig extends GridOptions {
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
// @public
|
|
764
|
+
export const GridOptionsConfig: InterfaceSymbol<GridOptionsConfig>;
|
|
765
|
+
|
|
754
766
|
// Warning: (ae-forgotten-export) The symbol "GridPro_base" needs to be exported by the entry point index.d.ts
|
|
755
767
|
//
|
|
756
768
|
// @public
|
|
@@ -807,6 +819,7 @@ export class GridPro extends GridPro_base {
|
|
|
807
819
|
// (undocumented)
|
|
808
820
|
get gridOptions(): GridOptions;
|
|
809
821
|
set gridOptions(options: GridOptions);
|
|
822
|
+
gridOptionsConfig: GridOptionsConfig;
|
|
810
823
|
// Warning: (ae-forgotten-export) The symbol "GridProBaseDatasource" needs to be exported by the entry point index.d.ts
|
|
811
824
|
//
|
|
812
825
|
// (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.
|
|
4
|
+
"version": "14.127.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -30,20 +30,20 @@
|
|
|
30
30
|
"test:debug": "genx test --debug"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@genesislcap/foundation-testing": "14.
|
|
34
|
-
"@genesislcap/genx": "14.
|
|
33
|
+
"@genesislcap/foundation-testing": "14.127.1",
|
|
34
|
+
"@genesislcap/genx": "14.127.1",
|
|
35
35
|
"rimraf": "^3.0.2"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@genesislcap/foundation-comms": "14.
|
|
39
|
-
"@genesislcap/foundation-logger": "14.
|
|
40
|
-
"@genesislcap/foundation-ui": "14.
|
|
41
|
-
"@genesislcap/foundation-utils": "14.
|
|
42
|
-
"@microsoft/fast-colors": "^5.1
|
|
43
|
-
"@microsoft/fast-components": "^2.
|
|
44
|
-
"@microsoft/fast-element": "^1.
|
|
45
|
-
"@microsoft/fast-foundation": "^2.
|
|
46
|
-
"@microsoft/fast-web-utilities": "^5.
|
|
38
|
+
"@genesislcap/foundation-comms": "14.127.1",
|
|
39
|
+
"@genesislcap/foundation-logger": "14.127.1",
|
|
40
|
+
"@genesislcap/foundation-ui": "14.127.1",
|
|
41
|
+
"@genesislcap/foundation-utils": "14.127.1",
|
|
42
|
+
"@microsoft/fast-colors": "^5.3.1",
|
|
43
|
+
"@microsoft/fast-components": "^2.30.6",
|
|
44
|
+
"@microsoft/fast-element": "^1.12.0",
|
|
45
|
+
"@microsoft/fast-foundation": "^2.49.4",
|
|
46
|
+
"@microsoft/fast-web-utilities": "^5.4.1",
|
|
47
47
|
"dayjs": "^1.11.7",
|
|
48
48
|
"rxjs": "^7.5.4",
|
|
49
49
|
"tslib": "^2.3.1"
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
64
|
"customElements": "dist/custom-elements.json",
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "02e9aea553b0bb4e7792d6b0a7dce6067a7eea7a"
|
|
66
66
|
}
|