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.
@@ -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.FC<PhoneNumberInputProps>;
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;
@@ -146,6 +146,7 @@ export interface ImagePreviewProps {
146
146
  handleImageLoad?: () => void;
147
147
  defaultImageUrl?: string;
148
148
  isAddEditPatient?: boolean;
149
+ isLoading?: boolean;
149
150
  }
150
151
  export interface ImageInputProps {
151
152
  imageUrl?: string;
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.FC<PhoneNumberInputProps>;
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.8",
3
+ "version": "1.13.10",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",