autoql-fe-utils 1.11.12 → 1.11.13
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.mts +80 -127
- package/dist/index.d.ts +80 -127
- package/dist/index.global.js +409 -969
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +411 -978
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +410 -978
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -234,9 +234,9 @@ declare const AGG_TYPES: {
|
|
|
234
234
|
AVG: AggType;
|
|
235
235
|
MIN: AggType;
|
|
236
236
|
MAX: AggType;
|
|
237
|
-
MEDIAN: AggType;
|
|
238
237
|
COUNT: AggType;
|
|
239
238
|
COUNT_DISTINCT: AggType;
|
|
239
|
+
MEDIAN: AggType;
|
|
240
240
|
STD_DEV: AggType;
|
|
241
241
|
VARIANCE: AggType;
|
|
242
242
|
};
|
|
@@ -620,7 +620,6 @@ interface FilterLock {
|
|
|
620
620
|
}
|
|
621
621
|
interface FrontendReq {
|
|
622
622
|
additional_selects?: any[];
|
|
623
|
-
display_overrides?: DisplayOverride[];
|
|
624
623
|
session_locked_conditions: Object;
|
|
625
624
|
page_size: number;
|
|
626
625
|
disambiguation: any[];
|
|
@@ -932,19 +931,16 @@ declare const roundToNearestLog10: (number: any) => number;
|
|
|
932
931
|
* Strict numeric equality helper used across filter logic.
|
|
933
932
|
* Returns true when both values parse to numbers and are exactly equal.
|
|
934
933
|
*/
|
|
935
|
-
declare const isNumericEqual: (a:
|
|
934
|
+
declare const isNumericEqual: (a: any, b: any) => boolean;
|
|
936
935
|
|
|
937
936
|
declare const currentEventLoopEnd: () => Promise<unknown>;
|
|
938
|
-
declare const animateInputText: ({ text, inputRef, callback, totalAnimationTime
|
|
937
|
+
declare const animateInputText: ({ text, inputRef, callback, totalAnimationTime }: {
|
|
939
938
|
text?: string;
|
|
940
|
-
inputRef
|
|
939
|
+
inputRef: any;
|
|
941
940
|
callback?: () => void;
|
|
942
941
|
totalAnimationTime?: number;
|
|
943
942
|
}) => Promise<void>;
|
|
944
|
-
|
|
945
|
-
* Ensure tooltip stays within window bounds. Defensive: tolerate missing bbox/window in tests.
|
|
946
|
-
*/
|
|
947
|
-
declare const handleTooltipBoundaryCollision: (_e: any, self: any) => void;
|
|
943
|
+
declare const handleTooltipBoundaryCollision: (e: any, self: any) => void;
|
|
948
944
|
declare const removeFromDOM: (elem: any) => void;
|
|
949
945
|
declare const setCaretPosition: (elem: any, caretPos: any) => void;
|
|
950
946
|
declare const getPadding: (element: any) => {
|
|
@@ -953,10 +949,7 @@ declare const getPadding: (element: any) => {
|
|
|
953
949
|
top: number;
|
|
954
950
|
bottom: number;
|
|
955
951
|
};
|
|
956
|
-
|
|
957
|
-
* Parse query params from a URL. Prefer URL API, fallback to anchor parsing.
|
|
958
|
-
*/
|
|
959
|
-
declare const getQueryParams: (url: string) => Record<string, string>;
|
|
952
|
+
declare const getQueryParams: (url: any) => {};
|
|
960
953
|
declare const getSVGBase64: (svgElement: any) => string;
|
|
961
954
|
/**
|
|
962
955
|
* converts an svg string to base64 png using the domUrl
|
|
@@ -966,12 +959,7 @@ declare const getSVGBase64: (svgElement: any) => string;
|
|
|
966
959
|
* @return {Promise} a promise to the bas64 png image
|
|
967
960
|
*/
|
|
968
961
|
declare const svgToPng: (svgElement: SVGElement, scale: number, CSS_PREFIX: string) => Promise<string>;
|
|
969
|
-
declare const getBBoxFromRef: (ref: any) =>
|
|
970
|
-
x: any;
|
|
971
|
-
y: any;
|
|
972
|
-
width: any;
|
|
973
|
-
height: any;
|
|
974
|
-
};
|
|
962
|
+
declare const getBBoxFromRef: (ref: any) => any;
|
|
975
963
|
|
|
976
964
|
interface getSupportedDisplayTypesParams {
|
|
977
965
|
response?: AxiosResponse;
|
|
@@ -1052,7 +1040,16 @@ declare const formatEpochDate: (value: any, col: Column, config?: DataFormatting
|
|
|
1052
1040
|
declare const dateStringSortFn: (a: any, b: any, col: Column) => number;
|
|
1053
1041
|
declare const numberSortFn: (a: any, b: any) => number;
|
|
1054
1042
|
declare const dateSortFn: (a: any, b: any, col: Column, isTable: any) => number;
|
|
1055
|
-
declare const filterDataByColumn: (data: any[], columns:
|
|
1043
|
+
declare const filterDataByColumn: (data: any[], columns: any[], columnIndex: any, value: any, operator: any, dataFormatting?: {
|
|
1044
|
+
currencyCode: string;
|
|
1045
|
+
languageCode: string;
|
|
1046
|
+
currencyDecimals: number;
|
|
1047
|
+
quantityDecimals: number;
|
|
1048
|
+
ratioDecimals: number;
|
|
1049
|
+
comparisonDisplay: string;
|
|
1050
|
+
monthYearFormat: string;
|
|
1051
|
+
dayMonthYearFormat: string;
|
|
1052
|
+
}) => any[];
|
|
1056
1053
|
declare const sortDataByColumn: (data: any, columns: any, columnIndex: any, sortDirection?: string) => any;
|
|
1057
1054
|
declare const sortDataByDate: (data: any, tableColumns: any, sortDirection: string, reverse: any) => any;
|
|
1058
1055
|
declare const sortDataByAlphabet: (data: any, tableColumns: any, sortDirection: string, isTable: any) => any;
|
|
@@ -1122,13 +1119,13 @@ interface JoinColumnsResult {
|
|
|
1122
1119
|
firstJoinColumnsIndices: number[];
|
|
1123
1120
|
secondJoinColumnsIndices?: number[];
|
|
1124
1121
|
}
|
|
1125
|
-
declare const isColumnSummable: (col
|
|
1126
|
-
declare const isColumnNumberType: (col
|
|
1127
|
-
declare const isColumnStringType: (col
|
|
1122
|
+
declare const isColumnSummable: (col: any) => boolean;
|
|
1123
|
+
declare const isColumnNumberType: (col: any) => boolean;
|
|
1124
|
+
declare const isColumnStringType: (col: any) => boolean;
|
|
1128
1125
|
declare const isColumnDateType: (col: any) => boolean;
|
|
1129
|
-
declare const hasNumberColumn: (columns
|
|
1130
|
-
declare const hasStringColumn: (columns
|
|
1131
|
-
declare const hasDateColumn: (columns
|
|
1126
|
+
declare const hasNumberColumn: (columns: any) => boolean;
|
|
1127
|
+
declare const hasStringColumn: (columns: any) => boolean;
|
|
1128
|
+
declare const hasDateColumn: (columns: any) => boolean;
|
|
1132
1129
|
declare const getVisibleColumns: (columns: any) => Column[];
|
|
1133
1130
|
declare const normalizeColumnIdentifier: (colLike: string | {
|
|
1134
1131
|
display_name?: string;
|
|
@@ -1138,31 +1135,17 @@ declare const normalizeColumnIdentifier: (colLike: string | {
|
|
|
1138
1135
|
declare const getHiddenColumns: (columns: Column[]) => Column[];
|
|
1139
1136
|
declare const areSomeColumnsHidden: (columns: Column[]) => boolean;
|
|
1140
1137
|
declare const areAllColumnsHidden: (columns: Column[]) => boolean;
|
|
1141
|
-
declare const getGroupableColumns: (columns
|
|
1142
|
-
declare const getGroupBys: (row:
|
|
1143
|
-
groupBys:
|
|
1144
|
-
name: string;
|
|
1145
|
-
drill_down?: unknown;
|
|
1146
|
-
value: string;
|
|
1147
|
-
operator?: string;
|
|
1148
|
-
}[];
|
|
1138
|
+
declare const getGroupableColumns: (columns: any) => any;
|
|
1139
|
+
declare const getGroupBys: (row: any, columns: any) => {
|
|
1140
|
+
groupBys: any;
|
|
1149
1141
|
supportedByAPI: boolean;
|
|
1150
1142
|
};
|
|
1151
|
-
declare const getGroupBysFromTable: (cell: any, tableColumns
|
|
1152
|
-
name: string;
|
|
1153
|
-
drill_down?: unknown;
|
|
1154
|
-
value: string;
|
|
1155
|
-
operator?: string;
|
|
1156
|
-
}[];
|
|
1143
|
+
declare const getGroupBysFromTable: (cell: any, tableColumns: any) => any;
|
|
1157
1144
|
declare const getGroupBysFromPivotTable: ({ cell, rowHeaderDefinition, columnHeaderDefinition }: {
|
|
1158
1145
|
cell: any;
|
|
1159
1146
|
rowHeaderDefinition: any;
|
|
1160
1147
|
columnHeaderDefinition: any;
|
|
1161
|
-
}) =>
|
|
1162
|
-
name: any;
|
|
1163
|
-
drill_down: any;
|
|
1164
|
-
value: string;
|
|
1165
|
-
}[];
|
|
1148
|
+
}) => any[];
|
|
1166
1149
|
declare const isAggregation: (columns: any) => boolean;
|
|
1167
1150
|
declare const getColumnTypeAmounts: (columns: any) => {
|
|
1168
1151
|
amountOfNumberColumns: number;
|
|
@@ -1189,28 +1172,28 @@ declare const formatQueryColumns: ({ columns, aggConfig, queryResponse, onTableH
|
|
|
1189
1172
|
enableTableSorting?: boolean;
|
|
1190
1173
|
dataFormatting?: DataFormatting;
|
|
1191
1174
|
}) => Column[] | undefined;
|
|
1192
|
-
declare const getStringColumnIndices: (columns
|
|
1193
|
-
stringColumnIndices:
|
|
1194
|
-
stringColumnIndex:
|
|
1175
|
+
declare const getStringColumnIndices: (columns: any, supportsPivot?: boolean, includeNumerics?: boolean, defaultDateColumn?: string) => {
|
|
1176
|
+
stringColumnIndices: any;
|
|
1177
|
+
stringColumnIndex: any;
|
|
1195
1178
|
legendColumnIndex?: undefined;
|
|
1196
1179
|
} | {
|
|
1197
1180
|
stringColumnIndex: any;
|
|
1198
|
-
stringColumnIndices:
|
|
1199
|
-
legendColumnIndex:
|
|
1181
|
+
stringColumnIndices: any;
|
|
1182
|
+
legendColumnIndex: any;
|
|
1200
1183
|
};
|
|
1201
|
-
declare const getNumberColumnIndices: (columns
|
|
1202
|
-
numberColumnIndex:
|
|
1203
|
-
numberColumnIndices:
|
|
1204
|
-
numberColumnIndices2:
|
|
1205
|
-
numberColumnIndex2:
|
|
1206
|
-
currencyColumnIndices:
|
|
1207
|
-
quantityColumnIndices:
|
|
1208
|
-
ratioColumnIndices:
|
|
1209
|
-
currencyColumnIndex:
|
|
1210
|
-
quantityColumnIndex:
|
|
1211
|
-
ratioColumnIndex:
|
|
1212
|
-
countColumnIndex:
|
|
1213
|
-
allNumberColumnIndices:
|
|
1184
|
+
declare const getNumberColumnIndices: (columns: any, isPivot?: any, defaultAmountColumn?: string) => {
|
|
1185
|
+
numberColumnIndex: any;
|
|
1186
|
+
numberColumnIndices: any;
|
|
1187
|
+
numberColumnIndices2: any;
|
|
1188
|
+
numberColumnIndex2: any;
|
|
1189
|
+
currencyColumnIndices: any;
|
|
1190
|
+
quantityColumnIndices: any;
|
|
1191
|
+
ratioColumnIndices: any;
|
|
1192
|
+
currencyColumnIndex: any;
|
|
1193
|
+
quantityColumnIndex: any;
|
|
1194
|
+
ratioColumnIndex: any;
|
|
1195
|
+
countColumnIndex: any;
|
|
1196
|
+
allNumberColumnIndices: any[];
|
|
1214
1197
|
};
|
|
1215
1198
|
declare const getMultiSeriesColumnIndex: (columns: any) => any;
|
|
1216
1199
|
declare const isColumnIndexValid: (index: any, columns: any) => boolean;
|
|
@@ -1237,9 +1220,9 @@ declare const isColumnIndexConfigValid: ({ response, columnIndexConfig, columns,
|
|
|
1237
1220
|
}) => boolean;
|
|
1238
1221
|
declare const getQuerySelectableJoinColumns: (columns: any) => any;
|
|
1239
1222
|
declare const getDefaultJoinColumnAndDisplayNameAndJoinColumnsIndices: (queryResponse: any) => {
|
|
1240
|
-
defaultJoinColumn:
|
|
1223
|
+
defaultJoinColumn: any[];
|
|
1241
1224
|
defaultDisplayName: string;
|
|
1242
|
-
defaultJoinColumnsIndices:
|
|
1225
|
+
defaultJoinColumnsIndices: any[];
|
|
1243
1226
|
};
|
|
1244
1227
|
declare const getDefaultJoinColumns: (firstQueryResult: any, secondQueryResult: any) => JoinColumnsResult;
|
|
1245
1228
|
|
|
@@ -1271,7 +1254,7 @@ interface FilterCondition {
|
|
|
1271
1254
|
value: string | number | boolean | Date | number[] | string[] | Date[];
|
|
1272
1255
|
type: FilterType | FilterTypeEnum;
|
|
1273
1256
|
}
|
|
1274
|
-
type MatcherFn = (cellValue:
|
|
1257
|
+
type MatcherFn = (cellValue: any, condition: FilterCondition) => boolean;
|
|
1275
1258
|
interface MatcherRegistry {
|
|
1276
1259
|
[operator: string]: MatcherFn;
|
|
1277
1260
|
}
|
|
@@ -1280,9 +1263,9 @@ declare function isValidOperator(op: string): op is FilterOperator;
|
|
|
1280
1263
|
declare function isValidFilterType(t: string): t is FilterType;
|
|
1281
1264
|
declare function parseLocaleNumber(value: string | number, locale?: string): number;
|
|
1282
1265
|
type Logger = {
|
|
1283
|
-
error: (...args:
|
|
1284
|
-
warn: (...args:
|
|
1285
|
-
info: (...args:
|
|
1266
|
+
error: (...args: any[]) => void;
|
|
1267
|
+
warn: (...args: any[]) => void;
|
|
1268
|
+
info: (...args: any[]) => void;
|
|
1286
1269
|
};
|
|
1287
1270
|
declare function setLogger(logger: Partial<Logger>): void;
|
|
1288
1271
|
declare function getLogger(): Logger;
|
|
@@ -1290,17 +1273,13 @@ declare function parseFilter(raw: string | number | boolean, type: FilterType |
|
|
|
1290
1273
|
declare function matchCell(cellValue: any, condition: FilterCondition): boolean;
|
|
1291
1274
|
|
|
1292
1275
|
declare const functionsEqual: (a: Function, b: Function) => boolean;
|
|
1293
|
-
declare const isObject: (obj:
|
|
1276
|
+
declare const isObject: (obj: any) => boolean;
|
|
1294
1277
|
declare const deepEqual: (objA: Object, objB: Object) => boolean;
|
|
1295
|
-
declare const difference: (objA:
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
declare const rotateArray: <T>(array: T[], n?: number) => T[];
|
|
1301
|
-
declare const onlyUnique: <T>(value: T, index: number, self: T[]) => boolean;
|
|
1302
|
-
declare const makeEmptyArray: <T = string>(w: number, h: number, value?: T) => T[][];
|
|
1303
|
-
declare const removeElementAtIndex: <T>(array: T[], index: number) => T[];
|
|
1278
|
+
declare const difference: (objA: Object, objB: Object) => any[];
|
|
1279
|
+
declare const rotateArray: (array: any, n?: number) => any[];
|
|
1280
|
+
declare const onlyUnique: (value: any, index: any, self: any) => boolean;
|
|
1281
|
+
declare const makeEmptyArray: (w: any, h: any, value?: string) => any[];
|
|
1282
|
+
declare const removeElementAtIndex: (array: any, index: any) => any;
|
|
1304
1283
|
|
|
1305
1284
|
declare const aggregateOtherCategory: (data: any, columnIndexConfig: any, maxElements?: number) => any;
|
|
1306
1285
|
interface ColumnIndexConfig {
|
|
@@ -1383,7 +1362,7 @@ declare const onTableCellClick: ({ cell, columns, tableConfig, pivotData }: {
|
|
|
1383
1362
|
tableConfig: any;
|
|
1384
1363
|
pivotData: any;
|
|
1385
1364
|
}) => {
|
|
1386
|
-
groupBys:
|
|
1365
|
+
groupBys: {};
|
|
1387
1366
|
supportedByAPI: boolean;
|
|
1388
1367
|
};
|
|
1389
1368
|
|
|
@@ -1420,10 +1399,6 @@ declare const initializeQueryValidationOptions: ({ responseBody, initialSelectio
|
|
|
1420
1399
|
};
|
|
1421
1400
|
declare const getQueryValidationQueryText: (newSelectedSuggestions: any, plainTextList: any) => string;
|
|
1422
1401
|
|
|
1423
|
-
type CancelTokenLike = AbortController | AbortSignal | {
|
|
1424
|
-
promise: Promise<unknown>;
|
|
1425
|
-
} | null | undefined;
|
|
1426
|
-
|
|
1427
1402
|
declare const isError500Type: (referenceId: any) => boolean;
|
|
1428
1403
|
declare const getCurrentTimezone: () => any;
|
|
1429
1404
|
declare const fetchSuggestions: ({ query, queryId, domain, apiKey, token, cancelToken, }?: {
|
|
@@ -1432,7 +1407,7 @@ declare const fetchSuggestions: ({ query, queryId, domain, apiKey, token, cancel
|
|
|
1432
1407
|
domain?: string;
|
|
1433
1408
|
apiKey?: string;
|
|
1434
1409
|
token?: string;
|
|
1435
|
-
cancelToken?:
|
|
1410
|
+
cancelToken?: any;
|
|
1436
1411
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1437
1412
|
declare const runQueryNewPage: ({ queryId, domain, apiKey, token, page, cancelToken, }?: {
|
|
1438
1413
|
queryId?: string;
|
|
@@ -1440,7 +1415,7 @@ declare const runQueryNewPage: ({ queryId, domain, apiKey, token, page, cancelTo
|
|
|
1440
1415
|
apiKey?: string;
|
|
1441
1416
|
token?: string;
|
|
1442
1417
|
page?: number;
|
|
1443
|
-
cancelToken?:
|
|
1418
|
+
cancelToken?: any;
|
|
1444
1419
|
}) => Promise<any>;
|
|
1445
1420
|
interface QueryParams {
|
|
1446
1421
|
query?: string;
|
|
@@ -1457,7 +1432,7 @@ interface QueryParams {
|
|
|
1457
1432
|
tableFilters?: Object[];
|
|
1458
1433
|
pageSize?: number;
|
|
1459
1434
|
allowSuggestions?: boolean;
|
|
1460
|
-
cancelToken?:
|
|
1435
|
+
cancelToken?: any;
|
|
1461
1436
|
scope?: string;
|
|
1462
1437
|
enableQueryValidation?: boolean;
|
|
1463
1438
|
skipQueryValidation?: boolean;
|
|
@@ -1482,7 +1457,7 @@ declare const runQueryValidation: ({ text, domain, apiKey, token, cancelToken, }
|
|
|
1482
1457
|
domain?: string;
|
|
1483
1458
|
apiKey?: string;
|
|
1484
1459
|
token?: string;
|
|
1485
|
-
cancelToken?:
|
|
1460
|
+
cancelToken?: any;
|
|
1486
1461
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1487
1462
|
declare const runQuery: ({ query, userSelection, userSelectionFinal, translation, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, enableQueryValidation, skipQueryValidation, scope, newColumns, displayOverrides, }?: QueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1488
1463
|
declare const runCachedDashboardQuery: ({ query, domain, apiKey, token, source, orders, tableFilters, allowSuggestions, cancelToken, scope, newColumns, queryIndex, tileKey, dashboardId, force, }?: DashboardTileQueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
@@ -1504,7 +1479,7 @@ declare const runDrilldown: ({ queryID, groupBys, translation, test, domain, api
|
|
|
1504
1479
|
orders?: Object[];
|
|
1505
1480
|
source?: string;
|
|
1506
1481
|
tableFilters?: Object[];
|
|
1507
|
-
cancelToken?:
|
|
1482
|
+
cancelToken?: any;
|
|
1508
1483
|
pageSize?: number;
|
|
1509
1484
|
newColumns?: AdditionalSelect[];
|
|
1510
1485
|
displayOverrides?: DisplayOverride[];
|
|
@@ -1527,7 +1502,7 @@ declare const fetchVLAutocomplete: ({ suggestion, domain, token, apiKey, context
|
|
|
1527
1502
|
token?: string;
|
|
1528
1503
|
context?: string;
|
|
1529
1504
|
filter?: string;
|
|
1530
|
-
cancelToken?:
|
|
1505
|
+
cancelToken?: any;
|
|
1531
1506
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1532
1507
|
declare const fetchFilters: ({ apiKey, token, domain, }?: {
|
|
1533
1508
|
domain?: string;
|
|
@@ -1552,7 +1527,7 @@ declare const setColumnVisibility: ({ apiKey, token, domain, columns, }?: {
|
|
|
1552
1527
|
domain?: string;
|
|
1553
1528
|
apiKey?: string;
|
|
1554
1529
|
token?: string;
|
|
1555
|
-
columns?:
|
|
1530
|
+
columns?: any[];
|
|
1556
1531
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1557
1532
|
declare const sendSuggestion: ({ queryId, suggestion, apiKey, domain, token, }?: {
|
|
1558
1533
|
queryId?: string;
|
|
@@ -1570,13 +1545,12 @@ declare const fetchExploreQueries: ({ keywords, pageSize, pageNumber, domain, ap
|
|
|
1570
1545
|
token?: string;
|
|
1571
1546
|
skipQueryValidation?: boolean;
|
|
1572
1547
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1573
|
-
declare const reportProblem: ({ message, queryId, domain, apiKey, token,
|
|
1548
|
+
declare const reportProblem: ({ message, queryId, domain, apiKey, token, }?: {
|
|
1574
1549
|
message?: string;
|
|
1575
1550
|
queryId?: string;
|
|
1576
1551
|
domain?: string;
|
|
1577
1552
|
apiKey?: string;
|
|
1578
1553
|
token?: string;
|
|
1579
|
-
isCorrect?: boolean;
|
|
1580
1554
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1581
1555
|
declare const fetchLLMSummary: ({ data, queryID, domain, apiKey, token, }?: {
|
|
1582
1556
|
data?: string;
|
|
@@ -1856,10 +1830,6 @@ declare const getDateColumns: (columns: any) => Column[];
|
|
|
1856
1830
|
declare const getCleanColumnName: (colName: string) => string;
|
|
1857
1831
|
declare const buildPlainColumnArrayFn: (columnName: string) => string[];
|
|
1858
1832
|
declare function normalizeCoalesceParentheses(s: string): string;
|
|
1859
|
-
declare const getProtectedRanges: (text: string, funcs: string[]) => Array<[
|
|
1860
|
-
number,
|
|
1861
|
-
number
|
|
1862
|
-
]>;
|
|
1863
1833
|
declare function transformDivisionExpression(input: string): string;
|
|
1864
1834
|
|
|
1865
1835
|
declare const isSelectableNumberColumn: (col?: Partial<Column> | any) => boolean;
|
|
@@ -1867,12 +1837,7 @@ declare const isSelectableStringColumn: (col?: Partial<Column> | any) => boolean
|
|
|
1867
1837
|
|
|
1868
1838
|
declare const dataStructureChanged: (props: any, prevProps: any) => boolean;
|
|
1869
1839
|
declare const onlySeriesVisibilityChanged: (props: any, prevProps: any) => boolean;
|
|
1870
|
-
|
|
1871
|
-
* Safely return a numeric result for a "zero" input across different scale shapes.
|
|
1872
|
-
* Handles function-like d3 scales, plain domain/range objects, and fallbacks.
|
|
1873
|
-
* See the `src/Charts/tests/scaleZero*.test.*` files for the full behavior matrix.
|
|
1874
|
-
*/
|
|
1875
|
-
declare const scaleZero: (scale: any, fallback?: number) => number;
|
|
1840
|
+
declare const scaleZero: (scale: any) => any;
|
|
1876
1841
|
declare const getKey: (rowIndex: any, cellIndex: any, extraIndex?: number) => string;
|
|
1877
1842
|
declare const shouldLabelsRotate: (axisElement: any) => boolean;
|
|
1878
1843
|
declare const transformLabels: (orient: string, axisElement: any, innerHeight: number, rotateLabels?: boolean) => boolean;
|
|
@@ -2168,7 +2133,12 @@ declare const mergeBoundingClientRects: (boundingBoxes: any) => {
|
|
|
2168
2133
|
height: number;
|
|
2169
2134
|
width: number;
|
|
2170
2135
|
};
|
|
2171
|
-
declare const mergeBboxes: (bboxes: any) =>
|
|
2136
|
+
declare const mergeBboxes: (bboxes: any) => {
|
|
2137
|
+
x: any;
|
|
2138
|
+
y: any;
|
|
2139
|
+
height: number;
|
|
2140
|
+
width: number;
|
|
2141
|
+
};
|
|
2172
2142
|
declare const getRowNumberListForPopover: (initialPageSize: any, totalRows: any) => any;
|
|
2173
2143
|
declare const getAxisLabelsBbox: (axisElement: any) => {
|
|
2174
2144
|
x: any;
|
|
@@ -2232,22 +2202,6 @@ declare const getPieChartData: ({ data, numberColumnIndex, legendLabels }: {
|
|
|
2232
2202
|
pieChartFn: any;
|
|
2233
2203
|
legendScale: any;
|
|
2234
2204
|
};
|
|
2235
|
-
/** Retry measuring element size until stable (browser-only, returns current rect in tests) */
|
|
2236
|
-
declare const waitForStableRect: (el: Element | null, opts?: {
|
|
2237
|
-
retries?: number;
|
|
2238
|
-
stableThreshold?: number;
|
|
2239
|
-
delayMs?: number;
|
|
2240
|
-
}) => Promise<{
|
|
2241
|
-
width: number;
|
|
2242
|
-
height: number;
|
|
2243
|
-
}>;
|
|
2244
|
-
/** Observe container resize/visibility changes and re-render; waits for stable size on first render (browser-only) */
|
|
2245
|
-
declare const observeAndRender: (container: Element | null, renderFn: (rect: {
|
|
2246
|
-
width: number;
|
|
2247
|
-
height: number;
|
|
2248
|
-
}) => void | Promise<void>, opts?: {
|
|
2249
|
-
debounceMs?: number;
|
|
2250
|
-
}) => () => void;
|
|
2251
2205
|
declare const getDefaultBucketConfig: (data: any, bucketSize: any) => {
|
|
2252
2206
|
bucketSize: any;
|
|
2253
2207
|
minBucketSize: any;
|
|
@@ -2598,14 +2552,14 @@ declare const getSampleQueryText: (query: any, values?: {}) => any;
|
|
|
2598
2552
|
declare const fetchTopicsForVL: () => void;
|
|
2599
2553
|
declare const getQueryRequestParams: (chunk: any, values: any) => {
|
|
2600
2554
|
query: any;
|
|
2601
|
-
userSelection:
|
|
2555
|
+
userSelection: any[];
|
|
2602
2556
|
};
|
|
2603
2557
|
declare const fetchDataExplorerAutocomplete: ({ suggestion, domain, token, apiKey, cancelToken, }?: {
|
|
2604
2558
|
suggestion?: string;
|
|
2605
2559
|
domain?: string;
|
|
2606
2560
|
apiKey?: string;
|
|
2607
2561
|
token?: string;
|
|
2608
|
-
cancelToken?:
|
|
2562
|
+
cancelToken?: any;
|
|
2609
2563
|
}) => Promise<any[]>;
|
|
2610
2564
|
declare const fetchDataExplorerSampleQueries: ({ domain, apiKey, token, text, context, columns, cancelToken, }?: {
|
|
2611
2565
|
domain?: string;
|
|
@@ -2614,7 +2568,7 @@ declare const fetchDataExplorerSampleQueries: ({ domain, apiKey, token, text, co
|
|
|
2614
2568
|
text?: string;
|
|
2615
2569
|
context?: string;
|
|
2616
2570
|
columns?: object;
|
|
2617
|
-
cancelToken?:
|
|
2571
|
+
cancelToken?: any;
|
|
2618
2572
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
2619
2573
|
declare const fetchDataExplorerSuggestions: ({ pageSize, pageNumber, domain, apiKey, token, text, context, selectedVL, userVLSelection, skipQueryValidation, }?: {
|
|
2620
2574
|
pageSize?: number;
|
|
@@ -2648,7 +2602,7 @@ declare const fetchDataPreview: ({ subject, domain, apiKey, token, source, numRo
|
|
|
2648
2602
|
token?: string;
|
|
2649
2603
|
source?: string;
|
|
2650
2604
|
numRows?: number;
|
|
2651
|
-
cancelToken?:
|
|
2605
|
+
cancelToken?: any;
|
|
2652
2606
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
2653
2607
|
|
|
2654
2608
|
declare const fetchNotificationData: ({ id, domain, apiKey, token }: {
|
|
@@ -2919,7 +2873,6 @@ declare const getQueryFn: (response: TransformedAxiosResponse | undefined) => ({
|
|
|
2919
2873
|
}) => any;
|
|
2920
2874
|
declare const transformQueryResponse: (response: AxiosResponse | undefined, originalQueryID?: string, isDrilldown?: boolean, newColumns?: AdditionalSelect[]) => TransformedAxiosResponse;
|
|
2921
2875
|
declare const transformQueryResponseColumns: (response: AxiosResponse, addedColumns?: AdditionalSelect[]) => Column[];
|
|
2922
|
-
declare const transformQueryResponseImmutable: (response: AxiosResponse | undefined, originalQueryID?: string, isDrilldown?: boolean, newColumns?: AdditionalSelect[]) => TransformedAxiosResponse;
|
|
2923
2876
|
|
|
2924
2877
|
declare const sendTrainingData: ({ trainingData, apiKey, domain, token, }?: {
|
|
2925
2878
|
trainingData?: object;
|
|
@@ -2963,7 +2916,7 @@ type chartColorVarsResponse = {
|
|
|
2963
2916
|
chartColors: string[];
|
|
2964
2917
|
chartColorsDark: string[];
|
|
2965
2918
|
};
|
|
2966
|
-
declare const getChartColorVars: (prefix
|
|
2919
|
+
declare const getChartColorVars: (prefix: any) => chartColorVarsResponse;
|
|
2967
2920
|
declare const configureTheme: (customThemeConfig?: Theme, prefix?: string) => void;
|
|
2968
2921
|
|
|
2969
2922
|
declare function color(): {
|
|
@@ -2997,4 +2950,4 @@ declare function color(): {
|
|
|
2997
2950
|
on(): any;
|
|
2998
2951
|
};
|
|
2999
2952
|
|
|
3000
|
-
export { AGG_TYPES, AXIS_TITLE_BORDER_PADDING_LEFT, AXIS_TITLE_BORDER_PADDING_TOP, AXIS_TITLE_PADDING_BOTTOM, AXIS_TITLE_PADDING_TOP, type AdditionalSelect, AggType, type AggTypeParams, AggTypes, type ApiFilter, type ApiSorter, type Authentication, type AutoQLJWT, type AvailableSelect, type 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, type Column, Column$1 as ColumnObj, type ColumnSelect, ColumnType, ColumnTypes, CustomColumnRowRangeTypes, CustomColumnTypes, CustomColumnValues, 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_COLUMN_NAME, DEFAULT_CSS_PREFIX, 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, DISABLED_CLASS, DISPLAY_TYPES, DOUBLE_AXIS_CHART_TYPES, DOW_STYLES, type DataConfig, DataExplorerSubject, type DataExplorerSubjectFilter, type DataExplorerSubjectGroups, type DataExplorerSubjectInterface, type DataExplorerSuggestion, DataExplorerTypes, type DataFormatting, DateStringPrecisionTypes, DateUTC, type DisplayOverride, DisplayTypes, EVALUATION_FREQUENCY_OPTIONS, EXISTS_TYPE, FILTER_MATCHERS, FORMULA_CLASS, FUNCTION_OPERATORS, type FilterCondition, type FilterLock, type FilterOperator, FilterOperatorEnum, type FilterType, FilterTypeEnum, type FrontendReq, GENERAL_ERROR, GENERAL_HTML_ERROR, GENERAL_QUERY_ERROR, GLOBAL_OPERATORS, GROUP_TERM_TYPE, GeneralErrorTypes, HIGHLIGHTED_CLASS, HORIZONTAL_LEGEND_SPACING, LABEL_FONT_SIZE, LEGEND_BORDER_PADDING, LEGEND_BORDER_THICKNESS, LEGEND_SHAPE_SIZE, LEGEND_TOP_ADJUSTMENT, LOAD_MORE_DROPDOWN_PADDING_BOTTOM, MAX_CHART_ELEMENTS, MAX_DATA_PAGE_SIZE, MAX_LEGEND_LABELS, MAX_RECENT_SEARCHES, MAX_ROWS_FOR_PIE_CHART, MINIMUM_INNER_HEIGHT, MINIMUM_INNER_WIDTH, MINIMUM_TITLE_LENGTH, MIN_HISTOGRAM_SAMPLE, MONTH_DAY_SELECT_OPTIONS, MONTH_NAMES, type MatcherFn, NUMBER_TERM_TYPE, OPERATORS, ORDERBY_DIRECTIONS, Operators, PATH_SMOOTHING, PERIODIC_TYPE, PROJECT_TYPE, type ParsedInterpretation, type ParsedInterpretationChunk, PrecisionTypes, QUERY_TERM_TYPE, QUERY_TIMEOUT_ERROR, type QueryData, QueryErrorTypes, type QueryResponse, REQUEST_CANCELLED_ERROR, RESET_PERIOD_OPTIONS, ROWS_RANGE, ROWS_RANGE_OPTIONS, type RawColumn, type Rows, SCHEDULED_TYPE, SCHEDULE_FREQUENCY_OPTIONS, SCHEDULE_INTERVAL_OPTIONS, SEASON_NAMES, SampleQueryReplacementTypes, type Scale, type SubjectSuggestion, TABLE_TYPES, TITLE_FONT_SIZE, type TableConfig, type TabulatorFilter, type TabulatorSorter, type Theme, ThemeType, type Tile, type TransformedAxiosResponse, type TransformedQueryResponse, TranslationTypes, UNAUTHENTICATED_ERROR, VERTICAL_LEGEND_SPACING, type ValueLabel, type ValueLabelSuggestion, WEEKDAY_NAMES_MON, WEEKDAY_NAMES_SUN, WINDOW_FUNCTIONS, addSubjectToRecentSearches, addUserToProjectRule, adjustBottomTitleToFit, adjustMinAndMaxForScaleRatio, adjustTitleToFit, adjustTopTitleToFit, adjustVerticalTitleToFit, aggregateData, aggregateDataOld, aggregateOtherCategory, animateInputText, applyLegendTitleStyles, applyPrecisionToDate, applyStylesForHiddenSeries, areAllColumnsHidden, areSomeColumnsHidden, assignLabelToManagementDataAlert, authenticationDefault, autoQLConfigDefault, bezierCommand, buildPlainColumnArrayFn, calculateMinAndMaxSums, capitalizeFirstChar, cloneObject, configureTheme, constructFilter, constructRTArray, convertToFunctionStr, convertToNumber, countDecimals, createDataAlert, createFilterFunction, createManagementDataAlert, createMutatorFn, createNotificationChannel, createSVGPath, currentEventLoopEnd, dataConfigDefault, dataFormattingDefault, dataStructureChanged, dateSortFn, dateStringSortFn, deepEqual, deleteAllNotifications, deleteDataAlert, deleteMultipleNotifications, deleteNotification, difference, dismissAllNotifications, dismissNotification, distributeListsEvenly, doesElementOverflowContainer, exportCSV, extractOperatorFromValue, fetchAutocomplete, fetchDataAlerts, fetchDataExplorerAutocomplete, fetchDataExplorerSampleQueries, fetchDataExplorerSuggestions, fetchDataPreview, fetchExploreQueries, fetchFilters, fetchLLMSummary, fetchNotification, fetchNotificationChannels, fetchNotificationCount, fetchNotificationData, fetchNotificationFeed, fetchRule, fetchSubjectList, fetchSubjectListV2, fetchSubscribedDataAlerts, fetchSuggestions, fetchTopics, fetchTopicsForVL, fetchVLAutocomplete, filterDataByColumn, findNetworkColumns, formatAdditionalSelectColumn, formatChartLabel, formatDatePivotMonth, formatDatePivotYear, formatDateStringType, formatDateType, formatElement, formatEpochDate, formatFiltersForAPI, formatFiltersForTabulator, formatISODateWithPrecision, formatNextScheduleDate, formatNumberFilterValue, formatQueryColumns, formatResetDate, formatSortersForAPI, formatSortersForTabulator, formatStringDate, formatStringDateWithPrecision, formatTableParams, functionsEqual, generateDatePivotData, generateFilterDrilldownResponse, generatePivotData, generatePivotTableData, getAggConfig, getAllDataAlertsLabels, getAllDataAlertsLabelsByProject, getAuthentication, getAutoQLConfig, getAxis, getAxisLabelsBbox, getBBoxFromRef, getBandScale, getBarRectObj, getBinData, getBinLinearScale, getBubbleObj, getChartColorVars, getChartScaleRatio, getCleanColumnName, getColorScale, getColorScales, getColumnDateRanges, getColumnFieldCompat, getColumnIdentifierCompat, getColumnIndexCompat, getColumnIndexConfig, getColumnNameForDateRange, getColumnOriginalIndexCompat, getColumnPositionCompat, getColumnRectObj, getColumnTypeAmounts, getCombinedFilters, getCurrencySymbol, getCurrentTimezone, getDashboardRefreshInterval, getDataAlertsByLabel, getDataConfig, getDataFormatting, getDateColumnIndex, getDateColumns, getDateNoQuotes, getDateRangeIntersection, getDateRangesFromInterpretation, getDatesFromRT, getDayJSObj, getDayLocalStartDate, getDayOfTheMonthFromTimestamp, getDayOfTheMonthSuffix, getDayjsObjForStringType, getDefaultBucketConfig, getDefaultDisplayType, getDefaultJoinColumnAndDisplayNameAndJoinColumnsIndices, getDefaultJoinColumns, getDrilldownData, getDrilldownGroupby, getEpochFromDate, getFilterDrilldown, getFilterPrecision, getFirstChartDisplayType, getFnSummary, getFormattedTimestamp, getGroupBys, getGroupBysFromPivotTable, getGroupBysFromTable, getGroupableColumns, getHeatmapRectObj, getHiddenColumns, getHistogramColumnObj, getHistogramScale, getInitialBucketSize, getInitialSelections, getKey, getKeyByValue, getLabelsBBox, getLegendLabels, getLegendLabelsForGroupbyQuery, getLegendLabelsForMultiSeries, getLegendLabelsForSingleColumn, getLegendLocation, getLegendScale, getLegendTitleFromColumns, getLineVertexObj, getLinearAxisTitle, getLinearScale, getLinearScales, getLogger, getMaxLegendHeight, getMaxLegendSectionWidth, getMaxTickLabelWidth, getMaxValueFromKeyValueObj, getMinAndMaxValues, getMinValueFromKeyValueObj, getMonthLocalStartDate, getMultiSeriesColumnIndex, getNiceDateTickValues, getNiceTickValues, getNotLabeledDataAlerts, getNumberAxisUnits, getNumberColumnIndices, getNumberFormatConfig, getNumberOfGroupables, getNumberOfSeries, getNumericalColumns, getObjSize, getOpacityScale, getOperators, getPadding, getPieChartData, getPivotColumnIndexConfig, getPlainTextList, getPointObj, getPotentialDisplayTypes, getPrecisionForDayJS, getProtectedRanges, getQueryFn, getQueryParams, getQueryRequestParams, getQuerySelectableJoinColumns, getQueryValidationQueryText, getRadiusScale, getRangeForAxis, getRecentSearchesFromLocalStorage, getRecentSelectionID, getRowNumberListForPopover, getSVGBase64, getSampleQueryRegex, getSampleQueryText, getScheduleFrequencyObject, getSelectableColumns, getSortColumnIndex, getSortDirection, getStartAndEndDateFromDateStrs, getStringColumnIndices, getStringColumns, getStringFromSource, getSuggestionLists, getSupportedConditionTypes, getSupportedDisplayTypes, getThemeType, getThemeValue, getTickSizeFromNumTicks, getTickValues, getTimeFrameTextFromChunk, getTimeObjFromTimeStamp, getTimeRangeFromDateArray, getTimeRangeFromRT, getTimeScale, getTitleCase, getTodaysDayOfTheMonth, getTooltipContent, getTotalBottomPadding, getTotalHorizontalPadding, getTotalLeftPadding, getTotalPossibleLegendSections, getTotalRightPadding, getTotalTopPadding, getTotalVerticalPadding, getUniqueYearsForColumn, getUnitSymbol, getUnitsForColumn, getVisibleColumns, getWeekLocalStartDate, getWeekdayFromTimeStamp, getlegendLabelSections, handleTooltipBoundaryCollision, hasColumnIndex, hasData, hasDateColumn, hasMoreData, hasNumberColumn, hasStringColumn, initializeAlert, initializeQueryValidationOptions, isAggSeed, isAggregation, isChartType, isColumnDateType, isColumnIndexConfigValid, isColumnIndexValid, isColumnIndicesValid, isColumnNumberType, isColumnStringType, isColumnSummable, isDataLimited, isDisplayTypeValid, isDrilldown, isError500Type, isExpressionQueryValid, isISODate, isInitialSelectionValid, isListQuery, isNumber, isNumericEqual, isObject, isOperatorJs, isSelectableNumberColumn, isSelectableStringColumn, isSingleValueResponse, isTableType, isTabulatorColumnComponent, isValidFilterType, isValidOperator, isValueEmpty, color as legendColor, lineCommand, makeEmptyArray, markNotificationAsUnread, matchCell, matchesNumericFilterValue, matchesStringFilter, mergeBboxes, mergeBoundingClientRects, mergeSources, nameValueObject, normalizeCoalesceParentheses, normalizeColumnIdentifier, normalizeInitialTableConfigs, normalizeString, normalizeTileConfig, numberIndicesArraysOverlap, numberSortFn, observeAndRender, onTableCellClick, onlySeriesVisibilityChanged, onlyUnique, parseFilter, parseJwt, parseList, parseLocaleNumber, potentiallySupportsDatePivot, potentiallySupportsPivot, previewDataAlert, previewManagementDataAlert, removeDashboardRefreshInterval, removeElementAtIndex, removeFromDOM, removeHiddenLegendLabels, removeNotificationChannel, removeUserFromProjectRule, reportProblem, resetDateIsFuture, resetNotificationCount, rotateArray, roundDownToNearestMultiple, roundToNearestLog10, roundToNearestMultiple, roundUpToNearestMultiple, runCachedDashboardQuery, runDrilldown, runQuery, runQueryNewPage, runQueryOnly, runQueryValidation, scaleZero, sendDataToChannel, sendSuggestion, sendTrainingData, setCaretPosition, setColumnVisibility, setDashboardRefreshInterval, setFilters, setHeaderFilterPlaceholder, setLogger, setRecentSearchesInLocalStorage, setSorterFunction, setTickSize, setTickValues, shouldDisableChartScale, shouldLabelsRotate, shouldPlotMultiSeries, shouldShowAxisSelector, showEvaluationFrequencySetting, sortDataByAlphabet, sortDataByColumn, sortDataByDate, supportsDatePivotTable, supportsNetworkGraph, supportsPieChart, supportsRegularPivotTable, svgPathD, svgToPng, type tableFilterParams, titlelizeString, toggleCustomDataAlertStatus, toggleProjectDataAlertStatus, transformDivisionExpression, transformLabels, transformQueryResponse, transformQueryResponseColumns, transformQueryResponseImmutable, unsetFilterFromAPI, updateDataAlert, updateDataAlertStatus, updateManagementDataAlert, updateStartAndEndIndexes, usePivotDataForChart, uuidv4, validateExpression, waitForStableRect };
|
|
2953
|
+
export { AGG_TYPES, AXIS_TITLE_BORDER_PADDING_LEFT, AXIS_TITLE_BORDER_PADDING_TOP, AXIS_TITLE_PADDING_BOTTOM, AXIS_TITLE_PADDING_TOP, type AdditionalSelect, AggType, type AggTypeParams, AggTypes, type ApiFilter, type ApiSorter, type Authentication, type AutoQLJWT, type AvailableSelect, type 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, type Column, Column$1 as ColumnObj, type ColumnSelect, ColumnType, ColumnTypes, CustomColumnRowRangeTypes, CustomColumnTypes, CustomColumnValues, 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_COLUMN_NAME, DEFAULT_CSS_PREFIX, 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, DISABLED_CLASS, DISPLAY_TYPES, DOUBLE_AXIS_CHART_TYPES, DOW_STYLES, type DataConfig, DataExplorerSubject, type DataExplorerSubjectFilter, type DataExplorerSubjectGroups, type DataExplorerSubjectInterface, type DataExplorerSuggestion, DataExplorerTypes, type DataFormatting, DateStringPrecisionTypes, DateUTC, type DisplayOverride, DisplayTypes, EVALUATION_FREQUENCY_OPTIONS, EXISTS_TYPE, FILTER_MATCHERS, FORMULA_CLASS, FUNCTION_OPERATORS, type FilterCondition, type FilterLock, type FilterOperator, FilterOperatorEnum, type FilterType, FilterTypeEnum, type FrontendReq, GENERAL_ERROR, GENERAL_HTML_ERROR, GENERAL_QUERY_ERROR, GLOBAL_OPERATORS, GROUP_TERM_TYPE, GeneralErrorTypes, HIGHLIGHTED_CLASS, HORIZONTAL_LEGEND_SPACING, LABEL_FONT_SIZE, LEGEND_BORDER_PADDING, LEGEND_BORDER_THICKNESS, LEGEND_SHAPE_SIZE, LEGEND_TOP_ADJUSTMENT, LOAD_MORE_DROPDOWN_PADDING_BOTTOM, MAX_CHART_ELEMENTS, MAX_DATA_PAGE_SIZE, MAX_LEGEND_LABELS, MAX_RECENT_SEARCHES, MAX_ROWS_FOR_PIE_CHART, MINIMUM_INNER_HEIGHT, MINIMUM_INNER_WIDTH, MINIMUM_TITLE_LENGTH, MIN_HISTOGRAM_SAMPLE, MONTH_DAY_SELECT_OPTIONS, MONTH_NAMES, type MatcherFn, NUMBER_TERM_TYPE, OPERATORS, ORDERBY_DIRECTIONS, Operators, PATH_SMOOTHING, PERIODIC_TYPE, PROJECT_TYPE, type ParsedInterpretation, type ParsedInterpretationChunk, PrecisionTypes, QUERY_TERM_TYPE, QUERY_TIMEOUT_ERROR, type QueryData, QueryErrorTypes, type QueryResponse, REQUEST_CANCELLED_ERROR, RESET_PERIOD_OPTIONS, ROWS_RANGE, ROWS_RANGE_OPTIONS, type RawColumn, type Rows, SCHEDULED_TYPE, SCHEDULE_FREQUENCY_OPTIONS, SCHEDULE_INTERVAL_OPTIONS, SEASON_NAMES, SampleQueryReplacementTypes, type Scale, type SubjectSuggestion, TABLE_TYPES, TITLE_FONT_SIZE, type TableConfig, type TabulatorFilter, type TabulatorSorter, type Theme, ThemeType, type Tile, type TransformedAxiosResponse, type TransformedQueryResponse, TranslationTypes, UNAUTHENTICATED_ERROR, VERTICAL_LEGEND_SPACING, type ValueLabel, type ValueLabelSuggestion, WEEKDAY_NAMES_MON, WEEKDAY_NAMES_SUN, WINDOW_FUNCTIONS, addSubjectToRecentSearches, addUserToProjectRule, adjustBottomTitleToFit, adjustMinAndMaxForScaleRatio, adjustTitleToFit, adjustTopTitleToFit, adjustVerticalTitleToFit, aggregateData, aggregateDataOld, aggregateOtherCategory, animateInputText, applyLegendTitleStyles, applyPrecisionToDate, applyStylesForHiddenSeries, areAllColumnsHidden, areSomeColumnsHidden, assignLabelToManagementDataAlert, authenticationDefault, autoQLConfigDefault, bezierCommand, buildPlainColumnArrayFn, calculateMinAndMaxSums, capitalizeFirstChar, cloneObject, configureTheme, constructFilter, constructRTArray, convertToFunctionStr, convertToNumber, countDecimals, createDataAlert, createFilterFunction, createManagementDataAlert, createMutatorFn, createNotificationChannel, createSVGPath, currentEventLoopEnd, dataConfigDefault, dataFormattingDefault, dataStructureChanged, dateSortFn, dateStringSortFn, deepEqual, deleteAllNotifications, deleteDataAlert, deleteMultipleNotifications, deleteNotification, difference, dismissAllNotifications, dismissNotification, distributeListsEvenly, doesElementOverflowContainer, exportCSV, extractOperatorFromValue, fetchAutocomplete, fetchDataAlerts, fetchDataExplorerAutocomplete, fetchDataExplorerSampleQueries, fetchDataExplorerSuggestions, fetchDataPreview, fetchExploreQueries, fetchFilters, fetchLLMSummary, fetchNotification, fetchNotificationChannels, fetchNotificationCount, fetchNotificationData, fetchNotificationFeed, fetchRule, fetchSubjectList, fetchSubjectListV2, fetchSubscribedDataAlerts, fetchSuggestions, fetchTopics, fetchTopicsForVL, fetchVLAutocomplete, filterDataByColumn, findNetworkColumns, formatAdditionalSelectColumn, formatChartLabel, formatDatePivotMonth, formatDatePivotYear, formatDateStringType, formatDateType, formatElement, formatEpochDate, formatFiltersForAPI, formatFiltersForTabulator, formatISODateWithPrecision, formatNextScheduleDate, formatNumberFilterValue, formatQueryColumns, formatResetDate, formatSortersForAPI, formatSortersForTabulator, formatStringDate, formatStringDateWithPrecision, formatTableParams, functionsEqual, generateDatePivotData, generateFilterDrilldownResponse, generatePivotData, generatePivotTableData, getAggConfig, getAllDataAlertsLabels, getAllDataAlertsLabelsByProject, getAuthentication, getAutoQLConfig, getAxis, getAxisLabelsBbox, getBBoxFromRef, getBandScale, getBarRectObj, getBinData, getBinLinearScale, getBubbleObj, getChartColorVars, getChartScaleRatio, getCleanColumnName, getColorScale, getColorScales, getColumnDateRanges, getColumnFieldCompat, getColumnIdentifierCompat, getColumnIndexCompat, getColumnIndexConfig, getColumnNameForDateRange, getColumnOriginalIndexCompat, getColumnPositionCompat, getColumnRectObj, getColumnTypeAmounts, getCombinedFilters, getCurrencySymbol, getCurrentTimezone, getDashboardRefreshInterval, getDataAlertsByLabel, getDataConfig, getDataFormatting, getDateColumnIndex, getDateColumns, getDateNoQuotes, getDateRangeIntersection, getDateRangesFromInterpretation, getDatesFromRT, getDayJSObj, getDayLocalStartDate, getDayOfTheMonthFromTimestamp, getDayOfTheMonthSuffix, getDayjsObjForStringType, getDefaultBucketConfig, getDefaultDisplayType, getDefaultJoinColumnAndDisplayNameAndJoinColumnsIndices, getDefaultJoinColumns, getDrilldownData, getDrilldownGroupby, getEpochFromDate, getFilterDrilldown, getFilterPrecision, getFirstChartDisplayType, getFnSummary, getFormattedTimestamp, getGroupBys, getGroupBysFromPivotTable, getGroupBysFromTable, getGroupableColumns, getHeatmapRectObj, getHiddenColumns, getHistogramColumnObj, getHistogramScale, getInitialBucketSize, getInitialSelections, getKey, getKeyByValue, getLabelsBBox, getLegendLabels, getLegendLabelsForGroupbyQuery, getLegendLabelsForMultiSeries, getLegendLabelsForSingleColumn, getLegendLocation, getLegendScale, getLegendTitleFromColumns, getLineVertexObj, getLinearAxisTitle, getLinearScale, getLinearScales, getLogger, getMaxLegendHeight, getMaxLegendSectionWidth, getMaxTickLabelWidth, getMaxValueFromKeyValueObj, getMinAndMaxValues, getMinValueFromKeyValueObj, getMonthLocalStartDate, getMultiSeriesColumnIndex, getNiceDateTickValues, getNiceTickValues, getNotLabeledDataAlerts, getNumberAxisUnits, getNumberColumnIndices, getNumberFormatConfig, getNumberOfGroupables, getNumberOfSeries, getNumericalColumns, getObjSize, getOpacityScale, getOperators, getPadding, getPieChartData, getPivotColumnIndexConfig, getPlainTextList, getPointObj, getPotentialDisplayTypes, getPrecisionForDayJS, getQueryFn, getQueryParams, getQueryRequestParams, getQuerySelectableJoinColumns, getQueryValidationQueryText, getRadiusScale, getRangeForAxis, getRecentSearchesFromLocalStorage, getRecentSelectionID, getRowNumberListForPopover, getSVGBase64, getSampleQueryRegex, getSampleQueryText, getScheduleFrequencyObject, getSelectableColumns, getSortColumnIndex, getSortDirection, getStartAndEndDateFromDateStrs, getStringColumnIndices, getStringColumns, getStringFromSource, getSuggestionLists, getSupportedConditionTypes, getSupportedDisplayTypes, getThemeType, getThemeValue, getTickSizeFromNumTicks, getTickValues, getTimeFrameTextFromChunk, getTimeObjFromTimeStamp, getTimeRangeFromDateArray, getTimeRangeFromRT, getTimeScale, getTitleCase, getTodaysDayOfTheMonth, getTooltipContent, getTotalBottomPadding, getTotalHorizontalPadding, getTotalLeftPadding, getTotalPossibleLegendSections, getTotalRightPadding, getTotalTopPadding, getTotalVerticalPadding, getUniqueYearsForColumn, getUnitSymbol, getUnitsForColumn, getVisibleColumns, getWeekLocalStartDate, getWeekdayFromTimeStamp, getlegendLabelSections, handleTooltipBoundaryCollision, hasColumnIndex, hasData, hasDateColumn, hasMoreData, hasNumberColumn, hasStringColumn, initializeAlert, initializeQueryValidationOptions, isAggSeed, isAggregation, isChartType, isColumnDateType, isColumnIndexConfigValid, isColumnIndexValid, isColumnIndicesValid, isColumnNumberType, isColumnStringType, isColumnSummable, isDataLimited, isDisplayTypeValid, isDrilldown, isError500Type, isExpressionQueryValid, isISODate, isInitialSelectionValid, isListQuery, isNumber, isNumericEqual, isObject, isOperatorJs, isSelectableNumberColumn, isSelectableStringColumn, isSingleValueResponse, isTableType, isTabulatorColumnComponent, isValidFilterType, isValidOperator, isValueEmpty, color as legendColor, lineCommand, makeEmptyArray, markNotificationAsUnread, matchCell, matchesNumericFilterValue, matchesStringFilter, mergeBboxes, mergeBoundingClientRects, mergeSources, nameValueObject, normalizeCoalesceParentheses, normalizeColumnIdentifier, normalizeInitialTableConfigs, normalizeString, normalizeTileConfig, numberIndicesArraysOverlap, numberSortFn, onTableCellClick, onlySeriesVisibilityChanged, onlyUnique, parseFilter, parseJwt, parseList, parseLocaleNumber, potentiallySupportsDatePivot, potentiallySupportsPivot, previewDataAlert, previewManagementDataAlert, removeDashboardRefreshInterval, removeElementAtIndex, removeFromDOM, removeHiddenLegendLabels, removeNotificationChannel, removeUserFromProjectRule, reportProblem, resetDateIsFuture, resetNotificationCount, rotateArray, roundDownToNearestMultiple, roundToNearestLog10, roundToNearestMultiple, roundUpToNearestMultiple, runCachedDashboardQuery, runDrilldown, runQuery, runQueryNewPage, runQueryOnly, runQueryValidation, scaleZero, sendDataToChannel, sendSuggestion, sendTrainingData, setCaretPosition, setColumnVisibility, setDashboardRefreshInterval, setFilters, setHeaderFilterPlaceholder, setLogger, setRecentSearchesInLocalStorage, setSorterFunction, setTickSize, setTickValues, shouldDisableChartScale, shouldLabelsRotate, shouldPlotMultiSeries, shouldShowAxisSelector, showEvaluationFrequencySetting, sortDataByAlphabet, sortDataByColumn, sortDataByDate, supportsDatePivotTable, supportsNetworkGraph, supportsPieChart, supportsRegularPivotTable, svgPathD, svgToPng, type tableFilterParams, titlelizeString, toggleCustomDataAlertStatus, toggleProjectDataAlertStatus, transformDivisionExpression, transformLabels, transformQueryResponse, transformQueryResponseColumns, unsetFilterFromAPI, updateDataAlert, updateDataAlertStatus, updateManagementDataAlert, updateStartAndEndIndexes, usePivotDataForChart, uuidv4, validateExpression };
|