@databrainhq/plugin 0.15.11 → 0.15.13-uat
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/README.md +233 -233
- package/dist/components/ChartPopup/components/UnderlyingData/index.d.ts +3 -1
- package/dist/components/ChartPopup/index.d.ts +4 -2
- package/dist/components/ChartSettingsPopup/components/ChartConfigure/PositionContainer.d.ts +2 -1
- package/dist/components/Flex/index.d.ts +1 -1
- package/dist/components/FloatingDropDown/index.d.ts +2 -1
- package/dist/components/GlobalFilters/Filters.d.ts +1 -0
- package/dist/components/GlobalFilters/HorizontalFilters.d.ts +1 -0
- package/dist/components/GlobalFilters/index.d.ts +2 -0
- package/dist/components/MetricChart/RawCsvDownloadButton.d.ts +10 -5
- package/dist/components/MetricList/components/FullScreenView/ChartPropertiesPanel.d.ts +12 -0
- package/dist/components/MultiSelectDropdown/index.d.ts +2 -1
- package/dist/components/PopoverMenu/index.d.ts +1 -0
- package/dist/hooks/useDashboardContext.d.ts +1 -0
- package/dist/hooks/useMetricCard.d.ts +3 -0
- package/dist/hooks/useNewEmbeddedDashboard.d.ts +1 -0
- package/dist/types/app.d.ts +10 -0
- package/dist/types/queryTypes.d.ts +1 -0
- package/dist/webcomponents.es.js +1908 -1149
- package/dist/webcomponents.umd.js +12 -12
- package/package.json +112 -112
package/dist/types/app.d.ts
CHANGED
|
@@ -115,6 +115,15 @@ export type CustomSettings = {
|
|
|
115
115
|
isEnableLabel?: boolean;
|
|
116
116
|
size?: string;
|
|
117
117
|
};
|
|
118
|
+
gaugeV2?: {
|
|
119
|
+
isEnableMarkerRange?: boolean;
|
|
120
|
+
isEnableMarkerValue?: boolean;
|
|
121
|
+
isEnableMarkerLabel?: boolean;
|
|
122
|
+
isEnableLegendRange?: boolean;
|
|
123
|
+
legendSize?: number;
|
|
124
|
+
markerSize?: number;
|
|
125
|
+
legendPosition?: string;
|
|
126
|
+
};
|
|
118
127
|
repulsion?: number;
|
|
119
128
|
markers?: {
|
|
120
129
|
isEnableMax?: boolean;
|
|
@@ -554,6 +563,7 @@ export type GlobalFilterColumn = {
|
|
|
554
563
|
isAutoSelectFilterValue?: boolean;
|
|
555
564
|
isEnableClearSelection?: boolean;
|
|
556
565
|
restrictedMetrics?: FloatingDropDownOption[];
|
|
566
|
+
isAppFilter?: boolean;
|
|
557
567
|
};
|
|
558
568
|
export type GlobalFilterType = {
|
|
559
569
|
tableName: string;
|
|
@@ -36,6 +36,7 @@ export type UseDashboardDataQueryOutputType = {
|
|
|
36
36
|
externalMetrics?: (any | null)[] | null;
|
|
37
37
|
rlsSettings?: any | null;
|
|
38
38
|
appFilters?: any | null;
|
|
39
|
+
dashboardAppFilters?: any | null;
|
|
39
40
|
workspace?: any | null;
|
|
40
41
|
sharingSettingsId?: string | null;
|
|
41
42
|
error?: {
|