@turquoisehealth/pit-viper 2.57.0 → 2.58.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-scoped.css +29 -22
- package/_site/assets/css/pit-viper-v2.css +31 -23
- package/_site/assets/css/pit-viper.css +31 -23
- package/_src/assets/sprite-v2.svg +1 -1
- package/_src/assets/sprite.svg +1 -1
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +62 -0
- package/pv-components/dist/vue/base/pv-components-base.js +19 -19
- package/pv-components/dist/vue/base/pv-components-base.mjs +1643 -1514
- package/pv-components/dist/vue/base/pv-components-base.umd.js +19 -19
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +7 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +52 -52
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +20857 -20766
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +52 -52
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +4 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +39 -39
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +5607 -5593
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +38 -38
- package/pv-components/dist/web/pv-components.iife.js +24 -24
|
@@ -251,6 +251,10 @@ declare interface PvDataTableProps<T> {
|
|
|
251
251
|
* Hide the table rows (but still show the filter panel)
|
|
252
252
|
*/
|
|
253
253
|
hideTable?: boolean;
|
|
254
|
+
/**
|
|
255
|
+
* DOM location to use for relocating the filter panel
|
|
256
|
+
*/
|
|
257
|
+
filterTeleportLocation?: string;
|
|
254
258
|
}
|
|
255
259
|
|
|
256
260
|
export declare const PvDataTableWithChart: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
@@ -282,6 +286,7 @@ export declare const PvDataTableWithChart: <T>(__VLS_props: NonNullable<Awaited<
|
|
|
282
286
|
(e: "first-data-rendered", event: FirstDataRenderedEvent<T>): void;
|
|
283
287
|
(e: "handle-settings-icon", value: string): void;
|
|
284
288
|
(e: "focus-update", event: FocusUpdateEvent): void;
|
|
289
|
+
(e: "chart-collapsed", collapsed: boolean): void;
|
|
285
290
|
};
|
|
286
291
|
}>) => VNode & {
|
|
287
292
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
@@ -300,6 +305,8 @@ declare interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
|
|
|
300
305
|
focusCategory?: string;
|
|
301
306
|
hideChart?: boolean;
|
|
302
307
|
hideTable?: boolean;
|
|
308
|
+
filterPanelAboveChart?: boolean;
|
|
309
|
+
initialChartCollapsed?: boolean;
|
|
303
310
|
initialFocusData?: {
|
|
304
311
|
focuses: string[];
|
|
305
312
|
focusType: string | null;
|