Merge pull request #1073 from ing-bank/changeset-release/master

Version Packages
This commit is contained in:
gerjanvangeest 2020-11-05 11:47:03 +01:00 committed by GitHub
commit 45467c4305
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 162 additions and 72 deletions

View file

@ -1,5 +0,0 @@
---
'@lion/helpers': patch
---
Fix types for helpers

View file

@ -1,8 +0,0 @@
---
'@lion/input-datepicker': minor
'@lion/overlays': minor
---
- ArrowMixin needs to extend styles and not overwrite them
- ArrowMixin add an `_arrowNodeTemplate` which can be used to only override the arrow content
- InputDatepicker switch between bottomsheet style (on mobile) popover (on desktop/table with screensize bigger then 600px)

View file

@ -1,5 +0,0 @@
---
'@lion/overlays': patch
---
Added a fix for focus not being restored to the root element when only a focusout event happens, without a subsequent focusin event. Added a fix to use getDeepActiveElement util instead of document.activeElement which fixes focus trap in elements with shadowRoots that contain focusable elements.

View file

@ -1,29 +0,0 @@
---
"@lion/combobox": patch
"@lion/listbox": patch
---
Combobox: demos, Subclasser features and fixes
### Features
- Subclassers can configure `_syncToTextboxCondition()`. By default only for `autocomplete="inline|both"`
- Subclassers can configure `_showOverlayCondition(options)`. For instance, already show once textbox gets focus or add your own custom
- Subclassers can configure `_syncToTextboxMultiple(modelValue, oldModelValue)`. See https://github.com/ing-bank/lion/issues/1038
- Subclassers can configure `_autoSelectCondition`, for instance to have autcomplete="list" with auto select instead of manual selection. Both are possible according to w3c specs
### Fixes
- listbox multiselect can deselect again on 'Enter' and 'Space'. Closes https://github.com/ing-bank/lion/issues/1059
- combobox multiselect display only shows last selected option in textbox (instead of all). See https://github.com/ing-bank/lion/issues/1038
- default sync to textbox behavior for `autocomplete="none|list"` is no sync with textbox
### Demos
- created a google combobox demo (with anchors as options)
- advanced styling example
- uses autocomplete 'list' as a fundament and enhances `_showOverlayCondition` and `_syncToTextboxCondition`
- enhanced whatsapp combobox demo
- how to match/highlight text on multiple rows of the option (not just choiceValue)
### Potentially breaking for subclassers:
- `_computeUserIntendsAutoFill` -> `__computeUserIntendsAutoFill` (not overridable)
- `_syncCheckedWithTextboxOnInteraction ` is removed. Use `_syncToTextboxCondition` and/or `_syncToTextboxMultiple`

View file

@ -1,5 +0,0 @@
---
'@lion/icon': patch
---
Fix lion icon types

View file

@ -1,4 +1,42 @@
## 0.1.0
# Change Log
## 0.1.6
### Patch Changes
- 4f1e6d0d: Combobox: demos, Subclasser features and fixes
### Features
- Subclassers can configure `_syncToTextboxCondition()`. By default only for `autocomplete="inline|both"`
- Subclassers can configure `_showOverlayCondition(options)`. For instance, already show once textbox gets focus or add your own custom
- Subclassers can configure `_syncToTextboxMultiple(modelValue, oldModelValue)`. See https://github.com/ing-bank/lion/issues/1038
- Subclassers can configure `_autoSelectCondition`, for instance to have autcomplete="list" with auto select instead of manual selection. Both are possible according to w3c specs
### Fixes
- listbox multiselect can deselect again on 'Enter' and 'Space'. Closes https://github.com/ing-bank/lion/issues/1059
- combobox multiselect display only shows last selected option in textbox (instead of all). See https://github.com/ing-bank/lion/issues/1038
- default sync to textbox behavior for `autocomplete="none|list"` is no sync with textbox
### Demos
- created a google combobox demo (with anchors as options)
- advanced styling example
- uses autocomplete 'list' as a fundament and enhances `_showOverlayCondition` and `_syncToTextboxCondition`
- enhanced whatsapp combobox demo
- how to match/highlight text on multiple rows of the option (not just choiceValue)
### Potentially breaking for subclassers:
- `_computeUserIntendsAutoFill` -> `__computeUserIntendsAutoFill` (not overridable)
- `_syncCheckedWithTextboxOnInteraction` is removed. Use `_syncToTextboxCondition` and/or `_syncToTextboxMultiple`
- Updated dependencies [9c3224b4]
- Updated dependencies [fff79915]
- Updated dependencies [4f1e6d0d]
- @lion/overlays@0.22.0
- @lion/listbox@0.3.3
## 0.1.5

View file

@ -1,6 +1,6 @@
{
"name": "@lion/combobox",
"version": "0.1.5",
"version": "0.1.6",
"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.3",
"@lion/form-core": "0.6.6",
"@lion/listbox": "0.3.2",
"@lion/overlays": "0.21.3"
"@lion/listbox": "0.3.3",
"@lion/overlays": "0.22.0"
},
"devDependencies": {
"@lion/validate-messages": "0.3.4"

View file

@ -1,5 +1,13 @@
# Change Log
## 0.9.5
### Patch Changes
- Updated dependencies [9c3224b4]
- Updated dependencies [fff79915]
- @lion/overlays@0.22.0
## 0.9.4
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/dialog",
"version": "0.9.4",
"version": "0.9.5",
"description": "Show relative overlay content on click, as a webcomponent",
"license": "MIT",
"author": "ing-bank",
@ -35,7 +35,7 @@
],
"dependencies": {
"@lion/core": "0.13.3",
"@lion/overlays": "0.21.3"
"@lion/overlays": "0.22.0"
},
"keywords": [
"dialog",

View file

@ -1,5 +1,13 @@
# Change Log
## 0.3.10
### Patch Changes
- Updated dependencies [9c3224b4]
- @lion/input-datepicker@0.18.0
- @lion/select-rich@0.21.10
## 0.3.9
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/form-integrations",
"version": "0.3.9",
"version": "0.3.10",
"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.6",
"@lion/input": "0.10.4",
"@lion/input-date": "0.8.4",
"@lion/input-datepicker": "0.17.3",
"@lion/input-datepicker": "0.18.0",
"@lion/input-email": "0.9.4",
"@lion/input-iban": "0.10.4",
"@lion/input-range": "0.5.4",
"@lion/localize": "0.14.8",
"@lion/radio-group": "0.12.4",
"@lion/select": "0.8.4",
"@lion/select-rich": "0.21.9",
"@lion/select-rich": "0.21.10",
"@lion/textarea": "0.8.4",
"@lion/validate-messages": "0.3.4"
},

View file

@ -1,5 +1,11 @@
# Change Log
## 0.5.13
### Patch Changes
- 9da2aa20: Fix types for helpers
## 0.5.12
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/helpers",
"version": "0.5.12",
"version": "0.5.13",
"description": "Helpers that are used throughout lion and can be used outside",
"license": "MIT",
"author": "ing-bank",

View file

@ -1,5 +1,11 @@
# Change Log
## 0.8.2
### Patch Changes
- a3ac76f1: Fix lion icon types
## 0.8.1
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/icon",
"version": "0.8.1",
"version": "0.8.2",
"description": "A web component easily displaying svg icons",
"license": "MIT",
"author": "ing-bank",

View file

@ -1,5 +1,19 @@
# Change Log
## 0.18.0
### Minor Changes
- 9c3224b4: - ArrowMixin needs to extend styles and not overwrite them
- ArrowMixin add an `_arrowNodeTemplate` which can be used to only override the arrow content
- InputDatepicker switch between bottomsheet style (on mobile) popover (on desktop/table with screensize bigger then 600px)
### Patch Changes
- Updated dependencies [9c3224b4]
- Updated dependencies [fff79915]
- @lion/overlays@0.22.0
## 0.17.3
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/input-datepicker",
"version": "0.17.3",
"version": "0.18.0",
"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.6",
"@lion/input-date": "0.8.4",
"@lion/localize": "0.14.8",
"@lion/overlays": "0.21.3"
"@lion/overlays": "0.22.0"
},
"devDependencies": {
"@lion/validate-messages": "0.3.4"

View file

@ -1,5 +1,37 @@
# @lion/listbox
## 0.3.3
### Patch Changes
- 4f1e6d0d: Combobox: demos, Subclasser features and fixes
### Features
- Subclassers can configure `_syncToTextboxCondition()`. By default only for `autocomplete="inline|both"`
- Subclassers can configure `_showOverlayCondition(options)`. For instance, already show once textbox gets focus or add your own custom
- Subclassers can configure `_syncToTextboxMultiple(modelValue, oldModelValue)`. See https://github.com/ing-bank/lion/issues/1038
- Subclassers can configure `_autoSelectCondition`, for instance to have autcomplete="list" with auto select instead of manual selection. Both are possible according to w3c specs
### Fixes
- listbox multiselect can deselect again on 'Enter' and 'Space'. Closes https://github.com/ing-bank/lion/issues/1059
- combobox multiselect display only shows last selected option in textbox (instead of all). See https://github.com/ing-bank/lion/issues/1038
- default sync to textbox behavior for `autocomplete="none|list"` is no sync with textbox
### Demos
- created a google combobox demo (with anchors as options)
- advanced styling example
- uses autocomplete 'list' as a fundament and enhances `_showOverlayCondition` and `_syncToTextboxCondition`
- enhanced whatsapp combobox demo
- how to match/highlight text on multiple rows of the option (not just choiceValue)
### Potentially breaking for subclassers:
- `_computeUserIntendsAutoFill` -> `__computeUserIntendsAutoFill` (not overridable)
- `_syncCheckedWithTextboxOnInteraction` is removed. Use `_syncToTextboxCondition` and/or `_syncToTextboxMultiple`
## 0.3.2
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/listbox",
"version": "0.3.2",
"version": "0.3.3",
"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,17 @@
# Change Log
## 0.22.0
### Minor Changes
- 9c3224b4: - ArrowMixin needs to extend styles and not overwrite them
- ArrowMixin add an `_arrowNodeTemplate` which can be used to only override the arrow content
- InputDatepicker switch between bottomsheet style (on mobile) popover (on desktop/table with screensize bigger then 600px)
### Patch Changes
- fff79915: Added a fix for focus not being restored to the root element when only a focusout event happens, without a subsequent focusin event. Added a fix to use getDeepActiveElement util instead of document.activeElement which fixes focus trap in elements with shadowRoots that contain focusable elements.
## 0.21.3
### Patch Changes

View file

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

View file

@ -1,5 +1,15 @@
# Change Log
## 0.21.10
### Patch Changes
- Updated dependencies [9c3224b4]
- Updated dependencies [fff79915]
- Updated dependencies [4f1e6d0d]
- @lion/overlays@0.22.0
- @lion/listbox@0.3.3
## 0.21.9
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/select-rich",
"version": "0.21.9",
"version": "0.21.10",
"description": "Provides a select with options that can contain html",
"license": "MIT",
"author": "ing-bank",
@ -37,8 +37,8 @@
"@lion/button": "0.8.3",
"@lion/core": "0.13.3",
"@lion/form-core": "0.6.6",
"@lion/listbox": "0.3.2",
"@lion/overlays": "0.21.3"
"@lion/listbox": "0.3.3",
"@lion/overlays": "0.22.0"
},
"keywords": [
"field",

View file

@ -1,5 +1,13 @@
# Change Log
## 0.15.5
### Patch Changes
- Updated dependencies [9c3224b4]
- Updated dependencies [fff79915]
- @lion/overlays@0.22.0
## 0.15.4
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@lion/tooltip",
"version": "0.15.4",
"version": "0.15.5",
"description": "Show relative overlay content on hover",
"license": "MIT",
"author": "ing-bank",
@ -35,7 +35,7 @@
],
"dependencies": {
"@lion/core": "0.13.3",
"@lion/overlays": "0.21.3"
"@lion/overlays": "0.22.0"
},
"keywords": [
"lion",