autoql-fe-utils 1.0.4 → 1.0.6
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/index.d.ts +531 -87
- package/dist/index.global.js +17819 -5351
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +2407 -3170
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2372 -3217
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import dayjs from 'dayjs';
|
|
2
|
-
import
|
|
2
|
+
import axios from 'axios';
|
|
3
3
|
|
|
4
4
|
declare const capitalizeFirstChar: (string: any) => any;
|
|
5
5
|
declare const isNumber: (str: any) => boolean;
|
|
@@ -53,7 +53,7 @@ declare enum DisplayTypes {
|
|
|
53
53
|
COLUMN_LINE = "column_line"
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
interface
|
|
56
|
+
interface RawColumn {
|
|
57
57
|
type: ColumnTypes;
|
|
58
58
|
precision?: string;
|
|
59
59
|
dow_style?: string;
|
|
@@ -62,6 +62,8 @@ interface Column$1 {
|
|
|
62
62
|
display_name?: string;
|
|
63
63
|
is_visible?: boolean;
|
|
64
64
|
multi_series?: boolean;
|
|
65
|
+
}
|
|
66
|
+
interface Column$1 extends RawColumn {
|
|
65
67
|
aggType?: string;
|
|
66
68
|
title?: string;
|
|
67
69
|
origColumn?: Column$1;
|
|
@@ -71,9 +73,11 @@ interface Column$1 {
|
|
|
71
73
|
frozen?: boolean;
|
|
72
74
|
visible?: boolean;
|
|
73
75
|
field?: string;
|
|
76
|
+
index?: number;
|
|
74
77
|
cssClass?: string;
|
|
75
78
|
pivot?: boolean;
|
|
76
79
|
formatter?: Function;
|
|
80
|
+
drilldownGroupby?: any;
|
|
77
81
|
}
|
|
78
82
|
interface FilterLock {
|
|
79
83
|
filter_type: string;
|
|
@@ -119,7 +123,7 @@ interface QueryData {
|
|
|
119
123
|
rows: Rows;
|
|
120
124
|
chart_images: null;
|
|
121
125
|
display_type: string;
|
|
122
|
-
columns:
|
|
126
|
+
columns: RawColumn[];
|
|
123
127
|
interpretation: string;
|
|
124
128
|
text: string;
|
|
125
129
|
parsed_interpretation: ParsedInterpretation;
|
|
@@ -195,9 +199,14 @@ type TableConfig = {
|
|
|
195
199
|
|
|
196
200
|
declare const TABLE_TYPES: string[];
|
|
197
201
|
declare const CHART_TYPES: string[];
|
|
202
|
+
declare const CHARTS_WITHOUT_LEGENDS: string[];
|
|
198
203
|
declare const CHARTS_WITHOUT_AGGREGATED_DATA: string[];
|
|
199
204
|
declare const DATE_ONLY_CHART_TYPES: string[];
|
|
200
205
|
declare const DOUBLE_AXIS_CHART_TYPES: string[];
|
|
206
|
+
declare const CHARTS_WITHOUT_AXES: string[];
|
|
207
|
+
declare const DEFAULT_CHART_CONFIG: {
|
|
208
|
+
isScaled: boolean;
|
|
209
|
+
};
|
|
201
210
|
declare const MONTH_NAMES: string[];
|
|
202
211
|
declare const DEFAULT_DATA_PAGE_SIZE = 500;
|
|
203
212
|
declare const MAX_DATA_PAGE_SIZE = 5000;
|
|
@@ -429,6 +438,8 @@ declare class Column {
|
|
|
429
438
|
isNumberType: boolean;
|
|
430
439
|
isStringType: boolean;
|
|
431
440
|
isDateType: boolean;
|
|
441
|
+
drilldownGroupby: any;
|
|
442
|
+
getTooltip: Function;
|
|
432
443
|
constructor(options: Column$1);
|
|
433
444
|
}
|
|
434
445
|
interface Column extends Column$1 {
|
|
@@ -512,8 +523,31 @@ declare const getDataConfig: (prop?: {}) => {
|
|
|
512
523
|
numberColumnIndex: number;
|
|
513
524
|
};
|
|
514
525
|
|
|
515
|
-
declare const
|
|
516
|
-
declare const
|
|
526
|
+
declare const CHART_PADDING = 0;
|
|
527
|
+
declare const BUTTON_PADDING = 5;
|
|
528
|
+
declare const AXIS_TITLE_PADDING_TOP = 20;
|
|
529
|
+
declare const AXIS_TITLE_PADDING_BOTTOM = 0;
|
|
530
|
+
declare const AXIS_TITLE_BORDER_PADDING_LEFT = 5;
|
|
531
|
+
declare const AXIS_TITLE_BORDER_PADDING_TOP = 3;
|
|
532
|
+
declare const LOAD_MORE_DROPDOWN_PADDING_BOTTOM = 10;
|
|
533
|
+
declare const MINIMUM_TITLE_LENGTH = 10;
|
|
534
|
+
declare const LABEL_FONT_SIZE = 10;
|
|
535
|
+
declare const TITLE_FONT_SIZE = 12;
|
|
536
|
+
declare const LEGEND_BORDER_PADDING = 15;
|
|
537
|
+
declare const LEGEND_BORDER_THICKNESS = 1;
|
|
538
|
+
declare const HORIZONTAL_LEGEND_SPACING = 20;
|
|
539
|
+
declare const VERTICAL_LEGEND_SPACING = 25;
|
|
540
|
+
declare const LEGEND_SHAPE_SIZE = 75;
|
|
541
|
+
declare const LEGEND_TOP_ADJUSTMENT = 15;
|
|
542
|
+
declare const DEFAULT_MAX_LEGEND_WIDTH = 140;
|
|
543
|
+
declare const DEFAULT_LEGEND_PADDING_LEFT = 10;
|
|
544
|
+
declare const DEFAULT_LEGEND_PADDING_RIGHT = 10;
|
|
545
|
+
declare const DEFAULT_LEGEND_PADDING_TOP = 10;
|
|
546
|
+
declare const DEFAULT_LEGEND_PADDING_BOTTOM = 10;
|
|
547
|
+
declare const PATH_SMOOTHING = 0.2;
|
|
548
|
+
|
|
549
|
+
declare const constructRTArray: (interpretation: ParsedInterpretation) => ParsedInterpretationChunk[] | undefined;
|
|
550
|
+
declare const getDatesFromRT: (queryResponse: AxiosResponse) => any;
|
|
517
551
|
declare const getTimeRangeFromDateArray: (dates: any) => "DAY" | "MONTH" | "WEEK";
|
|
518
552
|
declare const getTimeRangeFromRT: (queryResponse: any) => "DAY" | "MONTH" | "WEEK";
|
|
519
553
|
declare const getTimeFrameTextFromChunk: (chunk: any) => string;
|
|
@@ -526,6 +560,7 @@ declare const nameValueObject: (name: any, value: any) => {
|
|
|
526
560
|
value: any;
|
|
527
561
|
};
|
|
528
562
|
declare const getKeyByValue: (object: any, value: any) => string;
|
|
563
|
+
declare const cloneObject: (from: any, to: any) => any;
|
|
529
564
|
|
|
530
565
|
declare const roundToNearestMultiple: (value: any, multiple?: number) => number;
|
|
531
566
|
declare const roundDownToNearestMultiple: (value: any, multiple?: number) => number;
|
|
@@ -549,6 +584,7 @@ declare const getPadding: (element: any) => {
|
|
|
549
584
|
bottom: number;
|
|
550
585
|
};
|
|
551
586
|
declare const getQueryParams: (url: any) => {};
|
|
587
|
+
declare const getSVGBase64: (svgElement: any) => string;
|
|
552
588
|
/**
|
|
553
589
|
* converts an svg string to base64 png using the domUrl
|
|
554
590
|
* @param {string} svgElement the svgElement
|
|
@@ -558,7 +594,6 @@ declare const getQueryParams: (url: any) => {};
|
|
|
558
594
|
*/
|
|
559
595
|
declare const svgToPng: (svgElement: any, scale?: number) => Promise<unknown>;
|
|
560
596
|
declare const getBBoxFromRef: (ref: any) => any;
|
|
561
|
-
declare const getSVGBase64: (svgElement: any) => string;
|
|
562
597
|
|
|
563
598
|
interface getSupportedDisplayTypesParams {
|
|
564
599
|
response?: AxiosResponse;
|
|
@@ -580,12 +615,14 @@ declare const usePivotDataForChart: (response: any) => boolean;
|
|
|
580
615
|
declare const supportsRegularPivotTable: (columns: any, data?: any, dataLength?: any) => boolean;
|
|
581
616
|
declare const supportsDatePivotTable: (columns: any) => boolean;
|
|
582
617
|
declare const isSingleValueResponse: (response: any) => boolean;
|
|
583
|
-
declare const getUniqueYearsForColumn: (data: any, columns: any, index: any) => any
|
|
618
|
+
declare const getUniqueYearsForColumn: (data: any, columns: any, index: any) => any;
|
|
584
619
|
declare const getSupportedDisplayTypes: ({ response, columns, dataLength, pivotDataLength, isDataLimited, }?: getSupportedDisplayTypesParams) => string[];
|
|
585
620
|
declare const getFirstChartDisplayType: (supportedDisplayTypes: any, fallback: any) => any;
|
|
586
621
|
declare const getDefaultDisplayType: (response?: AxiosResponse, defaultToChart?: boolean, columns?: Column$1[], dataLength?: number, pivotDataLength?: number, preferredDisplayType?: string, isDataLimited?: boolean) => string;
|
|
587
622
|
declare const hasData: (response: any) => any;
|
|
588
623
|
declare const hasMoreData: (response: any, currentNumRows: any) => boolean;
|
|
624
|
+
declare const isDataLimited: (queryResponse: any, rows?: any) => boolean;
|
|
625
|
+
declare const isDrilldown: (queryResponse: any) => boolean;
|
|
589
626
|
|
|
590
627
|
declare const isISODate: (str: any) => boolean;
|
|
591
628
|
declare const getDateRangeIntersection: (aRange: any, bRange: any) => {
|
|
@@ -599,8 +636,8 @@ declare const getStartAndEndDateFromDateStrs: (dateRangeStrs: any) => {
|
|
|
599
636
|
startDate: Date;
|
|
600
637
|
endDate: Date;
|
|
601
638
|
};
|
|
602
|
-
declare const getDateRangesFromInterpretation: (parsedInterpretation: any) => any
|
|
603
|
-
declare const getColumnDateRanges: (response: any) => any
|
|
639
|
+
declare const getDateRangesFromInterpretation: (parsedInterpretation: any) => any;
|
|
640
|
+
declare const getColumnDateRanges: (response: any) => any;
|
|
604
641
|
declare const getEpochFromDate: (date: any, precision?: any, precisionFrame?: any) => any;
|
|
605
642
|
declare const getDayjsObjForStringType: (value: any, col: any) => dayjs.Dayjs;
|
|
606
643
|
declare const getDayJSObj: ({ value, column }: {
|
|
@@ -634,7 +671,7 @@ declare const countDecimals: (number: any) => any;
|
|
|
634
671
|
declare const formatChartLabel: ({ d, scale, column, dataFormatting, maxLabelWidth, sigDigits, }: {
|
|
635
672
|
d: number | string;
|
|
636
673
|
scale?: any;
|
|
637
|
-
column
|
|
674
|
+
column?: Column$1;
|
|
638
675
|
dataFormatting?: DataFormatting;
|
|
639
676
|
maxLabelWidth?: number;
|
|
640
677
|
sigDigits?: number;
|
|
@@ -694,12 +731,12 @@ declare const getVisibleColumns: (columns: any) => Column$1[];
|
|
|
694
731
|
declare const getHiddenColumns: (columns: Column$1[]) => Column$1[];
|
|
695
732
|
declare const areSomeColumnsHidden: (columns: Column$1[]) => boolean;
|
|
696
733
|
declare const areAllColumnsHidden: (columns: Column$1[]) => boolean;
|
|
697
|
-
declare const getGroupableColumns: (columns: any) => any
|
|
734
|
+
declare const getGroupableColumns: (columns: any) => any;
|
|
698
735
|
declare const getGroupBys: (row: any, columns: any) => {
|
|
699
|
-
groupBys: any
|
|
736
|
+
groupBys: any;
|
|
700
737
|
supportedByAPI: boolean;
|
|
701
738
|
};
|
|
702
|
-
declare const getGroupBysFromTable: (cell: any, tableColumns: any) => any
|
|
739
|
+
declare const getGroupBysFromTable: (cell: any, tableColumns: any) => any;
|
|
703
740
|
declare const getGroupBysFromPivotTable: ({ cell, rowHeaders, columnHeaders, rowHeaderDefinition, columnHeaderDefinition, }: {
|
|
704
741
|
cell: any;
|
|
705
742
|
rowHeaders: any;
|
|
@@ -734,36 +771,48 @@ declare const formatQueryColumns: ({ columns, aggConfig, queryResponse, onTableH
|
|
|
734
771
|
onTableHeaderClick?: Function;
|
|
735
772
|
enableTableSorting?: boolean;
|
|
736
773
|
dataFormatting?: DataFormatting;
|
|
737
|
-
}) => Column$1[];
|
|
774
|
+
}) => Column$1[] | undefined;
|
|
738
775
|
declare const getStringColumnIndices: (columns: any, supportsPivot?: boolean) => {
|
|
739
|
-
stringColumnIndices: any
|
|
776
|
+
stringColumnIndices: any;
|
|
740
777
|
stringColumnIndex: any;
|
|
778
|
+
legendColumnIndex?: undefined;
|
|
779
|
+
} | {
|
|
780
|
+
stringColumnIndex: any;
|
|
781
|
+
stringColumnIndices: any;
|
|
782
|
+
legendColumnIndex: any;
|
|
741
783
|
};
|
|
742
|
-
declare const getNumberColumnIndices: (columns: any, isPivot
|
|
784
|
+
declare const getNumberColumnIndices: (columns: any, isPivot?: any) => {
|
|
743
785
|
numberColumnIndex: any;
|
|
744
|
-
numberColumnIndices: any
|
|
745
|
-
numberColumnIndices2: any
|
|
786
|
+
numberColumnIndices: any;
|
|
787
|
+
numberColumnIndices2: any;
|
|
746
788
|
numberColumnIndex2: any;
|
|
747
|
-
currencyColumnIndices: any
|
|
789
|
+
currencyColumnIndices: any;
|
|
790
|
+
quantityColumnIndices: any;
|
|
791
|
+
ratioColumnIndices: any;
|
|
748
792
|
currencyColumnIndex: any;
|
|
749
|
-
quantityColumnIndices: any[];
|
|
750
793
|
quantityColumnIndex: any;
|
|
751
|
-
ratioColumnIndices: any[];
|
|
752
794
|
ratioColumnIndex: any;
|
|
795
|
+
allNumberColumnIndices: any[];
|
|
753
796
|
};
|
|
754
797
|
declare const getMultiSeriesColumnIndex: (columns: any) => any;
|
|
755
798
|
declare const isColumnIndexValid: (index: any, columns: any) => boolean;
|
|
756
799
|
declare const isColumnIndicesValid: (indices: any, columns: any) => any;
|
|
757
|
-
declare const numberIndicesArraysOverlap: (
|
|
800
|
+
declare const numberIndicesArraysOverlap: (columnIndexConfig: any) => any;
|
|
758
801
|
declare const hasColumnIndex: (indices: any, index: any) => boolean;
|
|
759
|
-
declare const
|
|
802
|
+
declare const getPivotColumnIndexConfig: ({ pivotTableColumns, columnIndexConfig, isFirstGeneration, response }: {
|
|
803
|
+
pivotTableColumns: any;
|
|
804
|
+
columnIndexConfig: any;
|
|
805
|
+
isFirstGeneration: any;
|
|
806
|
+
response: any;
|
|
807
|
+
}) => any;
|
|
808
|
+
declare const getColumnIndexConfig: ({ response, columns, currentTableConfig, }?: {
|
|
760
809
|
response?: AxiosResponse;
|
|
761
810
|
columns?: Column$1[];
|
|
762
811
|
currentTableConfig?: TableConfig;
|
|
763
812
|
}) => any;
|
|
764
|
-
declare const
|
|
813
|
+
declare const isColumnIndexConfigValid: ({ response, columnIndexConfig, columns, displayType }: {
|
|
765
814
|
response: any;
|
|
766
|
-
|
|
815
|
+
columnIndexConfig: any;
|
|
767
816
|
columns: any;
|
|
768
817
|
displayType: any;
|
|
769
818
|
}) => boolean;
|
|
@@ -810,11 +859,40 @@ declare const generateFilterDrilldownResponse: ({ response, rows, index, value }
|
|
|
810
859
|
value: any;
|
|
811
860
|
}) => any;
|
|
812
861
|
|
|
862
|
+
declare const formatTableParams: (params: any, columns: Column$1[]) => {
|
|
863
|
+
sorters: any;
|
|
864
|
+
filters: tableFilterParams[];
|
|
865
|
+
page: any;
|
|
866
|
+
};
|
|
867
|
+
declare const formatSortersForAPI: (params: any, columns: Column$1[]) => any;
|
|
868
|
+
declare const formatNumberFilterValue: (headerValue?: string) => {
|
|
869
|
+
value: string;
|
|
870
|
+
operator: string;
|
|
871
|
+
};
|
|
872
|
+
declare const formatFiltersForAPI: (params: any, columns: Column$1[]) => tableFilterParams[];
|
|
873
|
+
|
|
813
874
|
declare const dataStructureChanged: (props: any, prevProps: any) => boolean;
|
|
814
875
|
declare const onlySeriesVisibilityChanged: (props: any, prevProps: any) => boolean;
|
|
815
876
|
declare const scaleZero: (scale: any) => any;
|
|
816
877
|
declare const getKey: (rowIndex: any, cellIndex: any, extraIndex?: number) => string;
|
|
817
878
|
declare const shouldLabelsRotate: (axisElement: any) => boolean;
|
|
879
|
+
declare const transformLabels: (orient: string, axisElement: any, innerHeight: number, rotateLabels?: boolean) => boolean;
|
|
880
|
+
declare const getDrilldownData: ({ pivotOriginalColumnData, row, columns, colIndex, legendColumn, columnIndexConfig, activeKey, }: {
|
|
881
|
+
pivotOriginalColumnData?: {};
|
|
882
|
+
row: any;
|
|
883
|
+
columns: any;
|
|
884
|
+
colIndex: any;
|
|
885
|
+
legendColumn: any;
|
|
886
|
+
columnIndexConfig: any;
|
|
887
|
+
activeKey: any;
|
|
888
|
+
}) => {
|
|
889
|
+
groupBys: any;
|
|
890
|
+
supportedByAPI: boolean;
|
|
891
|
+
row: any;
|
|
892
|
+
activeKey: any;
|
|
893
|
+
stringColumnIndex: any;
|
|
894
|
+
column: any;
|
|
895
|
+
};
|
|
818
896
|
declare const getTooltipContent: ({ row, columns, colIndex, colIndex2, legendColumn, dataFormatting, aggregated, }: {
|
|
819
897
|
row: any;
|
|
820
898
|
columns: any;
|
|
@@ -824,13 +902,47 @@ declare const getTooltipContent: ({ row, columns, colIndex, colIndex2, legendCol
|
|
|
824
902
|
dataFormatting: any;
|
|
825
903
|
aggregated?: boolean;
|
|
826
904
|
}) => any;
|
|
827
|
-
declare const
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
905
|
+
declare const getFilterDrilldown: ({ stringColumnIndex, row, json }: {
|
|
906
|
+
stringColumnIndex: any;
|
|
907
|
+
row: any;
|
|
908
|
+
json: any;
|
|
909
|
+
}) => any;
|
|
910
|
+
declare const constructFilter: ({ column, value }: {
|
|
832
911
|
column: any;
|
|
833
|
-
|
|
912
|
+
value: any;
|
|
913
|
+
}) => {
|
|
914
|
+
name: any;
|
|
915
|
+
operator: string;
|
|
916
|
+
value: any;
|
|
917
|
+
};
|
|
918
|
+
declare const getCombinedFilters: (newFilter: any, response: any, formattedTableParams: any) => any[];
|
|
919
|
+
declare const getLegendLabelsForGroupbyQuery: () => {
|
|
920
|
+
labels: any[];
|
|
921
|
+
labels2: any[];
|
|
922
|
+
};
|
|
923
|
+
declare const getLegendLabelsForSingleColumn: ({ data, columns, colorScale, columnIndexConfig, dataFormatting }: {
|
|
924
|
+
data: any;
|
|
925
|
+
columns: any;
|
|
926
|
+
colorScale: any;
|
|
927
|
+
columnIndexConfig: any;
|
|
928
|
+
dataFormatting: any;
|
|
929
|
+
}) => any;
|
|
930
|
+
declare const getLegendLabelsForMultiSeries: (columns: any, colorScale: any, numberColumnIndices?: any) => any;
|
|
931
|
+
declare const getLegendLabels: ({ isDataAggregated, columns, colorScales, columnIndexConfig, type, data, dataFormatting, }: {
|
|
932
|
+
isDataAggregated: any;
|
|
933
|
+
columns: any;
|
|
934
|
+
colorScales: any;
|
|
935
|
+
columnIndexConfig: any;
|
|
936
|
+
type: any;
|
|
937
|
+
data: any;
|
|
938
|
+
dataFormatting: any;
|
|
939
|
+
}) => {
|
|
940
|
+
labels: any;
|
|
941
|
+
labels2?: undefined;
|
|
942
|
+
} | {
|
|
943
|
+
labels: any;
|
|
944
|
+
labels2: any;
|
|
945
|
+
};
|
|
834
946
|
declare const getNumberOfSeries: (data: any) => any;
|
|
835
947
|
declare const convertToNumber: (value: any) => number;
|
|
836
948
|
declare const calculateMinAndMaxSums: (data: any, stringColumnIndex: any, numberColumnIndices: any, isScaled: any) => {
|
|
@@ -850,7 +962,7 @@ declare const getRangeForAxis: ({ axis, height, width }: {
|
|
|
850
962
|
height: any;
|
|
851
963
|
width: any;
|
|
852
964
|
}) => any[];
|
|
853
|
-
declare const getTimeScale: ({ data, columns, columnIndex, axis, domain, dataFormatting, outerPadding, innerPadding, height, width,
|
|
965
|
+
declare const getTimeScale: ({ data, columns, columnIndex, axis, domain, dataFormatting, outerPadding, innerPadding, height, width, stringColumnIndex, stringColumnIndices, enableAxisDropdown, changeStringColumnIndices, }: {
|
|
854
966
|
data: Rows;
|
|
855
967
|
columns: Column$1[];
|
|
856
968
|
columnIndex: number;
|
|
@@ -861,13 +973,14 @@ declare const getTimeScale: ({ data, columns, columnIndex, axis, domain, dataFor
|
|
|
861
973
|
innerPadding: number;
|
|
862
974
|
height: number;
|
|
863
975
|
width: number;
|
|
976
|
+
stringColumnIndex: number;
|
|
864
977
|
stringColumnIndices: number[];
|
|
865
|
-
changeColumnIndices: number[];
|
|
866
978
|
enableAxisDropdown: boolean;
|
|
867
|
-
|
|
979
|
+
changeStringColumnIndices: Function;
|
|
868
980
|
}) => any;
|
|
869
|
-
declare const getBandScale: ({ data, columns, columnIndex, axis, domain, dataFormatting, outerPadding, innerPadding, height, width,
|
|
981
|
+
declare const getBandScale: ({ data, column, columns, columnIndex, axis, domain, dataFormatting, outerPadding, innerPadding, height, width, stringColumnIndex, stringColumnIndices, enableAxisDropdown, changeStringColumnIndices, }: {
|
|
870
982
|
data: Rows;
|
|
983
|
+
column?: Column$1;
|
|
871
984
|
columns: Column$1[];
|
|
872
985
|
columnIndex: number;
|
|
873
986
|
axis: string;
|
|
@@ -877,11 +990,22 @@ declare const getBandScale: ({ data, columns, columnIndex, axis, domain, dataFor
|
|
|
877
990
|
innerPadding: number;
|
|
878
991
|
height: number;
|
|
879
992
|
width: number;
|
|
993
|
+
stringColumnIndex: number;
|
|
880
994
|
stringColumnIndices: number[];
|
|
881
|
-
changeColumnIndices: number[];
|
|
882
995
|
enableAxisDropdown: boolean;
|
|
883
|
-
|
|
996
|
+
changeStringColumnIndices: Function;
|
|
884
997
|
}) => any;
|
|
998
|
+
declare const getOpacityScale: (data: any, columnIndices: any) => any;
|
|
999
|
+
declare const getRadiusScale: (data: any, columnIndices: any, xScale: any, yScale: any) => any;
|
|
1000
|
+
declare const getColorScale: (values: string[], colors: any) => any;
|
|
1001
|
+
declare const getColorScales: ({ numberColumnIndices, numberColumnIndices2, CSS_PREFIX }: {
|
|
1002
|
+
numberColumnIndices: any;
|
|
1003
|
+
numberColumnIndices2: any;
|
|
1004
|
+
CSS_PREFIX: any;
|
|
1005
|
+
}) => {
|
|
1006
|
+
colorScale: any;
|
|
1007
|
+
colorScale2: any;
|
|
1008
|
+
};
|
|
885
1009
|
declare const getUnitsForColumn: (column: any, useAgg?: boolean) => any;
|
|
886
1010
|
declare const getUnitSymbol: ({ column, dataFormatting, }: {
|
|
887
1011
|
column: Column$1;
|
|
@@ -892,13 +1016,12 @@ declare const getLinearAxisTitle: ({ numberColumns, aggregated, }: {
|
|
|
892
1016
|
aggregated: boolean;
|
|
893
1017
|
}) => string;
|
|
894
1018
|
declare const getNumberAxisUnits: (numberColumns: any) => any;
|
|
895
|
-
declare const getBinLinearScale: ({ columns, columnIndex, axis, buckets, bins,
|
|
1019
|
+
declare const getBinLinearScale: ({ columns, columnIndex, axis, buckets, bins, enableAxisDropdown, innerHeight, innerWidth, height, width, dataFormatting, changeNumberColumnIndices, }: {
|
|
896
1020
|
columns: Column$1[];
|
|
897
1021
|
columnIndex: number;
|
|
898
1022
|
axis: string;
|
|
899
1023
|
buckets: any[];
|
|
900
1024
|
bins: (string | number)[];
|
|
901
|
-
changeColumnIndices: Function;
|
|
902
1025
|
enableAxisDropdown: boolean;
|
|
903
1026
|
innerHeight: number;
|
|
904
1027
|
innerWidth: number;
|
|
@@ -907,7 +1030,7 @@ declare const getBinLinearScale: ({ columns, columnIndex, axis, buckets, bins, c
|
|
|
907
1030
|
dataFormatting: DataFormatting;
|
|
908
1031
|
changeNumberColumnIndices: Function;
|
|
909
1032
|
}) => any;
|
|
910
|
-
declare const getHistogramScale: ({ axis, buckets, columnIndex, height, width, minValue, maxValue, tickValues, numTicks, stacked, isScaled, columns, columnIndices,
|
|
1033
|
+
declare const getHistogramScale: ({ axis, buckets, columnIndex, height, width, minValue, maxValue, tickValues, numTicks, stacked, isScaled, columns, columnIndices, dataFormatting, changeNumberColumnIndices, enableAxisDropdown, aggregated, }: {
|
|
911
1034
|
buckets: any[];
|
|
912
1035
|
minValue: number;
|
|
913
1036
|
maxValue: number;
|
|
@@ -925,7 +1048,6 @@ declare const getHistogramScale: ({ axis, buckets, columnIndex, height, width, m
|
|
|
925
1048
|
columnIndices: number[];
|
|
926
1049
|
hasDropdown: boolean;
|
|
927
1050
|
allowMultipleSeries: boolean;
|
|
928
|
-
changeColumnIndices: Function;
|
|
929
1051
|
disableAutoScale: boolean;
|
|
930
1052
|
dataFormatting: DataFormatting;
|
|
931
1053
|
changeNumberColumnIndices: Function;
|
|
@@ -934,7 +1056,7 @@ declare const getHistogramScale: ({ axis, buckets, columnIndex, height, width, m
|
|
|
934
1056
|
width: number;
|
|
935
1057
|
aggregated: boolean;
|
|
936
1058
|
}) => any;
|
|
937
|
-
declare const getLinearScale: ({ minValue, maxValue, axis, range, domain, tickValues, numTicks, stacked, isScaled, columns, units, title, columnIndex, columnIndices, hasDropdown, allowMultipleSeries,
|
|
1059
|
+
declare const getLinearScale: ({ minValue, maxValue, axis, range, domain, tickValues, numTicks, stacked, isScaled, columns, units, title, columnIndex, columnIndices, hasDropdown, allowMultipleSeries, disableAutoScale, dataFormatting, changeNumberColumnIndices, enableAxisDropdown, height, width, aggregated, colorScale, }: {
|
|
938
1060
|
axis: string;
|
|
939
1061
|
columns: Column$1[];
|
|
940
1062
|
columnIndex: number;
|
|
@@ -950,7 +1072,6 @@ declare const getLinearScale: ({ minValue, maxValue, axis, range, domain, tickVa
|
|
|
950
1072
|
minValue?: number;
|
|
951
1073
|
maxValue?: number;
|
|
952
1074
|
aggregated?: boolean;
|
|
953
|
-
changeColumnIndices?: Function;
|
|
954
1075
|
numTicks?: number;
|
|
955
1076
|
range?: number[];
|
|
956
1077
|
tickValues?: number[];
|
|
@@ -959,8 +1080,9 @@ declare const getLinearScale: ({ minValue, maxValue, axis, range, domain, tickVa
|
|
|
959
1080
|
hasDropdown?: boolean;
|
|
960
1081
|
domain?: number[];
|
|
961
1082
|
title?: string;
|
|
1083
|
+
colorScale?: any;
|
|
962
1084
|
}) => any;
|
|
963
|
-
declare const getLinearScales: ({ data, columnIndices1, columnIndices2, axis, stacked, isScaled, columns, hasDropdown, allowMultipleSeries,
|
|
1085
|
+
declare const getLinearScales: ({ data, columnIndices1, columnIndices2, axis, stacked, isScaled, columns, hasDropdown, allowMultipleSeries, disableAutoScale, dataFormatting, changeNumberColumnIndices, enableAxisDropdown, stringColumnIndex, height, width, aggregated, colorScales, }: {
|
|
964
1086
|
data: Rows;
|
|
965
1087
|
columnIndices1: number[];
|
|
966
1088
|
columnIndices2: number[];
|
|
@@ -970,7 +1092,6 @@ declare const getLinearScales: ({ data, columnIndices1, columnIndices2, axis, st
|
|
|
970
1092
|
columns: Column$1[];
|
|
971
1093
|
hasDropdown: boolean;
|
|
972
1094
|
allowMultipleSeries: boolean;
|
|
973
|
-
changeColumnIndices: Function;
|
|
974
1095
|
disableAutoScale: boolean;
|
|
975
1096
|
dataFormatting: DataFormatting;
|
|
976
1097
|
changeNumberColumnIndices: Function;
|
|
@@ -979,6 +1100,7 @@ declare const getLinearScales: ({ data, columnIndices1, columnIndices2, axis, st
|
|
|
979
1100
|
height: number;
|
|
980
1101
|
width: number;
|
|
981
1102
|
aggregated: boolean;
|
|
1103
|
+
colorScales: any;
|
|
982
1104
|
}) => {
|
|
983
1105
|
scale: any;
|
|
984
1106
|
scale2?: undefined;
|
|
@@ -1015,12 +1137,334 @@ declare const mergeBoundingClientRects: (boundingBoxes: any) => {
|
|
|
1015
1137
|
height: number;
|
|
1016
1138
|
width: number;
|
|
1017
1139
|
};
|
|
1018
|
-
declare const mergeBboxes: (
|
|
1140
|
+
declare const mergeBboxes: (bboxes: any) => {
|
|
1141
|
+
x: any;
|
|
1142
|
+
y: any;
|
|
1143
|
+
height: number;
|
|
1144
|
+
width: number;
|
|
1145
|
+
};
|
|
1146
|
+
declare const getRowNumberListForPopover: (initialPageSize: any, totalRows: any) => any;
|
|
1147
|
+
declare const getAxisLabelsBbox: (axisElement: any) => {
|
|
1148
|
+
x: any;
|
|
1149
|
+
y: any;
|
|
1150
|
+
height: number;
|
|
1151
|
+
width: number;
|
|
1152
|
+
};
|
|
1153
|
+
declare const getTotalLeftPadding: (legendPadding?: any) => any;
|
|
1154
|
+
declare const getTotalRightPadding: (legendPadding?: any) => any;
|
|
1155
|
+
declare const getTotalHorizontalPadding: (legendPadding?: any) => any;
|
|
1156
|
+
declare const getTotalBottomPadding: (legendPadding?: any) => any;
|
|
1157
|
+
declare const getTotalTopPadding: (legendPadding?: any) => any;
|
|
1158
|
+
declare const getTotalVerticalPadding: (legendPadding?: any) => any;
|
|
1159
|
+
declare const getMaxLegendHeight: ({ orientation, outerHeight, height, legendPadding }: {
|
|
1160
|
+
orientation: any;
|
|
1161
|
+
outerHeight: any;
|
|
1162
|
+
height: any;
|
|
1163
|
+
legendPadding: any;
|
|
1164
|
+
}) => number;
|
|
1165
|
+
declare const getMaxLegendSectionWidth: ({ orientation, outerWidth, legendPadding }: {
|
|
1166
|
+
orientation: any;
|
|
1167
|
+
outerWidth: any;
|
|
1168
|
+
legendPadding: any;
|
|
1169
|
+
}) => number;
|
|
1170
|
+
declare const getTotalPossibleLegendSections: ({ orientation, outerWidth, hasSecondAxis, legendPadding }: {
|
|
1171
|
+
orientation: any;
|
|
1172
|
+
outerWidth: any;
|
|
1173
|
+
hasSecondAxis: any;
|
|
1174
|
+
legendPadding: any;
|
|
1175
|
+
}) => any;
|
|
1176
|
+
declare const distributeListsEvenly: (list1Orig: any, list2Orig: any, numSections: any) => any[][];
|
|
1177
|
+
declare const getlegendLabelSections: ({ orientation, outerWidth, hasSecondAxis, labels, labels2, legendPadding }: {
|
|
1178
|
+
orientation: any;
|
|
1179
|
+
outerWidth: any;
|
|
1180
|
+
hasSecondAxis: any;
|
|
1181
|
+
labels: any;
|
|
1182
|
+
labels2: any;
|
|
1183
|
+
legendPadding: any;
|
|
1184
|
+
}) => any[][];
|
|
1185
|
+
declare const getLegendScale: (legendLabels: any) => any;
|
|
1186
|
+
declare const applyLegendTitleStyles: ({ legendElement, title, isFirstSection, onLegendTitleClick }: {
|
|
1187
|
+
legendElement: any;
|
|
1188
|
+
title: any;
|
|
1189
|
+
isFirstSection: any;
|
|
1190
|
+
onLegendTitleClick: any;
|
|
1191
|
+
}) => any;
|
|
1192
|
+
declare const removeHiddenLegendLabels: ({ legendElement, legendBorder, chartTooltipID }: {
|
|
1193
|
+
legendElement: any;
|
|
1194
|
+
legendBorder: any;
|
|
1195
|
+
chartTooltipID: any;
|
|
1196
|
+
}) => void;
|
|
1197
|
+
declare const applyStylesForHiddenSeries: ({ legendElement, legendLabels }: {
|
|
1198
|
+
legendElement: any;
|
|
1199
|
+
legendLabels: any;
|
|
1200
|
+
}) => void;
|
|
1201
|
+
declare const getPieChartData: ({ data, numberColumnIndex, legendLabels, chartColors }: {
|
|
1202
|
+
data: any;
|
|
1203
|
+
numberColumnIndex: any;
|
|
1204
|
+
legendLabels: any;
|
|
1205
|
+
chartColors: any;
|
|
1206
|
+
}) => {
|
|
1207
|
+
pieChartFn: any;
|
|
1208
|
+
legendScale: any;
|
|
1209
|
+
};
|
|
1210
|
+
|
|
1211
|
+
declare const getMaxTickLabelWidth: ({ orient, outerHeight, outerWidth, rotateLabels, prevLabelWidth, }?: {
|
|
1212
|
+
orient?: string;
|
|
1213
|
+
outerHeight?: number;
|
|
1214
|
+
outerWidth?: number;
|
|
1215
|
+
rotateLabels?: boolean;
|
|
1216
|
+
prevLabelWidth?: number;
|
|
1217
|
+
}) => number;
|
|
1218
|
+
declare const setTickSize: ({ axis, innerWidth, innerHeight, }?: {
|
|
1219
|
+
axis?: any;
|
|
1220
|
+
innerWidth?: number;
|
|
1221
|
+
innerHeight?: number;
|
|
1222
|
+
}) => void;
|
|
1223
|
+
declare const setTickValues: ({ axis, innerWidth, innerHeight, maxLabelWidth, }?: {
|
|
1224
|
+
axis?: any;
|
|
1225
|
+
innerWidth?: number;
|
|
1226
|
+
innerHeight?: number;
|
|
1227
|
+
maxLabelWidth?: number;
|
|
1228
|
+
}) => void;
|
|
1229
|
+
declare const getAxis: ({ orient, scale, innerWidth, innerHeight, maxLabelWidth, }?: {
|
|
1230
|
+
orient?: string;
|
|
1231
|
+
scale?: any;
|
|
1232
|
+
innerWidth?: number;
|
|
1233
|
+
innerHeight?: number;
|
|
1234
|
+
maxLabelWidth?: number;
|
|
1235
|
+
}) => any;
|
|
1236
|
+
declare const getLabelsBBox: (axisElement: any) => {};
|
|
1237
|
+
declare const adjustBottomTitleToFit: (titleElement: any, { labelsBBox, innerWidth, outerWidth, deltaX, chartPadding, }?: {
|
|
1238
|
+
labelsBBox?: any;
|
|
1239
|
+
innerWidth?: number;
|
|
1240
|
+
outerWidth?: number;
|
|
1241
|
+
deltaX?: number;
|
|
1242
|
+
chartPadding?: number;
|
|
1243
|
+
}) => void;
|
|
1244
|
+
declare const adjustTopTitleToFit: (titleElement: any, { labelsBBox, innerWidth, }?: {
|
|
1245
|
+
labelsBBox?: any;
|
|
1246
|
+
innerWidth?: number;
|
|
1247
|
+
}) => void;
|
|
1248
|
+
declare const adjustVerticalTitleToFit: (titleElement: any, { deltaY, chartPadding, }?: {
|
|
1249
|
+
deltaY?: number;
|
|
1250
|
+
chartPadding?: number;
|
|
1251
|
+
}) => void;
|
|
1252
|
+
declare const adjustTitleToFit: (titleElement: any, orient: string, options?: {
|
|
1253
|
+
labelsBBox?: any;
|
|
1254
|
+
innerWidth?: number;
|
|
1255
|
+
outerWidth?: number;
|
|
1256
|
+
deltaX?: number;
|
|
1257
|
+
deltaY?: number;
|
|
1258
|
+
chartPadding?: number;
|
|
1259
|
+
}) => void;
|
|
1260
|
+
|
|
1261
|
+
declare const getBubbleObj: ({ columns, yScale, xScale, columnIndexConfig, activeKey, dataFormatting, colIndex, radiusScale, i, d, index, legendLabels, legendColumn, chartColors, }: {
|
|
1262
|
+
columns: any;
|
|
1263
|
+
yScale: any;
|
|
1264
|
+
xScale: any;
|
|
1265
|
+
columnIndexConfig: any;
|
|
1266
|
+
activeKey: any;
|
|
1267
|
+
dataFormatting: any;
|
|
1268
|
+
colIndex: any;
|
|
1269
|
+
radiusScale: any;
|
|
1270
|
+
i: any;
|
|
1271
|
+
d: any;
|
|
1272
|
+
index: any;
|
|
1273
|
+
legendLabels: any;
|
|
1274
|
+
legendColumn: any;
|
|
1275
|
+
chartColors: any;
|
|
1276
|
+
}) => {
|
|
1277
|
+
key: string;
|
|
1278
|
+
class: string;
|
|
1279
|
+
cx: any;
|
|
1280
|
+
cy: any;
|
|
1281
|
+
r: number;
|
|
1282
|
+
width: any;
|
|
1283
|
+
height: any;
|
|
1284
|
+
style: {
|
|
1285
|
+
fill: any;
|
|
1286
|
+
};
|
|
1287
|
+
drilldownData: {
|
|
1288
|
+
groupBys: any;
|
|
1289
|
+
supportedByAPI: boolean;
|
|
1290
|
+
row: any;
|
|
1291
|
+
activeKey: any;
|
|
1292
|
+
stringColumnIndex: any;
|
|
1293
|
+
column: any;
|
|
1294
|
+
};
|
|
1295
|
+
tooltip: any;
|
|
1296
|
+
};
|
|
1297
|
+
declare const getHeatmapRectObj: ({ columns, yScale, xScale, activeKey, dataFormatting, colIndex, opacityScale, i, d, index, legendLabels, legendColumn, chartColors, columnIndexConfig, }: {
|
|
1298
|
+
columns: any;
|
|
1299
|
+
yScale: any;
|
|
1300
|
+
xScale: any;
|
|
1301
|
+
activeKey: any;
|
|
1302
|
+
dataFormatting: any;
|
|
1303
|
+
colIndex: any;
|
|
1304
|
+
opacityScale: any;
|
|
1305
|
+
i: any;
|
|
1306
|
+
d: any;
|
|
1307
|
+
index: any;
|
|
1308
|
+
legendLabels: any;
|
|
1309
|
+
legendColumn: any;
|
|
1310
|
+
chartColors: any;
|
|
1311
|
+
columnIndexConfig: any;
|
|
1312
|
+
}) => {
|
|
1313
|
+
key: string;
|
|
1314
|
+
class: string;
|
|
1019
1315
|
x: any;
|
|
1020
1316
|
y: any;
|
|
1317
|
+
width: any;
|
|
1318
|
+
height: any;
|
|
1319
|
+
style: {
|
|
1320
|
+
color: any;
|
|
1321
|
+
fill: any;
|
|
1322
|
+
fillOpacity: any;
|
|
1323
|
+
};
|
|
1324
|
+
drilldownData: {
|
|
1325
|
+
groupBys: any;
|
|
1326
|
+
supportedByAPI: boolean;
|
|
1327
|
+
row: any;
|
|
1328
|
+
activeKey: any;
|
|
1329
|
+
stringColumnIndex: any;
|
|
1330
|
+
column: any;
|
|
1331
|
+
};
|
|
1332
|
+
tooltip: any;
|
|
1333
|
+
};
|
|
1334
|
+
declare const getLineVertexObj: ({ columns, yScale, xScale, columnIndexConfig, legendColumn, activeKey, dataFormatting, colIndex, backgroundColor, cumulativeValues, d, index, color, stacked, }: {
|
|
1335
|
+
columns: any;
|
|
1336
|
+
yScale: any;
|
|
1337
|
+
xScale: any;
|
|
1338
|
+
columnIndexConfig: any;
|
|
1339
|
+
legendColumn: any;
|
|
1340
|
+
activeKey: any;
|
|
1341
|
+
dataFormatting: any;
|
|
1342
|
+
colIndex: any;
|
|
1343
|
+
backgroundColor: any;
|
|
1344
|
+
cumulativeValues: any;
|
|
1345
|
+
d: any;
|
|
1346
|
+
index: any;
|
|
1347
|
+
color: any;
|
|
1348
|
+
stacked: any;
|
|
1349
|
+
}) => {
|
|
1350
|
+
className: string;
|
|
1351
|
+
key: string;
|
|
1352
|
+
cx: any;
|
|
1353
|
+
cy: any;
|
|
1354
|
+
r: number;
|
|
1355
|
+
value: any;
|
|
1356
|
+
style: {
|
|
1357
|
+
pointerEvents: string;
|
|
1358
|
+
stroke: any;
|
|
1359
|
+
strokeWidth: number;
|
|
1360
|
+
paintOrder: string;
|
|
1361
|
+
color: any;
|
|
1362
|
+
fill: any;
|
|
1363
|
+
};
|
|
1364
|
+
drilldownData: {
|
|
1365
|
+
groupBys: any;
|
|
1366
|
+
supportedByAPI: boolean;
|
|
1367
|
+
row: any;
|
|
1368
|
+
activeKey: any;
|
|
1369
|
+
stringColumnIndex: any;
|
|
1370
|
+
column: any;
|
|
1371
|
+
};
|
|
1372
|
+
tooltip: any;
|
|
1373
|
+
};
|
|
1374
|
+
declare const getColumnRectObj: ({ columns, yScale, xScale, columnIndexConfig, chartTooltipID, activeKey, legendColumn, dataFormatting, colIndex, visibleIndex, barWidth, i, d, index, stacked, prevY, prevHeight, }: {
|
|
1375
|
+
columns: any;
|
|
1376
|
+
yScale: any;
|
|
1377
|
+
xScale: any;
|
|
1378
|
+
columnIndexConfig: any;
|
|
1379
|
+
chartTooltipID: any;
|
|
1380
|
+
activeKey: any;
|
|
1381
|
+
legendColumn: any;
|
|
1382
|
+
dataFormatting: any;
|
|
1383
|
+
colIndex: any;
|
|
1384
|
+
visibleIndex: any;
|
|
1385
|
+
barWidth: any;
|
|
1386
|
+
i: any;
|
|
1387
|
+
d: any;
|
|
1388
|
+
index: any;
|
|
1389
|
+
stacked: any;
|
|
1390
|
+
prevY: any;
|
|
1391
|
+
prevHeight?: number;
|
|
1392
|
+
}) => {
|
|
1393
|
+
key: string;
|
|
1394
|
+
className: string;
|
|
1395
|
+
dataTest: string;
|
|
1396
|
+
x: any;
|
|
1397
|
+
y: any;
|
|
1398
|
+
width: any;
|
|
1021
1399
|
height: number;
|
|
1400
|
+
value: any;
|
|
1401
|
+
colIndex: any;
|
|
1402
|
+
dataFor: any;
|
|
1403
|
+
style: {
|
|
1404
|
+
fill: any;
|
|
1405
|
+
fillOpacity: number;
|
|
1406
|
+
};
|
|
1407
|
+
drilldownData: {
|
|
1408
|
+
groupBys: any;
|
|
1409
|
+
supportedByAPI: boolean;
|
|
1410
|
+
row: any;
|
|
1411
|
+
activeKey: any;
|
|
1412
|
+
stringColumnIndex: any;
|
|
1413
|
+
column: any;
|
|
1414
|
+
};
|
|
1415
|
+
tooltip: any;
|
|
1416
|
+
};
|
|
1417
|
+
declare const getBarRectObj: ({ columnIndexConfig, columns, yScale, xScale, activeKey, dataFormatting, colIndex, visibleIndex, barHeight, legendColumn, i, d, index, stacked, prevX, prevWidth, }: {
|
|
1418
|
+
columnIndexConfig: any;
|
|
1419
|
+
columns: any;
|
|
1420
|
+
yScale: any;
|
|
1421
|
+
xScale: any;
|
|
1422
|
+
activeKey: any;
|
|
1423
|
+
dataFormatting: any;
|
|
1424
|
+
colIndex: any;
|
|
1425
|
+
visibleIndex: any;
|
|
1426
|
+
barHeight: any;
|
|
1427
|
+
legendColumn: any;
|
|
1428
|
+
i: any;
|
|
1429
|
+
d: any;
|
|
1430
|
+
index: any;
|
|
1431
|
+
stacked: any;
|
|
1432
|
+
prevX: any;
|
|
1433
|
+
prevWidth?: number;
|
|
1434
|
+
}) => {
|
|
1435
|
+
key: string;
|
|
1436
|
+
className: string;
|
|
1437
|
+
dataTest: string;
|
|
1438
|
+
y: any;
|
|
1439
|
+
x: any;
|
|
1022
1440
|
width: number;
|
|
1441
|
+
height: any;
|
|
1442
|
+
style: {
|
|
1443
|
+
fill: any;
|
|
1444
|
+
fillOpacity: number;
|
|
1445
|
+
};
|
|
1446
|
+
drilldownData: {
|
|
1447
|
+
groupBys: any;
|
|
1448
|
+
supportedByAPI: boolean;
|
|
1449
|
+
row: any;
|
|
1450
|
+
activeKey: any;
|
|
1451
|
+
stringColumnIndex: any;
|
|
1452
|
+
column: any;
|
|
1453
|
+
};
|
|
1454
|
+
tooltip: any;
|
|
1023
1455
|
};
|
|
1456
|
+
declare const getLegendTitleFromColumns: ({ columnIndices, isDataAggregated, legendColumn, columns, hasSecondAxis, }: {
|
|
1457
|
+
columnIndices: any;
|
|
1458
|
+
isDataAggregated: any;
|
|
1459
|
+
legendColumn: any;
|
|
1460
|
+
columns: any;
|
|
1461
|
+
hasSecondAxis: any;
|
|
1462
|
+
}) => any;
|
|
1463
|
+
|
|
1464
|
+
declare const bezierCommand: (xy: any, i: any, a: any, smoothing: any) => string;
|
|
1465
|
+
declare const lineCommand: (xy: any) => string;
|
|
1466
|
+
declare const svgPathD: (points: any, command: any, smoothing?: any) => any;
|
|
1467
|
+
declare const createSVGPath: (points: any, smoothing: any) => any;
|
|
1024
1468
|
|
|
1025
1469
|
declare const GENERAL_ERROR = "Uh oh, Our system is experiencing an unexpected error. We're aware of this issue and are working to fix it as soon as possible.";
|
|
1026
1470
|
declare const GENERAL_QUERY_ERROR = "Internal Service Error: Our system is experiencing an unexpected error. We're aware of this issue and are working to fix it as soon as possible.";
|
|
@@ -1046,7 +1490,7 @@ declare const fetchDataExplorerSuggestions: ({ pageSize, pageNumber, domain, api
|
|
|
1046
1490
|
selectedVL?: ValueLabel;
|
|
1047
1491
|
userVLSelection?: ValueLabel[];
|
|
1048
1492
|
skipQueryValidation?: boolean;
|
|
1049
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1493
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1050
1494
|
|
|
1051
1495
|
declare const fetchNotificationData: ({ id, domain, apiKey, token }: {
|
|
1052
1496
|
id: any;
|
|
@@ -1061,13 +1505,13 @@ declare const isExpressionQueryValid: ({ query, domain, apiKey, token }: {
|
|
|
1061
1505
|
domain: any;
|
|
1062
1506
|
apiKey: any;
|
|
1063
1507
|
token: any;
|
|
1064
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1508
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1065
1509
|
declare const fetchNotificationCount: ({ domain, apiKey, token, unacknowledged }: {
|
|
1066
1510
|
domain: any;
|
|
1067
1511
|
apiKey: any;
|
|
1068
1512
|
token: any;
|
|
1069
1513
|
unacknowledged?: number;
|
|
1070
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1514
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1071
1515
|
declare const fetchNotificationFeed: ({ domain, apiKey, token, offset, limit }: {
|
|
1072
1516
|
domain: any;
|
|
1073
1517
|
apiKey: any;
|
|
@@ -1108,50 +1552,50 @@ declare const deleteNotification: ({ notificationId, domain, apiKey, token }: {
|
|
|
1108
1552
|
domain: any;
|
|
1109
1553
|
apiKey: any;
|
|
1110
1554
|
token: any;
|
|
1111
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1555
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1112
1556
|
declare const dismissAllNotifications: ({ domain, apiKey, token }: {
|
|
1113
1557
|
domain: any;
|
|
1114
1558
|
apiKey: any;
|
|
1115
1559
|
token: any;
|
|
1116
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1560
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1117
1561
|
declare const markNotificationAsUnread: ({ notificationId, domain, apiKey, token }: {
|
|
1118
1562
|
notificationId: any;
|
|
1119
1563
|
domain: any;
|
|
1120
1564
|
apiKey: any;
|
|
1121
1565
|
token: any;
|
|
1122
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1566
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1123
1567
|
declare const dismissNotification: ({ notificationId, domain, apiKey, token }: {
|
|
1124
1568
|
notificationId: any;
|
|
1125
1569
|
domain: any;
|
|
1126
1570
|
apiKey: any;
|
|
1127
1571
|
token: any;
|
|
1128
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1572
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1129
1573
|
declare const removeUserFromProjectRule: ({ dataAlertId, token, domain, apiKey }: {
|
|
1130
1574
|
dataAlertId: any;
|
|
1131
1575
|
token: any;
|
|
1132
1576
|
domain: any;
|
|
1133
1577
|
apiKey: any;
|
|
1134
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1578
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1135
1579
|
declare const addUserToProjectRule: ({ dataAlertId, token, domain, apiKey }: {
|
|
1136
1580
|
dataAlertId: any;
|
|
1137
1581
|
token: any;
|
|
1138
1582
|
domain: any;
|
|
1139
1583
|
apiKey: any;
|
|
1140
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1584
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1141
1585
|
declare const toggleProjectDataAlertStatus: ({ dataAlertId, status, token, domain, apiKey }: {
|
|
1142
1586
|
dataAlertId: any;
|
|
1143
1587
|
status: any;
|
|
1144
1588
|
token: any;
|
|
1145
1589
|
domain: any;
|
|
1146
1590
|
apiKey: any;
|
|
1147
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1591
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1148
1592
|
declare const toggleCustomDataAlertStatus: ({ dataAlertId, status, token, domain, apiKey }: {
|
|
1149
1593
|
dataAlertId: any;
|
|
1150
1594
|
status: any;
|
|
1151
1595
|
token: any;
|
|
1152
1596
|
domain: any;
|
|
1153
1597
|
apiKey: any;
|
|
1154
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1598
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1155
1599
|
declare const updateDataAlertStatus: ({ dataAlertId, status, type, domain, apiKey, token }: {
|
|
1156
1600
|
dataAlertId: any;
|
|
1157
1601
|
status: any;
|
|
@@ -1159,7 +1603,7 @@ declare const updateDataAlertStatus: ({ dataAlertId, status, type, domain, apiKe
|
|
|
1159
1603
|
domain: any;
|
|
1160
1604
|
apiKey: any;
|
|
1161
1605
|
token: any;
|
|
1162
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1606
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1163
1607
|
declare const createNotificationChannel: ({ token, domain, apiKey, channelType, channelName, channelEmail, userName, userEmail, }: {
|
|
1164
1608
|
token: any;
|
|
1165
1609
|
domain: any;
|
|
@@ -1169,7 +1613,7 @@ declare const createNotificationChannel: ({ token, domain, apiKey, channelType,
|
|
|
1169
1613
|
channelEmail: any;
|
|
1170
1614
|
userName: any;
|
|
1171
1615
|
userEmail: any;
|
|
1172
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1616
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1173
1617
|
declare const sendDataToChannel: ({ token, domain, apiKey, channelId, fileName, base64Data }: {
|
|
1174
1618
|
token: any;
|
|
1175
1619
|
domain: any;
|
|
@@ -1177,32 +1621,32 @@ declare const sendDataToChannel: ({ token, domain, apiKey, channelId, fileName,
|
|
|
1177
1621
|
channelId: any;
|
|
1178
1622
|
fileName: any;
|
|
1179
1623
|
base64Data: any;
|
|
1180
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1624
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1181
1625
|
declare const updateDataAlert: ({ dataAlert, domain, apiKey, token }: {
|
|
1182
1626
|
dataAlert: any;
|
|
1183
1627
|
domain: any;
|
|
1184
1628
|
apiKey: any;
|
|
1185
1629
|
token: any;
|
|
1186
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1630
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1187
1631
|
declare const createDataAlert: ({ dataAlert, domain, apiKey, token }: {
|
|
1188
1632
|
dataAlert?: {};
|
|
1189
1633
|
domain: any;
|
|
1190
1634
|
apiKey: any;
|
|
1191
1635
|
token: any;
|
|
1192
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1636
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1193
1637
|
declare const validateExpression: ({ expression, domain, apiKey, token }: {
|
|
1194
1638
|
expression: any;
|
|
1195
1639
|
domain: any;
|
|
1196
1640
|
apiKey: any;
|
|
1197
1641
|
token: any;
|
|
1198
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1199
|
-
declare const deleteDataAlert: (dataAlertId: any, authObject: any) => Promise<axios.AxiosResponse<any>>;
|
|
1642
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1643
|
+
declare const deleteDataAlert: (dataAlertId: any, authObject: any) => Promise<axios.AxiosResponse<any, any>>;
|
|
1200
1644
|
declare const removeNotificationChannel: ({ channelId, domain, apiKey, token }: {
|
|
1201
1645
|
channelId: any;
|
|
1202
1646
|
domain: any;
|
|
1203
1647
|
apiKey: any;
|
|
1204
1648
|
token: any;
|
|
1205
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1649
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1206
1650
|
|
|
1207
1651
|
declare const isError500Type: (referenceId: any) => boolean;
|
|
1208
1652
|
declare const fetchSuggestions: ({ query, queryId, domain, apiKey, token, cancelToken, }?: {
|
|
@@ -1212,7 +1656,7 @@ declare const fetchSuggestions: ({ query, queryId, domain, apiKey, token, cancel
|
|
|
1212
1656
|
apiKey?: string;
|
|
1213
1657
|
token?: string;
|
|
1214
1658
|
cancelToken?: any;
|
|
1215
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1659
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1216
1660
|
declare const runQueryNewPage: ({ queryId, domain, apiKey, token, page, cancelToken, }?: {
|
|
1217
1661
|
queryId?: string;
|
|
1218
1662
|
domain?: string;
|
|
@@ -1241,22 +1685,22 @@ interface QueryParams {
|
|
|
1241
1685
|
enableQueryValidation?: boolean;
|
|
1242
1686
|
skipQueryValidation?: boolean;
|
|
1243
1687
|
}
|
|
1244
|
-
declare const runQueryOnly: ({ query, userSelection, userSelectionFinal, debug, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, scope, }?: QueryParams) => Promise<AxiosResponse | axios.AxiosResponse<any>>;
|
|
1688
|
+
declare const runQueryOnly: ({ query, userSelection, userSelectionFinal, debug, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, scope, }?: QueryParams) => Promise<AxiosResponse | axios.AxiosResponse<any, any>>;
|
|
1245
1689
|
declare const runQueryValidation: ({ text, domain, apiKey, token, cancelToken, }?: {
|
|
1246
1690
|
text?: string;
|
|
1247
1691
|
domain?: string;
|
|
1248
1692
|
apiKey?: string;
|
|
1249
1693
|
token?: string;
|
|
1250
1694
|
cancelToken?: any;
|
|
1251
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1252
|
-
declare const runQuery: ({ query, userSelection, userSelectionFinal, debug, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, enableQueryValidation, skipQueryValidation, scope, }?: QueryParams) => Promise<AxiosResponse | axios.AxiosResponse<any>>;
|
|
1695
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1696
|
+
declare const runQuery: ({ query, userSelection, userSelectionFinal, debug, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, enableQueryValidation, skipQueryValidation, scope, }?: QueryParams) => Promise<AxiosResponse | axios.AxiosResponse<any, any>>;
|
|
1253
1697
|
declare const exportCSV: ({ queryId, domain, apiKey, token, csvProgressCallback, }?: {
|
|
1254
1698
|
queryId?: string;
|
|
1255
1699
|
domain?: string;
|
|
1256
1700
|
apiKey?: string;
|
|
1257
1701
|
token?: string;
|
|
1258
1702
|
csvProgressCallback?: Function;
|
|
1259
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1703
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1260
1704
|
declare const runDrilldown: ({ queryID, groupBys, debug, test, domain, apiKey, token, orders, source, tableFilters, cancelToken, pageSize, }?: {
|
|
1261
1705
|
queryID?: string;
|
|
1262
1706
|
groupBys?: Object[];
|
|
@@ -1270,36 +1714,36 @@ declare const runDrilldown: ({ queryID, groupBys, debug, test, domain, apiKey, t
|
|
|
1270
1714
|
tableFilters?: Object[];
|
|
1271
1715
|
cancelToken?: any;
|
|
1272
1716
|
pageSize?: number;
|
|
1273
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1717
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1274
1718
|
declare const fetchTopics: ({ domain, token, apiKey, }?: {
|
|
1275
1719
|
domain?: string;
|
|
1276
1720
|
apiKey?: string;
|
|
1277
1721
|
token?: string;
|
|
1278
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1722
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1279
1723
|
declare const fetchAutocomplete: ({ suggestion, domain, apiKey, token, }?: {
|
|
1280
1724
|
suggestion?: string;
|
|
1281
1725
|
domain?: string;
|
|
1282
1726
|
apiKey?: string;
|
|
1283
1727
|
token?: string;
|
|
1284
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1728
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1285
1729
|
declare const fetchVLAutocomplete: ({ suggestion, domain, token, apiKey, cancelToken, }?: {
|
|
1286
1730
|
suggestion?: string;
|
|
1287
1731
|
domain?: string;
|
|
1288
1732
|
apiKey?: string;
|
|
1289
1733
|
token?: string;
|
|
1290
1734
|
cancelToken?: any;
|
|
1291
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1735
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1292
1736
|
declare const fetchFilters: ({ apiKey, token, domain, }?: {
|
|
1293
1737
|
domain?: string;
|
|
1294
1738
|
apiKey?: string;
|
|
1295
1739
|
token?: string;
|
|
1296
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1740
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1297
1741
|
declare const setFilters: ({ apiKey, token, domain, filters, }?: {
|
|
1298
1742
|
domain?: string;
|
|
1299
1743
|
apiKey?: string;
|
|
1300
1744
|
token?: string;
|
|
1301
1745
|
filters?: Object[];
|
|
1302
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1746
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1303
1747
|
declare const unsetFilterFromAPI: ({ apiKey, token, domain, filter, }?: {
|
|
1304
1748
|
domain?: string;
|
|
1305
1749
|
apiKey?: string;
|
|
@@ -1307,20 +1751,20 @@ declare const unsetFilterFromAPI: ({ apiKey, token, domain, filter, }?: {
|
|
|
1307
1751
|
filter?: {
|
|
1308
1752
|
id: string;
|
|
1309
1753
|
};
|
|
1310
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1754
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1311
1755
|
declare const setColumnVisibility: ({ apiKey, token, domain, columns, }?: {
|
|
1312
1756
|
domain?: string;
|
|
1313
1757
|
apiKey?: string;
|
|
1314
1758
|
token?: string;
|
|
1315
1759
|
columns?: any[];
|
|
1316
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1760
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1317
1761
|
declare const sendSuggestion: ({ queryId, suggestion, apiKey, domain, token, }?: {
|
|
1318
1762
|
queryId?: string;
|
|
1319
1763
|
suggestion?: boolean;
|
|
1320
1764
|
domain?: string;
|
|
1321
1765
|
apiKey?: string;
|
|
1322
1766
|
token?: string;
|
|
1323
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1767
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1324
1768
|
declare const fetchExploreQueries: ({ keywords, pageSize, pageNumber, domain, apiKey, token, skipQueryValidation, }?: {
|
|
1325
1769
|
keywords?: string;
|
|
1326
1770
|
pageSize?: number;
|
|
@@ -1329,19 +1773,19 @@ declare const fetchExploreQueries: ({ keywords, pageSize, pageNumber, domain, ap
|
|
|
1329
1773
|
apiKey?: string;
|
|
1330
1774
|
token?: string;
|
|
1331
1775
|
skipQueryValidation?: boolean;
|
|
1332
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1776
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1333
1777
|
declare const reportProblem: ({ message, queryId, domain, apiKey, token, }?: {
|
|
1334
1778
|
message?: string;
|
|
1335
1779
|
queryId?: string;
|
|
1336
1780
|
domain?: string;
|
|
1337
1781
|
apiKey?: string;
|
|
1338
1782
|
token?: string;
|
|
1339
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1783
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1340
1784
|
declare const fetchSubjectList: ({ domain, apiKey, token }: {
|
|
1341
1785
|
domain: any;
|
|
1342
1786
|
apiKey: any;
|
|
1343
1787
|
token: any;
|
|
1344
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1788
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1345
1789
|
declare const fetchDataPreview: ({ subject, domain, apiKey, token, source, numRows, cancelToken, }?: {
|
|
1346
1790
|
subject?: string;
|
|
1347
1791
|
domain?: string;
|
|
@@ -1350,10 +1794,10 @@ declare const fetchDataPreview: ({ subject, domain, apiKey, token, source, numRo
|
|
|
1350
1794
|
source?: string;
|
|
1351
1795
|
numRows?: number;
|
|
1352
1796
|
cancelToken?: any;
|
|
1353
|
-
}) => Promise<axios.AxiosResponse<any>>;
|
|
1797
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
1354
1798
|
|
|
1355
1799
|
declare const transformQueryResponse: (response: AxiosResponse | undefined) => AxiosResponse;
|
|
1356
|
-
declare const transformQueryResponseColumns: (
|
|
1800
|
+
declare const transformQueryResponseColumns: (response: AxiosResponse) => Column$1[];
|
|
1357
1801
|
|
|
1358
1802
|
declare enum ThemeType {
|
|
1359
1803
|
LIGHT = "light",
|
|
@@ -1370,13 +1814,13 @@ type Theme = {
|
|
|
1370
1814
|
backgroundColorPrimary?: string;
|
|
1371
1815
|
backgroundColorSecondary?: string;
|
|
1372
1816
|
};
|
|
1373
|
-
declare const getThemeValue: (property: string) => string;
|
|
1817
|
+
declare const getThemeValue: (property: string, prefix?: string) => string;
|
|
1374
1818
|
declare const getThemeType: () => ThemeType;
|
|
1375
1819
|
type chartColorVarsResponse = {
|
|
1376
1820
|
chartColors: string[];
|
|
1377
1821
|
chartColorsDark: string[];
|
|
1378
1822
|
};
|
|
1379
|
-
declare const getChartColorVars: () => chartColorVarsResponse;
|
|
1823
|
+
declare const getChartColorVars: (prefix: any) => chartColorVarsResponse;
|
|
1380
1824
|
declare const configureTheme: (customThemeConfig?: Theme) => void;
|
|
1381
1825
|
|
|
1382
1826
|
declare function color(): {
|
|
@@ -1410,4 +1854,4 @@ declare function color(): {
|
|
|
1410
1854
|
on(): any;
|
|
1411
1855
|
};
|
|
1412
1856
|
|
|
1413
|
-
export { AGG_TYPES, AggType, AggTypeParams, AggTypes, AxiosResponse, CHARTS_WITHOUT_AGGREGATED_DATA, CHART_TYPES, COLUMN_TYPES, COMPARE_TYPE, CONTINUOUS_TYPE, CUSTOM_TYPE, Column$1 as Column, Column as ColumnObj, ColumnType, ColumnTypes, DATA_ALERT_CONDITION_TYPES, DATA_ALERT_ENABLED_STATUSES, DATA_ALERT_FREQUENCY_TYPE_OPTIONS, DATA_ALERT_OPERATORS, DATA_ALERT_STATUSES, DATE_ONLY_CHART_TYPES, DAYJS_PRECISION_FORMATS, DEFAULT_AGG_TYPE, DEFAULT_DATA_PAGE_SIZE, DEFAULT_EVALUATION_FREQUENCY, DEFAULT_SOURCE, DOUBLE_AXIS_CHART_TYPES, DOW_STYLES, DataExplorerSuggestion, DataExplorerTypes, DataFormatting, DateUTC, DisplayTypes, EVALUATION_FREQUENCY_OPTIONS, EXISTS_TYPE, FilterLock, FrontendReq, GENERAL_ERROR, GENERAL_HTML_ERROR, GENERAL_QUERY_ERROR, GROUP_TERM_TYPE, MAX_DATA_PAGE_SIZE, MAX_LEGEND_LABELS, MIN_HISTOGRAM_SAMPLE, MONTH_DAY_SELECT_OPTIONS, MONTH_NAMES, NUMBER_TERM_TYPE, PERIODIC_TYPE, PRECISION_TYPES, PROJECT_TYPE, ParsedInterpretation, ParsedInterpretationChunk, PrecisionTypes, QUERY_TERM_TYPE, QueryData, QueryResponse, REQUEST_CANCELLED_ERROR, RESET_PERIOD_OPTIONS, Rows, SCHEDULED_TYPE, SCHEDULE_FREQUENCY_OPTIONS, SCHEDULE_INTERVAL_OPTIONS, SEASON_NAMES, Scale, TABLE_TYPES, TableConfig, Theme, ThemeType, UNAUTHENTICATED_ERROR, ValueLabel, WEEKDAY_NAMES_MON, WEEKDAY_NAMES_SUN, addUserToProjectRule, aggregateData, animateInputText, areAllColumnsHidden, areSomeColumnsHidden, authenticationDefault, autoQLConfigDefault, calculateMinAndMaxSums, capitalizeFirstChar, configureTheme, constructRTArray, convertToNumber, countDecimals, createDataAlert, createNotificationChannel, currentEventLoopEnd, dataConfigDefault, dataFormattingDefault, dataStructureChanged, dateSortFn, dateStringSortFn, deepEqual, deleteDataAlert, deleteNotification, difference, dismissAllNotifications, dismissNotification, doesElementOverflowContainer, exportCSV, fetchAutocomplete, fetchDataAlerts, fetchDataExplorerAutocomplete, fetchDataExplorerSuggestions, fetchDataPreview, fetchExploreQueries, fetchFilters, fetchNotificationChannels, fetchNotificationCount, fetchNotificationData, fetchNotificationFeed, fetchRule, fetchSubjectList, fetchSuggestions, fetchTopics, fetchVLAutocomplete, formatChartLabel, formatDatePivotMonth, formatDatePivotYear, formatDateStringType, formatDateType, formatElement, formatEpochDate, formatISODateWithPrecision, formatNextScheduleDate, formatQueryColumns, formatResetDate, formatStringDate, formatStringDateWithPrecision, functionsEqual, generateDatePivotData, generateFilterDrilldownResponse, generatePivotData, generatePivotTableData, getAggConfig, getAuthentication, getAutoQLConfig, getBBoxFromRef, getBandScale, getBinLinearScale, getChartColorVars, getColumnDateRanges, getColumnNameForDateRange, getColumnTypeAmounts, getCurrencySymbol, getDataConfig, getDataFormatting, getDateColumnIndex, getDateRangeIntersection, getDateRangesFromInterpretation, getDatesFromRT, getDayJSObj, getDayLocalStartDate, getDayjsObjForStringType, getDefaultDisplayType, getDrilldownGroupby, getEpochFromDate, getFilterPrecision, getFirstChartDisplayType, getGroupBys, getGroupBysFromPivotTable, getGroupBysFromTable, getGroupableColumns, getHiddenColumns, getHistogramScale, getKey, getKeyByValue, getLegendLabelsForMultiSeries, getLegendLocation, getLinearAxisTitle, getLinearScale, getLinearScales, getMaxValueFromKeyValueObj, getMinAndMaxValues, getMinValueFromKeyValueObj, getMonthLocalStartDate, getMultiSeriesColumnIndex, getNiceDateTickValues, getNiceTickValues, getNumberAxisUnits, getNumberColumnIndices, getNumberFormatConfig, getNumberOfGroupables, getNumberOfSeries, getObjSize, getPadding, getPotentialDisplayTypes, getPrecisionForDayJS, getQueryParams, getRangeForAxis, getSVGBase64, getScheduleFrequencyObject, getStartAndEndDateFromDateStrs, getStringColumnIndices, getStringFromSource, getSupportedConditionTypes, getSupportedDisplayTypes,
|
|
1857
|
+
export { AGG_TYPES, AXIS_TITLE_BORDER_PADDING_LEFT, AXIS_TITLE_BORDER_PADDING_TOP, AXIS_TITLE_PADDING_BOTTOM, AXIS_TITLE_PADDING_TOP, AggType, AggTypeParams, AggTypes, AxiosResponse, BUTTON_PADDING, CHARTS_WITHOUT_AGGREGATED_DATA, CHARTS_WITHOUT_AXES, CHARTS_WITHOUT_LEGENDS, CHART_PADDING, CHART_TYPES, COLUMN_TYPES, COMPARE_TYPE, CONTINUOUS_TYPE, CUSTOM_TYPE, Column$1 as Column, Column as ColumnObj, ColumnType, ColumnTypes, DATA_ALERT_CONDITION_TYPES, DATA_ALERT_ENABLED_STATUSES, DATA_ALERT_FREQUENCY_TYPE_OPTIONS, DATA_ALERT_OPERATORS, DATA_ALERT_STATUSES, DATE_ONLY_CHART_TYPES, DAYJS_PRECISION_FORMATS, DEFAULT_AGG_TYPE, DEFAULT_CHART_CONFIG, DEFAULT_DATA_PAGE_SIZE, DEFAULT_EVALUATION_FREQUENCY, DEFAULT_LEGEND_PADDING_BOTTOM, DEFAULT_LEGEND_PADDING_LEFT, DEFAULT_LEGEND_PADDING_RIGHT, DEFAULT_LEGEND_PADDING_TOP, DEFAULT_MAX_LEGEND_WIDTH, DEFAULT_SOURCE, DOUBLE_AXIS_CHART_TYPES, DOW_STYLES, DataExplorerSuggestion, DataExplorerTypes, DataFormatting, DateUTC, DisplayTypes, EVALUATION_FREQUENCY_OPTIONS, EXISTS_TYPE, FilterLock, FrontendReq, GENERAL_ERROR, GENERAL_HTML_ERROR, GENERAL_QUERY_ERROR, GROUP_TERM_TYPE, HORIZONTAL_LEGEND_SPACING, LABEL_FONT_SIZE, LEGEND_BORDER_PADDING, LEGEND_BORDER_THICKNESS, LEGEND_SHAPE_SIZE, LEGEND_TOP_ADJUSTMENT, LOAD_MORE_DROPDOWN_PADDING_BOTTOM, MAX_DATA_PAGE_SIZE, MAX_LEGEND_LABELS, MINIMUM_TITLE_LENGTH, MIN_HISTOGRAM_SAMPLE, MONTH_DAY_SELECT_OPTIONS, MONTH_NAMES, NUMBER_TERM_TYPE, PATH_SMOOTHING, PERIODIC_TYPE, PRECISION_TYPES, PROJECT_TYPE, ParsedInterpretation, ParsedInterpretationChunk, PrecisionTypes, QUERY_TERM_TYPE, QueryData, QueryResponse, REQUEST_CANCELLED_ERROR, RESET_PERIOD_OPTIONS, RawColumn, Rows, SCHEDULED_TYPE, SCHEDULE_FREQUENCY_OPTIONS, SCHEDULE_INTERVAL_OPTIONS, SEASON_NAMES, Scale, TABLE_TYPES, TITLE_FONT_SIZE, TableConfig, Theme, ThemeType, UNAUTHENTICATED_ERROR, VERTICAL_LEGEND_SPACING, ValueLabel, WEEKDAY_NAMES_MON, WEEKDAY_NAMES_SUN, addUserToProjectRule, adjustBottomTitleToFit, adjustTitleToFit, adjustTopTitleToFit, adjustVerticalTitleToFit, aggregateData, animateInputText, applyLegendTitleStyles, applyStylesForHiddenSeries, areAllColumnsHidden, areSomeColumnsHidden, authenticationDefault, autoQLConfigDefault, bezierCommand, calculateMinAndMaxSums, capitalizeFirstChar, cloneObject, configureTheme, constructFilter, constructRTArray, convertToNumber, countDecimals, createDataAlert, createNotificationChannel, createSVGPath, currentEventLoopEnd, dataConfigDefault, dataFormattingDefault, dataStructureChanged, dateSortFn, dateStringSortFn, deepEqual, deleteDataAlert, deleteNotification, difference, dismissAllNotifications, dismissNotification, distributeListsEvenly, doesElementOverflowContainer, exportCSV, fetchAutocomplete, fetchDataAlerts, fetchDataExplorerAutocomplete, fetchDataExplorerSuggestions, fetchDataPreview, fetchExploreQueries, fetchFilters, fetchNotificationChannels, fetchNotificationCount, fetchNotificationData, fetchNotificationFeed, fetchRule, fetchSubjectList, fetchSuggestions, fetchTopics, fetchVLAutocomplete, formatChartLabel, formatDatePivotMonth, formatDatePivotYear, formatDateStringType, formatDateType, formatElement, formatEpochDate, formatFiltersForAPI, formatISODateWithPrecision, formatNextScheduleDate, formatNumberFilterValue, formatQueryColumns, formatResetDate, formatSortersForAPI, formatStringDate, formatStringDateWithPrecision, formatTableParams, functionsEqual, generateDatePivotData, generateFilterDrilldownResponse, generatePivotData, generatePivotTableData, getAggConfig, getAuthentication, getAutoQLConfig, getAxis, getAxisLabelsBbox, getBBoxFromRef, getBandScale, getBarRectObj, getBinLinearScale, getBubbleObj, getChartColorVars, getColorScale, getColorScales, getColumnDateRanges, getColumnIndexConfig, getColumnNameForDateRange, getColumnRectObj, getColumnTypeAmounts, getCombinedFilters, getCurrencySymbol, getDataConfig, getDataFormatting, getDateColumnIndex, getDateRangeIntersection, getDateRangesFromInterpretation, getDatesFromRT, getDayJSObj, getDayLocalStartDate, getDayjsObjForStringType, getDefaultDisplayType, getDrilldownData, getDrilldownGroupby, getEpochFromDate, getFilterDrilldown, getFilterPrecision, getFirstChartDisplayType, getGroupBys, getGroupBysFromPivotTable, getGroupBysFromTable, getGroupableColumns, getHeatmapRectObj, getHiddenColumns, getHistogramScale, getKey, getKeyByValue, getLabelsBBox, getLegendLabels, getLegendLabelsForGroupbyQuery, getLegendLabelsForMultiSeries, getLegendLabelsForSingleColumn, getLegendLocation, getLegendScale, getLegendTitleFromColumns, getLineVertexObj, getLinearAxisTitle, getLinearScale, getLinearScales, getMaxLegendHeight, getMaxLegendSectionWidth, getMaxTickLabelWidth, getMaxValueFromKeyValueObj, getMinAndMaxValues, getMinValueFromKeyValueObj, getMonthLocalStartDate, getMultiSeriesColumnIndex, getNiceDateTickValues, getNiceTickValues, getNumberAxisUnits, getNumberColumnIndices, getNumberFormatConfig, getNumberOfGroupables, getNumberOfSeries, getObjSize, getOpacityScale, getPadding, getPieChartData, getPivotColumnIndexConfig, getPotentialDisplayTypes, getPrecisionForDayJS, getQueryParams, getRadiusScale, getRangeForAxis, getRowNumberListForPopover, getSVGBase64, getScheduleFrequencyObject, getStartAndEndDateFromDateStrs, getStringColumnIndices, getStringFromSource, getSupportedConditionTypes, getSupportedDisplayTypes, getThemeType, getThemeValue, getTickSizeFromNumTicks, getTickValues, getTimeFrameTextFromChunk, getTimeObjFromTimeStamp, getTimeRangeFromDateArray, getTimeRangeFromRT, getTimeScale, getTooltipContent, getTotalBottomPadding, getTotalHorizontalPadding, getTotalLeftPadding, getTotalPossibleLegendSections, getTotalRightPadding, getTotalTopPadding, getTotalVerticalPadding, getUniqueYearsForColumn, getUnitSymbol, getUnitsForColumn, getVisibleColumns, getWeekLocalStartDate, getWeekdayFromTimeStamp, getlegendLabelSections, handleTooltipBoundaryCollision, hasColumnIndex, hasData, hasDateColumn, hasMoreData, hasNumberColumn, hasStringColumn, initializeAlert, invertArray, isAggregation, isChartType, isColumnDateType, isColumnIndexConfigValid, isColumnIndexValid, isColumnIndicesValid, isColumnNumberType, isColumnStringType, isDataLimited, isDisplayTypeValid, isDrilldown, isError500Type, isExpressionQueryValid, isISODate, isListQuery, isNumber, isObject, isSingleValueResponse, isTableType, color as legendColor, lineCommand, makeEmptyArray, markNotificationAsUnread, mergeBboxes, mergeBoundingClientRects, mergeSources, nameValueObject, numberIndicesArraysOverlap, onlySeriesVisibilityChanged, onlyUnique, potentiallySupportsDatePivot, potentiallySupportsPivot, removeElementAtIndex, removeFromDOM, removeHiddenLegendLabels, removeNotificationChannel, removeUserFromProjectRule, reportProblem, resetDateIsFuture, resetNotificationCount, rotateArray, roundDownToNearestMultiple, roundToNearestLog10, roundToNearestMultiple, roundUpToNearestMultiple, runDrilldown, runQuery, runQueryNewPage, runQueryOnly, runQueryValidation, scaleZero, sendDataToChannel, sendSuggestion, setCaretPosition, setColumnVisibility, setFilterFunction, setFilters, setHeaderFilterPlaceholder, setSorterFunction, setTickSize, setTickValues, shouldLabelsRotate, shouldPlotMultiSeries, showEvaluationFrequencySetting, sortDataByDate, supports2DCharts, supportsDatePivotTable, supportsPieChart, supportsRegularPivotTable, svgPathD, svgToPng, tableFilterParams, toggleCustomDataAlertStatus, toggleProjectDataAlertStatus, transformLabels, transformQueryResponse, transformQueryResponseColumns, unsetFilterFromAPI, updateDataAlert, updateDataAlertStatus, usePivotDataForChart, validateExpression };
|