@turquoisehealth/pit-viper 2.151.2-dev.0 → 2.152.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/_site/assets/css/pit-viper-a11y.css +3 -16
- package/_site/assets/css/pit-viper-consumer.css +53 -33
- package/_site/assets/css/pit-viper-v2-scoped.css +3 -16
- package/_site/assets/css/pit-viper-v2.css +3 -16
- package/_site/assets/css/pit-viper.css +3 -16
- package/_src/assets/sprite-v2.svg +1 -1
- package/_src/assets/sprite.svg +1 -1
- package/package.json +1 -1
- package/pv-components/dist/stats/vue/base/stats.html +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/stats/web/pv-company-label-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-company-logo-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-company-tag-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-date-picker-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-date-time-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-drawer-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-dropdown-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-popover-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-popover-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-search-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-skeleton-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tree-stats.html +1 -1
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +491 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +259 -0
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +121834 -0
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +259 -0
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +299 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +223 -0
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +47028 -0
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +223 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/constants.d.ts +0 -3
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/helpers.d.ts +0 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +3541 -3761
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/pv-components.iife.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/chartTypeRegistry.d.ts +0 -27
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { ColDef } from 'ag-grid-community';
|
|
2
|
-
export interface ChartTypeConfig {
|
|
3
|
-
id: string;
|
|
4
|
-
text: string;
|
|
5
|
-
icon: string;
|
|
6
|
-
xAxis: {
|
|
7
|
-
selectMode: "single" | "sortable";
|
|
8
|
-
filterColumns?: (columns: ColDef[]) => ColDef[];
|
|
9
|
-
hideLabel?: boolean;
|
|
10
|
-
};
|
|
11
|
-
yAxis: {
|
|
12
|
-
hidden?: boolean;
|
|
13
|
-
defaultValue?: string;
|
|
14
|
-
};
|
|
15
|
-
secondaryYAxis: {
|
|
16
|
-
hidden?: boolean;
|
|
17
|
-
};
|
|
18
|
-
sort: {
|
|
19
|
-
enabled?: boolean;
|
|
20
|
-
};
|
|
21
|
-
agChartType: string;
|
|
22
|
-
seriesFamily: "cartesian" | "pie";
|
|
23
|
-
isHorizontal?: boolean;
|
|
24
|
-
rowGroupLimit: number;
|
|
25
|
-
supportsFocusView: boolean;
|
|
26
|
-
}
|
|
27
|
-
export declare function getChartTypeConfig(id: string): ChartTypeConfig;
|