@availity/phone 1.1.32 → 1.2.3
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 +35 -0
- package/README.md +19 -1
- package/package.json +22 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
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.2.3](https://github.com/Availity/availity-react/compare/@availity/phone@1.2.2...@availity/phone@1.2.3) (2021-12-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @availity/phone
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 1.2.2 (2021-12-14)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @availity/phone
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## 1.2.1 (2021-11-30)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @availity/phone
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [1.2.0](https://github.com/Availity/availity-react/compare/@availity/phone@1.1.31...@availity/phone@1.2.0) (2021-11-15)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
|
|
35
|
+
* move storybook, stories, and fix hmr ([2f65f71](https://github.com/Availity/availity-react/commit/2f65f71769d2d981e22700b87a09516833588f64))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
## [1.1.32](https://github.com/Availity/availity-react/compare/@availity/phone@1.1.31...@availity/phone@1.1.32) (2021-11-12)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @availity/phone
|
package/README.md
CHANGED
|
@@ -3,5 +3,23 @@
|
|
|
3
3
|
> Availity Phone component using Formik and Yup
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@availity/phone)
|
|
6
|
+
[](https://www.npmjs.com/package/@availity/phone)
|
|
7
|
+
[](https://github.com/Availity/availity-react/blob/master/packages/phone/package.json)
|
|
6
8
|
|
|
7
|
-
##
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
### NPM
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @availity/phone
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Yarn
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
yarn add @availity/phone
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Documentation
|
|
24
|
+
|
|
25
|
+
Check out more documentation at [availity.github.io](https://availity.github.io/availity-react/form/phone/index)
|
package/package.json
CHANGED
|
@@ -1,21 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/phone",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Availity Phone component using Formik and Yup",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"availity",
|
|
7
|
+
"yup",
|
|
8
|
+
"formik"
|
|
9
|
+
],
|
|
10
|
+
"homepage": "https://availity.github.io/availity-react/form/phone/index",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/Availity/availity-react/issues"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/Availity/availity-react.git",
|
|
17
|
+
"directory": "packages/phone"
|
|
18
|
+
},
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"author": "Christopher Havekost <Christopher.Havekost@availity.com>",
|
|
5
21
|
"main": "index.js",
|
|
6
22
|
"types": "index.d.ts",
|
|
7
|
-
"keywords": [],
|
|
8
|
-
"author": "Christopher Havekost <Christopher.Havekost@availity.com>",
|
|
9
|
-
"license": "MIT",
|
|
10
|
-
"publishConfig": {
|
|
11
|
-
"access": "public"
|
|
12
|
-
},
|
|
13
23
|
"dependencies": {
|
|
14
24
|
"libphonenumber-js": "^1.9.39",
|
|
15
25
|
"prop-types": "^15.7.2"
|
|
16
26
|
},
|
|
17
27
|
"devDependencies": {
|
|
18
|
-
"@availity/form": "^1.
|
|
28
|
+
"@availity/form": "^1.2.3",
|
|
19
29
|
"formik": "^2.2.8",
|
|
20
30
|
"react": "^17.0.2",
|
|
21
31
|
"react-dom": "^17.0.2",
|
|
@@ -29,5 +39,8 @@
|
|
|
29
39
|
"reactstrap": "^8.4.1",
|
|
30
40
|
"yup": "^0.28.1"
|
|
31
41
|
},
|
|
32
|
-
"
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"gitHead": "5983e704cd833c6e93ef6d00472f48a0876fe782"
|
|
33
46
|
}
|