@turquoisehealth/pit-viper 2.122.1-dev.1 → 2.122.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.
@@ -13,8 +13,9 @@ declare function __VLS_template(): {
13
13
  attrs: Partial<{}>;
14
14
  slots: Partial<Record<string, (_: {}) => any>> & {
15
15
  header?(_: {
16
+ selectedItems: MenuOption[];
17
+ searchInput: string;
16
18
  modelValue?: MenuOption[];
17
- searchInput?: string;
18
19
  groupings?: string[];
19
20
  defaultOpen?: boolean;
20
21
  disabled?: boolean;
@@ -97,8 +98,9 @@ declare function __VLS_template(): {
97
98
  style?: unknown;
98
99
  }): any;
99
100
  footer?(_: {
101
+ selectedItems: MenuOption[];
102
+ searchInput: string;
100
103
  modelValue?: MenuOption[];
101
- searchInput?: string;
102
104
  groupings?: string[];
103
105
  defaultOpen?: boolean;
104
106
  disabled?: boolean;
@@ -4,9 +4,6 @@ import { CSSProperties } from 'vue';
4
4
  import { MenuOption, MenuOptionsVariant } from '../../../types.ts';
5
5
  export type PvSelectButtonVariant = Extract<PvVariants, "secondary" | "ghost">;
6
6
  export type PvSelectButtonSize = Extract<PvSize, "lg" | "xl">;
7
- export interface PvMultiSelectButtonSlotProps {
8
- searchInput: string;
9
- }
10
7
  export type MenuActionsVariant = "select-clear" | "cancel-confirm";
11
8
  export interface PvMultiSelectButtonProps {
12
9
  groupings?: string[];
@@ -32,3 +29,7 @@ export interface PvMultiSelectButtonProps {
32
29
  options?: MenuOption[];
33
30
  menuActionsVariant?: MenuActionsVariant | null;
34
31
  }
32
+ export interface PvMultiSelectButtonSlotProps extends PvMultiSelectButtonProps {
33
+ searchInput: string;
34
+ selectedItems: MenuOption[];
35
+ }