@joinbox/formsync
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -6,2 +6,37 @@ # Change Log | ||
## 2.0.2 (2021-06-01) | ||
### Bug Fixes | ||
* use rollup to include lib files for all projects ([c43d5c0](https://github.com/joinbox/ui-components/commit/c43d5c04a7ef62d18ac8f7c56e4e88fffd32c133)) | ||
## 3.0.1 (2021-06-01) | ||
### Bug Fixes | ||
* add lerna config for all packages ([8077be0](https://github.com/joinbox/ui-components/commit/8077be07d4cd1606f6f53913e78e70a79bb9f8f9)) | ||
* fix package.json by adding packages ([cbecaef](https://github.com/joinbox/ui-components/commit/cbecaefdc5e33947f1f64e28c392ff9ba9e6b813)) | ||
* update/fix paths, adjust imports in READMEs ([25ab94c](https://github.com/joinbox/ui-components/commit/25ab94c55f7620fb4f10024c110757ca4f9969fb)) | ||
* **formsync:** only autosubmit form if input is valid ([b1753a0](https://github.com/joinbox/ui-components/commit/b1753a0c53ca06df0071d8fb033f84585ac691af)) | ||
### Features | ||
* use monorepo for multiple packages ([14b6f3a](https://github.com/joinbox/ui-components/commit/14b6f3af4e9950d649a6218ebede85d656403aa0)) | ||
* **formsync:** let users chose the event types that should auto-submit the form ([d805cc5](https://github.com/joinbox/ui-components/commit/d805cc5754449a9869fe2ac2e7c0867f27069242)) | ||
### BREAKING CHANGES | ||
* **formsync:** values for data-auto-submit on form-sync and property autoSubmit in InputSync have changed. | ||
* new file structure | ||
## 2.0.1 (2021-06-01) | ||
@@ -8,0 +43,0 @@ |
{ | ||
"name": "@joinbox/formsync", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Synchronizes forms and elements between an original form (e.g. one created by Drupal) and another form (e.g. freely created as a template based on mockups).", | ||
@@ -32,3 +32,3 @@ "main": "FormSync.js", | ||
}, | ||
"gitHead": "77ccc8ebbb0505bf30c80564d1e51f7d3985964b" | ||
"gitHead": "f39707c916e54530c32827a26639ef5a3090ecd2" | ||
} |
@@ -1,13 +0,6 @@ | ||
export default [{ | ||
input: 'src/FormSubmitButtonElement.js', | ||
output: { | ||
file: 'FormSubmitButtonElement.js', | ||
format: 'iife', | ||
} | ||
}, { | ||
input: 'src/FormSyncElement.js', | ||
output: { | ||
file: 'FormSyncElement.js', | ||
format: 'iife', | ||
} | ||
}]; | ||
import createRollupConfig from '../../createRollupConfig.mjs'; | ||
const components = [ | ||
'FormSubmitButtonElement.js', | ||
'FormSyncElement.js', | ||
]; | ||
export default createRollupConfig(components); |
76205
1452