@turquoisehealth/pit-viper 2.185.0 → 2.186.1-dev.1
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-header-stats.html +4950 -0
- package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-radio-group-stats.html +4950 -0
- package/pv-components/dist/vue/base/components/base/PvHeader/PvHeader.vue.d.ts +30 -0
- package/pv-components/dist/vue/base/components/base/PvRadioGroup/PvRadioGroup.vue.d.ts +30 -0
- package/pv-components/dist/vue/base/components/base/PvRadioGroup/types.d.ts +5 -0
- package/pv-components/dist/vue/base/components/base/index.d.ts +3 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +779 -696
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvHeader/PvHeader.vue.d.ts +30 -0
- package/pv-components/dist/vue/visualizations/components/base/PvRadioGroup/PvRadioGroup.vue.d.ts +30 -0
- package/pv-components/dist/vue/visualizations/components/base/PvRadioGroup/types.d.ts +5 -0
- package/pv-components/dist/vue/visualizations/components/base/index.d.ts +3 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/PvDataTableWithChart.vue.d.ts +3 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvTableOptionsPanel.vue.d.ts +2 -2
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2054 -1995
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-header/pv-header.js +6315 -0
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1 -1
- package/pv-components/dist/web/components/pv-radio-group/pv-radio-group.js +6233 -0
- package/pv-components/dist/web/pv-components.iife.js +12 -12
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
title?: string;
|
|
4
|
+
showAskTqButton?: boolean;
|
|
5
|
+
askTqButtonId?: string;
|
|
6
|
+
headerTitleId?: string;
|
|
7
|
+
headerActionsId?: string;
|
|
8
|
+
};
|
|
9
|
+
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
11
|
+
slots: {
|
|
12
|
+
left?(_: {}): any;
|
|
13
|
+
right?(_: {}): any;
|
|
14
|
+
};
|
|
15
|
+
refs: {};
|
|
16
|
+
rootEl: HTMLDivElement;
|
|
17
|
+
};
|
|
18
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
|
+
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
20
|
+
askTqButtonId: string;
|
|
21
|
+
headerTitleId: string;
|
|
22
|
+
headerActionsId: string;
|
|
23
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
package/pv-components/dist/vue/visualizations/components/base/PvRadioGroup/PvRadioGroup.vue.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { RadioGroupOption } from './types';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
interface PvRadioGroupProps {
|
|
4
|
+
/** Array of options to render as radio buttons. */
|
|
5
|
+
options?: RadioGroupOption[];
|
|
6
|
+
/** Name attribute shared by all radio inputs. Auto-generated if omitted. */
|
|
7
|
+
name?: string;
|
|
8
|
+
/** Layout direction of the options. */
|
|
9
|
+
orientation?: "vertical" | "horizontal";
|
|
10
|
+
/** When true, all options are non-interactive and visually dimmed. */
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
/** Visible label rendered above the group. */
|
|
13
|
+
label?: string;
|
|
14
|
+
/** Accessible label when no visible legend is provided. */
|
|
15
|
+
ariaLabel?: string;
|
|
16
|
+
}
|
|
17
|
+
type __VLS_Props = PvRadioGroupProps;
|
|
18
|
+
type __VLS_PublicProps = {
|
|
19
|
+
modelValue?: string | number | boolean;
|
|
20
|
+
} & __VLS_Props;
|
|
21
|
+
declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
22
|
+
"update:modelValue": (value: string | number | boolean) => any;
|
|
23
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
24
|
+
"onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
|
|
25
|
+
}>, {
|
|
26
|
+
options: RadioGroupOption[];
|
|
27
|
+
disabled: boolean;
|
|
28
|
+
orientation: "vertical" | "horizontal";
|
|
29
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
30
|
+
export default _default;
|
|
@@ -32,12 +32,14 @@ export { default as PvPagination } from './PvPagination/PvPagination.vue';
|
|
|
32
32
|
export { default as PvSelectableCard } from './PvSelectableCard/PvSelectableCard.vue';
|
|
33
33
|
export { default as PvSidePanel } from '../layout/PvSidePanel/PvSidePanel.vue';
|
|
34
34
|
export { default as PvGhostInput } from './PvGhostInput/PvGhostInput.vue';
|
|
35
|
+
export { default as PvHeader } from './PvHeader/PvHeader.vue';
|
|
35
36
|
export { default as PvCompanyLabel } from './PvCompanyLabel/PvCompanyLabel.vue';
|
|
36
37
|
export { default as PvAvatar } from './PvAvatar/PvAvatar.vue';
|
|
37
38
|
export { default as PvAvatarGroup } from './PvAvatarGroup/PvAvatarGroup.vue';
|
|
38
39
|
export { default as PvToggleButton } from './PvToggleButton/PvToggleButton.vue';
|
|
39
40
|
export { default as PvToggleGroup } from './PvToggleGroup/PvToggleGroup.vue';
|
|
40
41
|
export { default as PvCheckbox } from './PvCheckbox/PvCheckbox.vue';
|
|
42
|
+
export { default as PvRadioGroup } from './PvRadioGroup/PvRadioGroup.vue';
|
|
41
43
|
export { default as PvSprite } from './PvSprite/PvSprite.vue';
|
|
42
44
|
export { default as PvSkeleton } from './PvSkeleton/PvSkeleton.vue';
|
|
43
45
|
export { default as PvSpinner } from './PvSpinner/PvSpinner.vue';
|
|
@@ -67,3 +69,4 @@ export type { PvAvatarGroupItem } from './PvAvatarGroup/types';
|
|
|
67
69
|
export type { MenuOption } from '../../types';
|
|
68
70
|
export type { PvMultiSelectButtonSlotProps } from './PvMultiSelectButton/types';
|
|
69
71
|
export type { PvTreeOption, PvTreeSetting, PvTreeSettings } from './PvTree/types';
|
|
72
|
+
export type { RadioGroupOption } from './PvRadioGroup/types';
|
|
@@ -15,9 +15,10 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
15
15
|
readonly "onFilter-opened"?: ((event: FilterChangedEvent<T, any>) => any) | undefined;
|
|
16
16
|
readonly "onFirst-data-rendered"?: ((event: FirstDataRenderedEvent<T, any>) => any) | undefined;
|
|
17
17
|
readonly "onFocus-update"?: ((event: FocusUpdateEvent) => any) | undefined;
|
|
18
|
+
readonly "onTable-overlay-change"?: ((selectedIds: string[]) => any) | undefined;
|
|
18
19
|
readonly "onChart-state-changed"?: ((event: ChartStateChangedEvent) => any) | undefined;
|
|
19
20
|
readonly "onChart-collapsed"?: ((collapsed: boolean) => any) | undefined;
|
|
20
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onHandle-settings-icon" | "onColumn-moved" | "onColumn-resized" | "onColumn-row-group-changed" | "onGrid-ready" | "onFilter-changed" | "onSort-changed" | "onFilter-opened" | "onFirst-data-rendered" | "onFocus-update" | "onChart-state-changed" | "onChart-collapsed"> & PvDataTableWithChartProps<T> & Partial<{}>> & PublicProps;
|
|
21
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onHandle-settings-icon" | "onColumn-moved" | "onColumn-resized" | "onColumn-row-group-changed" | "onGrid-ready" | "onFilter-changed" | "onSort-changed" | "onFilter-opened" | "onFirst-data-rendered" | "onFocus-update" | "onTable-overlay-change" | "onChart-state-changed" | "onChart-collapsed"> & PvDataTableWithChartProps<T> & Partial<{}>> & PublicProps;
|
|
21
22
|
expose(exposed: ShallowUnwrapRef<{
|
|
22
23
|
getChartImageDataURL: (dimensions?: {
|
|
23
24
|
width?: number;
|
|
@@ -42,6 +43,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
42
43
|
(e: "handle-settings-icon", value: string): void;
|
|
43
44
|
(e: "focus-update", event: FocusUpdateEvent): void;
|
|
44
45
|
(e: "chart-collapsed", collapsed: boolean): void;
|
|
46
|
+
(e: "table-overlay-change", selectedIds: string[]): void;
|
|
45
47
|
};
|
|
46
48
|
}>) => VNode & {
|
|
47
49
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
@@ -6,9 +6,9 @@ type __VLS_Props = {
|
|
|
6
6
|
};
|
|
7
7
|
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
8
8
|
"toggle-group": (enableGrouping: boolean) => any;
|
|
9
|
-
"overlay-change": (selectedIds: string[]) => any;
|
|
9
|
+
"table-overlay-change": (selectedIds: string[]) => any;
|
|
10
10
|
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
11
11
|
"onToggle-group"?: ((enableGrouping: boolean) => any) | undefined;
|
|
12
|
-
"
|
|
12
|
+
"onTable-overlay-change"?: ((selectedIds: string[]) => any) | undefined;
|
|
13
13
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
14
|
export default _default;
|