@deephaven/js-plugin-ag-grid 0.2.1-ag-grid-no-components.930 → 0.4.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/README.md CHANGED
@@ -27,7 +27,7 @@ function DeephavenAgGridComponent({
27
27
  }
28
28
  ```
29
29
 
30
- ### Advanced Usage
30
+ ## Advanced Usage
31
31
 
32
32
  You can import the datasource directly if you want to manipulate the `AgGridReact` component directly. Import the DeephavenViewportDatasource and use it with your AG Grid view:
33
33
 
@@ -71,3 +71,5 @@ The [`DeephavenViewportDatasource` listens to the grid's events](./src/datasourc
71
71
  - [AgGridFilterUtils](./src/utils/AgGridFilterUtils.ts): Utility functions for mapping AG Grid filter models to Deephaven table operations.
72
72
  - [AgGridSortUtils](./src/utils/AgGridSortUtils.ts): Utility functions for mapping AG Grid sort models to Deephaven table operations.
73
73
  - [AgGridAggUtils](./src/utils/AgGridAggUtils.ts): Utility functions for mapping AG Grid aggregation and grouping models to Deephaven table operations.
74
+ - [AgGridPivotUtils](./src/utils/AgGridPivotUtils.ts): Utility functions for handling pivot tables in AG Grid with Deephaven.
75
+ - [AgGridFormatter](./src/utils/AgGridFormatter.ts): AG Grid formatter that takes Deephaven workspace settings to format columns.
@@ -76787,7 +76787,11 @@ exports.AgGridFilterUtils = AgGridFilterUtils;
76787
76787
  exports.AgGridFormatter = AgGridFormatter;
76788
76788
  exports.AgGridSortUtils = AgGridSortUtils;
76789
76789
  exports.AgGridThemeColors = AgGridThemeColors;
76790
+ exports.AgGridView = AgGridView;
76791
+ exports.AgGridWidget = AgGridWidget;
76790
76792
  exports.DeephavenViewportDatasource = DeephavenViewportDatasource;
76793
+ exports.LoadingOverlay = LoadingOverlay;
76794
+ exports.LoadingSpinner = LoadingSpinner;
76791
76795
  exports.TREE_NODE_KEY = TREE_NODE_KEY;
76792
76796
  exports.TreeCellRenderer = TreeCellRenderer;
76793
76797
  exports.convertColumnToColDef = convertColumnToColDef;
@@ -4,7 +4,7 @@ type LoadingOverlayProps = {
4
4
  'data-testid'?: string;
5
5
  };
6
6
  /**
7
- * A loading overlay that handles displaying a loading spinner or an error message
7
+ * A loading overlay that handles displaying a loading spinner
8
8
  */
9
9
  declare function LoadingOverlay({ className, 'data-testid': dataTestId, }: LoadingOverlayProps): JSX.Element;
10
10
  export default LoadingOverlay;
@@ -2,7 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import classNames from 'classnames';
3
3
  import LoadingSpinner from './LoadingSpinner';
4
4
  /**
5
- * A loading overlay that handles displaying a loading spinner or an error message
5
+ * A loading overlay that handles displaying a loading spinner
6
6
  */
7
7
  function LoadingOverlay({ className = undefined, 'data-testid': dataTestId, }) {
8
8
  const spinnerTestId = dataTestId != null ? `${dataTestId}-spinner` : undefined;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { AgGridPlugin } from './AgGridPlugin.js';
2
+ export * from './components';
2
3
  export * from './datasources';
3
4
  export * from './renderers';
4
5
  export * from './utils';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AAExB,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AAExB,eAAe,YAAY,CAAC"}
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import { AgGridPlugin } from './AgGridPlugin.js';
2
+ export * from './components';
2
3
  export * from './datasources';
3
4
  export * from './renderers';
4
5
  export * from './utils';
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AAExB,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AAExB,eAAe,YAAY,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven/js-plugin-ag-grid",
3
- "version": "0.2.1-ag-grid-no-components.930+0ba58bc",
3
+ "version": "0.4.0",
4
4
  "description": "Deephaven AG Grid plugin",
5
5
  "keywords": [
6
6
  "Deephaven",
@@ -76,5 +76,5 @@
76
76
  "files": [
77
77
  "dist"
78
78
  ],
79
- "gitHead": "0ba58bc76b3e77e2d7ef37d38d7e150d3daf8121"
79
+ "gitHead": "1563771edfa0d6c3fda50d91f6227969c7b157f4"
80
80
  }