@turquoisehealth/pit-viper 2.171.1-dev.2 → 2.171.1-dev.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.
Files changed (42) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +0 -17
  2. package/_site/assets/css/pit-viper-consumer.css +0 -17
  3. package/_site/assets/css/pit-viper-v2-scoped.css +0 -16
  4. package/_site/assets/css/pit-viper-v2.css +0 -17
  5. package/_site/assets/css/pit-viper.css +0 -17
  6. package/package.json +1 -1
  7. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  8. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-switch-stats.html +1 -1
  15. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  16. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  17. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItem.vue.d.ts +2 -9
  18. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
  19. package/pv-components/dist/vue/base/components/base/PvSwitch/PvSwitch.vue.d.ts +0 -2
  20. package/pv-components/dist/vue/base/components/base/PvSwitch/types.d.ts +1 -1
  21. package/pv-components/dist/vue/base/pv-components-base.mjs +1441 -1472
  22. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  23. package/pv-components/dist/vue/base/types.d.ts +1 -3
  24. package/pv-components/dist/vue/visualizations/components/base/PvMenu/items/PvMenuItem.vue.d.ts +2 -9
  25. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
  26. package/pv-components/dist/vue/visualizations/components/base/PvSwitch/PvSwitch.vue.d.ts +0 -2
  27. package/pv-components/dist/vue/visualizations/components/base/PvSwitch/types.d.ts +1 -1
  28. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/helpers.d.ts +6 -0
  29. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +1 -0
  30. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2102 -2170
  31. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  32. package/pv-components/dist/vue/visualizations/types.d.ts +1 -3
  33. package/pv-components/dist/web/components/pv-menu/pv-menu.js +896 -966
  34. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1010 -1080
  35. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +915 -985
  36. package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +24 -23
  37. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +1491 -1561
  38. package/pv-components/dist/web/components/pv-switch/pv-switch.js +106 -114
  39. package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +22 -21
  40. package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +21 -21
  41. package/pv-components/dist/web/pv-components.iife.js +47 -47
  42. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -55,8 +55,6 @@ export declare enum MenuItemType {
55
55
  company = "company",
56
56
  avatar = "avatar",
57
57
  icon = "icon",
58
- radio = "radio",
59
- checkmark = "checkmark",
60
- toggle = "toggle"
58
+ radio = "radio"
61
59
  }
62
60
  export type MenuOptionsVariant = `${MenuItemType}`;
@@ -6,17 +6,10 @@ interface PvMenuItemProps extends MenuOption {
6
6
  queryText?: string | null;
7
7
  highlightSearchText?: boolean;
8
8
  }
9
- type __VLS_Props = PvMenuItemProps;
10
- type __VLS_PublicProps = {
11
- "selectedItems"?: MenuOption[];
12
- } & __VLS_Props;
13
- declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
14
- "update:selectedItems": (value: MenuOption<unknown>[]) => any;
15
- } & {
9
+ declare const _default: DefineComponent<PvMenuItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
16
10
  "handle-selected": (payload: MenuOptionSelectedEvent) => any;
17
- }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
11
+ }, string, PublicProps, Readonly<PvMenuItemProps> & Readonly<{
18
12
  "onHandle-selected"?: ((payload: MenuOptionSelectedEvent) => any) | undefined;
19
- "onUpdate:selectedItems"?: ((value: MenuOption<unknown>[]) => any) | undefined;
20
13
  }>, {
21
14
  level: number;
22
15
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
@@ -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" | "toggle" | "simple" | "company" | "avatar" | "checkmark";
46
+ optionsVariant: "icon" | "checkbox" | "simple" | "company" | "avatar";
47
47
  options: MenuOption<T>[];
48
48
  menuActionsVariant: MenuActionsVariant | null;
49
49
  highlightSearchText: boolean;
@@ -76,7 +76,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
76
76
  disableDropdownIcon: boolean;
77
77
  disableClearIcon: boolean;
78
78
  disableSearchInput: boolean;
79
- optionsVariant: "icon" | "checkbox" | "toggle" | "simple" | "company" | "avatar" | "checkmark";
79
+ optionsVariant: "icon" | "checkbox" | "simple" | "company" | "avatar";
80
80
  options: MenuOption<T>[];
81
81
  menuActionsVariant: MenuActionsVariant | null;
82
82
  highlightSearchText: boolean;
@@ -109,7 +109,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
109
109
  disableDropdownIcon: boolean;
110
110
  disableClearIcon: boolean;
111
111
  disableSearchInput: boolean;
112
- optionsVariant: "icon" | "checkbox" | "toggle" | "simple" | "company" | "avatar" | "checkmark";
112
+ optionsVariant: "icon" | "checkbox" | "simple" | "company" | "avatar";
113
113
  options: MenuOption<T>[];
114
114
  menuActionsVariant: MenuActionsVariant | null;
115
115
  highlightSearchText: boolean;
@@ -5,7 +5,6 @@ interface PvSwitchProps {
5
5
  label?: string;
6
6
  disabled?: boolean;
7
7
  id?: string;
8
- hideCheckIcon?: boolean;
9
8
  }
10
9
  type __VLS_Props = PvSwitchProps;
11
10
  type __VLS_PublicProps = {
@@ -19,6 +18,5 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
19
18
  size: PvSwitchSize;
20
19
  id: string;
21
20
  disabled: boolean;
22
- hideCheckIcon: boolean;
23
21
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
24
22
  export default _default;
@@ -1,2 +1,2 @@
1
1
  import { PvSize } from '../baseProps';
2
- export type PvSwitchSize = Extract<PvSize, "sm" | "md" | "lg">;
2
+ export type PvSwitchSize = Extract<PvSize, "md" | "lg">;
@@ -1,5 +1,11 @@
1
1
  import { AgChartOptions } from 'ag-charts-enterprise';
2
2
  import { OptionWithFormatterAndDataType } from './types';
3
+ export declare const computeNoDataOverlayText: ({ currentRowGroupColumnsLength, shouldShowFocusOverlayText, chartDataEmpty, missingFocusText, }: {
4
+ currentRowGroupColumnsLength: number;
5
+ shouldShowFocusOverlayText: boolean;
6
+ chartDataEmpty: boolean;
7
+ missingFocusText: string | undefined;
8
+ }) => string;
3
9
  export declare const generateStackSeriesKey: (seriesField: string, stackField: string) => string;
4
10
  export declare const generateStackSecondaryCategoryKey: (stackField: string) => string;
5
11
  export declare const buildStackedChartData: (data: AgChartOptions["data"], categoryField: string, stackField: string, seriesColumns: OptionWithFormatterAndDataType[], supplementaryChartingColumns?: OptionWithFormatterAndDataType[]) => {
@@ -63,6 +63,7 @@ export interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
63
63
  focusableColumns?: string[];
64
64
  focusText?: string;
65
65
  focusRequired?: boolean;
66
+ missingFocusText?: string;
66
67
  /**
67
68
  * Enable toggle to group or ungroup
68
69
  */