@databrainhq/plugin 0.14.41 → 0.14.43

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.
@@ -7,6 +7,7 @@ type Props = {
7
7
  value: string;
8
8
  onChange: (value: string) => void;
9
9
  className?: string;
10
+ isDisabled?: boolean;
10
11
  };
11
- export declare const ColorField: ({ name, value, onChange, defaultValue, placeholder, label, className, }: Props) => React.JSX.Element;
12
+ export declare const ColorField: ({ name, value, onChange, defaultValue, placeholder, label, className, isDisabled, }: Props) => React.JSX.Element;
12
13
  export {};
@@ -19,6 +19,7 @@ type FiltersProps = {
19
19
  radius: string;
20
20
  };
21
21
  filterOptions?: (column: string) => JSX.Element;
22
+ tenancyLevel: string;
22
23
  };
23
24
  export declare const Filters: React.FC<FiltersProps>;
24
25
  export {};
@@ -18,6 +18,7 @@ type HorizontalFiltersProps = {
18
18
  };
19
19
  addGlobalFilter?: JSX.Element;
20
20
  filterOptions?: (column: string) => JSX.Element;
21
+ tenancyLevel: string;
21
22
  };
22
23
  export declare const HorizontalFilters: React.FC<HorizontalFiltersProps>;
23
24
  export {};
@@ -18,6 +18,7 @@ type GlobalFiltersProps = {
18
18
  };
19
19
  addGlobalFilter?: JSX.Element;
20
20
  filterOptions?: (column: string) => JSX.Element;
21
+ tenancyLevel: string;
21
22
  };
22
23
  export declare const getFormattedFilterValue: (obj: {
23
24
  operator: string;
@@ -46,6 +47,7 @@ type FilterPopupProps = {
46
47
  radius: string;
47
48
  };
48
49
  filterOptions?: (column: string) => JSX.Element;
50
+ tenancyLevel: string;
49
51
  };
50
52
  export declare const FilterPopup: React.FC<FilterPopupProps>;
51
53
  export {};