Version Packages
This commit is contained in:
parent
558edcb686
commit
f11f94fafc
24 changed files with 77 additions and 56 deletions
|
|
@ -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.
|
||||
|
|
@ -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
|
||||
|
|
@ -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.
|
||||
|
|
@ -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.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/input-tel-dropdown': patch
|
||||
---
|
||||
|
||||
sync disable state to dropdown for a11y
|
||||
|
|
@ -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.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/switch': patch
|
||||
---
|
||||
|
||||
fix(switch) unregister on disconnectedCallback
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/form-core': patch
|
||||
---
|
||||
|
||||
fix: reset the form validators after a form `reset` click or field emptied
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue