@turquoisehealth/pit-viper 2.14.2 → 2.14.3
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 +3 -5
- package/pv-components/dist/vue/charts/pv-components-charts.js +45 -45
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +15735 -15733
- package/pv-components/dist/vue/tables/pv-components-tables.js +44 -44
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +15307 -15296
- package/pv-components/dist/web/pv-components.iife.js +50 -50
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';
|
|
@@ -186,10 +185,9 @@ export declare const PvDataTableWithChart: <T>(__VLS_props: NonNullable<Awaited<
|
|
|
186
185
|
attrs: any;
|
|
187
186
|
slots: {};
|
|
188
187
|
emit: {
|
|
189
|
-
(e: "chart-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
chartSeries: AgCartesianSeriesOptions[];
|
|
188
|
+
(e: "chart-series-changed", event: {
|
|
189
|
+
api: GridApi | null;
|
|
190
|
+
seriesField: string | null;
|
|
193
191
|
}): void;
|
|
194
192
|
(e: "column-moved", event: ColumnMovedEvent<T>): void;
|
|
195
193
|
(e: "column-resized", event: ColumnResizedEvent<T>): void;
|