@infomaximum/widget-sdk 3.37.1 → 3.38.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/dist/index.d.ts +13 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -323,17 +323,26 @@ interface IProcessTransitionFilterValue extends IProcessFilterValue {
|
|
|
323
323
|
endEventProcessGuid: string;
|
|
324
324
|
endEventName: string;
|
|
325
325
|
}
|
|
326
|
+
interface IClickPosition {
|
|
327
|
+
x: number;
|
|
328
|
+
y: number;
|
|
329
|
+
elementWidth: number;
|
|
330
|
+
elementHeight: number;
|
|
331
|
+
}
|
|
332
|
+
interface IPositionConfig extends IClickPosition {
|
|
333
|
+
type: string;
|
|
334
|
+
}
|
|
326
335
|
interface IAddPresenceOfEventFilter {
|
|
327
|
-
(name: EProcessFilterNames.presenceOfEvent, value: IProcessEventFilterValue): void;
|
|
336
|
+
(name: EProcessFilterNames.presenceOfEvent, value: IProcessEventFilterValue, positionConfig?: IPositionConfig): void;
|
|
328
337
|
}
|
|
329
338
|
interface IAddRepetitionOfEventFilter {
|
|
330
|
-
(name: EProcessFilterNames.repetitionOfEvent, value: IProcessEventFilterValue): void;
|
|
339
|
+
(name: EProcessFilterNames.repetitionOfEvent, value: IProcessEventFilterValue, positionConfig?: IPositionConfig): void;
|
|
331
340
|
}
|
|
332
341
|
interface IAddPresenceOfTransitionFilter {
|
|
333
|
-
(name: EProcessFilterNames.presenceOfTransition, value: IProcessTransitionFilterValue): void;
|
|
342
|
+
(name: EProcessFilterNames.presenceOfTransition, value: IProcessTransitionFilterValue, positionConfig?: IPositionConfig): void;
|
|
334
343
|
}
|
|
335
344
|
interface IAddDurationOfTransitionFilter {
|
|
336
|
-
(name: EProcessFilterNames.durationOfTransition, value: IProcessTransitionFilterValue): void;
|
|
345
|
+
(name: EProcessFilterNames.durationOfTransition, value: IProcessTransitionFilterValue, positionConfig?: IPositionConfig): void;
|
|
337
346
|
}
|
|
338
347
|
declare enum EFormulaFilterFieldKeys {
|
|
339
348
|
date = "date",
|