@turquoisehealth/pit-viper 2.122.1-dev.1 → 2.122.1-dev.3
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.
- package/package.json +1 -1
- package/pv-components/dist/stats/vue/base/stats.html +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +4 -2
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +4 -3
- package/pv-components/dist/vue/base/pv-components-base.mjs +401 -390
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +658 -645
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +364 -353
- package/pv-components/dist/web/pv-components.iife.js +23 -23
package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts
CHANGED
|
@@ -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
|
+
}
|