@turquoisehealth/pit-viper 2.243.2-dev.2 → 2.244.1

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.
@@ -14,6 +14,10 @@ interface PvFileInputProps {
14
14
  * from the `select-file` event.
15
15
  */
16
16
  showSelectedFile?: boolean;
17
+ /** Visual style of the Choose File button. */
18
+ confirmButtonVariant?: "primary" | "secondary";
19
+ /** Visual style of the remove-file buttons. */
20
+ destructiveButtonVariant?: "destructive" | "ghost";
17
21
  }
18
22
  type __VLS_Props = PvFileInputProps;
19
23
  type __VLS_PublicProps = {
@@ -29,5 +33,7 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
29
33
  }>, {
30
34
  multiple: boolean;
31
35
  showSelectedFile: boolean;
36
+ confirmButtonVariant: "primary" | "secondary";
37
+ destructiveButtonVariant: "destructive" | "ghost";
32
38
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
33
39
  export default _default;
@@ -4,6 +4,7 @@ export { default as PvDataWidget } from '../charts/PvDataWidget/PvDataWidget.vue
4
4
  export { default as PvDataTableWithChart } from '../charts/PvDataTableWithChart/PvDataTableWithChart.vue';
5
5
  export { default as PvMapChart } from '../charts/PvMapChart/PvMapChart.vue';
6
6
  export { SCATTER_MARKER_STROKE, PitViperAGChartsMonochromeTheme, PitViperAGChartsMonochromeThemeName, PitViperAGChartsMulticolorTheme, PitViperAGChartsMulticolorThemeName, } from '../charts/themes';
7
+ export { preloadAgCharts } from '../../functions/loadAgCharts';
7
8
  export { default as PvDataTable } from '../tables/PvDataTable/PvDataTable.vue';
8
9
  export { createPvDataTableFilterStore, providePvDataTableFilterStore, usePvDataTableFilterStore, } from '../tables/PvDataTable/useFilterStore';
9
10
  export type { PvDataTableFilterController, PvDataTableFilterModel, PvDataTableFilterStore, } from '../tables/PvDataTable/useFilterStore';