@turquoisehealth/pit-viper 2.132.0 → 2.133.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.
Files changed (38) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +3 -3
  2. package/_site/assets/css/pit-viper-v2-scoped.css +3 -3
  3. package/_site/assets/css/pit-viper-v2.css +3 -3
  4. package/_site/assets/css/pit-viper.css +2 -2
  5. package/package.json +1 -1
  6. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  7. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  8. package/pv-components/dist/stats/web/pv-company-label-stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-company-logo-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-company-tag-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-date-picker-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-date-time-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-drawer-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-dropdown-stats.html +1 -1
  15. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  16. package/pv-components/dist/stats/web/pv-popover-menu-stats.html +1 -1
  17. package/pv-components/dist/stats/web/pv-popover-stats.html +1 -1
  18. package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
  19. package/pv-components/dist/stats/web/pv-search-input-stats.html +1 -1
  20. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  21. package/pv-components/dist/stats/web/pv-skeleton-stats.html +1 -1
  22. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  23. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  24. package/pv-components/dist/stats/web/pv-tree-stats.html +1 -1
  25. package/pv-components/dist/vue/base/pv-components-base.mjs +1 -1
  26. package/pv-components/dist/vue/charts/pv-components-charts.d.ts +491 -0
  27. package/pv-components/dist/vue/charts/pv-components-charts.js +259 -0
  28. package/pv-components/dist/vue/charts/pv-components-charts.mjs +121834 -0
  29. package/pv-components/dist/vue/charts/pv-components-charts.umd.js +259 -0
  30. package/pv-components/dist/vue/tables/pv-components-tables.d.ts +299 -0
  31. package/pv-components/dist/vue/tables/pv-components-tables.js +223 -0
  32. package/pv-components/dist/vue/tables/pv-components-tables.mjs +47028 -0
  33. package/pv-components/dist/vue/tables/pv-components-tables.umd.js +223 -0
  34. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +2 -1
  35. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useFilterStore.d.ts +2 -0
  36. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2071 -2062
  37. package/pv-components/dist/web/components/pv-distribution-bar/pv-distribution-bar.js +7 -7
  38. package/pv-components/dist/web/pv-components.iife.js +1 -1
@@ -1,4 +1,4 @@
1
- import { CSSProperties } from 'vue';
1
+ import { Component, CSSProperties } from 'vue';
2
2
  import { AgChartOptions } from 'ag-charts-enterprise';
3
3
  import { AdvancedFilterModel, ColumnVO, FilterModel, ValueFormatterFunc } from 'ag-grid-enterprise';
4
4
  import { Option } from '../../../types';
@@ -41,6 +41,7 @@ export interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
41
41
  secondaryChartType?: supportedChartType;
42
42
  chartFilter?: ChartFilter;
43
43
  chartType?: supportedChartType;
44
+ emptyChartFilterRenderer?: Component;
44
45
  yKey?: string;
45
46
  initialSort?: string;
46
47
  hideChart?: boolean;
@@ -14,6 +14,7 @@ export declare const createFilterStore: () => {
14
14
  filterStoreHandler: Ref<((params: FilterValuesSetHandlerParams<unknown>) => Promise<(FilterValueResponseOption | null)[]>) | undefined, ((params: FilterValuesSetHandlerParams<unknown>) => Promise<(FilterValueResponseOption | null)[]>) | undefined>;
15
15
  fetchFilterValues: (api: GridApi, colDef: ColDef, column: Column, filterModel?: FilterModel) => Promise<(string | null)[]>;
16
16
  filterValueContext: (colField: string, value: string | null) => FilterValueResponseOption | null | undefined;
17
+ filterModelEmpty: ComputedRef<boolean>;
17
18
  getFilterSelectedValues: (colField: string) => (string | null)[];
18
19
  getSearchMatchDataFromFilterContext: (colDef: ColDef, option: FilterValueResponseOption | null | undefined) => FilterValueMatchResult;
19
20
  isServerSideFilter: ComputedRef<boolean>;
@@ -34,6 +35,7 @@ export declare const useFilterStore: () => {
34
35
  filterStoreHandler: Ref<((params: FilterValuesSetHandlerParams<unknown>) => Promise<(FilterValueResponseOption | null)[]>) | undefined, ((params: FilterValuesSetHandlerParams<unknown>) => Promise<(FilterValueResponseOption | null)[]>) | undefined>;
35
36
  fetchFilterValues: (api: GridApi, colDef: ColDef, column: Column, filterModel?: FilterModel) => Promise<(string | null)[]>;
36
37
  filterValueContext: (colField: string, value: string | null) => FilterValueResponseOption | null | undefined;
38
+ filterModelEmpty: ComputedRef<boolean>;
37
39
  getFilterSelectedValues: (colField: string) => (string | null)[];
38
40
  getSearchMatchDataFromFilterContext: (colDef: ColDef, option: FilterValueResponseOption | null | undefined) => FilterValueMatchResult;
39
41
  isServerSideFilter: ComputedRef<boolean>;