@turquoisehealth/pit-viper 2.77.1 → 2.77.2
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 +13 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +1 -1
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +5 -3
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +9 -9
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +7 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +1 -1
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +4 -3
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +1 -1
package/package.json
CHANGED
|
@@ -14,6 +14,7 @@ import { Component } from 'vue';
|
|
|
14
14
|
import { ComponentOptionsMixin } from 'vue';
|
|
15
15
|
import { ComponentProvideOptions } from 'vue';
|
|
16
16
|
import { CreateComponentPublicInstanceWithMixins } from 'vue';
|
|
17
|
+
import { CSSProperties } from 'vue';
|
|
17
18
|
import { DefineComponent } from 'vue';
|
|
18
19
|
import { ExtractPropTypes } from 'vue';
|
|
19
20
|
import { FilterChangedEvent } from 'ag-grid-enterprise';
|
|
@@ -329,6 +330,12 @@ declare interface PvDataTableProps<T> {
|
|
|
329
330
|
tableSearchStyle?: TableSearchStyle;
|
|
330
331
|
maxHorizontalFilters?: number;
|
|
331
332
|
maintainColumnOrder?: boolean;
|
|
333
|
+
/**
|
|
334
|
+
* Custom CSS Properties
|
|
335
|
+
*/
|
|
336
|
+
customCssProperties?: {
|
|
337
|
+
agGridWrapper: CSSProperties;
|
|
338
|
+
};
|
|
332
339
|
}
|
|
333
340
|
|
|
334
341
|
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<{
|
|
@@ -388,6 +395,12 @@ declare interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
|
|
|
388
395
|
* Enable toggle to group or ungroup
|
|
389
396
|
*/
|
|
390
397
|
enableGroupingToggle?: boolean;
|
|
398
|
+
/**
|
|
399
|
+
* Css Properties
|
|
400
|
+
*/
|
|
401
|
+
customCssProperties?: {
|
|
402
|
+
agGridWrapper: CSSProperties;
|
|
403
|
+
};
|
|
391
404
|
}
|
|
392
405
|
|
|
393
406
|
export declare const PvMapChart: DefineComponent< {
|