react-semaphor 0.0.432 → 0.0.433

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.
@@ -206,6 +206,8 @@ declare type Granularity = 'day' | 'week' | 'month' | 'year';
206
206
 
207
207
  declare interface GroupByColumn extends BaseColumn {
208
208
  role: 'groupby';
209
+ granularity?: Granularity;
210
+ format?: string;
209
211
  }
210
212
 
211
213
  export declare type HtmlOptions = {
@@ -275,7 +277,6 @@ export declare type Placeholders = {
275
277
 
276
278
  declare interface QueryConfig {
277
279
  groupByColumns?: GroupByColumn[];
278
- trendByColumns?: TrendByColumn[];
279
280
  metricColumns?: MetricColumn[];
280
281
  filterColumns?: FilterByColumn[];
281
282
  filters?: {
@@ -567,12 +568,6 @@ export declare type TLens = {
567
568
  shared?: boolean;
568
569
  };
569
570
 
570
- declare interface TrendByColumn extends BaseColumn {
571
- role: 'trendby';
572
- granularity?: Granularity;
573
- format?: string;
574
- }
575
-
576
571
  export declare type TSheet = {
577
572
  id: string;
578
573
  title?: string;
@@ -115,15 +115,11 @@ declare type Actions_2 = {
115
115
  removeColumnFromMetricColumns: (columnId: string) => void;
116
116
  addColumnToGroupBy: (column: GroupByColumn) => void;
117
117
  addColumnToMetricColumns: (column: MetricColumn) => void;
118
- setTrendByColumns: (trendByColumns: TrendByColumn[]) => void;
119
- addColumnToTrendByColumns: (column: TrendByColumn) => void;
120
- removeColumnFromTrendByColumns: (columnId: string) => void;
121
118
  setFilterColumns: (filterColumns: FilterByColumn[]) => void;
122
119
  addColumnToFilterColumns: (column: FilterByColumn) => void;
123
120
  removeColumnFromFilterColumns: (columnId: string) => void;
124
121
  updateMetricColumn: (columnId: string, column: MetricColumn) => void;
125
122
  updateGroupByColumn: (columnId: string, column: GroupByColumn) => void;
126
- updateTrendByColumn: (columnId: string, column: TrendByColumn) => void;
127
123
  updateFilterColumn: (columnId: string, column: FilterByColumn) => void;
128
124
  setCurrentAssitantScope: (currentAssitantScope: AIScopeTable[]) => void;
129
125
  setChartGrid: (chartGrid: 'xy' | 'x' | 'y' | 'none') => void;
@@ -523,6 +519,8 @@ export declare type Granularity = 'day' | 'week' | 'month' | 'year';
523
519
 
524
520
  export declare interface GroupByColumn extends BaseColumn {
525
521
  role: 'groupby';
522
+ granularity?: Granularity;
523
+ format?: string;
526
524
  }
527
525
 
528
526
  export declare type HtmlOptions = {
@@ -602,11 +600,10 @@ export declare type Placeholders = {
602
600
  SessionExpired?: React.ReactNode;
603
601
  };
604
602
 
605
- export declare type QueryColumn = GroupByColumn | TrendByColumn | MetricColumn | FilterByColumn;
603
+ export declare type QueryColumn = GroupByColumn | MetricColumn | FilterByColumn;
606
604
 
607
605
  export declare interface QueryConfig {
608
606
  groupByColumns?: GroupByColumn[];
609
- trendByColumns?: TrendByColumn[];
610
607
  metricColumns?: MetricColumn[];
611
608
  filterColumns?: FilterByColumn[];
612
609
  filters?: {
@@ -944,12 +941,6 @@ export declare type TLens = {
944
941
  shared?: boolean;
945
942
  };
946
943
 
947
- export declare interface TrendByColumn extends BaseColumn {
948
- role: 'trendby';
949
- granularity?: Granularity;
950
- format?: string;
951
- }
952
-
953
944
  export declare type TSelectedRecord = ComboBoxOption;
954
945
 
955
946
  export declare type TSheet = {
@@ -209,6 +209,8 @@ declare type Granularity = 'day' | 'week' | 'month' | 'year';
209
209
 
210
210
  declare interface GroupByColumn extends BaseColumn {
211
211
  role: 'groupby';
212
+ granularity?: Granularity;
213
+ format?: string;
212
214
  }
213
215
 
214
216
  export declare type HtmlOptions = {
@@ -278,7 +280,6 @@ export declare type Placeholders = {
278
280
 
279
281
  declare interface QueryConfig {
280
282
  groupByColumns?: GroupByColumn[];
281
- trendByColumns?: TrendByColumn[];
282
283
  metricColumns?: MetricColumn[];
283
284
  filterColumns?: FilterByColumn[];
284
285
  filters?: {
@@ -572,12 +573,6 @@ export declare type TLens = {
572
573
  shared?: boolean;
573
574
  };
574
575
 
575
- declare interface TrendByColumn extends BaseColumn {
576
- role: 'trendby';
577
- granularity?: Granularity;
578
- format?: string;
579
- }
580
-
581
576
  export declare type TSheet = {
582
577
  id: string;
583
578
  title?: string;
@@ -203,6 +203,8 @@ declare type Granularity = 'day' | 'week' | 'month' | 'year';
203
203
 
204
204
  declare interface GroupByColumn extends BaseColumn {
205
205
  role: 'groupby';
206
+ granularity?: Granularity;
207
+ format?: string;
206
208
  }
207
209
 
208
210
  export declare type HtmlOptions = {
@@ -272,7 +274,6 @@ export declare type Placeholders = {
272
274
 
273
275
  declare interface QueryConfig {
274
276
  groupByColumns?: GroupByColumn[];
275
- trendByColumns?: TrendByColumn[];
276
277
  metricColumns?: MetricColumn[];
277
278
  filterColumns?: FilterByColumn[];
278
279
  filters?: {
@@ -564,12 +565,6 @@ export declare type TLens = {
564
565
  shared?: boolean;
565
566
  };
566
567
 
567
- declare interface TrendByColumn extends BaseColumn {
568
- role: 'trendby';
569
- granularity?: Granularity;
570
- format?: string;
571
- }
572
-
573
568
  export declare type TSheet = {
574
569
  id: string;
575
570
  title?: string;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "email": "support@semaphor.cloud"
6
6
  },
7
7
  "license": "MIT",
8
- "version": "0.0.432",
8
+ "version": "0.0.433",
9
9
  "description": "Fully interactive and customizable dashboards for your apps.",
10
10
  "keywords": [
11
11
  "react",