Skip to content

Commit

Permalink
Merge pull request #566 from zoul0813/feature/v2.3.3
Browse files Browse the repository at this point in the history
v2.3.3
  • Loading branch information
zoul0813 committed Dec 14, 2018
2 parents fcf2897 + 318e3b9 commit 8c6c7eb
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 8 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,24 @@
## <small>2.3.3 (2018-12-14)</small>

* #535, #526 - reversed "deep property path" fix ([da32bde](https://github.com/vue-generators/vue-form-generator/commit/da32bde)), closes [#535](https://github.com/vue-generators/vue-form-generator/issues/535) [#526](https://github.com/vue-generators/vue-form-generator/issues/526)
* added "item.disabled" logic, supporting both boolean values and a function that is passed a referenc ([b227eb4](https://github.com/vue-generators/vue-form-generator/commit/b227eb4))
* added "options" to VFG install function, appending custom "validators" to the validators object that ([892469e](https://github.com/vue-generators/vue-form-generator/commit/892469e))
* added "type" attribute to inside buttons schema, defaults to "button" when one is not provided ([3306893](https://github.com/vue-generators/vue-form-generator/commit/3306893))
* added an optional "unique" flag to "getFieldID" that appends lodash "uniqueId" to the ID when true. ([ab1daeb](https://github.com/vue-generators/vue-form-generator/commit/ab1daeb)), closes [#468](https://github.com/vue-generators/vue-form-generator/issues/468)
* added newline ([5813f0a](https://github.com/vue-generators/vue-form-generator/commit/5813f0a))
* Codacy (guard-for-in) fix ([4e81d2d](https://github.com/vue-generators/vue-form-generator/commit/4e81d2d))
* code fix ([b3a1010](https://github.com/vue-generators/vue-form-generator/commit/b3a1010))
* Fix required number input does not require a value ([f95b38c](https://github.com/vue-generators/vue-form-generator/commit/f95b38c))
* fixed code structure ([3b750b3](https://github.com/vue-generators/vue-form-generator/commit/3b750b3))
* fixed single-quotes ([dfee175](https://github.com/vue-generators/vue-form-generator/commit/dfee175))
* fixes #480 - dates are always passed to "date" and "datetime-local" elements using the standard form ([db3413f](https://github.com/vue-generators/vue-form-generator/commit/db3413f)), closes [#480](https://github.com/vue-generators/vue-form-generator/issues/480)
* fixes an issue with fieldPikaday modifying the field schema and attaching `this.$el` to it, the pika ([2024204](https://github.com/vue-generators/vue-form-generator/commit/2024204))
* listen for model-updated from `fields`, and fix `debounceFormatFunction` property to match fieldInpu ([7ad1fca](https://github.com/vue-generators/vue-form-generator/commit/7ad1fca))
* migrated VFG docs to newer GitBooks, created GitHub Repo for Docs to allow for easier maintenance, u ([d372f5b](https://github.com/vue-generators/vue-form-generator/commit/d372f5b))
* feat: add maxElements slot to fieldVueMultiSelect ([2e91a2f](https://github.com/vue-generators/vue-form-generator/commit/2e91a2f))



## <small>2.3.2 (2018-10-22)</small>

* Export dist ([9912b5e](https://github.com/vue-generators/vue-form-generator/commit/9912b5e))
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "vue-form-generator",
"version": "2.3.2",
"version": "2.3.3",
"homepage": "https://github.com/vue-generators/vue-form-generator/",
"authors": [
"Icebob"
Expand Down
2 changes: 1 addition & 1 deletion dist/vfg-core.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/vfg-core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vfg.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/vfg.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "vue-form-generator",
"version": "2.3.2",
"version": "2.3.3",
"description": "A schema-based form generator component for Vue.js",
"homepage": "https://github.com/vue-generators/vue-form-generator/",
"main": "dist/vfg.js",
Expand Down
4 changes: 4 additions & 0 deletions src/fields/core/fieldInput.vue
Expand Up @@ -103,6 +103,10 @@ export default {
this.updateModelValue(newValue, oldValue);
},
formatDatetimeValueToField(value) {
if(value === null || undefined === value) {
return null;
}
let defaultFormat = DATETIME_FORMATS[this.schema.inputType.toLowerCase()];
let m = value;
if(!isNumber(value)) {
Expand Down

0 comments on commit 8c6c7eb

Please sign in to comment.