@turquoisehealth/pit-viper 2.203.1-dev.0 → 2.204.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 +7 -5
- package/_site/assets/css/pit-viper-consumer.css +7 -5
- package/_site/assets/css/pit-viper-v2-scoped.css +7 -5
- package/_site/assets/css/pit-viper-v2.css +7 -5
- 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-select-button-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvMenu/symbols.d.ts +0 -2
- package/pv-components/dist/vue/base/components/base/PvMenu/types.d.ts +0 -4
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +0 -3
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +0 -4
- package/pv-components/dist/vue/base/pv-components-base.mjs +859 -868
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/symbols.d.ts +0 -2
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/types.d.ts +0 -4
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +0 -3
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +0 -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 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1299 -1301
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +1002 -1003
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +489 -498
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +898 -898
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +1032 -1033
- package/pv-components/dist/web/pv-components.iife.js +13 -13
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -7,5 +7,3 @@ export declare const CascadeSelectedParentIdsKey: InjectionKey<Ref<Set<string>>>
|
|
|
7
7
|
export declare const CascadeDeselectedChildIdsKey: InjectionKey<Ref<Map<string, Set<string>>>>;
|
|
8
8
|
export declare const ParentSelectsAllChildrenKey: InjectionKey<ComputedRef<boolean>>;
|
|
9
9
|
export declare const EnableChildExpansionKey: InjectionKey<ComputedRef<boolean>>;
|
|
10
|
-
export declare const ReadOnlyKey: InjectionKey<ComputedRef<boolean>>;
|
|
11
|
-
export declare const HideUnselectedInReadOnlyKey: InjectionKey<ComputedRef<boolean>>;
|
|
@@ -21,8 +21,4 @@ export interface PvMenuProps {
|
|
|
21
21
|
hasMoreOptions?: boolean;
|
|
22
22
|
/** When true, item clicks are ignored — the list is display-only. */
|
|
23
23
|
readOnly?: boolean;
|
|
24
|
-
/** When true (and readOnly), unselected options are hidden entirely so only the
|
|
25
|
-
* selected/active options are shown. When false (default, and readOnly), unselected
|
|
26
|
-
* options are shown but rendered disabled (greyed but readable). */
|
|
27
|
-
hideUnselectedInReadOnly?: boolean;
|
|
28
24
|
}
|
|
@@ -55,7 +55,6 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
55
55
|
disableClearIcon: boolean;
|
|
56
56
|
disableSearchInput: boolean;
|
|
57
57
|
readOnly: boolean;
|
|
58
|
-
hideUnselectedInReadOnly: boolean;
|
|
59
58
|
optionsVariant: "checkbox" | "icon" | "toggle" | "simple" | "company" | "avatar" | "checkmark";
|
|
60
59
|
options: MenuOption<T>[];
|
|
61
60
|
menuActionsVariant: MenuActionsVariant | null;
|
|
@@ -99,7 +98,6 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
99
98
|
disableClearIcon: boolean;
|
|
100
99
|
disableSearchInput: boolean;
|
|
101
100
|
readOnly: boolean;
|
|
102
|
-
hideUnselectedInReadOnly: boolean;
|
|
103
101
|
optionsVariant: "checkbox" | "icon" | "toggle" | "simple" | "company" | "avatar" | "checkmark";
|
|
104
102
|
options: MenuOption<T>[];
|
|
105
103
|
menuActionsVariant: MenuActionsVariant | null;
|
|
@@ -143,7 +141,6 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
143
141
|
disableClearIcon: boolean;
|
|
144
142
|
disableSearchInput: boolean;
|
|
145
143
|
readOnly: boolean;
|
|
146
|
-
hideUnselectedInReadOnly: boolean;
|
|
147
144
|
optionsVariant: "checkbox" | "icon" | "toggle" | "simple" | "company" | "avatar" | "checkmark";
|
|
148
145
|
options: MenuOption<T>[];
|
|
149
146
|
menuActionsVariant: MenuActionsVariant | null;
|
package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts
CHANGED
|
@@ -28,10 +28,6 @@ export interface PvMultiSelectButtonProps<T = unknown, SlotContext extends Recor
|
|
|
28
28
|
disabled?: boolean;
|
|
29
29
|
/** Allow the dropdown to open for viewing but prevent adding or removing selections */
|
|
30
30
|
readOnly?: boolean;
|
|
31
|
-
/** When true (and readOnly), unselected options are hidden so only the selected/active
|
|
32
|
-
* options are shown. When false (default, and readOnly), unselected options are shown
|
|
33
|
-
* but rendered disabled (greyed but readable). */
|
|
34
|
-
hideUnselectedInReadOnly?: boolean;
|
|
35
31
|
/** Enable cascade (parent/child) selection. When true, clicking a parent option
|
|
36
32
|
* toggles all its leaf descendants, and parent checkboxes show indeterminate state
|
|
37
33
|
* when partially selected. All existing behavior is unchanged when false (default). */
|
|
@@ -332,6 +332,8 @@ export interface PvDataTableProps<T> {
|
|
|
332
332
|
tableSearchPlaceholder?: string;
|
|
333
333
|
/** The style of table search to use */
|
|
334
334
|
tableSearchStyle?: TableSearchStyle;
|
|
335
|
+
/** If true, render the search input inline with the filter row instead of on its own row */
|
|
336
|
+
tableSearchInline?: boolean;
|
|
335
337
|
/** Maximum number of filter chips to display horizontally before collapsing */
|
|
336
338
|
maxHorizontalFilters?: number;
|
|
337
339
|
/** If true, the filter panel is view-only: filters are visible but cannot be changed */
|
|
@@ -349,7 +351,9 @@ export interface PvDataTableProps<T> {
|
|
|
349
351
|
* Custom CSS Properties
|
|
350
352
|
*/
|
|
351
353
|
customCssProperties?: {
|
|
352
|
-
agGridWrapper
|
|
354
|
+
agGridWrapper?: CSSProperties;
|
|
355
|
+
/** Styles applied to the table search input wrapper (e.g. width) */
|
|
356
|
+
tableSearchWrapper?: CSSProperties;
|
|
353
357
|
};
|
|
354
358
|
/**
|
|
355
359
|
* If true, then the table is grouped.
|
package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ export declare const useSetFilter: <T>(options: UseSetFilterOptions<T>) => {
|
|
|
55
55
|
filterValueContext: (colField: string, value: string | null) => FilterValueResponseOption | null | undefined;
|
|
56
56
|
formatDisplayValue: (input: string | null) => string | null;
|
|
57
57
|
resolvedFilterValueContext: (input: string | null) => FilterValueResponseOption | null | undefined;
|
|
58
|
-
isUnresolvedMetadataValue: (value: string | null) => boolean;
|
|
58
|
+
isUnresolvedMetadataValue: (value: string | null, context?: FilterValueResponseOption | null) => boolean;
|
|
59
59
|
getLatestFilterValues: (fetchNewValues?: boolean, forceFetchValues?: boolean) => Promise<void>;
|
|
60
60
|
addSelectedValue: (value: string | null, field?: string) => void;
|
|
61
61
|
removeSelectedValue: (value: string | null, field?: string) => void;
|