@turquoisehealth/pit-viper 2.14.2 → 2.14.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.14.2",
3
+ "version": "2.14.4",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {
@@ -1,4 +1,3 @@
1
- import { AgCartesianSeriesOptions } from 'ag-charts-enterprise';
2
1
  import { AgChartOptions } from 'ag-charts-types';
3
2
  import { AgSeriesVisibilityChange } from 'ag-charts-enterprise';
4
3
  import { ColDef } from 'ag-grid-community';
@@ -19,6 +18,7 @@ import { IServerSideGetRowsParams } from 'ag-grid-enterprise';
19
18
  import { PublicProps } from 'vue';
20
19
  import { RefreshServerSideParams } from 'ag-grid-community';
21
20
  import { ShallowUnwrapRef } from 'vue';
21
+ import { SortChangedEvent } from 'ag-grid-community';
22
22
  import { Theme } from 'ag-grid-enterprise';
23
23
  import { VNode } from 'vue';
24
24
 
@@ -186,16 +186,16 @@ export declare const PvDataTableWithChart: <T>(__VLS_props: NonNullable<Awaited<
186
186
  attrs: any;
187
187
  slots: {};
188
188
  emit: {
189
- (e: "chart-data-updated", body: {
190
- state: GridState | null;
191
- visualData: AgChartOptions["data"] | null;
192
- chartSeries: AgCartesianSeriesOptions[];
189
+ (e: "chart-series-changed", event: {
190
+ api: GridApi | null;
191
+ seriesField: string | null;
193
192
  }): void;
194
193
  (e: "column-moved", event: ColumnMovedEvent<T>): void;
195
194
  (e: "column-resized", event: ColumnResizedEvent<T>): void;
196
195
  (e: "column-row-group-changed", event: ColumnRowGroupChangedEvent<T>): void;
197
196
  (e: "grid-ready", event: GridReadyEvent<T>): void;
198
197
  (e: "filter-changed", event: FilterChangedEvent<T>): void;
198
+ (e: "sort-changed", event: SortChangedEvent<T>): void;
199
199
  (e: "filter-opened", event: FilterChangedEvent<T>): void;
200
200
  (e: "first-data-rendered", event: FirstDataRenderedEvent<T>): void;
201
201
  (e: "handle-settings-icon", value: string): void;