@infomaximum/widget-sdk 4.0.0-beta40 → 4.0.0-beta42
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 +15 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -76,6 +76,8 @@ interface ICalculatorIndicatorInput {
|
|
|
76
76
|
}
|
|
77
77
|
interface ICalculatorIndicatorOutput {
|
|
78
78
|
values: (string | null)[];
|
|
79
|
+
dataType: ESimpleDataType;
|
|
80
|
+
isArrayDataType: boolean;
|
|
79
81
|
}
|
|
80
82
|
interface ICalculatorDimensionInput extends ICalculatorIndicatorInput {
|
|
81
83
|
formula: string;
|
|
@@ -324,17 +326,26 @@ interface IProcessTransitionFilterValue extends IProcessFilterValue {
|
|
|
324
326
|
endEventProcessName: string;
|
|
325
327
|
endEventName: string;
|
|
326
328
|
}
|
|
329
|
+
interface IClickPosition {
|
|
330
|
+
x: number;
|
|
331
|
+
y: number;
|
|
332
|
+
elementWidth: number;
|
|
333
|
+
elementHeight: number;
|
|
334
|
+
}
|
|
335
|
+
interface IPositionConfig extends IClickPosition {
|
|
336
|
+
type: string;
|
|
337
|
+
}
|
|
327
338
|
interface IAddPresenceOfEventFilter {
|
|
328
|
-
(name: EProcessFilterNames.presenceOfEvent, value: IProcessEventFilterValue): void;
|
|
339
|
+
(name: EProcessFilterNames.presenceOfEvent, value: IProcessEventFilterValue, positionConfig?: IPositionConfig): void;
|
|
329
340
|
}
|
|
330
341
|
interface IAddRepetitionOfEventFilter {
|
|
331
|
-
(name: EProcessFilterNames.repetitionOfEvent, value: IProcessEventFilterValue): void;
|
|
342
|
+
(name: EProcessFilterNames.repetitionOfEvent, value: IProcessEventFilterValue, positionConfig?: IPositionConfig): void;
|
|
332
343
|
}
|
|
333
344
|
interface IAddPresenceOfTransitionFilter {
|
|
334
|
-
(name: EProcessFilterNames.presenceOfTransition, value: IProcessTransitionFilterValue): void;
|
|
345
|
+
(name: EProcessFilterNames.presenceOfTransition, value: IProcessTransitionFilterValue, positionConfig?: IPositionConfig): void;
|
|
335
346
|
}
|
|
336
347
|
interface IAddDurationOfTransitionFilter {
|
|
337
|
-
(name: EProcessFilterNames.durationOfTransition, value: IProcessTransitionFilterValue): void;
|
|
348
|
+
(name: EProcessFilterNames.durationOfTransition, value: IProcessTransitionFilterValue, positionConfig?: IPositionConfig): void;
|
|
338
349
|
}
|
|
339
350
|
declare enum EFormulaFilterFieldKeys {
|
|
340
351
|
date = "date",
|