diff --git a/.changeset/clean-terms-give.md b/.changeset/clean-terms-give.md deleted file mode 100644 index 8e1c9edfc..000000000 --- a/.changeset/clean-terms-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/checkbox-group': patch ---- - -Add mixed-state feature to checkbox indeterminate. See https://www.w3.org/TR/wai-aria-practices-1.1/examples/checkbox/checkbox-2/checkbox-2.html for the WAI ARIA pattern. diff --git a/.changeset/fresh-paws-run.md b/.changeset/fresh-paws-run.md deleted file mode 100644 index 9aba5cadf..000000000 --- a/.changeset/fresh-paws-run.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@lion/listbox': patch -'@lion/select-rich': patch ---- - -Add TypeAhead, so with typing characters you will set an option with matching value active/checked diff --git a/.changeset/good-berries-watch.md b/.changeset/good-berries-watch.md deleted file mode 100644 index 031f8215d..000000000 --- a/.changeset/good-berries-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/ajax': minor ---- - -Adds a `maxResponseSize` cache option to specify a max size for responses to be cached. The option prevents caching and cache retrieval for responses that are larger than the given maximum as reported in the `Content-Length` header. If this header is missing nothing happens, that is to say caching is not prevented. diff --git a/.changeset/pretty-mice-beam.md b/.changeset/pretty-mice-beam.md deleted file mode 100644 index d83441287..000000000 --- a/.changeset/pretty-mice-beam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/ajax': minor ---- - -Adds a `contentTypes` cache option to specify a whitelist of content types to be cached. The option prevents caching and cache retrieval for responses that do not have one of these values in the `Content-Type` header. diff --git a/.changeset/rotten-birds-call.md b/.changeset/rotten-birds-call.md deleted file mode 100644 index 3efd51752..000000000 --- a/.changeset/rotten-birds-call.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/input-tel-dropdown': patch ---- - -sync disable state to dropdown for a11y diff --git a/.changeset/silent-ravens-smell.md b/.changeset/silent-ravens-smell.md deleted file mode 100644 index d9362530c..000000000 --- a/.changeset/silent-ravens-smell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/ajax': minor ---- - -Add an option "addCaching" to the Ajax config, in order to add cache interceptors when useCache is turned off. In this situation, all requests are cached proactively. diff --git a/.changeset/six-camels-cross.md b/.changeset/six-camels-cross.md deleted file mode 100644 index 2248369de..000000000 --- a/.changeset/six-camels-cross.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/switch': patch ---- - -fix(switch) unregister on disconnectedCallback diff --git a/.changeset/tender-otters-shake.md b/.changeset/tender-otters-shake.md deleted file mode 100644 index 303ecd829..000000000 --- a/.changeset/tender-otters-shake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/form-core': patch ---- - -fix: reset the form validators after a form `reset` click or field emptied diff --git a/packages/ajax/CHANGELOG.md b/packages/ajax/CHANGELOG.md index 7c7e5e6aa..77fff45b7 100644 --- a/packages/ajax/CHANGELOG.md +++ b/packages/ajax/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 0.15.0 + +### Minor Changes + +- 558edcb6: Adds a `maxResponseSize` cache option to specify a max size for responses to be cached. The option prevents caching and cache retrieval for responses that are larger than the given maximum as reported in the `Content-Length` header. If this header is missing nothing happens, that is to say caching is not prevented. +- efcdf653: Adds a `contentTypes` cache option to specify a whitelist of content types to be cached. The option prevents caching and cache retrieval for responses that do not have one of these values in the `Content-Type` header. +- 56af96f1: Add an option "addCaching" to the Ajax config, in order to add cache interceptors when useCache is turned off. In this situation, all requests are cached proactively. + ## 0.14.0 ### Minor Changes diff --git a/packages/ajax/package.json b/packages/ajax/package.json index 7855f1479..12baf8064 100644 --- a/packages/ajax/package.json +++ b/packages/ajax/package.json @@ -1,6 +1,6 @@ { "name": "@lion/ajax", - "version": "0.14.0", + "version": "0.15.0", "description": "Thin wrapper around fetch with support for interceptors.", "license": "MIT", "author": "ing-bank", diff --git a/packages/checkbox-group/CHANGELOG.md b/packages/checkbox-group/CHANGELOG.md index 3bd45088b..18df858ac 100644 --- a/packages/checkbox-group/CHANGELOG.md +++ b/packages/checkbox-group/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 0.20.1 + +### Patch Changes + +- 41297869: Add mixed-state feature to checkbox indeterminate. See https://www.w3.org/TR/wai-aria-practices-1.1/examples/checkbox/checkbox-2/checkbox-2.html for the WAI ARIA pattern. +- Updated dependencies [43dd1320] + - @lion/form-core@0.17.1 + ## 0.20.0 ### Minor Changes diff --git a/packages/checkbox-group/package.json b/packages/checkbox-group/package.json index 3011c17d6..a3755543a 100644 --- a/packages/checkbox-group/package.json +++ b/packages/checkbox-group/package.json @@ -1,6 +1,6 @@ { "name": "@lion/checkbox-group", - "version": "0.20.0", + "version": "0.20.1", "description": "A container for multiple checkboxes", "license": "MIT", "author": "ing-bank", @@ -40,7 +40,7 @@ ], "dependencies": { "@lion/core": "^0.22.0", - "@lion/form-core": "^0.17.0", + "@lion/form-core": "^0.17.1", "@lion/input": "^0.17.0" }, "keywords": [ diff --git a/packages/form-core/CHANGELOG.md b/packages/form-core/CHANGELOG.md index 3fee30208..f9db6c23d 100644 --- a/packages/form-core/CHANGELOG.md +++ b/packages/form-core/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.17.1 + +### Patch Changes + +- 43dd1320: fix: reset the form validators after a form `reset` click or field emptied + ## 0.17.0 ### Minor Changes diff --git a/packages/form-core/package.json b/packages/form-core/package.json index 9e13a810a..3a67dd001 100644 --- a/packages/form-core/package.json +++ b/packages/form-core/package.json @@ -1,6 +1,6 @@ { "name": "@lion/form-core", - "version": "0.17.0", + "version": "0.17.1", "description": "Form-core contains all essential building blocks for creating form fields and fieldsets", "license": "MIT", "author": "ing-bank", diff --git a/packages/input-tel-dropdown/CHANGELOG.md b/packages/input-tel-dropdown/CHANGELOG.md index 13cd1cee1..6c193587c 100644 --- a/packages/input-tel-dropdown/CHANGELOG.md +++ b/packages/input-tel-dropdown/CHANGELOG.md @@ -1,5 +1,12 @@ # @lion/input-tel-dropdown +## 0.1.2 + +### Patch Changes + +- 8ecfc31c: sync disable state to dropdown for a11y + - @lion/input-tel@0.1.2 + ## 0.1.1 ### Patch Changes diff --git a/packages/input-tel-dropdown/package.json b/packages/input-tel-dropdown/package.json index 3c4497c70..a6824a961 100644 --- a/packages/input-tel-dropdown/package.json +++ b/packages/input-tel-dropdown/package.json @@ -1,6 +1,6 @@ { "name": "@lion/input-tel-dropdown", - "version": "0.1.1", + "version": "0.1.2", "description": "Input field for entering phone numbers with the help of a dropdown region list", "license": "MIT", "author": "ing-bank", @@ -35,7 +35,7 @@ ], "dependencies": { "@lion/core": "0.22.0", - "@lion/input-tel": "0.1.1", + "@lion/input-tel": "0.1.2", "@lion/localize": "0.24.0" }, "keywords": [ diff --git a/packages/input-tel/CHANGELOG.md b/packages/input-tel/CHANGELOG.md index 76c5862fe..ce9117306 100644 --- a/packages/input-tel/CHANGELOG.md +++ b/packages/input-tel/CHANGELOG.md @@ -1,5 +1,12 @@ # @lion/input-tel +## 0.1.2 + +### Patch Changes + +- Updated dependencies [43dd1320] + - @lion/form-core@0.17.1 + ## 0.1.1 ### Patch Changes diff --git a/packages/input-tel/package.json b/packages/input-tel/package.json index 602ac22f7..d8eb3ea6a 100644 --- a/packages/input-tel/package.json +++ b/packages/input-tel/package.json @@ -1,6 +1,6 @@ { "name": "@lion/input-tel", - "version": "0.1.1", + "version": "0.1.2", "description": "Input field for entering phone numbers, including validation, formatting and mobile keyboard support.", "license": "MIT", "author": "ing-bank", @@ -38,7 +38,7 @@ ], "dependencies": { "@lion/core": "0.22.0", - "@lion/form-core": "0.17.0", + "@lion/form-core": "0.17.1", "@lion/input": "0.17.0", "@lion/localize": "0.24.0" }, diff --git a/packages/listbox/CHANGELOG.md b/packages/listbox/CHANGELOG.md index 2e7f526bc..2d6381ddd 100644 --- a/packages/listbox/CHANGELOG.md +++ b/packages/listbox/CHANGELOG.md @@ -1,5 +1,13 @@ # @lion/listbox +## 0.13.1 + +### Patch Changes + +- a28686ee: Add TypeAhead, so with typing characters you will set an option with matching value active/checked +- Updated dependencies [43dd1320] + - @lion/form-core@0.17.1 + ## 0.13.0 ### Minor Changes diff --git a/packages/listbox/package.json b/packages/listbox/package.json index 5da78f1e9..9ba9fa3b9 100644 --- a/packages/listbox/package.json +++ b/packages/listbox/package.json @@ -1,6 +1,6 @@ { "name": "@lion/listbox", - "version": "0.13.0", + "version": "0.13.1", "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", @@ -40,7 +40,7 @@ ], "dependencies": { "@lion/core": "^0.22.0", - "@lion/form-core": "^0.17.0" + "@lion/form-core": "^0.17.1" }, "keywords": [ "form", diff --git a/packages/select-rich/CHANGELOG.md b/packages/select-rich/CHANGELOG.md index bcdf12803..872e4c420 100644 --- a/packages/select-rich/CHANGELOG.md +++ b/packages/select-rich/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 0.30.1 + +### Patch Changes + +- a28686ee: Add TypeAhead, so with typing characters you will set an option with matching value active/checked +- Updated dependencies [a28686ee] +- Updated dependencies [43dd1320] + - @lion/listbox@0.13.1 + - @lion/form-core@0.17.1 + ## 0.30.0 ### Minor Changes diff --git a/packages/select-rich/package.json b/packages/select-rich/package.json index 4bb2ee061..1bfdde6a6 100644 --- a/packages/select-rich/package.json +++ b/packages/select-rich/package.json @@ -1,6 +1,6 @@ { "name": "@lion/select-rich", - "version": "0.30.0", + "version": "0.30.1", "description": "Provides a select with options that can contain html", "license": "MIT", "author": "ing-bank", @@ -42,8 +42,8 @@ "dependencies": { "@lion/button": "^0.17.0", "@lion/core": "^0.22.0", - "@lion/form-core": "^0.17.0", - "@lion/listbox": "^0.13.0", + "@lion/form-core": "^0.17.1", + "@lion/listbox": "^0.13.1", "@lion/overlays": "^0.32.0" }, "keywords": [ diff --git a/packages/switch/CHANGELOG.md b/packages/switch/CHANGELOG.md index 8058c3dd5..515035b87 100644 --- a/packages/switch/CHANGELOG.md +++ b/packages/switch/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 0.20.1 + +### Patch Changes + +- 355aabc0: fix(switch) unregister on disconnectedCallback +- Updated dependencies [43dd1320] + - @lion/form-core@0.17.1 + ## 0.20.0 ### Minor Changes diff --git a/packages/switch/package.json b/packages/switch/package.json index bba8eb3cc..be776a3b3 100644 --- a/packages/switch/package.json +++ b/packages/switch/package.json @@ -1,6 +1,6 @@ { "name": "@lion/switch", - "version": "0.20.0", + "version": "0.20.1", "description": "A Switch is used for switching a property or feature on and off", "license": "MIT", "author": "ing-bank", @@ -39,7 +39,7 @@ ], "dependencies": { "@lion/core": "^0.22.0", - "@lion/form-core": "^0.17.0", + "@lion/form-core": "^0.17.1", "@lion/helpers": "^0.11.0" }, "keywords": [