@turquoisehealth/pit-viper 2.182.1-dev.4 → 2.183.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.
Files changed (29) hide show
  1. package/package.json +1 -1
  2. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  3. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  4. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  5. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  6. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  7. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  8. package/pv-components/dist/vue/base/components/base/PvMenu/cascadeUtils.d.ts +1 -2
  9. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +0 -3
  10. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +1 -3
  11. package/pv-components/dist/vue/base/pv-components-base.mjs +871 -924
  12. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  13. package/pv-components/dist/vue/base/types.d.ts +4 -6
  14. package/pv-components/dist/vue/visualizations/components/base/PvMenu/cascadeUtils.d.ts +1 -2
  15. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +0 -3
  16. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +1 -3
  17. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/helpers.d.ts +1 -5
  18. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/types.d.ts +17 -24
  19. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useFilterStore.d.ts +0 -4
  20. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +8 -10
  21. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1355 -1656
  22. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  23. package/pv-components/dist/vue/visualizations/types.d.ts +4 -6
  24. package/pv-components/dist/web/components/pv-menu/pv-menu.js +35 -44
  25. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +963 -1016
  26. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +59 -68
  27. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +35 -44
  28. package/pv-components/dist/web/pv-components.iife.js +20 -20
  29. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -1,4 +1,4 @@
1
- import { MenuOption, MultiSelectState } from '../../../types';
1
+ import { MenuOption } from '../../../types';
2
2
  /** Recursively collect all leaf (childless) options from a tree. */
3
3
  export declare function collectLeafOptions<T>(options: MenuOption<T>[]): MenuOption<T>[];
4
4
  /**
@@ -21,7 +21,6 @@ export declare function mergeLeafOptions<T>(base: MenuOption<T>[], overlay: Menu
21
21
  * not depend on Map iteration order.
22
22
  */
23
23
  export declare function countWithCollapsedParents<T>(options: MenuOption<T>[], selectedIds: Set<string>): number;
24
- export declare function countFromSelectionState(state: MultiSelectState): number;
25
24
  /**
26
25
  * Recursively filter a tree for a search value.
27
26
  *
@@ -34,7 +34,6 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
34
34
  groupings: string[];
35
35
  hideParentOnChildQueryMatch: boolean;
36
36
  icon: string;
37
- hasMoreOptions: boolean;
38
37
  optionsAction: MenuAction<T> | undefined;
39
38
  optionsRenderer: Component;
40
39
  overlayTrigger: boolean;
@@ -73,7 +72,6 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
73
72
  groupings: string[];
74
73
  hideParentOnChildQueryMatch: boolean;
75
74
  icon: string;
76
- hasMoreOptions: boolean;
77
75
  optionsAction: MenuAction<T> | undefined;
78
76
  optionsRenderer: Component;
79
77
  overlayTrigger: boolean;
@@ -112,7 +110,6 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
112
110
  groupings: string[];
113
111
  hideParentOnChildQueryMatch: boolean;
114
112
  icon: string;
115
- hasMoreOptions: boolean;
116
113
  optionsAction: MenuAction<T> | undefined;
117
114
  optionsRenderer: Component;
118
115
  overlayTrigger: boolean;
@@ -47,8 +47,6 @@ export interface PvMultiSelectButtonProps<T = unknown, SlotContext extends Recor
47
47
  icon?: string;
48
48
  /** Show a loading spinner inside the dropdown */
49
49
  isLoading?: boolean;
50
- /** Whether more top-level options are available after the loaded options */
51
- hasMoreOptions?: boolean;
52
50
  /** Text label on the trigger button */
53
51
  label?: string;
54
52
  /** Style of the footer action panel. "select-clear" shows select/clear all; "cancel-confirm" requires explicit confirmation. */
@@ -84,7 +82,7 @@ export interface PvMultiSelectButtonProps<T = unknown, SlotContext extends Recor
84
82
  /** CSS selector for teleporting the popover dropdown */
85
83
  teleportLocation?: string;
86
84
  /** Total available top-level options (may exceed options.length when paginating).
87
- * Used as a fallback to show "See more" when hasMoreOptions is not provided. */
85
+ * When totalOptionCount > options.length, a "See more" button appears. */
88
86
  totalOptionCount?: number;
89
87
  /** Visual style of the trigger button */
90
88
  variant?: PvSelectButtonVariant;