@databrainhq/plugin 0.7.0 → 0.7.2
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/Button/index.d.ts +2 -2
- package/dist/components/DataType/index.d.ts +2 -3
- package/dist/components/Error/index.d.ts +2 -2
- package/dist/components/ErrorFallback/index.d.ts +2 -0
- package/dist/components/ExternalMetricForm/index.d.ts +2 -2
- package/dist/components/FilterField/index.d.ts +4 -3
- package/dist/components/FloatingDropDown/index.d.ts +5 -6
- package/dist/components/GlobalFilters/index.d.ts +3 -2
- package/dist/components/InfoTooltip/index.d.ts +8 -5
- package/dist/components/InputField/index.d.ts +5 -15
- package/dist/components/MetricCreation/components/MetricOutput/MetricOutput.d.ts +1 -1
- package/dist/components/MetricList/components/MetricCard.d.ts +1 -0
- package/dist/components/SearchTab/index.d.ts +1 -2
- package/dist/components/Tab/index.d.ts +2 -2
- package/dist/components/Table/index.d.ts +2 -2
- package/dist/components/Text/index.d.ts +3 -3
- package/dist/components/TextAreaField/index.d.ts +2 -2
- package/dist/components/TimeGrainField/index.d.ts +2 -2
- package/dist/components/ToggleButton/index.d.ts +2 -2
- package/dist/components/index.d.ts +28 -0
- package/dist/containers/Dashboard/Dashboard.d.ts +4 -0
- package/dist/containers/Dashboard/index.d.ts +2 -0
- package/dist/containers/index.d.ts +1 -1
- package/dist/index.d.ts +6 -5
- package/dist/index.es.js +9408 -7677
- package/dist/index.umd.js +61 -58
- package/dist/style.css +1 -1
- package/dist/types/metricCreate.d.ts +6 -2
- package/package.json +3 -3
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { AxisSettings, BackgroundSettings, CustomSettings, LabelSettings, LegendSettings, RlsCondition } from './app';
|
|
3
|
-
import { FloatingDropDownOption } from '@/components/FloatingDropDown';
|
|
2
|
+
import { AxisSettings, BackgroundSettings, CustomSettings, LabelSettings, LegendSettings, RlsCondition, FloatingDropDownOption } from './app';
|
|
4
3
|
declare type ColumnData = {
|
|
5
4
|
name: string;
|
|
6
5
|
datatype: string;
|
|
@@ -102,6 +101,11 @@ export declare type MetricOutputProps = {
|
|
|
102
101
|
setBackGroundColor: React.Dispatch<React.SetStateAction<BackgroundSettings>>;
|
|
103
102
|
rlsConditions?: RlsCondition[] | undefined;
|
|
104
103
|
onChangeFilterValue?: (name: string, value: string) => void;
|
|
104
|
+
moreTabs?: {
|
|
105
|
+
name: string;
|
|
106
|
+
tab: JSX.Element;
|
|
107
|
+
tabContent: JSX.Element;
|
|
108
|
+
}[];
|
|
105
109
|
};
|
|
106
110
|
export declare type CompanyIntegration = {
|
|
107
111
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@databrainhq/plugin",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "Databrain app dashboard ui plugin.",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "MIT",
|
|
@@ -80,13 +80,13 @@
|
|
|
80
80
|
"dist"
|
|
81
81
|
],
|
|
82
82
|
"dependencies": {
|
|
83
|
-
"@headlessui/react": "^1.7.
|
|
83
|
+
"@headlessui/react": "^1.7.2",
|
|
84
84
|
"classnames": "^2.3.2",
|
|
85
85
|
"echarts": "^5.4.1",
|
|
86
86
|
"echarts-for-react": "^3.0.2",
|
|
87
87
|
"react-error-boundary": "^3.1.4",
|
|
88
88
|
"react-grid-layout": "^1.3.4",
|
|
89
|
-
"react-hook-form": "^7.
|
|
89
|
+
"react-hook-form": "^7.33.1",
|
|
90
90
|
"react-query": "^3.39.2"
|
|
91
91
|
},
|
|
92
92
|
"peerDependencies": {
|