@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.
@@ -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: "icon" | "checkbox" | "simple" | "company" | "avatar";
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: "icon" | "checkbox" | "simple" | "company" | "avatar";
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: "icon" | "checkbox" | "simple" | "company" | "avatar";
110
+ optionsVariant: "simple" | "checkbox" | "company" | "avatar" | "icon";
111
111
  options: MenuOption<T>[];
112
112
  menuActionsVariant: MenuActionsVariant | null;
113
113
  highlightSearchText: boolean;
@@ -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 = "...";
@@ -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" | "histogram";
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[];