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.
- 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 +2 -0
- package/dist/cjs/types/shared/models/components/base.model.d.ts +3 -0
- 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 +2 -0
- package/dist/esm/types/shared/models/components/base.model.d.ts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
@@ -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;
|