@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 +1 -1
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +5 -5
- package/pv-components/dist/vue/charts/pv-components-charts.js +47 -47
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +15979 -15972
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +3 -13
- package/pv-components/dist/vue/tables/pv-components-tables.js +46 -46
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +15612 -15597
- package/pv-components/dist/web/pv-components.iife.js +51 -51
package/package.json
CHANGED
|
@@ -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-
|
|
190
|
-
|
|
191
|
-
|
|
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;
|