Skip to content

Commit 26960e6

Browse files
Merge pull request #4 from lionel-bijaoui/v3_update
V3 update
2 parents e21a0de + b9ea983 commit 26960e6

26 files changed

+19365
-17411
lines changed

.bumpedrc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
files: [
2+
'package.json',
3+
'bower.json'
4+
]
5+
6+
plugins:
7+
8+
postrelease:
9+
10+
'Compiling browser version':
11+
plugin: 'bumped-terminal'
12+
command: 'npm run build'
13+
14+
'Update changelog':
15+
plugin: 'bumped-terminal'
16+
command: 'npm run changelog'
17+
18+
'Commiting new version':
19+
plugin: 'bumped-terminal'
20+
command: 'git commit -am "$newVersion releases" && git push origin master'
21+
22+
'Publishing tag at GitHub':
23+
plugin: 'bumped-terminal'
24+
command: 'git tag v$newVersion && git push origin v$newVersion'

.prettierrc

Lines changed: 0 additions & 9 deletions
This file was deleted.

.travis.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
language: node_js
2-
#cache:
3-
# directories:
4-
# - node_modules
2+
cache:
3+
directories:
4+
- node_modules
55
node_js:
6-
- "7"
6+
- "9"
7+
- "8"
78
- "6"
89
after_success:
9-
- npm run coverage
10+
- npm run coverall
11+
12+
deploy:
13+
provider: npm
14+
email: $NPM_EMAIL
15+
api_key: $NPM_API_KEY
16+
skip_cleanup: true
17+
on:
18+
tags: true
19+
node: "8"

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
<a name="2.2.2"></a>
2+
## 2.2.2 (2018-04-24)
3+
* Fix NaN with value 0 on input type number/range.
4+
* Fix bug in fieldUpload that threw error due to $event not being defined
5+
* Added $event to onValidationError in fieldSubmit
6+
* Fixed bug with validationErrorClass and validationSuccessClass depending on each
7+
* Made DEBOUNCE_FORMAT_MS configurable in fieldInput, just pass `debounceFormatTimeout: TIME_IN_MS` in field schema
8+
* $event.preventDefault() called when using async validation with fieldSubmit to prevent unwanted form submissions
9+
10+
11+
12+
<a name="2.2.1"></a>
13+
## 2.2.1 (2018-03-09)
14+
15+
* ... ([eadccc2](https://github.com/icebob/vue-form-generator/commit/eadccc2))
16+
* #409 - fixed id property in fieldUpdate ([b86fddf](https://github.com/icebob/vue-form-generator/commit/b86fddf))
17+
* fixed markdown link ([3ef928a](https://github.com/icebob/vue-form-generator/commit/3ef928a))
18+
* removed extra paren ([a6df78b](https://github.com/icebob/vue-form-generator/commit/a6df78b))
19+
* resolves #368 added vue-tel-input ([a8859b3](https://github.com/icebob/vue-form-generator/commit/a8859b3)), closes [#368](https://github.com/icebob/vue-form-generator/issues/368)
20+
* setup automate releasing ([6e6527f](https://github.com/icebob/vue-form-generator/commit/6e6527f))
21+
22+
23+
124
<a name="2.2.0"></a>
225
# 2.2.0 (2018-01-21)
326

ISSUE_TEMPLATE.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
**Note: for support questions, please use stackoverflow**. This repository's issues are reserved for feature requests and bug reports.
2+
3+
* **I'm submitting a ...**
4+
* [ ] bug report
5+
* [ ] feature request
6+
* [ ] support request => Please do not submit support request here, see note at the top of this template.
7+
8+
- **Do you want to request a _feature_ or report a _bug_?**
9+
10+
* **What is the current behavior?**
11+
12+
- **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem** via
13+
https://jsfiddle.net/ or similar (you can use this template as a starting point: https://jsfiddle.net/icebob/0mg1v81e/).
14+
15+
* **What is the expected behavior?**
16+
17+
- **What is the motivation / use case for changing the behavior?**
18+
19+
* **Please tell us about your environment:**
20+
21+
* Version: [2.X.X | 3.0.0-beta.X]
22+
* Browser: [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]
23+
* Language: [all | TypeScript X.X | ES6/7 | ES5 | Dart]
24+
25+
- **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)

PULL_REQUEST_TEMPLATE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
* **Please check if the PR fulfills these requirements**
2+
3+
- [ ] The commit message follows our guidelines
4+
- [ ] Tests for the changes have been added (for bug fixes / features)
5+
- [ ] Docs have been added / updated (for bug fixes / features)
6+
7+
* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)
8+
9+
- **What is the current behavior?** (You can also link to an open issue here)
10+
11+
* **What is the new behavior (if this is a feature change)?**
12+
13+
- **Does this PR introduce a breaking change?** (What changes might users need to make in their application due to this PR?)
14+
15+
* **Other information**:

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,8 @@ This way, it will be easier for everyone to find it. Thank you !
208208
### Public Custom Fields
209209

210210
- [vue-tel-input](https://github.com/EducationLink/vue-tel-input) - International Telephone Input Boilerplate with Vue (integrated with VueFormGenerator).
211+
- [vfg-field-sourcecode](https://github.com/gwenaelp/vfg-field-sourcecode) - A source code field for vue-form-generator
212+
- [vfg-field-object](https://github.com/gwenaelp/vfg-field-object) - A vue-form-generator field to handle objects, with or without schemas.
211213

212214
## Contribution
213215
Please send pull requests improving the usage and fixing bugs, improving documentation and providing better examples, or providing some testing, because these things are important.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-form-generator",
3-
"version": "2.2.0",
3+
"version": "2.2.2",
44
"homepage": "https://github.com/icebob/vue-form-generator",
55
"authors": [
66
"Icebob"

dist/vfg-core.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vfg-core.js

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vfg.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vfg.js

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)