@turquoisehealth/pit-viper 2.132.0 → 2.134.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.
@@ -11875,7 +11875,7 @@ const Qn = /* @__PURE__ */ pe(Vu, [["render", zu]]), Au = ["data-style"], Eu = [
11875
11875
  };
11876
11876
  return (a, i) => (f(), v("div", kp, [
11877
11877
  (f(!0), v(F, null, de(e.values, (s, l) => (f(), v("div", {
11878
- key: s,
11878
+ key: l,
11879
11879
  class: R([n(l)]),
11880
11880
  style: ue(r(s, l))
11881
11881
  }, null, 6))), 128))
@@ -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>;