dfh-ui-library 1.12.606 → 1.12.608

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,7 @@ import React from "react";
2
2
  import { TooltipProps } from "../../shared/models/components/base.model";
3
3
  interface ExtendedTooltipProps extends TooltipProps {
4
4
  fromRightToLeft?: boolean;
5
+ setShowToolTip?: (showToolTip: boolean) => void;
5
6
  }
6
7
  declare const TooltipWithChildren: React.FC<ExtendedTooltipProps>;
7
8
  export default TooltipWithChildren;
@@ -458,7 +458,6 @@ export interface ButtonGroupProps extends InputGroupProps {
458
458
  onValueChange?: (value: string) => void;
459
459
  viewMode?: boolean;
460
460
  buttonType?: string;
461
- tooltip?: string;
462
461
  }
463
462
  export interface ButtonGroupMultiProps extends InputGroupProps {
464
463
  options: {
@@ -480,7 +479,6 @@ export interface ButtonGroupMultiProps extends InputGroupProps {
480
479
  onValueChange?: (value: string) => void;
481
480
  viewMode?: boolean;
482
481
  buttonType?: string;
483
- tooltip?: string;
484
482
  }
485
483
  export interface ButtonGroupWithUploadProps extends InputGroupProps {
486
484
  options: {
@@ -501,7 +499,6 @@ export interface ButtonGroupWithUploadProps extends InputGroupProps {
501
499
  answerLabel: string;
502
500
  lastEditedDate?: string;
503
501
  };
504
- tooltip?: string;
505
502
  }
506
503
  export interface PaginationProps {
507
504
  pageSize: number;
@@ -628,6 +625,7 @@ export interface FormGenButtonGroupProps extends FormGenInputGroupProps {
628
625
  lastEditedDate?: string;
629
626
  };
630
627
  tooltip?: string;
628
+ setShowToolTip?: (showToolTip: boolean) => void;
631
629
  }
632
630
  export interface selectedValue {
633
631
  value?: any;