@turquoisehealth/pit-viper 2.205.0 → 2.206.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-v2.css +4 -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-filter-modal-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +1 -0
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +16 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +245 -232
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +16 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1388 -1342
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +3 -0
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +738 -723
- package/pv-components/dist/web/pv-components.iife.js +13 -13
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts
CHANGED
|
@@ -60,6 +60,7 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}
|
|
|
60
60
|
applyLabel: string;
|
|
61
61
|
autoHideRelatedFilterFields: boolean;
|
|
62
62
|
cancelLabel: string;
|
|
63
|
+
collapsedFilterDisplayLabel: string;
|
|
63
64
|
clearAllBody: string;
|
|
64
65
|
clearAllHeader: string;
|
|
65
66
|
clearAllLabel: string;
|
|
@@ -109,6 +109,10 @@ export interface PvFilterPanelColDefContext {
|
|
|
109
109
|
* Category label used by reusable filter panel UIs to group this column.
|
|
110
110
|
*/
|
|
111
111
|
filterPanelCategory?: PvFilterPanelCategory | null;
|
|
112
|
+
/**
|
|
113
|
+
* If true, this filter is hidden behind the panel's collapsed filters toggle by default.
|
|
114
|
+
*/
|
|
115
|
+
filterCollapsedByDefault?: boolean;
|
|
112
116
|
/**
|
|
113
117
|
* Custom label for exists filters. Defaults to `Has ${headerName}`.
|
|
114
118
|
*/
|
|
@@ -117,6 +121,14 @@ export interface PvFilterPanelColDefContext {
|
|
|
117
121
|
* If true, hide this column from reusable filter panel UIs.
|
|
118
122
|
*/
|
|
119
123
|
filterPanelHidden?: boolean;
|
|
124
|
+
/**
|
|
125
|
+
* If true, hide the value filter options sort label (defaults to "Suggested").
|
|
126
|
+
*/
|
|
127
|
+
filterPanelHideOptionsSortDescription?: boolean;
|
|
128
|
+
/**
|
|
129
|
+
* If true, hide the value filter search input.
|
|
130
|
+
*/
|
|
131
|
+
filterPanelHideSearch?: boolean;
|
|
120
132
|
/**
|
|
121
133
|
* Range control configuration used by reusable filter panel UIs. Presence infers a range filter type.
|
|
122
134
|
*/
|
|
@@ -311,6 +323,8 @@ export interface PvFilterPanelResolvedFilter {
|
|
|
311
323
|
filterOptionsRenderer?: Component;
|
|
312
324
|
filterOptionsSortDescription?: string;
|
|
313
325
|
filterOptionsSortTooltip?: string;
|
|
326
|
+
hideOptionsSortDescription?: boolean;
|
|
327
|
+
hideSearch?: boolean;
|
|
314
328
|
focusText?: string;
|
|
315
329
|
focusedValues?: string[];
|
|
316
330
|
focusedValuesByField?: Record<string, string[] | undefined>;
|
|
@@ -383,6 +397,8 @@ export interface PvFilterPanelProps {
|
|
|
383
397
|
autoHideRelatedFilterFields?: boolean;
|
|
384
398
|
cancelLabel?: string;
|
|
385
399
|
categoryOrder?: PvFilterPanelCategory[];
|
|
400
|
+
/** Base label used by the collapsed filters toggle; rendered as `Show/Hide ${label}`. */
|
|
401
|
+
collapsedFilterDisplayLabel?: string;
|
|
386
402
|
clearAllBody?: string;
|
|
387
403
|
clearAllHeader?: string;
|
|
388
404
|
clearAllLabel?: string;
|