@turquoisehealth/pit-viper 2.57.1 → 2.59.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/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +87 -0
- package/pv-components/dist/vue/base/pv-components-base.js +19 -19
- package/pv-components/dist/vue/base/pv-components-base.mjs +2153 -1988
- package/pv-components/dist/vue/base/pv-components-base.umd.js +19 -19
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +9 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +52 -52
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +20993 -20936
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +52 -52
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +8 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +39 -39
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +5805 -5791
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +38 -38
- package/pv-components/dist/web/pv-components.iife.js +24 -24
|
@@ -230,6 +230,10 @@ declare interface PvDataTableProps<T> {
|
|
|
230
230
|
/**
|
|
231
231
|
* Enables pagination
|
|
232
232
|
*/
|
|
233
|
+
leftPinnedColumnName?: string;
|
|
234
|
+
/**
|
|
235
|
+
* Specifies the column to pin to the left of the table if at least one row grouping is enabled.
|
|
236
|
+
*/
|
|
233
237
|
pagination?: boolean;
|
|
234
238
|
/**
|
|
235
239
|
* Set the pagination page size. Defaults to 50.
|
|
@@ -251,6 +255,10 @@ declare interface PvDataTableProps<T> {
|
|
|
251
255
|
* Hide the table rows (but still show the filter panel)
|
|
252
256
|
*/
|
|
253
257
|
hideTable?: boolean;
|
|
258
|
+
/**
|
|
259
|
+
* DOM location to use for relocating the filter panel
|
|
260
|
+
*/
|
|
261
|
+
filterTeleportLocation?: string;
|
|
254
262
|
}
|
|
255
263
|
|
|
256
264
|
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<{
|
|
@@ -301,6 +309,7 @@ declare interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
|
|
|
301
309
|
focusCategory?: string;
|
|
302
310
|
hideChart?: boolean;
|
|
303
311
|
hideTable?: boolean;
|
|
312
|
+
filterPanelAboveChart?: boolean;
|
|
304
313
|
initialChartCollapsed?: boolean;
|
|
305
314
|
initialFocusData?: {
|
|
306
315
|
focuses: string[];
|