@availity/phone 1.1.24 → 1.1.25

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 1.1.25 (2021-10-19)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **phone:** update types ([30c7fc8](https://github.com/Availity/availity-react/commit/30c7fc885b1b91b04a5153fbf796e8c136692be4))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.1.24](https://github.com/Availity/availity-react/compare/@availity/phone@1.1.23...@availity/phone@1.1.24) (2021-10-04)
7
18
 
8
19
  **Note:** Version bump only for package @availity/phone
package/README.md CHANGED
@@ -4,4 +4,4 @@
4
4
 
5
5
  [![Version](https://img.shields.io/npm/v/@availity/phone.svg?style=for-the-badge)](https://www.npmjs.com/package/@availity/phone)
6
6
 
7
- ## [Documentation](https://availity.github.io/availity-react/form/phone/)
7
+ ## [Documentation](https://availity.github.io/availity-react/form/phone/index)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/phone",
3
- "version": "1.1.24",
3
+ "version": "1.1.25",
4
4
  "description": "Availity Phone component using Formik and Yup",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -15,7 +15,7 @@
15
15
  "prop-types": "^15.7.2"
16
16
  },
17
17
  "devDependencies": {
18
- "@availity/form": "^0.7.3",
18
+ "@availity/form": "^0.7.4",
19
19
  "formik": "^2.2.8",
20
20
  "react": "^17.0.2",
21
21
  "react-dom": "^17.0.2",
@@ -29,5 +29,5 @@
29
29
  "reactstrap": "^8.4.1",
30
30
  "yup": "^0.28.1"
31
31
  },
32
- "gitHead": "7b30cdc374201687b41200b6395ba74337bb2804"
32
+ "gitHead": "b3d2b222b3aeec7005548254998a8ccda95ef514"
33
33
  }
package/types/Phone.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import { FieldProps } from '@availity/form/types/Field';
3
2
 
4
3
  interface ExtensionProps extends FieldProps {
@@ -10,11 +9,12 @@ interface ExtensionProps extends FieldProps {
10
9
  export interface PhoneProps extends FieldProps {
11
10
  name: string;
12
11
  id?: string;
13
- showExtension?: boolean | false;
12
+ country?: string;
13
+ showExtension?: boolean;
14
14
  phoneColProps?: object;
15
15
  extProps?: ExtensionProps;
16
16
  }
17
17
 
18
- declare const Phone: React.FC<PhoneProps>;
18
+ declare const Phone: (props: PhoneProps) => JSX.Element;
19
19
 
20
20
  export default Phone;