Skip to content
This repository has been archived by the owner on Aug 3, 2021. It is now read-only.

Commit

Permalink
1.0.0-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
marina-mosti committed Jan 15, 2021
1 parent d7e5f86 commit 577ad7b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions dist/formvuelate-plugin-vuelidate.cjs.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @formvuelate/plugin-vuelidate v1.0.0-alpha.1
* (c) 2020 Damian Dulisz <[email protected]>, Marina Mosti <[email protected]>
* @formvuelate/plugin-vuelidate v1.0.0-alpha.3
* (c) 2021 Damian Dulisz <[email protected]>, Marina Mosti <[email protected]>
* @license MIT
*/

Expand Down Expand Up @@ -4299,13 +4299,13 @@ function VuelidatePlugin (baseReturns) {
var parsedSchema = baseReturns.parsedSchema;

// Wrap all components with the "withVuelidate" component
var schemaWithVuelidate = mapElementsInSchema(parsedSchema.value, function (el) {
var schemaWithVuelidate = computed$$1(function () { return mapElementsInSchema(parsedSchema.value, function (el) {
return Object.assign({}, el,
{component: markRaw(withVuelidate(el.component))})
});
}); });

return Object.assign({}, baseReturns,
{parsedSchema: computed$$1(function () { return schemaWithVuelidate; })})
{parsedSchema: schemaWithVuelidate})
}

function withVuelidate (Comp) {
Expand Down
10 changes: 5 additions & 5 deletions dist/formvuelate-plugin-vuelidate.es.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @formvuelate/plugin-vuelidate v1.0.0-alpha.1
* (c) 2020 Damian Dulisz <[email protected]>, Marina Mosti <[email protected]>
* @formvuelate/plugin-vuelidate v1.0.0-alpha.3
* (c) 2021 Damian Dulisz <[email protected]>, Marina Mosti <[email protected]>
* @license MIT
*/

Expand Down Expand Up @@ -4295,13 +4295,13 @@ function VuelidatePlugin (baseReturns) {
var parsedSchema = baseReturns.parsedSchema;

// Wrap all components with the "withVuelidate" component
var schemaWithVuelidate = mapElementsInSchema(parsedSchema.value, function (el) {
var schemaWithVuelidate = computed$$1(function () { return mapElementsInSchema(parsedSchema.value, function (el) {
return Object.assign({}, el,
{component: markRaw(withVuelidate(el.component))})
});
}); });

return Object.assign({}, baseReturns,
{parsedSchema: computed$$1(function () { return schemaWithVuelidate; })})
{parsedSchema: schemaWithVuelidate})
}

function withVuelidate (Comp) {
Expand Down
10 changes: 5 additions & 5 deletions dist/formvuelate-plugin-vuelidate.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @formvuelate/plugin-vuelidate v1.0.0-alpha.1
* (c) 2020 Damian Dulisz <[email protected]>, Marina Mosti <[email protected]>
* @formvuelate/plugin-vuelidate v1.0.0-alpha.3
* (c) 2021 Damian Dulisz <[email protected]>, Marina Mosti <[email protected]>
* @license MIT
*/

Expand Down Expand Up @@ -4301,13 +4301,13 @@ function VuelidatePlugin (baseReturns) {
var parsedSchema = baseReturns.parsedSchema;

// Wrap all components with the "withVuelidate" component
var schemaWithVuelidate = mapElementsInSchema(parsedSchema.value, function (el) {
var schemaWithVuelidate = computed$$1(function () { return mapElementsInSchema(parsedSchema.value, function (el) {
return Object.assign({}, el,
{component: markRaw(withVuelidate(el.component))})
});
}); });

return Object.assign({}, baseReturns,
{parsedSchema: computed$$1(function () { return schemaWithVuelidate; })})
{parsedSchema: schemaWithVuelidate})
}

function withVuelidate (Comp) {
Expand Down
6 changes: 3 additions & 3 deletions dist/formvuelate-plugin-vuelidate.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@formvuelate/plugin-vuelidate",
"version": "1.0.0-alpha.2",
"version": "1.0.0-alpha.3",
"description": "FormVueLate Vuelidate plugin",
"main": "dist/formvuelate-plugin-vuelidate.cjs.js",
"private": false,
Expand Down

0 comments on commit 577ad7b

Please sign in to comment.