Version Packages

This commit is contained in:
github-actions[bot] 2020-12-02 15:27:02 +00:00 committed by Joren Broekema
parent 053bcee6cd
commit 93cd68ea69
20 changed files with 90 additions and 39 deletions

View file

@ -1,5 +0,0 @@
---
'@lion/overlays': patch
---
Only set inert when placementMode is global, otherwise events are broken inside local overlay content

View file

@ -1,5 +0,0 @@
---
'@lion/overlays': patch
---
Fix deep contains util to properly check multiple nested shadow roots, and do not set containsTarget to false when children deepContains returns false. This would undo a found target in another child somewhere that was found in an earlier recursion.

View file

@ -1,7 +0,0 @@
---
'@lion/listbox': patch
---
- Fix keyboard navigation when `selection-follows-focus` and `orientation="horizontal"` are set on a `<lion-listbox>`
- Fix keyboard navigation with `selection-follows-focus` and disabled options
- On click of an option, it become active

View file

@ -1,5 +0,0 @@
---
'@lion/overlays': patch
---
Keep transitionShow and transitionHide as user hooks

View file

@ -1,5 +1,16 @@
# Change Log
## 0.1.13
### Patch Changes
- Updated dependencies [83359ac2]
- Updated dependencies [7709d7c2]
- Updated dependencies [3c2a33a7]
- Updated dependencies [2eeace23]
- @lion/overlays@0.22.5
- @lion/listbox@0.3.10
## 0.1.12
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/combobox",
"version": "0.1.12",
"version": "0.1.13",
"description": "A widget made up of a single-line textbox and an associated pop-up listbox element",
"license": "MIT",
"author": "ing-bank",
@ -44,8 +44,8 @@
"dependencies": {
"@lion/core": "0.13.4",
"@lion/form-core": "0.6.12",
"@lion/listbox": "0.3.9",
"@lion/overlays": "0.22.4"
"@lion/listbox": "0.3.10",
"@lion/overlays": "0.22.5"
},
"devDependencies": {
"@lion/validate-messages": "0.3.10"

View file

@ -1,5 +1,14 @@
# Change Log
## 0.9.10
### Patch Changes
- Updated dependencies [83359ac2]
- Updated dependencies [7709d7c2]
- Updated dependencies [2eeace23]
- @lion/overlays@0.22.5
## 0.9.9
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/dialog",
"version": "0.9.9",
"version": "0.9.10",
"description": "Show relative overlay content on click, as a webcomponent",
"license": "MIT",
"author": "ing-bank",
@ -35,7 +35,7 @@
],
"dependencies": {
"@lion/core": "0.13.4",
"@lion/overlays": "0.22.4"
"@lion/overlays": "0.22.5"
},
"keywords": [
"dialog",

View file

@ -1,5 +1,12 @@
# Change Log
## 0.3.18
### Patch Changes
- @lion/input-datepicker@0.18.8
- @lion/select-rich@0.21.17
## 0.3.17
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/form-integrations",
"version": "0.3.17",
"version": "0.3.18",
"description": "The Form System allows you to create complex forms with various validation in an easy way",
"license": "MIT",
"author": "ing-bank",
@ -41,14 +41,14 @@
"@lion/form-core": "0.6.12",
"@lion/input": "0.10.10",
"@lion/input-date": "0.8.10",
"@lion/input-datepicker": "0.18.7",
"@lion/input-datepicker": "0.18.8",
"@lion/input-email": "0.9.10",
"@lion/input-iban": "0.10.10",
"@lion/input-range": "0.5.10",
"@lion/localize": "0.15.1",
"@lion/radio-group": "0.12.10",
"@lion/select": "0.8.10",
"@lion/select-rich": "0.21.16",
"@lion/select-rich": "0.21.17",
"@lion/textarea": "0.8.10",
"@lion/validate-messages": "0.3.10"
},

View file

@ -1,5 +1,14 @@
# Change Log
## 0.18.8
### Patch Changes
- Updated dependencies [83359ac2]
- Updated dependencies [7709d7c2]
- Updated dependencies [2eeace23]
- @lion/overlays@0.22.5
## 0.18.7
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/input-datepicker",
"version": "0.18.7",
"version": "0.18.8",
"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.6.12",
"@lion/input-date": "0.8.10",
"@lion/localize": "0.15.1",
"@lion/overlays": "0.22.4"
"@lion/overlays": "0.22.5"
},
"devDependencies": {
"@lion/validate-messages": "0.3.10"

View file

@ -1,5 +1,14 @@
# @lion/listbox
## 0.3.10
### Patch Changes
- 3c2a33a7:
- Fix keyboard navigation when `selection-follows-focus` and `orientation="horizontal"` are set on a `<lion-listbox>`
- Fix keyboard navigation with `selection-follows-focus` and disabled options
- On click of an option, it become active
## 0.3.9
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/listbox",
"version": "0.3.9",
"version": "0.3.10",
"description": "A listbox widget presents a list of options and allows a user to select one or more of them",
"license": "MIT",
"author": "ing-bank",

View file

@ -1,5 +1,13 @@
# Change Log
## 0.22.5
### Patch Changes
- 83359ac2: Only set inert when placementMode is global, otherwise events are broken inside local overlay content
- 7709d7c2: Fix deep contains util to properly check multiple nested shadow roots, and do not set containsTarget to false when children deepContains returns false. This would undo a found target in another child somewhere that was found in an earlier recursion.
- 2eeace23: Keep transitionShow and transitionHide as user hooks
## 0.22.4
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/overlays",
"version": "0.22.4",
"version": "0.22.5",
"description": "Overlays System using lit-html for rendering",
"license": "MIT",
"author": "ing-bank",

View file

@ -1,5 +1,16 @@
# Change Log
## 0.21.17
### Patch Changes
- Updated dependencies [83359ac2]
- Updated dependencies [7709d7c2]
- Updated dependencies [3c2a33a7]
- Updated dependencies [2eeace23]
- @lion/overlays@0.22.5
- @lion/listbox@0.3.10
## 0.21.16
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/select-rich",
"version": "0.21.16",
"version": "0.21.17",
"description": "Provides a select with options that can contain html",
"license": "MIT",
"author": "ing-bank",
@ -37,8 +37,8 @@
"@lion/button": "0.8.5",
"@lion/core": "0.13.4",
"@lion/form-core": "0.6.12",
"@lion/listbox": "0.3.9",
"@lion/overlays": "0.22.4"
"@lion/listbox": "0.3.10",
"@lion/overlays": "0.22.5"
},
"keywords": [
"field",

View file

@ -1,5 +1,14 @@
# Change Log
## 0.15.10
### Patch Changes
- Updated dependencies [83359ac2]
- Updated dependencies [7709d7c2]
- Updated dependencies [2eeace23]
- @lion/overlays@0.22.5
## 0.15.9
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/tooltip",
"version": "0.15.9",
"version": "0.15.10",
"description": "Show relative overlay content on hover",
"license": "MIT",
"author": "ing-bank",
@ -35,7 +35,7 @@
],
"dependencies": {
"@lion/core": "0.13.4",
"@lion/overlays": "0.22.4"
"@lion/overlays": "0.22.5"
},
"keywords": [
"lion",