diff --git a/.changeset/friendly-pianos-wonder.md b/.changeset/friendly-pianos-wonder.md deleted file mode 100644 index 59c4fa175..000000000 --- a/.changeset/friendly-pianos-wonder.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/button': patch ---- - -Delay adding prevent event leakage handler by one frame. This is because it takes 1 frame longer for older browsers such as Firefox ESR 60, IE11 and old Edge to have the native form available as a property on the native button. diff --git a/.changeset/long-fans-flash.md b/.changeset/long-fans-flash.md deleted file mode 100644 index df6b255f0..000000000 --- a/.changeset/long-fans-flash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/overlays': patch ---- - -Use MutationObserver to watch child changes of the contentNode, and re-insert tab detection element when necessary. diff --git a/.changeset/strange-cougars-shout.md b/.changeset/strange-cougars-shout.md deleted file mode 100644 index e0d69a6c6..000000000 --- a/.changeset/strange-cougars-shout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/form': patch ---- - -Dispatch submit event on native form node instead of calling submit() directly, which circumvents lion-form submit logic and will always do a page reload and cannot be stopped by the user. diff --git a/packages/button/CHANGELOG.md b/packages/button/CHANGELOG.md index e8eb256f0..26a0a5694 100644 --- a/packages/button/CHANGELOG.md +++ b/packages/button/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.8.11 + +### Patch Changes + +- 33f639e8: Delay adding prevent event leakage handler by one frame. This is because it takes 1 frame longer for older browsers such as Firefox ESR 60, IE11 and old Edge to have the native form available as a property on the native button. + ## 0.8.10 ### Patch Changes diff --git a/packages/button/package.json b/packages/button/package.json index 422bf13b4..6ad5ff48e 100644 --- a/packages/button/package.json +++ b/packages/button/package.json @@ -1,6 +1,6 @@ { "name": "@lion/button", - "version": "0.8.10", + "version": "0.8.11", "description": "A button that is easily styleable and accessible in all contexts", "license": "MIT", "author": "ing-bank", diff --git a/packages/combobox/CHANGELOG.md b/packages/combobox/CHANGELOG.md index 627c545d8..d841c79a0 100644 --- a/packages/combobox/CHANGELOG.md +++ b/packages/combobox/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 0.1.24 + +### Patch Changes + +- Updated dependencies [a77452b0] + - @lion/overlays@0.23.4 + ## 0.1.23 ### Patch Changes diff --git a/packages/combobox/package.json b/packages/combobox/package.json index ce95d13b1..ba896a93e 100644 --- a/packages/combobox/package.json +++ b/packages/combobox/package.json @@ -1,6 +1,6 @@ { "name": "@lion/combobox", - "version": "0.1.23", + "version": "0.1.24", "description": "A widget made up of a single-line textbox and an associated pop-up listbox element", "license": "MIT", "author": "ing-bank", @@ -45,7 +45,7 @@ "@lion/core": "0.13.8", "@lion/form-core": "0.7.3", "@lion/listbox": "0.4.3", - "@lion/overlays": "0.23.3" + "@lion/overlays": "0.23.4" }, "keywords": [ "combobox", diff --git a/packages/dialog/CHANGELOG.md b/packages/dialog/CHANGELOG.md index 525844ebc..1dff08d6f 100644 --- a/packages/dialog/CHANGELOG.md +++ b/packages/dialog/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 0.9.18 + +### Patch Changes + +- Updated dependencies [a77452b0] + - @lion/overlays@0.23.4 + ## 0.9.17 ### Patch Changes diff --git a/packages/dialog/package.json b/packages/dialog/package.json index aa806d9ef..4df83f2a2 100644 --- a/packages/dialog/package.json +++ b/packages/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@lion/dialog", - "version": "0.9.17", + "version": "0.9.18", "description": "Show relative overlay content on click, as a webcomponent", "license": "MIT", "author": "ing-bank", @@ -35,7 +35,7 @@ ], "dependencies": { "@lion/core": "0.13.8", - "@lion/overlays": "0.23.3" + "@lion/overlays": "0.23.4" }, "keywords": [ "dialog", diff --git a/packages/form-integrations/CHANGELOG.md b/packages/form-integrations/CHANGELOG.md index 8324dd0a0..bfd57826c 100644 --- a/packages/form-integrations/CHANGELOG.md +++ b/packages/form-integrations/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## 0.3.30 + +### Patch Changes + +- Updated dependencies [33f639e8] +- Updated dependencies [1a5e353f] + - @lion/button@0.8.11 + - @lion/form@0.7.18 + - @lion/select-rich@0.21.28 + - @lion/combobox@0.1.24 + - @lion/input-datepicker@0.18.18 + ## 0.3.29 ### Patch Changes diff --git a/packages/form-integrations/package.json b/packages/form-integrations/package.json index 490151e3b..221a05597 100644 --- a/packages/form-integrations/package.json +++ b/packages/form-integrations/package.json @@ -1,6 +1,6 @@ { "name": "@lion/form-integrations", - "version": "0.3.29", + "version": "0.3.30", "description": "The Form System allows you to create complex forms with various validation in an easy way", "license": "MIT", "author": "ing-bank", @@ -33,17 +33,17 @@ "./docs/helper-wc/h-output.js" ], "dependencies": { - "@lion/button": "0.8.10", + "@lion/button": "0.8.11", "@lion/checkbox-group": "0.13.1", - "@lion/combobox": "0.1.23", + "@lion/combobox": "0.1.24", "@lion/core": "0.13.8", "@lion/fieldset": "0.15.16", - "@lion/form": "0.7.17", + "@lion/form": "0.7.18", "@lion/form-core": "0.7.3", "@lion/input": "0.10.16", "@lion/input-amount": "0.8.16", "@lion/input-date": "0.8.16", - "@lion/input-datepicker": "0.18.17", + "@lion/input-datepicker": "0.18.18", "@lion/input-email": "0.9.16", "@lion/input-iban": "0.11.6", "@lion/input-range": "0.5.16", @@ -52,7 +52,7 @@ "@lion/localize": "0.15.5", "@lion/radio-group": "0.12.16", "@lion/select": "0.8.16", - "@lion/select-rich": "0.21.27", + "@lion/select-rich": "0.21.28", "@lion/switch": "0.12.17", "@lion/textarea": "0.8.16", "@lion/validate-messages": "0.3.16" diff --git a/packages/form/CHANGELOG.md b/packages/form/CHANGELOG.md index ec2fb2f7d..4d8caaaa9 100644 --- a/packages/form/CHANGELOG.md +++ b/packages/form/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.7.18 + +### Patch Changes + +- 1a5e353f: Dispatch submit event on native form node instead of calling submit() directly, which circumvents lion-form submit logic and will always do a page reload and cannot be stopped by the user. + ## 0.7.17 ### Patch Changes diff --git a/packages/form/package.json b/packages/form/package.json index 004904b78..b6d938b1a 100644 --- a/packages/form/package.json +++ b/packages/form/package.json @@ -1,6 +1,6 @@ { "name": "@lion/form", - "version": "0.7.17", + "version": "0.7.18", "description": "It enhances the functionality of the native `form` component. It is designed to interact with (instances of) form fields", "license": "MIT", "author": "ing-bank", diff --git a/packages/input-datepicker/CHANGELOG.md b/packages/input-datepicker/CHANGELOG.md index 7a1ba9fdb..3e81e2922 100644 --- a/packages/input-datepicker/CHANGELOG.md +++ b/packages/input-datepicker/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 0.18.18 + +### Patch Changes + +- Updated dependencies [a77452b0] + - @lion/overlays@0.23.4 + ## 0.18.17 ### Patch Changes diff --git a/packages/input-datepicker/package.json b/packages/input-datepicker/package.json index ff551502d..cf0dbd8c6 100644 --- a/packages/input-datepicker/package.json +++ b/packages/input-datepicker/package.json @@ -1,6 +1,6 @@ { "name": "@lion/input-datepicker", - "version": "0.18.17", + "version": "0.18.18", "description": "Provide a way for users to fill in a date via a calendar overlay", "license": "MIT", "author": "ing-bank", @@ -38,7 +38,7 @@ "@lion/form-core": "0.7.3", "@lion/input-date": "0.8.16", "@lion/localize": "0.15.5", - "@lion/overlays": "0.23.3", + "@lion/overlays": "0.23.4", "@lion/validate-messages": "0.3.16" }, "keywords": [ diff --git a/packages/overlays/CHANGELOG.md b/packages/overlays/CHANGELOG.md index 5b41ce4f0..94abd2309 100644 --- a/packages/overlays/CHANGELOG.md +++ b/packages/overlays/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.23.4 + +### Patch Changes + +- a77452b0: Use MutationObserver to watch child changes of the contentNode, and re-insert tab detection element when necessary. + ## 0.23.3 ### Patch Changes diff --git a/packages/overlays/package.json b/packages/overlays/package.json index 18a9c9880..37c7cafec 100644 --- a/packages/overlays/package.json +++ b/packages/overlays/package.json @@ -1,6 +1,6 @@ { "name": "@lion/overlays", - "version": "0.23.3", + "version": "0.23.4", "description": "Overlays System using lit-html for rendering", "license": "MIT", "author": "ing-bank", diff --git a/packages/select-rich/CHANGELOG.md b/packages/select-rich/CHANGELOG.md index 1692d1234..b8f6c70e4 100644 --- a/packages/select-rich/CHANGELOG.md +++ b/packages/select-rich/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 0.21.28 + +### Patch Changes + +- Updated dependencies [33f639e8] +- Updated dependencies [a77452b0] + - @lion/button@0.8.11 + - @lion/overlays@0.23.4 + ## 0.21.27 ### Patch Changes diff --git a/packages/select-rich/package.json b/packages/select-rich/package.json index e03923533..c8558b247 100644 --- a/packages/select-rich/package.json +++ b/packages/select-rich/package.json @@ -1,6 +1,6 @@ { "name": "@lion/select-rich", - "version": "0.21.27", + "version": "0.21.28", "description": "Provides a select with options that can contain html", "license": "MIT", "author": "ing-bank", @@ -34,11 +34,11 @@ "lion-select-rich.js" ], "dependencies": { - "@lion/button": "0.8.10", + "@lion/button": "0.8.11", "@lion/core": "0.13.8", "@lion/form-core": "0.7.3", "@lion/listbox": "0.4.3", - "@lion/overlays": "0.23.3" + "@lion/overlays": "0.23.4" }, "keywords": [ "field", diff --git a/packages/tooltip/CHANGELOG.md b/packages/tooltip/CHANGELOG.md index bb64dd44b..ebe53077c 100644 --- a/packages/tooltip/CHANGELOG.md +++ b/packages/tooltip/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 0.16.5 + +### Patch Changes + +- Updated dependencies [a77452b0] + - @lion/overlays@0.23.4 + ## 0.16.4 ### Patch Changes diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index 0bfa27ef5..b1af628af 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@lion/tooltip", - "version": "0.16.4", + "version": "0.16.5", "description": "Show relative overlay content on hover", "license": "MIT", "author": "ing-bank", @@ -35,7 +35,7 @@ ], "dependencies": { "@lion/core": "0.13.8", - "@lion/overlays": "0.23.3" + "@lion/overlays": "0.23.4" }, "keywords": [ "lion",