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.
- package/dist/chunks/{index-CNe92pwd.js → index-OlgLt7aM.js} +6909 -6960
- package/dist/chunks/{index-6FRhq_ij.js → index-XcoCF3Dr.js} +82 -82
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +76 -86
- package/dist/index.js +3079 -3166
- package/dist/types/dashboard.d.ts +2 -7
- package/dist/types/main.d.ts +3 -12
- package/dist/types/surfboard.d.ts +2 -7
- package/dist/types/types.d.ts +2 -7
- package/package.json +1 -1
|
@@ -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;
|
package/dist/types/main.d.ts
CHANGED
|
@@ -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 |
|
|
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;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -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;
|