From 76446ae8a5e82b1c5439b5bf540412a7e990405a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 5 Nov 2020 10:27:03 +0000 Subject: [PATCH] Version Packages --- .changeset/fifty-jars-sing.md | 5 ---- .changeset/hip-pigs-type.md | 8 ----- .changeset/hot-roses-smell.md | 5 ---- .changeset/metal-apes-bathe.md | 29 ------------------ .changeset/olive-news-suffer.md | 5 ---- packages/combobox/CHANGELOG.md | 40 ++++++++++++++++++++++++- packages/combobox/package.json | 6 ++-- packages/dialog/CHANGELOG.md | 8 +++++ packages/dialog/package.json | 4 +-- packages/form-integrations/CHANGELOG.md | 8 +++++ packages/form-integrations/package.json | 6 ++-- packages/helpers/CHANGELOG.md | 6 ++++ packages/helpers/package.json | 2 +- packages/icon/CHANGELOG.md | 6 ++++ packages/icon/package.json | 2 +- packages/input-datepicker/CHANGELOG.md | 14 +++++++++ packages/input-datepicker/package.json | 4 +-- packages/listbox/CHANGELOG.md | 32 ++++++++++++++++++++ packages/listbox/package.json | 2 +- packages/overlays/CHANGELOG.md | 12 ++++++++ packages/overlays/package.json | 2 +- packages/select-rich/CHANGELOG.md | 10 +++++++ packages/select-rich/package.json | 6 ++-- packages/tooltip/CHANGELOG.md | 8 +++++ packages/tooltip/package.json | 4 +-- 25 files changed, 162 insertions(+), 72 deletions(-) delete mode 100644 .changeset/fifty-jars-sing.md delete mode 100644 .changeset/hip-pigs-type.md delete mode 100644 .changeset/hot-roses-smell.md delete mode 100644 .changeset/metal-apes-bathe.md delete mode 100644 .changeset/olive-news-suffer.md diff --git a/.changeset/fifty-jars-sing.md b/.changeset/fifty-jars-sing.md deleted file mode 100644 index e4b0c2fa0..000000000 --- a/.changeset/fifty-jars-sing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/helpers': patch ---- - -Fix types for helpers diff --git a/.changeset/hip-pigs-type.md b/.changeset/hip-pigs-type.md deleted file mode 100644 index 78877e60a..000000000 --- a/.changeset/hip-pigs-type.md +++ /dev/null @@ -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) diff --git a/.changeset/hot-roses-smell.md b/.changeset/hot-roses-smell.md deleted file mode 100644 index 6d0bf9c8a..000000000 --- a/.changeset/hot-roses-smell.md +++ /dev/null @@ -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. diff --git a/.changeset/metal-apes-bathe.md b/.changeset/metal-apes-bathe.md deleted file mode 100644 index 93ca7bfc3..000000000 --- a/.changeset/metal-apes-bathe.md +++ /dev/null @@ -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` diff --git a/.changeset/olive-news-suffer.md b/.changeset/olive-news-suffer.md deleted file mode 100644 index 2ec64fb52..000000000 --- a/.changeset/olive-news-suffer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/icon': patch ---- - -Fix lion icon types diff --git a/packages/combobox/CHANGELOG.md b/packages/combobox/CHANGELOG.md index 75fa54a6e..82714e25c 100644 --- a/packages/combobox/CHANGELOG.md +++ b/packages/combobox/CHANGELOG.md @@ -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 diff --git a/packages/combobox/package.json b/packages/combobox/package.json index 0931d3e70..b32a61bf9 100644 --- a/packages/combobox/package.json +++ b/packages/combobox/package.json @@ -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" diff --git a/packages/dialog/CHANGELOG.md b/packages/dialog/CHANGELOG.md index e406206af..2fa91a108 100644 --- a/packages/dialog/CHANGELOG.md +++ b/packages/dialog/CHANGELOG.md @@ -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 diff --git a/packages/dialog/package.json b/packages/dialog/package.json index 3bc94e002..c558fd6b4 100644 --- a/packages/dialog/package.json +++ b/packages/dialog/package.json @@ -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", diff --git a/packages/form-integrations/CHANGELOG.md b/packages/form-integrations/CHANGELOG.md index 753cbe9d6..cece9cde2 100644 --- a/packages/form-integrations/CHANGELOG.md +++ b/packages/form-integrations/CHANGELOG.md @@ -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 diff --git a/packages/form-integrations/package.json b/packages/form-integrations/package.json index 35f538200..026706272 100644 --- a/packages/form-integrations/package.json +++ b/packages/form-integrations/package.json @@ -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" }, diff --git a/packages/helpers/CHANGELOG.md b/packages/helpers/CHANGELOG.md index 4b990ab00..b78628e7b 100644 --- a/packages/helpers/CHANGELOG.md +++ b/packages/helpers/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.5.13 + +### Patch Changes + +- 9da2aa20: Fix types for helpers + ## 0.5.12 ### Patch Changes diff --git a/packages/helpers/package.json b/packages/helpers/package.json index 8165b7b5b..417445227 100644 --- a/packages/helpers/package.json +++ b/packages/helpers/package.json @@ -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", diff --git a/packages/icon/CHANGELOG.md b/packages/icon/CHANGELOG.md index 9eb31a8db..1d09f7e74 100644 --- a/packages/icon/CHANGELOG.md +++ b/packages/icon/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.8.2 + +### Patch Changes + +- a3ac76f1: Fix lion icon types + ## 0.8.1 ### Patch Changes diff --git a/packages/icon/package.json b/packages/icon/package.json index 1fd4609e8..80878aed6 100644 --- a/packages/icon/package.json +++ b/packages/icon/package.json @@ -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", diff --git a/packages/input-datepicker/CHANGELOG.md b/packages/input-datepicker/CHANGELOG.md index dfa4d45bd..dd234e709 100644 --- a/packages/input-datepicker/CHANGELOG.md +++ b/packages/input-datepicker/CHANGELOG.md @@ -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 diff --git a/packages/input-datepicker/package.json b/packages/input-datepicker/package.json index b29c2d4a5..400d51d5b 100644 --- a/packages/input-datepicker/package.json +++ b/packages/input-datepicker/package.json @@ -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" diff --git a/packages/listbox/CHANGELOG.md b/packages/listbox/CHANGELOG.md index 3396cffc3..cf51e6569 100644 --- a/packages/listbox/CHANGELOG.md +++ b/packages/listbox/CHANGELOG.md @@ -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 diff --git a/packages/listbox/package.json b/packages/listbox/package.json index 32b5af589..12342a502 100644 --- a/packages/listbox/package.json +++ b/packages/listbox/package.json @@ -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", diff --git a/packages/overlays/CHANGELOG.md b/packages/overlays/CHANGELOG.md index e6535ef42..8078c3fa7 100644 --- a/packages/overlays/CHANGELOG.md +++ b/packages/overlays/CHANGELOG.md @@ -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 diff --git a/packages/overlays/package.json b/packages/overlays/package.json index 3571926dd..3c67bef85 100644 --- a/packages/overlays/package.json +++ b/packages/overlays/package.json @@ -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", diff --git a/packages/select-rich/CHANGELOG.md b/packages/select-rich/CHANGELOG.md index bd6bb6dbe..356c79141 100644 --- a/packages/select-rich/CHANGELOG.md +++ b/packages/select-rich/CHANGELOG.md @@ -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 diff --git a/packages/select-rich/package.json b/packages/select-rich/package.json index 19c78535e..90ab80cf5 100644 --- a/packages/select-rich/package.json +++ b/packages/select-rich/package.json @@ -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", diff --git a/packages/tooltip/CHANGELOG.md b/packages/tooltip/CHANGELOG.md index 58c8159e2..24f6936a1 100644 --- a/packages/tooltip/CHANGELOG.md +++ b/packages/tooltip/CHANGELOG.md @@ -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 diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index d600377b6..68824ba4c 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -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",