From 0ffb1f1be3a4325a594b01f53aa1872155fe8fe1 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Wed, 2 Nov 2016 23:54:34 +0300 Subject: [PATCH] Added `tel` input type support. Changes: 1. Added `tel` to supported input types 2. Added `beforeDestroy()` cleanup 3. Fixed `package.json`: keywords, git url, deps 4. Fixed issue with mobile docs 5. Improoved examples Closes #20, closes #18, closes #14, closes #11, closes #6 --- CHANGELOG.md | 5 +++ CONTRIBUTING.md | 15 +++++++++ LICENSE.md | 8 +++++ dev/MaterialFieldTypes.vue | 3 ++ dev/MaterialModel.vue | 2 ++ dev/MaterialWithValidation.vue | 2 ++ package.json | 21 ++++++++---- src/components/MaterialInput.vue | 55 +++++++++++++++++++++++++++----- yarn.lock | 34 ++++---------------- 9 files changed, 103 insertions(+), 42 deletions(-) create mode 100644 CHANGELOG.md create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d924875 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## Version 1.0.4 + +- Initial semver release diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..f542aae --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,15 @@ +# Contributing to vue-material-input + +## Pull Requests Welcome + +1. Fork `vue-material-input` +2. Create a topic branch +3. Make logically-grouped commits with clear commit messages +4. Push commits to your fork +5. Open a pull request against vue-material-input/master + +## Issues + +If you believe there to be a bug, please provide the maintainers with enough +detail to reproduce or a link to an app exhibiting unexpected behavior. For +help, please start with Stack Overflow. diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..909291a --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,8 @@ +The MIT License (MIT) +Copyright (c) 2016 wemake.service company + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/dev/MaterialFieldTypes.vue b/dev/MaterialFieldTypes.vue index 0eef5e8..08ecbd6 100644 --- a/dev/MaterialFieldTypes.vue +++ b/dev/MaterialFieldTypes.vue @@ -1,11 +1,14 @@ diff --git a/dev/MaterialModel.vue b/dev/MaterialModel.vue index 2a8ea48..7e47f9d 100644 --- a/dev/MaterialModel.vue +++ b/dev/MaterialModel.vue @@ -1,5 +1,7 @@