@turquoisehealth/pit-viper 2.171.1-dev.0 → 2.171.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.
- package/_site/assets/css/pit-viper-a11y.css +17 -0
- package/_site/assets/css/pit-viper-consumer.css +17 -0
- package/_site/assets/css/pit-viper-v2-scoped.css +16 -0
- package/_site/assets/css/pit-viper-v2.css +17 -0
- package/_site/assets/css/pit-viper.css +17 -0
- 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-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-switch-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItem.vue.d.ts +9 -2
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
- package/pv-components/dist/vue/base/components/base/PvSwitch/PvSwitch.vue.d.ts +2 -0
- package/pv-components/dist/vue/base/components/base/PvSwitch/types.d.ts +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +1472 -1441
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/base/types.d.ts +3 -1
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/items/PvMenuItem.vue.d.ts +9 -2
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
- package/pv-components/dist/vue/visualizations/components/base/PvSwitch/PvSwitch.vue.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/base/PvSwitch/types.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/table-components/ColDefCellRenderer.vue.d.ts +24 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +4107 -3982
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/types.d.ts +3 -1
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +966 -896
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1080 -1010
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +985 -915
- package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +23 -24
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +1561 -1491
- package/pv-components/dist/web/components/pv-switch/pv-switch.js +114 -106
- package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +21 -22
- package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +21 -21
- package/pv-components/dist/web/pv-components.iife.js +47 -47
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -6,10 +6,17 @@ interface PvMenuItemProps extends MenuOption {
|
|
|
6
6
|
queryText?: string | null;
|
|
7
7
|
highlightSearchText?: boolean;
|
|
8
8
|
}
|
|
9
|
-
|
|
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
|
+
} & {
|
|
10
16
|
"handle-selected": (payload: MenuOptionSelectedEvent) => any;
|
|
11
|
-
}, string, PublicProps, Readonly<
|
|
17
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
12
18
|
"onHandle-selected"?: ((payload: MenuOptionSelectedEvent) => any) | undefined;
|
|
19
|
+
"onUpdate:selectedItems"?: ((value: MenuOption<unknown>[]) => any) | undefined;
|
|
13
20
|
}>, {
|
|
14
21
|
level: number;
|
|
15
22
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts
CHANGED
|
@@ -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" | "simple" | "company" | "avatar";
|
|
46
|
+
optionsVariant: "toggle" | "icon" | "checkbox" | "simple" | "company" | "avatar" | "checkmark";
|
|
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" | "simple" | "company" | "avatar";
|
|
79
|
+
optionsVariant: "toggle" | "icon" | "checkbox" | "simple" | "company" | "avatar" | "checkmark";
|
|
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" | "simple" | "company" | "avatar";
|
|
112
|
+
optionsVariant: "toggle" | "icon" | "checkbox" | "simple" | "company" | "avatar" | "checkmark";
|
|
113
113
|
options: MenuOption<T>[];
|
|
114
114
|
menuActionsVariant: MenuActionsVariant | null;
|
|
115
115
|
highlightSearchText: boolean;
|
|
@@ -5,6 +5,7 @@ interface PvSwitchProps {
|
|
|
5
5
|
label?: string;
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
id?: string;
|
|
8
|
+
hideCheckIcon?: boolean;
|
|
8
9
|
}
|
|
9
10
|
type __VLS_Props = PvSwitchProps;
|
|
10
11
|
type __VLS_PublicProps = {
|
|
@@ -18,5 +19,6 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
18
19
|
size: PvSwitchSize;
|
|
19
20
|
disabled: boolean;
|
|
20
21
|
id: string;
|
|
22
|
+
hideCheckIcon: boolean;
|
|
21
23
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
22
24
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { PvSize } from '../baseProps';
|
|
2
|
-
export type PvSwitchSize = Extract<PvSize, "md" | "lg">;
|
|
2
|
+
export type PvSwitchSize = Extract<PvSize, "sm" | "md" | "lg">;
|