Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
f6d0d77
tests and lint
DanielFuchsIA Oct 3, 2018
304651f
tests and lint
DanielFuchsIA Oct 3, 2018
10cb58b
package-lock
Oct 4, 2018
83d8f2f
Jenkinsfile
Oct 4, 2018
9b27b63
Jenkinsfile
Oct 4, 2018
cde8bfb
phone-input
Oct 4, 2018
e5af579
Merge pull request #1 from SponsorPay/country-svg
kobiburnley Oct 4, 2018
4d9afb8
jenkins
Oct 4, 2018
5b9a63a
jenkins
Oct 4, 2018
42984cf
feat: react-virtualized (#3)
DanielFuchs2 Oct 7, 2018
9fb8ef2
chore(release): 1.1.0 [ci skip]
Oct 7, 2018
ed3a552
fix: .npmrc
Oct 7, 2018
24de158
chore: fix cd script
Oct 7, 2018
497af92
chore: public npm
Oct 7, 2018
142bcee
Lock
Oct 7, 2018
ad847e4
chore(release): 1.1.1 [ci skip]
Oct 7, 2018
4cf0784
chore: lock script [ci skip]
Oct 7, 2018
e0903b4
fix: layout, search, webpack (#4)
DanielFuchs2 Oct 8, 2018
518a0f4
chore(release): 1.1.2 [ci skip]
Oct 8, 2018
e46d7da
fix: add classnames peer dependency
Oct 8, 2018
e8878da
chore(release): 1.1.3 [ci skip]
Oct 8, 2018
50a9125
fix: package.json files
Oct 8, 2018
e035cf3
chore(release): 1.1.4 [ci skip]
Oct 8, 2018
80c9628
fix: flag width
Oct 8, 2018
4afc7e9
chore(release): 1.1.5 [ci skip]
Oct 8, 2018
b7e955c
fix: detailed theming (#5)
kobiburnley Oct 8, 2018
64488fb
chore(release): 1.1.6 [ci skip]
Oct 8, 2018
716f977
fix: change TextField to Input
Oct 8, 2018
afc0d53
chore(release): 1.1.7 [ci skip]
Oct 8, 2018
cc0c899
fix: form control (#6)
kobiburnley Oct 8, 2018
29b904f
chore(release): 1.1.8 [ci skip]
Oct 8, 2018
4d4388f
fix: compile to es5
Nov 28, 2018
24eb9a8
chore: ssh_key
Nov 28, 2018
ea35c9f
chore(release): 1.1.9 [ci skip]
Nov 28, 2018
debcf18
fix: msg for no country (#7)
mariaKoFyber Feb 6, 2019
14afa23
chore(release): 1.1.10 [ci skip]
Feb 6, 2019
789b1e5
feat: keep selected country if AsYouType found nothing (#8)
kobiburnley Mar 6, 2019
2c78d18
chore(release): 1.2.0 [ci skip]
Mar 6, 2019
e580a72
added init country and phone number support
DanielFuchsIA Oct 24, 2019
845f0ba
added init country and phone number support
DanielFuchsIA Oct 24, 2019
ad9301a
Merge pull request #9 from SponsorPay/fix-init-component
DanielFuchs2 Oct 24, 2019
0dd0675
feat: add init values (#10)
IlaiBC Oct 29, 2019
6707a72
Lock [ci ckip]
Oct 29, 2019
ea4c1f8
chore(release): 2.0.0 [ci skip]
Oct 29, 2019
f0f8161
feat: react window (#11)
kobiburnley Nov 18, 2019
b4b4c78
chore(release): 3.0.0 [ci skip]
Nov 18, 2019
54cd3b7
chore: npm cd script
Nov 19, 2019
c4b16bf
fix: initial value (#12)
Nov 19, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:lts
steps:
- add_ssh_keys:
fingerprints:
- "8c:6a:af:3d:13:19:54:be:0c:1a:53:03:2b:e0:8a:e5"
- checkout
- run:
name: Install
command: npm install
- run:
name: Compile
command: |
npm run compile
npm run lint
- run:
name: Test
command: |
npm test
npm run coverage
npm run codecov
- run:
name: Publish
command: |
git config --global user.email circleci@circleci.com
git config --global user.name CircleCI
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
git add 'package.json' 'package-lock.json'
git diff-index --quiet --cached origin/$CIRCLE_BRANCH || (git commit -m 'Lock [skip ci]')
if [[ "$CIRCLE_BRANCH" = "master" ]] || [[ "$CIRCLE_BRANCH" =~ hotfix* ]]; then npm run cd; else git push origin $CIRCLE_BRANCH; fi
workflows:
version: 2
build_and_publish:
jobs:
- build
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
node_modules
build
.idea
.idea
/coverage
/.nyc_output
/lib
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"semi": false,
"bracketSpacing": false
}
151 changes: 151 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
# Change Log

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="3.0.0"></a>
# [3.0.0](https://github.com/SponsorPay/material-ui-phone-input/compare/v2.0.0...v3.0.0) (2019-11-18)


### Features

* react window ([#11](https://github.com/SponsorPay/material-ui-phone-input/issues/11)) ([f0f8161](https://github.com/SponsorPay/material-ui-phone-input/commit/f0f8161))


### BREAKING CHANGES

* react window



<a name="2.0.0"></a>
# [2.0.0](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.2.0...v2.0.0) (2019-10-29)


### Features

* add init values ([#10](https://github.com/SponsorPay/material-ui-phone-input/issues/10)) ([0dd0675](https://github.com/SponsorPay/material-ui-phone-input/commit/0dd0675))


### BREAKING CHANGES

* add init values



<a name="1.2.0"></a>
# [1.2.0](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.10...v1.2.0) (2019-03-06)


### Features

* keep selected country if AsYouType found nothing ([#8](https://github.com/SponsorPay/material-ui-phone-input/issues/8)) ([789b1e5](https://github.com/SponsorPay/material-ui-phone-input/commit/789b1e5))



<a name="1.1.10"></a>
## [1.1.10](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.9...v1.1.10) (2019-02-06)


### Bug Fixes

* msg for no country ([#7](https://github.com/SponsorPay/material-ui-phone-input/issues/7)) ([debcf18](https://github.com/SponsorPay/material-ui-phone-input/commit/debcf18))



<a name="1.1.9"></a>
## [1.1.9](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.8...v1.1.9) (2018-11-28)


### Bug Fixes

* compile to es5 ([4d4388f](https://github.com/SponsorPay/material-ui-phone-input/commit/4d4388f))



<a name="1.1.8"></a>
## [1.1.8](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.7...v1.1.8) (2018-10-08)


### Bug Fixes

* form control ([#6](https://github.com/SponsorPay/material-ui-phone-input/issues/6)) ([cc0c899](https://github.com/SponsorPay/material-ui-phone-input/commit/cc0c899))



<a name="1.1.7"></a>
## [1.1.7](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.6...v1.1.7) (2018-10-08)


### Bug Fixes

* change TextField to Input ([716f977](https://github.com/SponsorPay/material-ui-phone-input/commit/716f977))



<a name="1.1.6"></a>
## [1.1.6](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.5...v1.1.6) (2018-10-08)


### Bug Fixes

* detailed theming ([#5](https://github.com/SponsorPay/material-ui-phone-input/issues/5)) ([b7e955c](https://github.com/SponsorPay/material-ui-phone-input/commit/b7e955c))



<a name="1.1.5"></a>
## [1.1.5](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.4...v1.1.5) (2018-10-08)


### Bug Fixes

* flag width ([80c9628](https://github.com/SponsorPay/material-ui-phone-input/commit/80c9628))



<a name="1.1.4"></a>
## [1.1.4](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.3...v1.1.4) (2018-10-08)


### Bug Fixes

* package.json files ([50a9125](https://github.com/SponsorPay/material-ui-phone-input/commit/50a9125))



<a name="1.1.3"></a>
## [1.1.3](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.2...v1.1.3) (2018-10-08)


### Bug Fixes

* add classnames peer dependency ([e46d7da](https://github.com/SponsorPay/material-ui-phone-input/commit/e46d7da))



<a name="1.1.2"></a>
## [1.1.2](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.1...v1.1.2) (2018-10-08)


### Bug Fixes

* layout, search, webpack ([#4](https://github.com/SponsorPay/material-ui-phone-input/issues/4)) ([e0903b4](https://github.com/SponsorPay/material-ui-phone-input/commit/e0903b4))



<a name="1.1.1"></a>
## [1.1.1](https://github.com/SponsorPay/material-ui-phone-input/compare/v1.1.0...v1.1.1) (2018-10-07)


### Bug Fixes

* .npmrc ([ed3a552](https://github.com/SponsorPay/material-ui-phone-input/commit/ed3a552))



<a name="1.1.0"></a>
# 1.1.0 (2018-10-07)


### Features

* react-virtualized ([#3](https://github.com/SponsorPay/material-ui-phone-input/issues/3)) ([42984cf](https://github.com/SponsorPay/material-ui-phone-input/commit/42984cf))
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[![codecov](https://codecov.io/gh/SponsorPay/material-ui-phone-input/branch/master/graph/badge.svg)](https://codecov.io/gh/SponsorPay/material-ui-phone-input)
3 changes: 1 addition & 2 deletions public/index.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<title>Material UI Phone Input</title>
</head>
<body>
<div id="root">
</div>
<script src="phone.js"></script>
</body>
</html>

Expand Down
Loading