@turquoisehealth/pit-viper 2.203.1-dev.1 → 2.203.1-dev.2

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 (25) 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/symbols.d.ts +0 -2
  9. package/pv-components/dist/vue/base/components/base/PvMenu/types.d.ts +0 -4
  10. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +0 -3
  11. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +0 -4
  12. package/pv-components/dist/vue/base/pv-components-base.mjs +663 -668
  13. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  14. package/pv-components/dist/vue/visualizations/components/base/PvMenu/symbols.d.ts +0 -2
  15. package/pv-components/dist/vue/visualizations/components/base/PvMenu/types.d.ts +0 -4
  16. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +0 -3
  17. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +0 -4
  18. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1287 -1276
  19. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  20. package/pv-components/dist/web/components/pv-menu/pv-menu.js +1006 -1003
  21. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +493 -498
  22. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +556 -552
  23. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +1125 -1122
  24. package/pv-components/dist/web/pv-components.iife.js +13 -13
  25. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -7,5 +7,3 @@ export declare const CascadeSelectedParentIdsKey: InjectionKey<Ref<Set<string>>>
7
7
  export declare const CascadeDeselectedChildIdsKey: InjectionKey<Ref<Map<string, Set<string>>>>;
8
8
  export declare const ParentSelectsAllChildrenKey: InjectionKey<ComputedRef<boolean>>;
9
9
  export declare const EnableChildExpansionKey: InjectionKey<ComputedRef<boolean>>;
10
- export declare const ReadOnlyKey: InjectionKey<ComputedRef<boolean>>;
11
- export declare const HideUnselectedInReadOnlyKey: InjectionKey<ComputedRef<boolean>>;
@@ -21,8 +21,4 @@ export interface PvMenuProps {
21
21
  hasMoreOptions?: boolean;
22
22
  /** When true, item clicks are ignored — the list is display-only. */
23
23
  readOnly?: boolean;
24
- /** When true (and readOnly), unselected options are hidden entirely so only the
25
- * selected/active options are shown. When false (default, and readOnly), unselected
26
- * options are shown but rendered disabled (greyed but readable). */
27
- hideUnselectedInReadOnly?: boolean;
28
24
  }
@@ -55,7 +55,6 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
55
55
  disableClearIcon: boolean;
56
56
  disableSearchInput: boolean;
57
57
  readOnly: boolean;
58
- hideUnselectedInReadOnly: boolean;
59
58
  optionsVariant: "icon" | "toggle" | "checkbox" | "simple" | "company" | "avatar" | "checkmark";
60
59
  options: MenuOption<T>[];
61
60
  menuActionsVariant: MenuActionsVariant | null;
@@ -99,7 +98,6 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
99
98
  disableClearIcon: boolean;
100
99
  disableSearchInput: boolean;
101
100
  readOnly: boolean;
102
- hideUnselectedInReadOnly: boolean;
103
101
  optionsVariant: "icon" | "toggle" | "checkbox" | "simple" | "company" | "avatar" | "checkmark";
104
102
  options: MenuOption<T>[];
105
103
  menuActionsVariant: MenuActionsVariant | null;
@@ -143,7 +141,6 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
143
141
  disableClearIcon: boolean;
144
142
  disableSearchInput: boolean;
145
143
  readOnly: boolean;
146
- hideUnselectedInReadOnly: boolean;
147
144
  optionsVariant: "icon" | "toggle" | "checkbox" | "simple" | "company" | "avatar" | "checkmark";
148
145
  options: MenuOption<T>[];
149
146
  menuActionsVariant: MenuActionsVariant | null;
@@ -28,10 +28,6 @@ export interface PvMultiSelectButtonProps<T = unknown, SlotContext extends Recor
28
28
  disabled?: boolean;
29
29
  /** Allow the dropdown to open for viewing but prevent adding or removing selections */
30
30
  readOnly?: boolean;
31
- /** When true (and readOnly), unselected options are hidden so only the selected/active
32
- * options are shown. When false (default, and readOnly), unselected options are shown
33
- * but rendered disabled (greyed but readable). */
34
- hideUnselectedInReadOnly?: boolean;
35
31
  /** Enable cascade (parent/child) selection. When true, clicking a parent option
36
32
  * toggles all its leaf descendants, and parent checkboxes show indeterminate state
37
33
  * when partially selected. All existing behavior is unchanged when false (default). */