@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.
@@ -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 type { GridOptions } from '@ag-grid-community/core';
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.126.0",
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.126.0",
34
- "@genesislcap/genx": "14.126.0",
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.126.0",
39
- "@genesislcap/foundation-logger": "14.126.0",
40
- "@genesislcap/foundation-ui": "14.126.0",
41
- "@genesislcap/foundation-utils": "14.126.0",
42
- "@microsoft/fast-colors": "^5.1.4",
43
- "@microsoft/fast-components": "^2.21.3",
44
- "@microsoft/fast-element": "^1.7.0",
45
- "@microsoft/fast-foundation": "^2.33.2",
46
- "@microsoft/fast-web-utilities": "^5.0.2",
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": "726c78d9ec85c2d1b308d070eb090db8b68e421d"
65
+ "gitHead": "02e9aea553b0bb4e7792d6b0a7dce6067a7eea7a"
66
66
  }