Merge pull request #1197 from ing-bank/changeset-release/master
Version Packages
This commit is contained in:
commit
e8364f7473
21 changed files with 87 additions and 35 deletions
|
|
@ -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.
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/overlays': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Use MutationObserver to watch child changes of the contentNode, and re-insert tab detection element when necessary.
|
|
||||||
|
|
@ -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.
|
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
# Change Log
|
# 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
|
## 0.8.10
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/button",
|
"name": "@lion/button",
|
||||||
"version": "0.8.10",
|
"version": "0.8.11",
|
||||||
"description": "A button that is easily styleable and accessible in all contexts",
|
"description": "A button that is easily styleable and accessible in all contexts",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 0.1.24
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [a77452b0]
|
||||||
|
- @lion/overlays@0.23.4
|
||||||
|
|
||||||
## 0.1.23
|
## 0.1.23
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/combobox",
|
"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",
|
"description": "A widget made up of a single-line textbox and an associated pop-up listbox element",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
"@lion/core": "0.13.8",
|
"@lion/core": "0.13.8",
|
||||||
"@lion/form-core": "0.7.3",
|
"@lion/form-core": "0.7.3",
|
||||||
"@lion/listbox": "0.4.3",
|
"@lion/listbox": "0.4.3",
|
||||||
"@lion/overlays": "0.23.3"
|
"@lion/overlays": "0.23.4"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"combobox",
|
"combobox",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 0.9.18
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [a77452b0]
|
||||||
|
- @lion/overlays@0.23.4
|
||||||
|
|
||||||
## 0.9.17
|
## 0.9.17
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/dialog",
|
"name": "@lion/dialog",
|
||||||
"version": "0.9.17",
|
"version": "0.9.18",
|
||||||
"description": "Show relative overlay content on click, as a webcomponent",
|
"description": "Show relative overlay content on click, as a webcomponent",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.13.8",
|
"@lion/core": "0.13.8",
|
||||||
"@lion/overlays": "0.23.3"
|
"@lion/overlays": "0.23.4"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"dialog",
|
"dialog",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,17 @@
|
||||||
# Change Log
|
# 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
|
## 0.3.29
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/form-integrations",
|
"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",
|
"description": "The Form System allows you to create complex forms with various validation in an easy way",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
@ -33,17 +33,17 @@
|
||||||
"./docs/helper-wc/h-output.js"
|
"./docs/helper-wc/h-output.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/button": "0.8.10",
|
"@lion/button": "0.8.11",
|
||||||
"@lion/checkbox-group": "0.13.1",
|
"@lion/checkbox-group": "0.13.1",
|
||||||
"@lion/combobox": "0.1.23",
|
"@lion/combobox": "0.1.24",
|
||||||
"@lion/core": "0.13.8",
|
"@lion/core": "0.13.8",
|
||||||
"@lion/fieldset": "0.15.16",
|
"@lion/fieldset": "0.15.16",
|
||||||
"@lion/form": "0.7.17",
|
"@lion/form": "0.7.18",
|
||||||
"@lion/form-core": "0.7.3",
|
"@lion/form-core": "0.7.3",
|
||||||
"@lion/input": "0.10.16",
|
"@lion/input": "0.10.16",
|
||||||
"@lion/input-amount": "0.8.16",
|
"@lion/input-amount": "0.8.16",
|
||||||
"@lion/input-date": "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-email": "0.9.16",
|
||||||
"@lion/input-iban": "0.11.6",
|
"@lion/input-iban": "0.11.6",
|
||||||
"@lion/input-range": "0.5.16",
|
"@lion/input-range": "0.5.16",
|
||||||
|
|
@ -52,7 +52,7 @@
|
||||||
"@lion/localize": "0.15.5",
|
"@lion/localize": "0.15.5",
|
||||||
"@lion/radio-group": "0.12.16",
|
"@lion/radio-group": "0.12.16",
|
||||||
"@lion/select": "0.8.16",
|
"@lion/select": "0.8.16",
|
||||||
"@lion/select-rich": "0.21.27",
|
"@lion/select-rich": "0.21.28",
|
||||||
"@lion/switch": "0.12.17",
|
"@lion/switch": "0.12.17",
|
||||||
"@lion/textarea": "0.8.16",
|
"@lion/textarea": "0.8.16",
|
||||||
"@lion/validate-messages": "0.3.16"
|
"@lion/validate-messages": "0.3.16"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
# Change Log
|
# 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
|
## 0.7.17
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/form",
|
"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",
|
"description": "It enhances the functionality of the native `form` component. It is designed to interact with (instances of) form fields",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 0.18.18
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [a77452b0]
|
||||||
|
- @lion/overlays@0.23.4
|
||||||
|
|
||||||
## 0.18.17
|
## 0.18.17
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/input-datepicker",
|
"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",
|
"description": "Provide a way for users to fill in a date via a calendar overlay",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
@ -38,7 +38,7 @@
|
||||||
"@lion/form-core": "0.7.3",
|
"@lion/form-core": "0.7.3",
|
||||||
"@lion/input-date": "0.8.16",
|
"@lion/input-date": "0.8.16",
|
||||||
"@lion/localize": "0.15.5",
|
"@lion/localize": "0.15.5",
|
||||||
"@lion/overlays": "0.23.3",
|
"@lion/overlays": "0.23.4",
|
||||||
"@lion/validate-messages": "0.3.16"
|
"@lion/validate-messages": "0.3.16"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
# Change Log
|
# 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
|
## 0.23.3
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/overlays",
|
"name": "@lion/overlays",
|
||||||
"version": "0.23.3",
|
"version": "0.23.4",
|
||||||
"description": "Overlays System using lit-html for rendering",
|
"description": "Overlays System using lit-html for rendering",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,14 @@
|
||||||
# Change Log
|
# 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
|
## 0.21.27
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/select-rich",
|
"name": "@lion/select-rich",
|
||||||
"version": "0.21.27",
|
"version": "0.21.28",
|
||||||
"description": "Provides a select with options that can contain html",
|
"description": "Provides a select with options that can contain html",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
@ -34,11 +34,11 @@
|
||||||
"lion-select-rich.js"
|
"lion-select-rich.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/button": "0.8.10",
|
"@lion/button": "0.8.11",
|
||||||
"@lion/core": "0.13.8",
|
"@lion/core": "0.13.8",
|
||||||
"@lion/form-core": "0.7.3",
|
"@lion/form-core": "0.7.3",
|
||||||
"@lion/listbox": "0.4.3",
|
"@lion/listbox": "0.4.3",
|
||||||
"@lion/overlays": "0.23.3"
|
"@lion/overlays": "0.23.4"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"field",
|
"field",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 0.16.5
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [a77452b0]
|
||||||
|
- @lion/overlays@0.23.4
|
||||||
|
|
||||||
## 0.16.4
|
## 0.16.4
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/tooltip",
|
"name": "@lion/tooltip",
|
||||||
"version": "0.16.4",
|
"version": "0.16.5",
|
||||||
"description": "Show relative overlay content on hover",
|
"description": "Show relative overlay content on hover",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.13.8",
|
"@lion/core": "0.13.8",
|
||||||
"@lion/overlays": "0.23.3"
|
"@lion/overlays": "0.23.4"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"lion",
|
"lion",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue