@infomaximum/widget-sdk 4.0.0-beta43 → 4.0.0-beta46
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 +5 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -478,6 +478,7 @@ type TColor = {
|
|
|
478
478
|
mode: EColorMode.GRADIENT;
|
|
479
479
|
startValue: string;
|
|
480
480
|
endValue: string;
|
|
481
|
+
classCount?: TNullable<number>;
|
|
481
482
|
} | {
|
|
482
483
|
mode: EColorMode.AUTO;
|
|
483
484
|
} | TColorRule | {
|
|
@@ -1404,10 +1405,6 @@ type TContextMenuRow = {
|
|
|
1404
1405
|
key: string;
|
|
1405
1406
|
label: string;
|
|
1406
1407
|
onClick: () => void;
|
|
1407
|
-
tooltip?: {
|
|
1408
|
-
title: string;
|
|
1409
|
-
offset?: [number | `${number}%`, number | `${number}%`];
|
|
1410
|
-
};
|
|
1411
1408
|
};
|
|
1412
1409
|
type TContextMenuButton = TContextMenuButtonActions | TContextMenuButtonClose | TContextMenuButtonApply | TContextMenuButtonCustom | TContextMenuButtonOptions;
|
|
1413
1410
|
type TContextMenuButtonActions = {
|
|
@@ -1427,6 +1424,10 @@ type TContextMenuButtonCustom = {
|
|
|
1427
1424
|
key: string;
|
|
1428
1425
|
type: "custom";
|
|
1429
1426
|
icon: string;
|
|
1427
|
+
tooltip?: {
|
|
1428
|
+
title: string;
|
|
1429
|
+
offset?: [number | `${number}%`, number | `${number}%`];
|
|
1430
|
+
};
|
|
1430
1431
|
onClick: () => void;
|
|
1431
1432
|
};
|
|
1432
1433
|
type TContextMenuButtonOptions = {
|