@infomaximum/widget-sdk 4.0.0-beta43 → 4.0.0-beta45
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 +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1404,10 +1404,6 @@ type TContextMenuRow = {
|
|
|
1404
1404
|
key: string;
|
|
1405
1405
|
label: string;
|
|
1406
1406
|
onClick: () => void;
|
|
1407
|
-
tooltip?: {
|
|
1408
|
-
title: string;
|
|
1409
|
-
offset?: [number | `${number}%`, number | `${number}%`];
|
|
1410
|
-
};
|
|
1411
1407
|
};
|
|
1412
1408
|
type TContextMenuButton = TContextMenuButtonActions | TContextMenuButtonClose | TContextMenuButtonApply | TContextMenuButtonCustom | TContextMenuButtonOptions;
|
|
1413
1409
|
type TContextMenuButtonActions = {
|
|
@@ -1427,6 +1423,10 @@ type TContextMenuButtonCustom = {
|
|
|
1427
1423
|
key: string;
|
|
1428
1424
|
type: "custom";
|
|
1429
1425
|
icon: string;
|
|
1426
|
+
tooltip?: {
|
|
1427
|
+
title: string;
|
|
1428
|
+
offset?: [number | `${number}%`, number | `${number}%`];
|
|
1429
|
+
};
|
|
1430
1430
|
onClick: () => void;
|
|
1431
1431
|
};
|
|
1432
1432
|
type TContextMenuButtonOptions = {
|