@turquoisehealth/pit-viper 2.195.1-dev.1 → 2.195.1-dev.3
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-multi-select-button-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +2 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1710 -1693
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -253,6 +253,8 @@ export interface PvFilterPanelOptionsHandlerParams {
|
|
|
253
253
|
query?: string;
|
|
254
254
|
reason: PvFilterPanelOptionsHandlerReason;
|
|
255
255
|
selectedValues?: (string | null)[];
|
|
256
|
+
/** Aborted when a newer request supersedes this one. Forward to `fetch`/axios to cancel the network call. */
|
|
257
|
+
signal?: AbortSignal;
|
|
256
258
|
}
|
|
257
259
|
export interface PvFilterPanelOptionsResponse {
|
|
258
260
|
hasMore?: boolean;
|