dfh-ui-library 1.13.160 → 1.13.161

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.
@@ -47,6 +47,8 @@ export declare const FilterIcon: ({ classes, onClick, onFocus, ...props }: IconP
47
47
  export declare const PaperPlaneTiltIcon: ({ classes, onClick, onFocus, ...props }: IconProps) => React.JSX.Element;
48
48
  export declare const EditDocumentIcon: ({ classes, onClick, onFocus, ...props }: IconProps) => React.JSX.Element;
49
49
  export declare const CloseModalIcon: ({ classes, onClick, onFocus, ...props }: IconProps) => React.JSX.Element;
50
+ export declare const BlueKeyIcon: ({ classes, onClick, onFocus, ...props }: IconProps) => React.JSX.Element;
51
+ export declare const BlueCallIcon: ({ classes, onClick, onFocus, ...props }: IconProps) => React.JSX.Element;
50
52
  export declare const KeyIcon: ({ classes, onClick, onFocus, ...props }: IconProps) => React.JSX.Element;
51
53
  export declare const EmailLightIcon: ({ classes, onClick, onFocus, ...props }: IconProps) => React.JSX.Element;
52
54
  export declare const WhiteNextIcon: ({ classes, onClick, onFocus, ...props }: IconProps) => React.JSX.Element;
@@ -179,7 +179,10 @@ export interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputEleme
179
179
  inputFocus?: any;
180
180
  refProps?: any;
181
181
  isRequired?: boolean;
182
+ showIsRequiredIcon?: boolean;
182
183
  isDischarged?: boolean;
184
+ showTooltip?: boolean;
185
+ tooltipText?: string;
183
186
  }
184
187
  export interface IFormGenInputProps {
185
188
  /**
package/dist/index.d.ts CHANGED
@@ -1101,7 +1101,10 @@ interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputElement> {
1101
1101
  inputFocus?: any;
1102
1102
  refProps?: any;
1103
1103
  isRequired?: boolean;
1104
+ showIsRequiredIcon?: boolean;
1104
1105
  isDischarged?: boolean;
1106
+ showTooltip?: boolean;
1107
+ tooltipText?: string;
1105
1108
  }
1106
1109
  interface ICheckboxProps extends AdditionalClassesProp {
1107
1110
  onChange?: (checked: boolean) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.160",
3
+ "version": "1.13.161",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",