@databrainhq/plugin 0.14.34 → 0.14.35

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.
@@ -33,6 +33,7 @@ type FiltersProps = {
33
33
  variant: 'static' | 'floating';
34
34
  radius: string;
35
35
  };
36
+ filterOptions?: (column: string) => JSX.Element;
36
37
  };
37
38
  export declare const Filters: React.FC<FiltersProps>;
38
39
  export {};
@@ -16,6 +16,8 @@ type HorizontalFiltersProps = {
16
16
  variant: 'static' | 'floating';
17
17
  radius: string;
18
18
  };
19
+ addGlobalFilter?: JSX.Element;
20
+ filterOptions?: (column: string) => JSX.Element;
19
21
  };
20
22
  export declare const HorizontalFilters: React.FC<HorizontalFiltersProps>;
21
23
  export {};
@@ -17,6 +17,8 @@ type GlobalFiltersProps = {
17
17
  variant: 'static' | 'floating';
18
18
  radius: string;
19
19
  };
20
+ addGlobalFilter?: JSX.Element;
21
+ filterOptions?: (column: string) => JSX.Element;
20
22
  };
21
23
  export declare const getFormattedFilterValue: (obj: {
22
24
  operator: string;
@@ -44,6 +46,7 @@ type FilterPopupProps = {
44
46
  variant: 'static' | 'floating';
45
47
  radius: string;
46
48
  };
49
+ filterOptions?: (column: string) => JSX.Element;
47
50
  };
48
51
  export declare const FilterPopup: React.FC<FilterPopupProps>;
49
52
  export {};
@@ -13,7 +13,8 @@ type Props = {
13
13
  variant: 'static' | 'floating';
14
14
  radius: string;
15
15
  };
16
+ tenancyLevel?: string;
16
17
  };
17
- export declare const MetricFilterDropDown: ({ rlsConditions, onChangeFilterValue, workspaceId, clientId, className, rlsConditionList, isAllClient, dropdownTheme, }: Props) => React.JSX.Element;
18
- declare const _default: React.MemoExoticComponent<({ rlsConditions, onChangeFilterValue, workspaceId, clientId, className, rlsConditionList, isAllClient, dropdownTheme, }: Props) => React.JSX.Element>;
18
+ export declare const MetricFilterDropDown: ({ rlsConditions, onChangeFilterValue, workspaceId, clientId, className, rlsConditionList, isAllClient, dropdownTheme, tenancyLevel, }: Props) => React.JSX.Element;
19
+ declare const _default: React.MemoExoticComponent<({ rlsConditions, onChangeFilterValue, workspaceId, clientId, className, rlsConditionList, isAllClient, dropdownTheme, tenancyLevel, }: Props) => React.JSX.Element>;
19
20
  export default _default;
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  type ThemeBlockProps = {
3
3
  colors: string[];
4
4
  bgColor?: string;
5
+ hideBackground?: boolean;
5
6
  };
6
- export declare const ThemeBlock: ({ colors, bgColor }: ThemeBlockProps) => React.JSX.Element;
7
+ export declare const ThemeBlock: ({ colors, bgColor, hideBackground, }: ThemeBlockProps) => React.JSX.Element;
7
8
  export {};