digitinary-ui 1.0.281 → 1.0.282

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.
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
2
  import './style.scss';
3
- import { PhoneNumberInputProps } from 'types';
4
- declare const PhoneNumber: React.FC<PhoneNumberInputProps>;
3
+ import { PhoneNumberProps } from '../../types/index';
4
+ declare const PhoneNumber: React.FC<PhoneNumberProps>;
5
5
  export default PhoneNumber;
@@ -236,7 +236,7 @@ export interface PhoneChangeData {
236
236
  country: string;
237
237
  isValid: boolean;
238
238
  }
239
- export interface PhoneNumberInputProps {
239
+ export interface PhoneNumberProps {
240
240
  value?: string;
241
241
  onChange?: (data: PhoneChangeData) => void;
242
242
  label?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digitinary-ui",
3
- "version": "1.0.281",
3
+ "version": "1.0.282",
4
4
  "description": "Digitinary UI Library",
5
5
  "author": "Digitinary Company",
6
6
  "repository": {