@turquoisehealth/pit-viper 2.147.1-dev.0 → 2.148.1-dev.1
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 +5 -1
- package/_site/assets/css/pit-viper-consumer.css +5990 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +16 -12
- package/_site/assets/css/pit-viper-v2.css +5 -1
- package/_site/assets/css/pit-viper.css +4 -0
- package/package.json +2 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/constants.d.ts +2 -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 +3507 -3730
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/chartTypeRegistry.d.ts +0 -27
|
@@ -43,7 +43,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
43
43
|
disableDropdownIcon: boolean;
|
|
44
44
|
disableClearIcon: boolean;
|
|
45
45
|
disableSearchInput: boolean;
|
|
46
|
-
optionsVariant: "
|
|
46
|
+
optionsVariant: "simple" | "checkbox" | "company" | "avatar" | "icon";
|
|
47
47
|
options: MenuOption<T>[];
|
|
48
48
|
menuActionsVariant: MenuActionsVariant | null;
|
|
49
49
|
highlightSearchText: boolean;
|
|
@@ -75,7 +75,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
75
75
|
disableDropdownIcon: boolean;
|
|
76
76
|
disableClearIcon: boolean;
|
|
77
77
|
disableSearchInput: boolean;
|
|
78
|
-
optionsVariant: "
|
|
78
|
+
optionsVariant: "simple" | "checkbox" | "company" | "avatar" | "icon";
|
|
79
79
|
options: MenuOption<T>[];
|
|
80
80
|
menuActionsVariant: MenuActionsVariant | null;
|
|
81
81
|
highlightSearchText: boolean;
|
|
@@ -107,7 +107,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
107
107
|
disableDropdownIcon: boolean;
|
|
108
108
|
disableClearIcon: boolean;
|
|
109
109
|
disableSearchInput: boolean;
|
|
110
|
-
optionsVariant: "
|
|
110
|
+
optionsVariant: "simple" | "checkbox" | "company" | "avatar" | "icon";
|
|
111
111
|
options: MenuOption<T>[];
|
|
112
112
|
menuActionsVariant: MenuActionsVariant | null;
|
|
113
113
|
highlightSearchText: boolean;
|
package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/constants.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { MenuOption } from '../../../types';
|
|
2
|
-
export declare const BUCKET_AGG_FUNC_NAME = "bucketCount";
|
|
3
|
-
export declare const BUCKET_AGG_COUNT_VALUE_NAME = "groupedRecordCount";
|
|
4
2
|
export declare const singleGroupChartTypeConfigs: MenuOption[];
|
|
5
3
|
export declare const multiGroupChartTypeConfigs: MenuOption[];
|
|
6
|
-
export declare const histogramChartTypeConfig: MenuOption;
|
|
7
4
|
export declare const separatorValue = "--SEPARATOR--";
|
|
8
5
|
export declare const sortTotalSuffix = "_sort_total";
|
|
6
|
+
export declare const MAX_LABEL_LENGTH = 35;
|
|
7
|
+
export declare const truncationSuffix = "...";
|
package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { AdvancedFilterModel, ColumnVO, FilterModel, ValueFormatterFunc } from '
|
|
|
4
4
|
import { Option } from '../../../types';
|
|
5
5
|
import { ChartTooltipRenderer, PvDataTableProps } from '../../tables/PvDataTable/types';
|
|
6
6
|
import { FocusData } from '../../tables/PvDataTable/useFocus';
|
|
7
|
-
export type supportedChartType = "column" | "bar" | "column_stacked" | "bar_stacked" | "line" | "area" | "pie"
|
|
7
|
+
export type supportedChartType = "column" | "bar" | "column_stacked" | "bar_stacked" | "line" | "area" | "pie";
|
|
8
8
|
export type secondarySupportedChartType = "scatter" | "line";
|
|
9
9
|
export type ChartConfigPanelType = "y-axis" | "secondary-y-axis" | "x-axis" | "sort" | "chart-type";
|
|
10
10
|
export type ChartFilterOption = {
|
|
@@ -8,5 +8,4 @@ export declare const colDefMaxSelectableValues: <T>(colDef: ColDef<T>) => number
|
|
|
8
8
|
export declare const isColDefSingleSelect: <T>(colDef: ColDef<T>) => boolean;
|
|
9
9
|
export declare const isColDefNumericDataType: <T>(colDef: ColDef<T>) => boolean;
|
|
10
10
|
export declare const isAggregateColDef: <T>(colDef: ColDef<T>) => boolean;
|
|
11
|
-
export declare const processRowGroupCols: (rowGroupCols: ColumnVO[], colDefs: (ColDef | null | undefined)[] | undefined) => ColumnVO[];
|
|
12
11
|
export declare const mapColsToColumnV0: (columns: Column[]) => ColumnVO[];
|