@turquoisehealth/pit-viper 2.14.6 → 2.15.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/package.json +1 -1
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +8 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +45 -45
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +12195 -11801
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +8 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +47 -47
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +13152 -12760
- package/pv-components/dist/web/pv-components.iife.js +47 -47
package/package.json
CHANGED
|
@@ -173,6 +173,14 @@ declare interface PvDataTableProps<T> {
|
|
|
173
173
|
* Row height for individual rows
|
|
174
174
|
*/
|
|
175
175
|
rowHeight?: number;
|
|
176
|
+
/**
|
|
177
|
+
* Set tooltip show delay. Detaults 1000ms
|
|
178
|
+
*/
|
|
179
|
+
tooltipShowDelay?: number;
|
|
180
|
+
/**
|
|
181
|
+
* Set tooltip hide delay.
|
|
182
|
+
*/
|
|
183
|
+
tooltipHideDelay?: number;
|
|
176
184
|
}
|
|
177
185
|
|
|
178
186
|
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<{
|