@databrainhq/plugin 0.11.31 → 0.11.32
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/ChartSettingsPopup/ChartSettingsPopup.d.ts +2 -1
- package/dist/components/ChartSettingsPopup/components/ChartSettings/index.d.ts +2 -1
- package/dist/components/InputField/index.d.ts +2 -1
- package/dist/components/MetricList/components/FullScreenView/index.d.ts +2 -1
- package/dist/components/PopoverMenu/index.d.ts +1 -1
- package/dist/webcomponents.es.js +14528 -14499
- package/dist/webcomponents.umd.js +150 -150
- package/package.json +1 -1
|
@@ -9,5 +9,6 @@ export type ChartSettingsPopupProps = Partial<Pick<PopoverMenuProps, 'buttonClas
|
|
|
9
9
|
groupbyList: any[];
|
|
10
10
|
hasNumberKeys: boolean;
|
|
11
11
|
isEnableGauge: boolean;
|
|
12
|
+
isShowChartConfigTab?: boolean;
|
|
12
13
|
};
|
|
13
|
-
export declare const ChartSettingsPopup: ({ data, settings, setSettings, buttonClass, menuClass, menuContainerClass, className, position, isEnablePivotTable, groupbyList, hasNumberKeys, isEnableGauge, }: ChartSettingsPopupProps) => React.JSX.Element;
|
|
14
|
+
export declare const ChartSettingsPopup: ({ data, settings, setSettings, buttonClass, menuClass, menuContainerClass, className, position, isEnablePivotTable, groupbyList, hasNumberKeys, isEnableGauge, isShowChartConfigTab, }: ChartSettingsPopupProps) => React.JSX.Element;
|
|
@@ -8,6 +8,7 @@ type Props = {
|
|
|
8
8
|
groupbyList: any[];
|
|
9
9
|
hasNumberKeys: boolean;
|
|
10
10
|
isEnableGauge: boolean;
|
|
11
|
+
isShowChartConfigTab?: boolean;
|
|
11
12
|
};
|
|
12
|
-
export declare const ChartSettings: ({ data, chartSettings, setChartSettings, isEnablePivotTable, groupbyList, hasNumberKeys, isEnableGauge, }: Props) => React.JSX.Element;
|
|
13
|
+
export declare const ChartSettings: ({ data, chartSettings, setChartSettings, isEnablePivotTable, groupbyList, hasNumberKeys, isEnableGauge, isShowChartConfigTab, }: Props) => React.JSX.Element;
|
|
13
14
|
export {};
|
|
@@ -10,6 +10,7 @@ interface Props extends React.HTMLProps<HTMLInputElement> {
|
|
|
10
10
|
labelClass?: string;
|
|
11
11
|
inputClass?: string;
|
|
12
12
|
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
13
|
+
elementRef?: React.Ref<HTMLInputElement>;
|
|
13
14
|
}
|
|
14
|
-
export declare const InputField: ({ type, register, error, icon, label, isDisabled, labelClass, inputClass, className, labelVariant, id, ...rest }: Props) => React.JSX.Element;
|
|
15
|
+
export declare const InputField: ({ type, register, error, icon, label, isDisabled, labelClass, inputClass, className, labelVariant, id, elementRef, ...rest }: Props) => React.JSX.Element;
|
|
15
16
|
export {};
|
|
@@ -17,5 +17,6 @@ export type FullScreenViewProps = {
|
|
|
17
17
|
isAllowedToUpdateMetrics?: boolean;
|
|
18
18
|
sharingSettingsId?: string;
|
|
19
19
|
isInternalApp?: boolean;
|
|
20
|
+
isShowChartConfigTab?: boolean;
|
|
20
21
|
};
|
|
21
|
-
export declare const FullScreenView: ({ metric, colors, rlsFilters, onMinimize, clientId, tenancyLevel, companyId, externalDashboardId, userProvidedDashboardId, isAllowedToUpdateMetrics, sharingSettingsId, appFilters, isInternalApp, }: FullScreenViewProps) => React.JSX.Element;
|
|
22
|
+
export declare const FullScreenView: ({ metric, colors, rlsFilters, onMinimize, clientId, tenancyLevel, companyId, externalDashboardId, userProvidedDashboardId, isAllowedToUpdateMetrics, sharingSettingsId, appFilters, isInternalApp, isShowChartConfigTab, }: FullScreenViewProps) => React.JSX.Element;
|
|
@@ -4,7 +4,7 @@ export type PopoverMenuProps = React.PropsWithChildren & {
|
|
|
4
4
|
menuClass?: string;
|
|
5
5
|
buttonClass?: string;
|
|
6
6
|
menuContainerClass?: string;
|
|
7
|
-
|
|
7
|
+
buttonContent: React.ReactNode;
|
|
8
8
|
isDisabled?: boolean;
|
|
9
9
|
position?: 'left' | 'right' | 'top' | 'bottom' | 'left-bottom-end' | 'right-bottom-end' | 'left-top-end' | 'right-top-end' | 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right' | 'left-bottom' | 'left-top' | 'right-bottom' | 'right-top' | 'center';
|
|
10
10
|
};
|