dfh-ui-library 1.12.582 → 1.12.584

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
1
  import React from "react";
2
2
  export declare const handleIconColor: (_iconColor: string) => string;
3
3
  export declare const handleIconHoverColor: (_iconHoverColor: string | undefined) => string;
4
- export declare const handleIconTYpes: (_iconType: string | undefined, iconClasses?: string, imageUrl?: string, _color?: string, isAddEditUser?: boolean) => React.JSX.Element | undefined;
4
+ export declare const handleIconTYpes: (_iconType: string | undefined, iconClasses?: string, imageUrl?: string, _color?: string, isAddEditPatient?: boolean) => React.JSX.Element | undefined;
@@ -20,7 +20,7 @@ export declare const UserMenuSelectedIcon: ({ classes, onClick, ...props }: Icon
20
20
  export declare const UserAvatarIcon: ({ classes, onClick, imageUrl, ...props }: IconProps) => React.JSX.Element;
21
21
  export declare const CloseIcon: ({ classes, onClick, imageUrl, ...props }: IconProps) => React.JSX.Element;
22
22
  export declare const ArrowBCIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
23
- export declare const PlusIcon: ({ classes, onClick, isAddEditUser, ...props }: IconProps) => React.JSX.Element;
23
+ export declare const PlusIcon: ({ classes, onClick, isAddEditPatient, ...props }: IconProps) => React.JSX.Element;
24
24
  export declare const CalendarIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
25
25
  export declare const SelectUserIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
26
26
  export declare const TrashRedIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
@@ -78,7 +78,7 @@ export interface IIconProps extends IAdditionalClassesProp, IIconTypeProp {
78
78
  onMouseOver?: any;
79
79
  onMouseOut?: any;
80
80
  color?: string;
81
- isAddEditUser?: boolean;
81
+ isAddEditPatient?: boolean;
82
82
  }
83
83
  export interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputElement> {
84
84
  /**
@@ -71,7 +71,7 @@ export interface IconProps {
71
71
  color?: string;
72
72
  w?: string;
73
73
  h?: string;
74
- isAddEditUser?: boolean;
74
+ isAddEditPatient?: boolean;
75
75
  }
76
76
  export interface AdditionalClassesProp {
77
77
  /**
@@ -139,7 +139,7 @@ export interface ImagePreviewProps {
139
139
  textClasses?: string;
140
140
  handleImageLoad?: () => void;
141
141
  defaultImageUrl?: string;
142
- isAddEditUser?: boolean;
142
+ isAddEditPatient?: boolean;
143
143
  }
144
144
  export interface ImageInputProps {
145
145
  imageUrl?: string;
@@ -458,6 +458,8 @@ export interface ButtonGroupProps extends InputGroupProps {
458
458
  onValueChange?: (value: string) => void;
459
459
  viewMode?: boolean;
460
460
  buttonType?: string;
461
+ enableToolTip?: boolean;
462
+ tooltipProps?: ToolTipProps;
461
463
  }
462
464
  export interface ButtonGroupMultiProps extends InputGroupProps {
463
465
  options: {
package/dist/index.d.ts CHANGED
@@ -117,7 +117,7 @@ interface ImagePreviewProps {
117
117
  textClasses?: string;
118
118
  handleImageLoad?: () => void;
119
119
  defaultImageUrl?: string;
120
- isAddEditUser?: boolean;
120
+ isAddEditPatient?: boolean;
121
121
  }
122
122
  interface ImageInputProps {
123
123
  imageUrl?: string;
@@ -421,6 +421,8 @@ interface ButtonGroupProps extends InputGroupProps {
421
421
  onValueChange?: (value: string) => void;
422
422
  viewMode?: boolean;
423
423
  buttonType?: string;
424
+ enableToolTip?: boolean;
425
+ tooltipProps?: ToolTipProps;
424
426
  }
425
427
  interface ButtonGroupMultiProps extends InputGroupProps {
426
428
  options: {
@@ -851,7 +853,7 @@ interface IIconProps extends IAdditionalClassesProp, IIconTypeProp {
851
853
  onMouseOver?: any;
852
854
  onMouseOut?: any;
853
855
  color?: string;
854
- isAddEditUser?: boolean;
856
+ isAddEditPatient?: boolean;
855
857
  }
856
858
  interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputElement> {
857
859
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.582",
3
+ "version": "1.12.584",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",