dfh-ui-library 1.14.33 → 1.14.35
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/cjs/index.css +1 -1
 - package/dist/cjs/index.css.map +1 -1
 - package/dist/cjs/index.js +1 -1
 - package/dist/cjs/index.js.map +1 -1
 - package/dist/cjs/types/components/Media/Icons/Icons.d.ts +1 -0
 - package/dist/cjs/types/shared/models/components/base.model.d.ts +2 -1
 - package/dist/esm/index.css +1 -1
 - package/dist/esm/index.css.map +1 -1
 - package/dist/esm/index.js +1 -1
 - package/dist/esm/index.js.map +1 -1
 - package/dist/esm/types/components/Media/Icons/Icons.d.ts +1 -0
 - package/dist/esm/types/shared/models/components/base.model.d.ts +2 -1
 - package/dist/index.d.ts +2 -1
 - package/package.json +1 -1
 
| 
         @@ -92,3 +92,4 @@ export declare const LockIcon2: ({ classes, onClick, ...props }: IconProps) => R 
     | 
|
| 
       92 
92 
     | 
    
         
             
            export declare const LockBlueIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
         
     | 
| 
       93 
93 
     | 
    
         
             
            export declare const NoPatientIcon: () => React.JSX.Element;
         
     | 
| 
       94 
94 
     | 
    
         
             
            export declare const NoReportIcon: () => React.JSX.Element;
         
     | 
| 
      
 95 
     | 
    
         
            +
            export declare const CopyIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
         
     | 
| 
         @@ -170,7 +170,7 @@ export interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputEleme 
     | 
|
| 
       170 
170 
     | 
    
         
             
                icon?: string;
         
     | 
| 
       171 
171 
     | 
    
         
             
                iconClassRight?: string;
         
     | 
| 
       172 
172 
     | 
    
         
             
                iconClassLeft?: string;
         
     | 
| 
       173 
     | 
    
         
            -
                iconOnClick?: ( 
     | 
| 
      
 173 
     | 
    
         
            +
                iconOnClick?: () => void;
         
     | 
| 
       174 
174 
     | 
    
         
             
                enableToolTip?: boolean;
         
     | 
| 
       175 
175 
     | 
    
         
             
                tooltipProps?: ToolTipProps;
         
     | 
| 
       176 
176 
     | 
    
         
             
                suffixed?: string;
         
     | 
| 
         @@ -181,6 +181,7 @@ export interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputEleme 
     | 
|
| 
       181 
181 
     | 
    
         
             
                inputFocus?: any;
         
     | 
| 
       182 
182 
     | 
    
         
             
                refProps?: any;
         
     | 
| 
       183 
183 
     | 
    
         
             
                isRequired?: boolean;
         
     | 
| 
      
 184 
     | 
    
         
            +
                isOrganizationInput?: boolean;
         
     | 
| 
       184 
185 
     | 
    
         
             
                showIsRequiredIcon?: boolean;
         
     | 
| 
       185 
186 
     | 
    
         
             
                isDischarged?: boolean;
         
     | 
| 
       186 
187 
     | 
    
         
             
                showTooltip?: boolean;
         
     | 
    
        package/dist/index.d.ts
    CHANGED
    
    | 
         @@ -1124,7 +1124,7 @@ interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputElement> { 
     | 
|
| 
       1124 
1124 
     | 
    
         
             
                icon?: string;
         
     | 
| 
       1125 
1125 
     | 
    
         
             
                iconClassRight?: string;
         
     | 
| 
       1126 
1126 
     | 
    
         
             
                iconClassLeft?: string;
         
     | 
| 
       1127 
     | 
    
         
            -
                iconOnClick?: ( 
     | 
| 
      
 1127 
     | 
    
         
            +
                iconOnClick?: () => void;
         
     | 
| 
       1128 
1128 
     | 
    
         
             
                enableToolTip?: boolean;
         
     | 
| 
       1129 
1129 
     | 
    
         
             
                tooltipProps?: ToolTipProps;
         
     | 
| 
       1130 
1130 
     | 
    
         
             
                suffixed?: string;
         
     | 
| 
         @@ -1135,6 +1135,7 @@ interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputElement> { 
     | 
|
| 
       1135 
1135 
     | 
    
         
             
                inputFocus?: any;
         
     | 
| 
       1136 
1136 
     | 
    
         
             
                refProps?: any;
         
     | 
| 
       1137 
1137 
     | 
    
         
             
                isRequired?: boolean;
         
     | 
| 
      
 1138 
     | 
    
         
            +
                isOrganizationInput?: boolean;
         
     | 
| 
       1138 
1139 
     | 
    
         
             
                showIsRequiredIcon?: boolean;
         
     | 
| 
       1139 
1140 
     | 
    
         
             
                isDischarged?: boolean;
         
     | 
| 
       1140 
1141 
     | 
    
         
             
                showTooltip?: boolean;
         
     |