@turquoisehealth/pit-viper 2.197.1 → 2.197.3-dev.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.
- package/_site/assets/css/pit-viper-a11y.css +15 -1
- package/_site/assets/css/pit-viper-consumer.css +15 -1
- package/_site/assets/css/pit-viper-v2-scoped.css +14 -1
- package/_site/assets/css/pit-viper-v2.css +15 -1
- package/_site/assets/css/pit-viper.css +15 -1
- 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-action-button-stats.html +4950 -0
- package/pv-components/dist/stats/web/pv-ai-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-header-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-select-button-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvActionButton/PvActionButton.vue.d.ts +22 -0
- package/pv-components/dist/vue/base/components/base/PvAiButton/PvAiButton.vue.d.ts +3 -0
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -3
- package/pv-components/dist/vue/base/components/base/PvPopoverV2/PvPopoverV2.vue.d.ts +1 -1
- package/pv-components/dist/vue/base/components/base/PvSidebar/PvSidebar.vue.d.ts +1 -1
- package/pv-components/dist/vue/base/components/base/PvTooltip/PvTooltip.vue.d.ts +1 -1
- package/pv-components/dist/vue/base/components/base/PvTooltipV2/PvTooltipV2.vue.d.ts +1 -1
- package/pv-components/dist/vue/base/components/base/index.d.ts +1 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +1249 -1203
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvActionButton/PvActionButton.vue.d.ts +22 -0
- package/pv-components/dist/vue/visualizations/components/base/PvAiButton/PvAiButton.vue.d.ts +3 -0
- package/pv-components/dist/vue/visualizations/components/base/PvPopoverV2/PvPopoverV2.vue.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvSidebar/PvSidebar.vue.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvTooltip/PvTooltip.vue.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvTooltipV2/PvTooltipV2.vue.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/base/index.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/PvDataTableWithChart.vue.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/constants.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/helpers.d.ts +14 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/types.d.ts +9 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1329 -1239
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +7599 -0
- package/pv-components/dist/web/components/pv-ai-button/pv-ai-button.js +398 -393
- package/pv-components/dist/web/components/pv-header/pv-header.js +18 -12
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +879 -833
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +866 -820
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +622 -576
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +594 -548
- package/pv-components/dist/web/pv-components.iife.js +36 -36
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { PvAlignmentPositions, PvSize } from '../baseProps';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
icon: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
size?: Extract<PvSize, "xs" | "sm" | "md" | "lg">;
|
|
7
|
+
tooltipText: string;
|
|
8
|
+
tooltipPosition?: PvAlignmentPositions;
|
|
9
|
+
/** When false, the button is hidden until a `.pv-label` ancestor is hovered (used by menu actions). */
|
|
10
|
+
alwaysShow?: boolean;
|
|
11
|
+
};
|
|
12
|
+
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13
|
+
click: (args_0: MouseEvent) => any;
|
|
14
|
+
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
+
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
tooltipPosition: PvAlignmentPositions;
|
|
18
|
+
size: Extract<PvSize, "xs" | "sm" | "md" | "lg">;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
alwaysShow: boolean;
|
|
21
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
22
|
+
export default _default;
|
|
@@ -9,9 +9,12 @@ interface PvAiButtonProps {
|
|
|
9
9
|
loading?: boolean;
|
|
10
10
|
/** Prevent the button from being clicked */
|
|
11
11
|
disabled?: boolean;
|
|
12
|
+
/** Hide AiFilled Icon */
|
|
13
|
+
hideIcon?: boolean;
|
|
12
14
|
}
|
|
13
15
|
declare const _default: DefineComponent<PvAiButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvAiButtonProps> & Readonly<{}>, {
|
|
14
16
|
size: PvButtonSize;
|
|
15
17
|
label: string;
|
|
18
|
+
hideIcon: boolean;
|
|
16
19
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
17
20
|
export default _default;
|
package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
55
55
|
disableClearIcon: boolean;
|
|
56
56
|
disableSearchInput: boolean;
|
|
57
57
|
readOnly: boolean;
|
|
58
|
-
optionsVariant: "
|
|
58
|
+
optionsVariant: "icon" | "toggle" | "checkbox" | "simple" | "company" | "avatar" | "checkmark";
|
|
59
59
|
options: MenuOption<T>[];
|
|
60
60
|
menuActionsVariant: MenuActionsVariant | null;
|
|
61
61
|
highlightSearchText: boolean;
|
|
@@ -98,7 +98,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
98
98
|
disableClearIcon: boolean;
|
|
99
99
|
disableSearchInput: boolean;
|
|
100
100
|
readOnly: boolean;
|
|
101
|
-
optionsVariant: "
|
|
101
|
+
optionsVariant: "icon" | "toggle" | "checkbox" | "simple" | "company" | "avatar" | "checkmark";
|
|
102
102
|
options: MenuOption<T>[];
|
|
103
103
|
menuActionsVariant: MenuActionsVariant | null;
|
|
104
104
|
highlightSearchText: boolean;
|
|
@@ -141,7 +141,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
141
141
|
disableClearIcon: boolean;
|
|
142
142
|
disableSearchInput: boolean;
|
|
143
143
|
readOnly: boolean;
|
|
144
|
-
optionsVariant: "
|
|
144
|
+
optionsVariant: "icon" | "toggle" | "checkbox" | "simple" | "company" | "avatar" | "checkmark";
|
|
145
145
|
options: MenuOption<T>[];
|
|
146
146
|
menuActionsVariant: MenuActionsVariant | null;
|
|
147
147
|
highlightSearchText: boolean;
|
|
@@ -25,11 +25,11 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}
|
|
|
25
25
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
26
26
|
}>, {
|
|
27
27
|
delay: number;
|
|
28
|
-
disableInteractive: boolean;
|
|
29
28
|
disableAutoPlacement: boolean;
|
|
30
29
|
position: PvAlignmentPositions;
|
|
31
30
|
positioningStrategy: Strategy;
|
|
32
31
|
showOnHover: boolean;
|
|
32
|
+
disableInteractive: boolean;
|
|
33
33
|
useTeleport: boolean;
|
|
34
34
|
disableClickOutsideToClose: boolean;
|
|
35
35
|
zIndex: number;
|
|
@@ -24,10 +24,10 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}
|
|
|
24
24
|
collapsed: boolean;
|
|
25
25
|
}) => any;
|
|
26
26
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
27
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
27
28
|
onChange?: ((payload: {
|
|
28
29
|
collapsed: boolean;
|
|
29
30
|
}) => any) | undefined;
|
|
30
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
31
31
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
32
32
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
33
33
|
export default _default;
|
|
@@ -29,8 +29,8 @@ declare const __VLS_component: DefineComponent<PvTooltipProps, {}, {}, {}, {}, C
|
|
|
29
29
|
delay: number;
|
|
30
30
|
size: PvTooltipSize;
|
|
31
31
|
variant: PvTooltipVariants;
|
|
32
|
-
ariaLabelledBy: string;
|
|
33
32
|
disableInteractive: boolean;
|
|
33
|
+
ariaLabelledBy: string;
|
|
34
34
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
35
35
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
36
36
|
export default _default;
|
|
@@ -15,9 +15,9 @@ declare const __VLS_component: DefineComponent<PvTooltipV2Props, {}, {}, {}, {},
|
|
|
15
15
|
delay: number;
|
|
16
16
|
size: PvTooltipSize;
|
|
17
17
|
variant: PvTooltipVariants;
|
|
18
|
-
disableInteractive: boolean;
|
|
19
18
|
position: PvAlignmentPositions;
|
|
20
19
|
showOnHover: boolean;
|
|
20
|
+
disableInteractive: boolean;
|
|
21
21
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
22
22
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
23
|
export default _default;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as PvButton } from './PvButton/PvButton.vue';
|
|
2
|
+
export { default as PvActionButton } from './PvActionButton/PvActionButton.vue';
|
|
2
3
|
export { default as PvAiButton } from './PvAiButton/PvAiButton.vue';
|
|
3
4
|
export { default as PvButtonWithTooltip } from './PvButton/PvButtonWithTooltip.vue';
|
|
4
5
|
export { default as PvSplitButton } from './PvSplitButton/PvSplitButton.vue';
|