@infomaximum/widget-sdk 5.7.1 → 5.9.0
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/CHANGELOG.md +14 -0
- package/dist/index.d.ts +110 -47
- package/dist/index.esm.js +259 -125
- package/dist/index.js +263 -126
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [5.9.0](https://github.com/Infomaximum/widget-sdk/compare/v5.8.0...v5.9.0) (2025-03-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* добавлены шаблоны для процессных разрезов ([452af57](https://github.com/Infomaximum/widget-sdk/commit/452af57627cb34a92a6354f562d878926f443d0e))
|
|
11
|
+
|
|
12
|
+
## [5.8.0](https://github.com/Infomaximum/widget-sdk/compare/v5.7.1...v5.8.0) (2025-02-28)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* реализована возможность использовать фильтры событий для влияния на отображаемый контент в окне процессного фильтра. ([d2ccaca](https://github.com/Infomaximum/widget-sdk/commit/d2ccaca4d3a72a82f38e5773d96797b86e328527))
|
|
18
|
+
|
|
5
19
|
### [5.7.1](https://github.com/Infomaximum/widget-sdk/compare/v5.7.0...v5.7.1) (2025-02-25)
|
|
6
20
|
|
|
7
21
|
|
package/dist/index.d.ts
CHANGED
|
@@ -297,7 +297,7 @@ declare const formulaFilterMethods: {
|
|
|
297
297
|
readonly LAST_TIME: "LAST_TIME";
|
|
298
298
|
readonly EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
299
299
|
readonly NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
300
|
-
readonly GREATER_THAN: ECalculatorFilterMethods.GREATER_THAN;
|
|
300
|
+
readonly GREATER_THAN: ECalculatorFilterMethods.GREATER_THAN; /** Фильтры событий */
|
|
301
301
|
readonly LESS_THAN: ECalculatorFilterMethods.LESS_THAN;
|
|
302
302
|
readonly GREATER_THAN_OR_EQUAL_TO: ECalculatorFilterMethods.GREATER_THAN_OR_EQUAL_TO;
|
|
303
303
|
readonly LESS_THAN_OR_EQUAL_TO: ECalculatorFilterMethods.LESS_THAN_OR_EQUAL_TO;
|
|
@@ -323,11 +323,21 @@ declare enum EProcessFilterNames {
|
|
|
323
323
|
durationOfTransition = "durationOfTransition"
|
|
324
324
|
}
|
|
325
325
|
interface IProcessFilterValue {
|
|
326
|
+
/** @deprecated необходимо передавать посредством IProcessFilterPreviewParams [2502] */
|
|
327
|
+
eventsNamesByProcessNameMap?: Map<string, (string | null)[]>;
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* Параметры, которые влияют на отображаемый контент в окне настройки процессного фильтра,
|
|
331
|
+
* но не учитываются при применении фильтра.
|
|
332
|
+
*/
|
|
333
|
+
interface IProcessFilterPreviewParams {
|
|
326
334
|
/**
|
|
327
335
|
* События, доступные при выборе процесса.
|
|
328
336
|
* Если параметр не передан, используются все события процесса на основе запроса к вычислителю.
|
|
329
337
|
*/
|
|
330
|
-
|
|
338
|
+
eventsNamesByProcessName?: Map<string, (string | null)[]>;
|
|
339
|
+
/** Фильтры событий */
|
|
340
|
+
eventFilters?: TExtendedFormulaFilterValue[];
|
|
331
341
|
}
|
|
332
342
|
interface IProcessEventFilterValue extends IProcessFilterValue {
|
|
333
343
|
processName: string;
|
|
@@ -349,16 +359,16 @@ interface IPositionConfig extends IClickPosition {
|
|
|
349
359
|
type: string;
|
|
350
360
|
}
|
|
351
361
|
interface IAddPresenceOfEventFilter {
|
|
352
|
-
(name: EProcessFilterNames.presenceOfEvent, value: IProcessEventFilterValue, positionConfig?: IPositionConfig): void;
|
|
362
|
+
(name: EProcessFilterNames.presenceOfEvent, value: IProcessEventFilterValue, positionConfig?: IPositionConfig, previewParams?: IProcessFilterPreviewParams): void;
|
|
353
363
|
}
|
|
354
364
|
interface IAddRepetitionOfEventFilter {
|
|
355
|
-
(name: EProcessFilterNames.repetitionOfEvent, value: IProcessEventFilterValue, positionConfig?: IPositionConfig): void;
|
|
365
|
+
(name: EProcessFilterNames.repetitionOfEvent, value: IProcessEventFilterValue, positionConfig?: IPositionConfig, previewParams?: IProcessFilterPreviewParams): void;
|
|
356
366
|
}
|
|
357
367
|
interface IAddPresenceOfTransitionFilter {
|
|
358
|
-
(name: EProcessFilterNames.presenceOfTransition, value: IProcessTransitionFilterValue, positionConfig?: IPositionConfig): void;
|
|
368
|
+
(name: EProcessFilterNames.presenceOfTransition, value: IProcessTransitionFilterValue, positionConfig?: IPositionConfig, previewParams?: IProcessFilterPreviewParams): void;
|
|
359
369
|
}
|
|
360
370
|
interface IAddDurationOfTransitionFilter {
|
|
361
|
-
(name: EProcessFilterNames.durationOfTransition, value: IProcessTransitionFilterValue, positionConfig?: IPositionConfig): void;
|
|
371
|
+
(name: EProcessFilterNames.durationOfTransition, value: IProcessTransitionFilterValue, positionConfig?: IPositionConfig, previewParams?: IProcessFilterPreviewParams): void;
|
|
362
372
|
}
|
|
363
373
|
declare enum EFormulaFilterFieldKeys {
|
|
364
374
|
date = "date",
|
|
@@ -895,7 +905,9 @@ declare enum EWidgetIndicatorValueModes {
|
|
|
895
905
|
TEMPLATE = "TEMPLATE",
|
|
896
906
|
AGGREGATION = "AGGREGATION",
|
|
897
907
|
DURATION = "DURATION",
|
|
898
|
-
CONVERSION = "CONVERSION"
|
|
908
|
+
CONVERSION = "CONVERSION",
|
|
909
|
+
START_TIME = "START_TIME",
|
|
910
|
+
END_TIME = "END_TIME"
|
|
899
911
|
}
|
|
900
912
|
/** Режимы сортировки (на что ссылается сортировка) */
|
|
901
913
|
declare enum ESortingValueModes {
|
|
@@ -946,7 +958,9 @@ interface IWidgetDimensionHierarchy<D extends IWidgetDimension = IWidgetDimensio
|
|
|
946
958
|
displayCondition?: TDisplayCondition;
|
|
947
959
|
}
|
|
948
960
|
interface IWidgetDimension extends Omit<IWidgetColumnIndicator, "value"> {
|
|
949
|
-
value?: TColumnIndicatorValue
|
|
961
|
+
value?: TColumnIndicatorValue | (TWidgetIndicatorAggregationValue & {
|
|
962
|
+
innerTemplateName?: string;
|
|
963
|
+
}) | TWidgetIndicatorTimeValue;
|
|
950
964
|
hideEmptyValues: boolean;
|
|
951
965
|
}
|
|
952
966
|
interface IWidgetMeasure extends Omit<IWidgetColumnIndicator, "value"> {
|
|
@@ -1096,6 +1110,16 @@ type TWidgetIndicatorDurationValue = {
|
|
|
1096
1110
|
startEventAppearances: EEventAppearances;
|
|
1097
1111
|
endEventAppearances: EEventAppearances;
|
|
1098
1112
|
} & Omit<TWidgetIndicatorConversionValue, "mode">;
|
|
1113
|
+
type TWidgetIndicatorTimeValue = {
|
|
1114
|
+
templateName: string;
|
|
1115
|
+
mode: EWidgetIndicatorValueModes.START_TIME | EWidgetIndicatorValueModes.END_TIME;
|
|
1116
|
+
processName: string;
|
|
1117
|
+
eventName: string;
|
|
1118
|
+
eventTimeFormula: string;
|
|
1119
|
+
caseCaseIdFormula: string;
|
|
1120
|
+
eventNameFormula: string;
|
|
1121
|
+
filters: TExtendedFormulaFilterValue[];
|
|
1122
|
+
};
|
|
1099
1123
|
|
|
1100
1124
|
/** Формат входного параметра GeneralCalculator */
|
|
1101
1125
|
interface IBaseDimensionsAndMeasuresCalculatorInput {
|
|
@@ -1412,9 +1436,6 @@ interface ICalculatorFactory {
|
|
|
1412
1436
|
type: () => ITypeCalculator;
|
|
1413
1437
|
}
|
|
1414
1438
|
|
|
1415
|
-
declare function generateColumnFormula(tableName: string, columnName: string): string;
|
|
1416
|
-
declare function fillTemplateString(templateString: string, params: Record<string, any>): string;
|
|
1417
|
-
|
|
1418
1439
|
declare enum EDimensionTemplateNames {
|
|
1419
1440
|
dateTime = "dateTime",
|
|
1420
1441
|
date = "date",
|
|
@@ -1428,21 +1449,49 @@ declare enum EDimensionTemplateNames {
|
|
|
1428
1449
|
dayOfWeek = "dayOfWeek",
|
|
1429
1450
|
hour = "hour"
|
|
1430
1451
|
}
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
readonly year: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toYear({columnFormula}))";
|
|
1435
|
-
readonly yearAndQuarter: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toYear({columnFormula}) * 10 + toQuarter({columnFormula}))";
|
|
1436
|
-
readonly quarter: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toQuarter({columnFormula}))";
|
|
1437
|
-
readonly yearAndMonth: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toYYYYMM({columnFormula}))";
|
|
1438
|
-
readonly month: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toMonth({columnFormula}))";
|
|
1439
|
-
readonly dayOfMonth: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toDayOfMonth({columnFormula}))";
|
|
1440
|
-
readonly week: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toWeek({columnFormula}))";
|
|
1441
|
-
readonly dayOfWeek: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toDayOfWeek({columnFormula}))";
|
|
1442
|
-
readonly hour: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toHour({columnFormula}))";
|
|
1443
|
-
};
|
|
1452
|
+
/** Стандартные шаблоны разреза */
|
|
1453
|
+
declare const dimensionTemplateFormulas: Record<EDimensionTemplateNames, string>;
|
|
1454
|
+
|
|
1444
1455
|
declare function getDimensionFormula({ value }: IWidgetDimension): string;
|
|
1445
1456
|
|
|
1457
|
+
declare enum EDimensionAggregationTemplateName {
|
|
1458
|
+
top = "top",
|
|
1459
|
+
firstValue = "firstValue",
|
|
1460
|
+
lastValue = "lastValue",
|
|
1461
|
+
countExecutions = "countExecutions",
|
|
1462
|
+
countReworks = "countReworks"
|
|
1463
|
+
}
|
|
1464
|
+
/** Шаблоны процессных метрик разреза с режимом AGGREGATION */
|
|
1465
|
+
declare const dimensionAggregationTemplates: Record<EDimensionAggregationTemplateName, string>;
|
|
1466
|
+
/** На основе значения режима AGGREGATION подготовить параметры для подстановки в шаблонную формулу */
|
|
1467
|
+
declare const prepareDimensionAggregationParams: (value: Extract<IWidgetDimension["value"], {
|
|
1468
|
+
mode: EWidgetIndicatorValueModes.AGGREGATION;
|
|
1469
|
+
}>) => {
|
|
1470
|
+
eventNameFormula: string;
|
|
1471
|
+
caseCaseIdFormula: string;
|
|
1472
|
+
eventName: string;
|
|
1473
|
+
objectFilters: string;
|
|
1474
|
+
filters: string;
|
|
1475
|
+
eventTimeFormula: string;
|
|
1476
|
+
columnFormula: string;
|
|
1477
|
+
} | null;
|
|
1478
|
+
|
|
1479
|
+
/** Шаблоны процессных метрик разреза с режимами START_TIME/END_TIME */
|
|
1480
|
+
declare const timeTemplates: {
|
|
1481
|
+
START_TIME: Record<EDimensionTemplateNames, string>;
|
|
1482
|
+
END_TIME: Record<EDimensionTemplateNames, string>;
|
|
1483
|
+
};
|
|
1484
|
+
/** На основе значения режимов START_TIME/END_TIME подготовить параметры для подстановки в шаблонную формулу */
|
|
1485
|
+
declare const prepareTimeParams: (value: TWidgetIndicatorTimeValue) => {
|
|
1486
|
+
eventTimeFormula: string;
|
|
1487
|
+
eventNameFormula: string;
|
|
1488
|
+
caseCaseIdFormula: string;
|
|
1489
|
+
filters: string;
|
|
1490
|
+
eventName: string;
|
|
1491
|
+
} | undefined;
|
|
1492
|
+
|
|
1493
|
+
declare function getMeasureFormula({ value }: IWidgetMeasure): string;
|
|
1494
|
+
|
|
1446
1495
|
declare enum EMeasureTemplateNames {
|
|
1447
1496
|
avg = "avg",
|
|
1448
1497
|
median = "median",
|
|
@@ -1452,6 +1501,7 @@ declare enum EMeasureTemplateNames {
|
|
|
1452
1501
|
max = "max",
|
|
1453
1502
|
sum = "sum"
|
|
1454
1503
|
}
|
|
1504
|
+
/** Стандартные шаблоны меры */
|
|
1455
1505
|
declare const measureTemplateFormulas: {
|
|
1456
1506
|
readonly avg: "avg({columnFormula})";
|
|
1457
1507
|
readonly count: "count({columnFormula})";
|
|
@@ -1461,7 +1511,25 @@ declare const measureTemplateFormulas: {
|
|
|
1461
1511
|
readonly max: "max({columnFormula})";
|
|
1462
1512
|
readonly sum: "sum({columnFormula})";
|
|
1463
1513
|
};
|
|
1464
|
-
|
|
1514
|
+
|
|
1515
|
+
declare enum EMeasureAggregationTemplateName {
|
|
1516
|
+
agvIf = "agvIf",
|
|
1517
|
+
medianIf = "medianIf",
|
|
1518
|
+
countIf = "countIf",
|
|
1519
|
+
countIfDistinct = "countIfDistinct",
|
|
1520
|
+
minIf = "minIf",
|
|
1521
|
+
maxIf = "maxIf",
|
|
1522
|
+
sumIf = "sumIf",
|
|
1523
|
+
top = "top",
|
|
1524
|
+
firstValue = "firstValue",
|
|
1525
|
+
lastValue = "lastValue",
|
|
1526
|
+
countExecutions = "countExecutions",
|
|
1527
|
+
countReworks = "countReworks"
|
|
1528
|
+
}
|
|
1529
|
+
/** Шаблоны процессных метрик меры с режимом AGGREGATION */
|
|
1530
|
+
declare const measureAggregationTemplates: Record<EMeasureAggregationTemplateName, string>;
|
|
1531
|
+
/** На основе значения режима AGGREGATION подготовить параметры для подстановки в шаблонную формулу */
|
|
1532
|
+
declare const prepareMeasureAggregationParams: (value: Extract<IWidgetMeasure["value"], {
|
|
1465
1533
|
mode: EWidgetIndicatorValueModes.AGGREGATION;
|
|
1466
1534
|
}>) => {
|
|
1467
1535
|
outerAggregation: EOuterAggregation;
|
|
@@ -1473,6 +1541,10 @@ declare const prepareAggregationParams: (value: Extract<IWidgetMeasure["value"],
|
|
|
1473
1541
|
eventTimeFormula: string;
|
|
1474
1542
|
columnFormula: string;
|
|
1475
1543
|
} | null;
|
|
1544
|
+
|
|
1545
|
+
/** Шаблон процессной метрики меры с режимом CONVERSION */
|
|
1546
|
+
declare const conversionTemplate = "countIf(\n process(\n minIf(\n {startEventTimeFormula}, \n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ), \n {endCaseCaseIdFormula}\n ) < \n process(\n maxIf(\n {endEventTimeFormula}, \n {endEventNameFormula} = '{endEventName}'{endEventFilters}\n ), \n {endCaseCaseIdFormula}\n ) \n and \n process(\n countIf(\n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ) != 0, \n {endCaseCaseIdFormula}\n ) != 0\n) * 100 / countIf(\n process(\n countIf(\n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ) != 0, \n {endCaseCaseIdFormula}\n ) != 0\n)";
|
|
1547
|
+
/** На основе значения режима CONVERSION подготовить параметры для подстановки в шаблонную формулу */
|
|
1476
1548
|
declare const prepareConversionParams: (value: TWidgetIndicatorConversionValue) => {
|
|
1477
1549
|
objectFilters: string;
|
|
1478
1550
|
startEventTimeFormula: string;
|
|
@@ -1485,6 +1557,10 @@ declare const prepareConversionParams: (value: TWidgetIndicatorConversionValue)
|
|
|
1485
1557
|
endEventName: string;
|
|
1486
1558
|
endEventFilters: string;
|
|
1487
1559
|
} | null;
|
|
1560
|
+
|
|
1561
|
+
/** Шаблоны процессных метрик меры с режимом DURATION */
|
|
1562
|
+
declare const durationTemplates: Record<EDurationTemplateName, string>;
|
|
1563
|
+
/** На основе значения режима DURATION подготовить параметры для подстановки в шаблонную формулу */
|
|
1488
1564
|
declare const prepareDurationParams: (value: TWidgetIndicatorDurationValue) => {
|
|
1489
1565
|
objectFilters: string;
|
|
1490
1566
|
startEventTimeFormula: string;
|
|
@@ -1499,7 +1575,8 @@ declare const prepareDurationParams: (value: TWidgetIndicatorDurationValue) => {
|
|
|
1499
1575
|
endEventFilters: string;
|
|
1500
1576
|
endEventAggregationName: string;
|
|
1501
1577
|
} | null;
|
|
1502
|
-
|
|
1578
|
+
|
|
1579
|
+
declare function getEventMeasureFormula({ value }: IProcessIndicator, process: IWidgetProcess): string;
|
|
1503
1580
|
|
|
1504
1581
|
declare enum EEventMeasureTemplateNames {
|
|
1505
1582
|
eventsCount = "eventsCount",
|
|
@@ -1509,7 +1586,8 @@ declare const eventMeasureTemplateFormulas: {
|
|
|
1509
1586
|
readonly eventsCount: "count()";
|
|
1510
1587
|
readonly reworksCount: "count() - uniqExact({caseCaseIdFormula})";
|
|
1511
1588
|
};
|
|
1512
|
-
|
|
1589
|
+
|
|
1590
|
+
declare function getTransitionMeasureFormula({ value }: IProcessIndicator, process: IWidgetProcess): string;
|
|
1513
1591
|
|
|
1514
1592
|
declare enum ETransitionMeasureTemplateNames {
|
|
1515
1593
|
transitionsCount = "transitionsCount",
|
|
@@ -1519,27 +1597,12 @@ declare const transitionMeasureTemplateFormulas: {
|
|
|
1519
1597
|
readonly transitionsCount: "count()";
|
|
1520
1598
|
readonly medianTime: "medianExact(date_diff(second, begin({eventTimeFormula}), end({eventTimeFormula})))";
|
|
1521
1599
|
};
|
|
1522
|
-
declare function getTransitionMeasureFormula({ value }: IProcessIndicator, process: IWidgetProcess): string;
|
|
1523
1600
|
|
|
1524
|
-
declare enum EMeasureAggregationTemplateName {
|
|
1525
|
-
agvIf = "agvIf",
|
|
1526
|
-
medianIf = "medianIf",
|
|
1527
|
-
countIf = "countIf",
|
|
1528
|
-
countIfDistinct = "countIfDistinct",
|
|
1529
|
-
minIf = "minIf",
|
|
1530
|
-
maxIf = "maxIf",
|
|
1531
|
-
sumIf = "sumIf",
|
|
1532
|
-
top = "top",
|
|
1533
|
-
firstValue = "firstValue",
|
|
1534
|
-
lastValue = "lastValue",
|
|
1535
|
-
countExecutions = "countExecutions",
|
|
1536
|
-
countReworks = "countReworks"
|
|
1537
|
-
}
|
|
1538
|
-
declare const conversionTemplate = "countIf(\n process(\n minIf(\n {startEventTimeFormula}, \n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ), \n {endCaseCaseIdFormula}\n ) < \n process(\n maxIf(\n {endEventTimeFormula}, \n {endEventNameFormula} = '{endEventName}'{endEventFilters}\n ), \n {endCaseCaseIdFormula}\n ) \n and \n process(\n countIf(\n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ) != 0, \n {endCaseCaseIdFormula}\n ) != 0\n) * 100 / countIf(\n process(\n countIf(\n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ) != 0, \n {endCaseCaseIdFormula}\n ) != 0\n)";
|
|
1539
|
-
declare const durationTemplates: Record<EDurationTemplateName, string>;
|
|
1540
|
-
declare const countReworksTemplate = "{outerAggregation}If(process(if(countIf({eventNameFormula} = '{eventName}'{filters}) > 0, countIf({eventNameFormula} = '{eventName}'{filters}) - 1, 0), {caseCaseIdFormula}),{objectFilters})";
|
|
1541
1601
|
declare const countExecutionsTemplate = "process(countIf({eventNameFormula} in '{eventName}'{filters}), {caseCaseIdFormula})";
|
|
1542
|
-
|
|
1602
|
+
|
|
1603
|
+
declare function fillTemplateString(templateString: string, params: Record<string, any>): string;
|
|
1604
|
+
|
|
1605
|
+
declare function generateColumnFormula(tableName: string, columnName: string): string;
|
|
1543
1606
|
|
|
1544
1607
|
/**
|
|
1545
1608
|
* Регулярное выражение для поиска имени ссылки внутри формулы.
|
|
@@ -2158,4 +2221,4 @@ declare global {
|
|
|
2158
2221
|
}
|
|
2159
2222
|
}
|
|
2160
2223
|
|
|
2161
|
-
export { EActionButtonsTypes, EActionTypes, EBlockingConditionMode, ECalculatorFilterMethods, EClickHouseBaseTypes, EColorMode, EControlType, ECustomSelectTemplates, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationTemplateName, EDurationUnit, EEventAppearances, EEventMeasureTemplateNames, EFontWeight, EFormatTypes, EFormattingPresets, EFormulaFilterFieldKeys, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureAggregationTemplateName, EMeasureTemplateNames, EOuterAggregation, EProcessFilterNames, ESelectOptionTypes, ESimpleDataType, ESimpleInputType, ESortDirection, ESortingValueModes, ESystemRecordKey, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, type IActionGoToUrl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type ICollapseRecord, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IExportColumnOrder, type IFillSettings, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IIndicatorLink, type IInitialSettings, type ILens, type IMarkdownMeasure, type IMeasureAddButtonProps, type IPanelDescription, type IPanelDescriptionCreator, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRange, type ISelectBranchOption, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectNode, type ISelectOption, type ISelectSystemOption, type ISettingsMigratorParams, type ISortOrder, type ISortingAddButtonProps, type IStagesFilterValue, type IStaticListLabeledOption, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type IVertex, type IViewContext, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetColumnListVariable, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetDynamicListVariable, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetManifest, type IWidgetMeasure, type IWidgetMigrator, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetPresetSettings, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetStaticListVariable, type IWidgetStaticVariable, type IWidgetStruct, type IWidgetTable, type IWidgetTableColumn, OuterAggregation, type TAction, type TActionOnClickParameter, type TActionOpenView, type TActionValidator, type TActionsOnClick, type TAddButton, type TAppearanceSettings, type TBoundedContentWithIndicator, type TColor, type TColorBase, type TColorRule, type TColumnIndicatorValue, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TCustomAddButtonSelectOption, type TDefineWidgetOptions, type TDisplayCondition, type TDisplayMode, type TEmptyRecord, type TExtendedFormulaFilterValue, type TFiltrationAccessibility, type TGroupLevelRecord, type TLaunchActionParams, type TMeasureAddButtonSelectOption, type TMigrateProcessor, type TMigrationStruct, type TProcessIndicatorValue, type TRecordAccessor, type TSelectChildOptions, type TSelectFetchNodes, type TSelectivePartial, type TSortDirection, type TUpdateSelection, type TValuePath, type TVersion, type TWidgetActionParameter, type TWidgetContainer, type TWidgetDimensionData, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetIndicatorAggregationValue, type TWidgetIndicatorConversionValue, type TWidgetIndicatorData, type TWidgetIndicatorDurationValue, type TWidgetLevelRecord, type TWidgetSortingValue, type TWidgetVariable, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, clearMultiLineComments, clearSingleLineComments, colors, conversionTemplate, convertFiltersToFormula, convertToFormulasChain, countExecutionsTemplate,
|
|
2224
|
+
export { EActionButtonsTypes, EActionTypes, EBlockingConditionMode, ECalculatorFilterMethods, EClickHouseBaseTypes, EColorMode, EControlType, ECustomSelectTemplates, EDimensionAggregationTemplateName, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationTemplateName, EDurationUnit, EEventAppearances, EEventMeasureTemplateNames, EFontWeight, EFormatTypes, EFormattingPresets, EFormulaFilterFieldKeys, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureAggregationTemplateName, EMeasureTemplateNames, EOuterAggregation, EProcessFilterNames, ESelectOptionTypes, ESimpleDataType, ESimpleInputType, ESortDirection, ESortingValueModes, ESystemRecordKey, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, type IActionGoToUrl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type ICollapseRecord, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IExportColumnOrder, type IFillSettings, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IIndicatorLink, type IInitialSettings, type ILens, type IMarkdownMeasure, type IMeasureAddButtonProps, type IPanelDescription, type IPanelDescriptionCreator, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessFilterPreviewParams, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRange, type ISelectBranchOption, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectNode, type ISelectOption, type ISelectSystemOption, type ISettingsMigratorParams, type ISortOrder, type ISortingAddButtonProps, type IStagesFilterValue, type IStaticListLabeledOption, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type IVertex, type IViewContext, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetColumnListVariable, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetDynamicListVariable, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetManifest, type IWidgetMeasure, type IWidgetMigrator, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetPresetSettings, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetStaticListVariable, type IWidgetStaticVariable, type IWidgetStruct, type IWidgetTable, type IWidgetTableColumn, OuterAggregation, type TAction, type TActionOnClickParameter, type TActionOpenView, type TActionValidator, type TActionsOnClick, type TAddButton, type TAppearanceSettings, type TBoundedContentWithIndicator, type TColor, type TColorBase, type TColorRule, type TColumnIndicatorValue, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TCustomAddButtonSelectOption, type TDefineWidgetOptions, type TDisplayCondition, type TDisplayMode, type TEmptyRecord, type TExtendedFormulaFilterValue, type TFiltrationAccessibility, type TGroupLevelRecord, type TLaunchActionParams, type TMeasureAddButtonSelectOption, type TMigrateProcessor, type TMigrationStruct, type TProcessIndicatorValue, type TRecordAccessor, type TSelectChildOptions, type TSelectFetchNodes, type TSelectivePartial, type TSortDirection, type TUpdateSelection, type TValuePath, type TVersion, type TWidgetActionParameter, type TWidgetContainer, type TWidgetDimensionData, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetIndicatorAggregationValue, type TWidgetIndicatorConversionValue, type TWidgetIndicatorData, type TWidgetIndicatorDurationValue, type TWidgetIndicatorTimeValue, type TWidgetLevelRecord, type TWidgetSortingValue, type TWidgetVariable, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, clearMultiLineComments, clearSingleLineComments, colors, conversionTemplate, convertFiltersToFormula, convertToFormulasChain, countExecutionsTemplate, dashboardLinkRegExp, dimensionAggregationTemplates, dimensionTemplateFormulas, durationTemplates, escapeSpecialCharacters, eventMeasureTemplateFormulas, fillTemplateString, formattingConfig, formulaFilterMethods, generateColumnFormula, getColorByIndex, getDefaultSortOrders, getDimensionFormula, getDisplayConditionFormula, getEventMeasureFormula, getLocalizedText, getMeasureFormula, getRuleColor, getTransitionMeasureFormula, isDimensionsHierarchy, isFormulaFilterValue, isValidColor, linkNameRegExp, mapDimensionsToInputs, mapEventMeasuresToInputs, mapFormulaFilterToCalculatorInput, mapFormulaFiltersToInputs, mapMeasuresToInputs, mapSortingToInputs, mapTransitionMeasuresToInputs, measureAggregationTemplates, measureTemplateFormulas, parseClickHouseType, parseIndicatorLink, prepareConversionParams, prepareDimensionAggregationParams, prepareDurationParams, prepareFormulaForSql, prepareMeasureAggregationParams, prepareSortOrders, prepareTimeParams, prepareValuesForSql, replaceDisplayCondition, replaceFiltersBySelection, replaceHierarchiesWithDimensions, selectDimensionFromHierarchy, timeTemplates, transitionMeasureTemplateFormulas, unescapeSpecialCharacters, updateDefaultModeSelection, updateMultiModeSelection, updateSingleModeSelection, workspaceLinkRegExp };
|