dfh-ui-library 1.13.8 → 1.13.10
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/PhoneNumberInput/PhoneNumberInput3.d.ts +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -0
- 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/PhoneNumberInput/PhoneNumberInput3.d.ts +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -0
- package/dist/index.d.ts +2 -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: React.
|
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;
|
6
6
|
export default PhoneNumberInput3;
|
package/dist/index.d.ts
CHANGED
@@ -123,6 +123,7 @@ interface ImagePreviewProps {
|
|
123
123
|
handleImageLoad?: () => void;
|
124
124
|
defaultImageUrl?: string;
|
125
125
|
isAddEditPatient?: boolean;
|
126
|
+
isLoading?: boolean;
|
126
127
|
}
|
127
128
|
interface ImageInputProps {
|
128
129
|
imageUrl?: string;
|
@@ -1394,7 +1395,7 @@ declare const PhoneNumberInput: React__default.FC<PhoneNumberInputProps>;
|
|
1394
1395
|
|
1395
1396
|
declare const PhoneNumberInput2: React__default.FC<PhoneNumberInputProps>;
|
1396
1397
|
|
1397
|
-
declare const PhoneNumberInput3: React__default.
|
1398
|
+
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__default.JSX.Element;
|
1398
1399
|
|
1399
1400
|
/**
|
1400
1401
|
* Primary UI component for Tooltip
|