@turquoisehealth/pit-viper 2.224.1-dev.1 → 2.224.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 +1 -1
- package/_site/assets/css/pit-viper-consumer.css +1 -1
- package/_site/assets/css/pit-viper-v2-scoped.css +1 -1
- package/_site/assets/css/pit-viper-v2.css +1 -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-drawer-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-panel-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-search-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/vue/ai/components/base/PvFilterPanel/types.d.ts +5 -0
- package/pv-components/dist/vue/ai/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -0
- package/pv-components/dist/vue/ai/components/base/PvMultiSelectButton/types.d.ts +2 -0
- package/pv-components/dist/vue/ai/components/base/PvSearchInput/PvSearchInput.vue.d.ts +7 -4
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +5 -0
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -0
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +2 -0
- package/pv-components/dist/vue/base/components/base/PvSearchInput/PvSearchInput.vue.d.ts +7 -4
- package/pv-components/dist/vue/base/pv-components-base.mjs +699 -682
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/base/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +5 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/base/PvSearchInput/PvSearchInput.vue.d.ts +7 -4
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/types.d.ts +5 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2457 -2435
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/types.d.ts +2 -0
- package/pv-components/dist/web/components/pv-drawer/pv-drawer.js +554 -549
- package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +809 -793
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +632 -623
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +21 -15
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1712 -1697
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +21 -15
- package/pv-components/dist/web/components/pv-search-input/pv-search-input.js +17 -8
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +82 -68
- package/pv-components/dist/web/pv-components.iife.js +14 -14
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -132,6 +132,10 @@ export interface PvFilterPanelColDefContext {
|
|
|
132
132
|
* are displayed and does not affect the filter model.
|
|
133
133
|
*/
|
|
134
134
|
filterPanel?: Record<string, PvFilterPanelFacetDef>;
|
|
135
|
+
/**
|
|
136
|
+
* Optional text displayed beside the loading spinner while filter options load.
|
|
137
|
+
*/
|
|
138
|
+
filterOptionsLoadingText?: string;
|
|
135
139
|
/**
|
|
136
140
|
* Optional renderer to override the default filter options list
|
|
137
141
|
*/
|
|
@@ -406,6 +410,7 @@ export interface PvFilterPanelResolvedFilter {
|
|
|
406
410
|
key: string;
|
|
407
411
|
knownOptions?: PvFilterPanelOption[];
|
|
408
412
|
label: string;
|
|
413
|
+
loadingText?: string;
|
|
409
414
|
options?: PvFilterPanelOption[];
|
|
410
415
|
rangeMax?: number | null;
|
|
411
416
|
rangeMin?: number | null;
|
package/pv-components/dist/vue/ai/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
37
37
|
icon: string;
|
|
38
38
|
isSeeMoreLoading: boolean;
|
|
39
39
|
hasMoreOptions: boolean;
|
|
40
|
+
loadingText: string;
|
|
40
41
|
optionsAction: MenuAction<T> | undefined;
|
|
41
42
|
optionsRenderer: Component;
|
|
42
43
|
overlayTrigger: boolean;
|
|
@@ -81,6 +82,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
81
82
|
icon: string;
|
|
82
83
|
isSeeMoreLoading: boolean;
|
|
83
84
|
hasMoreOptions: boolean;
|
|
85
|
+
loadingText: string;
|
|
84
86
|
optionsAction: MenuAction<T> | undefined;
|
|
85
87
|
optionsRenderer: Component;
|
|
86
88
|
overlayTrigger: boolean;
|
|
@@ -125,6 +127,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
125
127
|
icon: string;
|
|
126
128
|
isSeeMoreLoading: boolean;
|
|
127
129
|
hasMoreOptions: boolean;
|
|
130
|
+
loadingText: string;
|
|
128
131
|
optionsAction: MenuAction<T> | undefined;
|
|
129
132
|
optionsRenderer: Component;
|
|
130
133
|
overlayTrigger: boolean;
|
|
@@ -57,6 +57,8 @@ export interface PvMultiSelectButtonProps<T = unknown, SlotContext extends Recor
|
|
|
57
57
|
hasMoreOptions?: boolean;
|
|
58
58
|
/** Text label on the trigger button */
|
|
59
59
|
label?: string;
|
|
60
|
+
/** Optional text displayed beside the dropdown loading spinner. */
|
|
61
|
+
loadingText?: string;
|
|
60
62
|
/** Style of the footer action panel. "select-clear" shows select/clear all; "cancel-confirm" requires explicit confirmation. */
|
|
61
63
|
menuActionsVariant?: MenuActionsVariant | null;
|
|
62
64
|
/** The list of selectable options */
|
|
@@ -1,15 +1,17 @@
|
|
|
1
|
+
import { PvSize } from '../baseProps';
|
|
1
2
|
import { DefineComponent, ShallowRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
3
|
export interface PvSearchInputProps {
|
|
3
|
-
/**
|
|
4
|
-
* Placeholder text shown when the input is empty.
|
|
5
|
-
*/
|
|
6
|
-
placeholder?: string;
|
|
7
4
|
/**
|
|
8
5
|
* When true, the input is non-interactive and visually dimmed.
|
|
9
6
|
*/
|
|
10
7
|
disabled?: boolean;
|
|
11
8
|
/** When true, displays a keyboard shortcut badge ("/" key) and registers the hotkey to focus the input. */
|
|
12
9
|
displayShortcut?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Placeholder text shown when the input is empty.
|
|
12
|
+
*/
|
|
13
|
+
placeholder?: string;
|
|
14
|
+
size?: Extract<PvSize, "lg" | "xl">;
|
|
13
15
|
}
|
|
14
16
|
export interface PvSearchInputExposed {
|
|
15
17
|
input: HTMLInputElement | null;
|
|
@@ -25,6 +27,7 @@ declare const _default: DefineComponent<__VLS_PublicProps, {
|
|
|
25
27
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
26
28
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
27
29
|
}>, {
|
|
30
|
+
size: Extract<PvSize, "lg" | "xl">;
|
|
28
31
|
disabled: boolean;
|
|
29
32
|
placeholder: string;
|
|
30
33
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -132,6 +132,10 @@ export interface PvFilterPanelColDefContext {
|
|
|
132
132
|
* are displayed and does not affect the filter model.
|
|
133
133
|
*/
|
|
134
134
|
filterPanel?: Record<string, PvFilterPanelFacetDef>;
|
|
135
|
+
/**
|
|
136
|
+
* Optional text displayed beside the loading spinner while filter options load.
|
|
137
|
+
*/
|
|
138
|
+
filterOptionsLoadingText?: string;
|
|
135
139
|
/**
|
|
136
140
|
* Optional renderer to override the default filter options list
|
|
137
141
|
*/
|
|
@@ -406,6 +410,7 @@ export interface PvFilterPanelResolvedFilter {
|
|
|
406
410
|
key: string;
|
|
407
411
|
knownOptions?: PvFilterPanelOption[];
|
|
408
412
|
label: string;
|
|
413
|
+
loadingText?: string;
|
|
409
414
|
options?: PvFilterPanelOption[];
|
|
410
415
|
rangeMax?: number | null;
|
|
411
416
|
rangeMin?: number | null;
|
package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
37
37
|
icon: string;
|
|
38
38
|
isSeeMoreLoading: boolean;
|
|
39
39
|
hasMoreOptions: boolean;
|
|
40
|
+
loadingText: string;
|
|
40
41
|
optionsAction: MenuAction<T> | undefined;
|
|
41
42
|
optionsRenderer: Component;
|
|
42
43
|
overlayTrigger: boolean;
|
|
@@ -81,6 +82,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
81
82
|
icon: string;
|
|
82
83
|
isSeeMoreLoading: boolean;
|
|
83
84
|
hasMoreOptions: boolean;
|
|
85
|
+
loadingText: string;
|
|
84
86
|
optionsAction: MenuAction<T> | undefined;
|
|
85
87
|
optionsRenderer: Component;
|
|
86
88
|
overlayTrigger: boolean;
|
|
@@ -125,6 +127,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
125
127
|
icon: string;
|
|
126
128
|
isSeeMoreLoading: boolean;
|
|
127
129
|
hasMoreOptions: boolean;
|
|
130
|
+
loadingText: string;
|
|
128
131
|
optionsAction: MenuAction<T> | undefined;
|
|
129
132
|
optionsRenderer: Component;
|
|
130
133
|
overlayTrigger: boolean;
|
|
@@ -57,6 +57,8 @@ export interface PvMultiSelectButtonProps<T = unknown, SlotContext extends Recor
|
|
|
57
57
|
hasMoreOptions?: boolean;
|
|
58
58
|
/** Text label on the trigger button */
|
|
59
59
|
label?: string;
|
|
60
|
+
/** Optional text displayed beside the dropdown loading spinner. */
|
|
61
|
+
loadingText?: string;
|
|
60
62
|
/** Style of the footer action panel. "select-clear" shows select/clear all; "cancel-confirm" requires explicit confirmation. */
|
|
61
63
|
menuActionsVariant?: MenuActionsVariant | null;
|
|
62
64
|
/** The list of selectable options */
|
|
@@ -1,15 +1,17 @@
|
|
|
1
|
+
import { PvSize } from '../baseProps';
|
|
1
2
|
import { DefineComponent, ShallowRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
3
|
export interface PvSearchInputProps {
|
|
3
|
-
/**
|
|
4
|
-
* Placeholder text shown when the input is empty.
|
|
5
|
-
*/
|
|
6
|
-
placeholder?: string;
|
|
7
4
|
/**
|
|
8
5
|
* When true, the input is non-interactive and visually dimmed.
|
|
9
6
|
*/
|
|
10
7
|
disabled?: boolean;
|
|
11
8
|
/** When true, displays a keyboard shortcut badge ("/" key) and registers the hotkey to focus the input. */
|
|
12
9
|
displayShortcut?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Placeholder text shown when the input is empty.
|
|
12
|
+
*/
|
|
13
|
+
placeholder?: string;
|
|
14
|
+
size?: Extract<PvSize, "lg" | "xl">;
|
|
13
15
|
}
|
|
14
16
|
export interface PvSearchInputExposed {
|
|
15
17
|
input: HTMLInputElement | null;
|
|
@@ -25,6 +27,7 @@ declare const _default: DefineComponent<__VLS_PublicProps, {
|
|
|
25
27
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
26
28
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
27
29
|
}>, {
|
|
30
|
+
size: Extract<PvSize, "lg" | "xl">;
|
|
28
31
|
disabled: boolean;
|
|
29
32
|
placeholder: string;
|
|
30
33
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|