test-stpr-ui-kit 0.2.1 → 0.2.2
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/test-stpr-ui-kit.es.d.ts +4 -1
- package/dist/test-stpr-ui-kit.es.js +414 -412
- package/dist/test-stpr-ui-kit.umd.js +19 -19
- package/package.json +1 -1
|
@@ -155,6 +155,7 @@ export declare interface EllipsisTextWithTooltipProps extends Omit<TextProps, "c
|
|
|
155
155
|
classNameRoot?: string;
|
|
156
156
|
classNameTooltipRoot?: string;
|
|
157
157
|
defaultTooltipPosition?: ETooltipPosition;
|
|
158
|
+
classNameBaseTooltipContentRoot?: string;
|
|
158
159
|
}
|
|
159
160
|
|
|
160
161
|
export declare enum ETooltipPosition {
|
|
@@ -403,7 +404,7 @@ export declare interface TextWithLabelProps extends TextProps {
|
|
|
403
404
|
|
|
404
405
|
export declare const Tooltip: default_2.FC<TooltipProps>;
|
|
405
406
|
|
|
406
|
-
export declare interface TooltipProps extends BaseTooltipProps {
|
|
407
|
+
export declare interface TooltipProps extends Omit<BaseTooltipProps, "classNameRoot" | "classNameContentRoot"> {
|
|
407
408
|
hover?: boolean;
|
|
408
409
|
isToggleClick?: boolean;
|
|
409
410
|
isVisibleTooltip?: boolean;
|
|
@@ -412,6 +413,8 @@ export declare interface TooltipProps extends BaseTooltipProps {
|
|
|
412
413
|
actionOnClose?: () => void;
|
|
413
414
|
classNameTooltip?: string;
|
|
414
415
|
classNameTriggerTooltip?: string;
|
|
416
|
+
classNameBaseTooltipRoot?: string;
|
|
417
|
+
classNameBaseTooltipContentRoot?: string;
|
|
415
418
|
}
|
|
416
419
|
|
|
417
420
|
export declare type TPaneItem = {
|