@databrainhq/plugin 0.11.17 → 0.11.18

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.
@@ -0,0 +1 @@
1
+ export declare const hasUniqueKeyValues: (array: Record<string, any>[], key1: string, key2: string) => boolean;
@@ -122,6 +122,10 @@ export type PivotSettingsType = {
122
122
  rows?: string[];
123
123
  columns?: string[];
124
124
  };
125
+ export type GaugeSettingsType = {
126
+ metric?: string;
127
+ dimensions?: string[];
128
+ };
125
129
  export type ChartSettingsType = {
126
130
  chartType: keyof typeof CHART_TYPES;
127
131
  margins?: MarginSettings;
@@ -136,6 +140,7 @@ export type ChartSettingsType = {
136
140
  customSettings?: CustomSettings;
137
141
  tableSettings?: TableSettings;
138
142
  pivotTableSettings?: PivotSettingsType;
143
+ gaugeSettings?: GaugeSettingsType;
139
144
  axisSettings?: AxisSettings;
140
145
  backGroundColor?: BackgroundSettings;
141
146
  timeSeriesSettings?: TimeSeriesSettingsType;
@@ -0,0 +1 @@
1
+ export * from './webcomponents'