@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/dist/components/MetricCreation/components/MetricOutput/components/ChartTab/index.d.ts +2 -1
- package/dist/components/Select/index.d.ts +4 -2
- package/dist/components/TimeGrainField/index.d.ts +2 -2
- package/dist/components/index.d.ts +0 -1
- package/dist/index.es.js +4084 -4117
- package/dist/index.umd.js +57 -57
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/MetricFilters/MetricFilters.d.ts +0 -11
- package/dist/components/MetricFilters/MultipleTimeGrain.d.ts +0 -9
- package/dist/components/MetricFilters/index.d.ts +0 -2
package/dist/components/MetricCreation/components/MetricOutput/components/ChartTab/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ declare type Props = {
|
|
|
44
44
|
isLoading: boolean;
|
|
45
45
|
backGroundColor: BackgroundSettings;
|
|
46
46
|
setBackGroundColor: React.Dispatch<React.SetStateAction<BackgroundSettings>>;
|
|
47
|
+
headerChild?: JSX.Element;
|
|
47
48
|
};
|
|
48
|
-
export declare const ChartTab: ({ labels, datasets, funnelData, chartType, setChartType, data, setXAxis, setYAxisList, xAxis, setMeasure, setStep, step, measure, setSankeyValues, sankeyData, singleValue, setSingleValue, singleValueData, setMargins, margins, legendSettings, setLegendSettings, labelSettings, setLabelSettings, customSettings, setCustomSettings, axisSettings, setAxisSettings, updateGroup, isLoading, isEnableGroupBy, backGroundColor, setBackGroundColor, }: Props) => JSX.Element;
|
|
49
|
+
export declare const ChartTab: ({ labels, datasets, funnelData, chartType, setChartType, data, setXAxis, setYAxisList, xAxis, setMeasure, setStep, step, measure, setSankeyValues, sankeyData, singleValue, setSingleValue, singleValueData, setMargins, margins, legendSettings, setLegendSettings, labelSettings, setLabelSettings, customSettings, setCustomSettings, axisSettings, setAxisSettings, updateGroup, isLoading, isEnableGroupBy, backGroundColor, setBackGroundColor, headerChild, }: Props) => JSX.Element;
|
|
49
50
|
export {};
|
|
@@ -14,14 +14,15 @@ declare type SelectInput = {
|
|
|
14
14
|
defaultValue?: string | number | boolean;
|
|
15
15
|
children?: React.ReactNode;
|
|
16
16
|
className?: string;
|
|
17
|
+
containerClass?: string;
|
|
17
18
|
isSearchEnabled?: boolean;
|
|
18
19
|
};
|
|
19
20
|
declare type HookSelectInput = Omit<SelectInput, 'value'> & {
|
|
20
21
|
control: Control;
|
|
21
22
|
name: string;
|
|
22
23
|
};
|
|
23
|
-
export declare const Select: ({ label, options, onChange, value, defaultValue, children, placeHolder, className, isSearchEnabled, }: SelectInput) => JSX.Element;
|
|
24
|
-
export declare const HookSelect: ({ control, name,
|
|
24
|
+
export declare const Select: ({ label, options, onChange, value, defaultValue, children, placeHolder, className, containerClass, isSearchEnabled, }: SelectInput) => JSX.Element;
|
|
25
|
+
export declare const HookSelect: ({ control, name, ...props }: HookSelectInput) => JSX.Element;
|
|
25
26
|
export declare const SelectWithSubValue: ({ label, options, onChange, value, defaultValue, }: any) => JSX.Element;
|
|
26
27
|
export declare const DropDown: ({ control, name, options, label, defaultValue, }: HookSelectInput) => JSX.Element;
|
|
27
28
|
declare type MultiSelectProps = {
|
|
@@ -32,6 +33,7 @@ declare type MultiSelectProps = {
|
|
|
32
33
|
label?: string;
|
|
33
34
|
name: string;
|
|
34
35
|
className?: string;
|
|
36
|
+
containerClass?: string;
|
|
35
37
|
children?: React.ReactNode;
|
|
36
38
|
placeHolder?: string;
|
|
37
39
|
onClick?: any;
|
|
@@ -7,7 +7,7 @@ declare type Props = {
|
|
|
7
7
|
register?: UseFormRegister<FieldValues>;
|
|
8
8
|
className?: string;
|
|
9
9
|
isDisabled?: boolean;
|
|
10
|
-
|
|
10
|
+
containerClass?: string;
|
|
11
11
|
};
|
|
12
|
-
export declare const TimeGrainField: ({ isShowlabel, timeGrainValue, setTimeGrainValue, register, className, isDisabled,
|
|
12
|
+
export declare const TimeGrainField: ({ isShowlabel, timeGrainValue, setTimeGrainValue, register, className, isDisabled, containerClass, }: Props) => JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -13,7 +13,6 @@ export * from './InfoTooltip';
|
|
|
13
13
|
export * from './InputField';
|
|
14
14
|
export * from './MetricChart';
|
|
15
15
|
export * from './MetricCreation';
|
|
16
|
-
export * from './MetricFilters';
|
|
17
16
|
export * from './MetricList';
|
|
18
17
|
export * from './MetricTable';
|
|
19
18
|
export * from './Modal';
|