dfh-ui-library 1.13.103 → 1.13.105
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/PhoneNumberInput/PhoneNumberInput3.d.ts +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/PhoneNumberInput/PhoneNumberInput3.d.ts +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
@@ -2,5 +2,5 @@ import React from "react";
|
|
2
2
|
import { PhoneNumberInputProps } from "../../shared/models/components/common.model";
|
3
3
|
import 'react-phone-number-input/style.css';
|
4
4
|
import './phoneInput.css';
|
5
|
-
declare const PhoneNumberInput3: <T extends PhoneNumberInputProps>({ value, onChange, placeholder, additionalClasses, labelType, isBorderedError, inputVariant, error, type, readOnly, label, name, isAdditionalErrorInput, additionalErrorClasses, field, isRequired, ...props }: T) => React.JSX.Element;
|
5
|
+
declare const PhoneNumberInput3: <T extends PhoneNumberInputProps>({ value, onChange, countryCallingCodeEditable, placeholder, additionalClasses, labelType, isBorderedError, inputVariant, error, type, readOnly, label, name, isAdditionalErrorInput, additionalErrorClasses, field, isRequired, ...props }: T) => React.JSX.Element;
|
6
6
|
export default PhoneNumberInput3;
|
@@ -219,6 +219,7 @@ export interface CustomDatePickerProps {
|
|
219
219
|
selectedDate?: Date | null;
|
220
220
|
onChange?: (date: Date | null) => void;
|
221
221
|
onSelect?: (date: Date | null) => void;
|
222
|
+
onBlur?(event: React.FocusEvent<HTMLInputElement>): void;
|
222
223
|
label?: string;
|
223
224
|
isRequired?: boolean;
|
224
225
|
placeHolder?: string;
|
@@ -252,6 +253,7 @@ export interface CustomDatePickerProps {
|
|
252
253
|
}
|
253
254
|
export interface PhoneNumberInputProps {
|
254
255
|
value: string;
|
256
|
+
countryCallingCodeEditable?: boolean;
|
255
257
|
onChange: (value: string) => void;
|
256
258
|
placeholder?: string;
|
257
259
|
additionalClasses?: string | undefined;
|