@databrainhq/plugin 0.7.6 → 0.7.8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databrainhq/plugin",
3
- "version": "0.7.6",
3
+ "version": "0.7.8",
4
4
  "description": "Databrain app dashboard ui plugin.",
5
5
  "author": "",
6
6
  "license": "MIT",
@@ -1,11 +0,0 @@
1
- /// <reference types="react" />
2
- import { PopoverMenuProps } from '@/components/PopoverMenu';
3
- import { RlsCondition } from '@/types/app';
4
- declare type Props = Partial<PopoverMenuProps> & {
5
- rlsConditions: RlsCondition[];
6
- onChangeFilterValue: (name: string, value: string) => void;
7
- dbName: string;
8
- iconClass?: string;
9
- };
10
- export declare const MetricFilters: ({ rlsConditions, onChangeFilterValue, dbName, iconClass, ...rest }: Props) => JSX.Element;
11
- export {};
@@ -1,9 +0,0 @@
1
- /// <reference types="react" />
2
- declare type Props = {
3
- columnName: string;
4
- dbName: string;
5
- onChangeFilterValue: (name: string, value: string) => void;
6
- name: string;
7
- };
8
- export declare const MultipleTimeGrain: ({ columnName, dbName, onChangeFilterValue, name, }: Props) => JSX.Element;
9
- export {};
@@ -1,2 +0,0 @@
1
- export * from './MetricFilters';
2
- export * from './MultipleTimeGrain';