@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.
- package/dist/helpers/hasUniqueKeyValues.d.ts +1 -0
- package/dist/types/app.d.ts +5 -0
- package/dist/webcomponents.es.d.ts +1 -0
- package/dist/webcomponents.es.js +16361 -16196
- package/dist/webcomponents.umd.js +143 -143
- package/package.json +5 -12
- package/dist/index.es.js +0 -97964
- package/dist/index.umd.js +0 -1885
- package/dist/style.css +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const hasUniqueKeyValues: (array: Record<string, any>[], key1: string, key2: string) => boolean;
|
package/dist/types/app.d.ts
CHANGED
|
@@ -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'
|