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