Version Packages (#2067)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
6ccfb27868
commit
3c605b14a6
17 changed files with 27 additions and 80 deletions
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Bypass the requirement to support export & import map to consume @lion/ui
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fix: undefined document.body
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fix(progress-indicator): accept 0 as a valid value
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Render exactly 6 weeks in every months.
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ajax': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Preserve error name and enrich it with the response status
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
[calendar] focusCentralDate function should only use buttons inside the dates table
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Make disabled date buttons not selectable via keyboard navigation in LionCalendar.
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
[localize] with localizeNameSpaces type
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
{
|
|
||||||
"mode": "exit",
|
|
||||||
"tag": "prerelease-bypass-export-map",
|
|
||||||
"initialVersions": {
|
|
||||||
"babel-plugin-extend-docs": "0.5.3",
|
|
||||||
"@lion/nodejs-helpers": "0.0.1",
|
|
||||||
"providence-analytics": "0.14.1",
|
|
||||||
"publish-docs": "0.2.0",
|
|
||||||
"remark-extend": "0.5.2",
|
|
||||||
"rocket-preset-extend-lion-docs": "0.4.0",
|
|
||||||
"@lion/ajax": "1.2.1",
|
|
||||||
"singleton-manager": "1.6.1",
|
|
||||||
"@lion/ui": "0.3.5"
|
|
||||||
},
|
|
||||||
"changesets": [
|
|
||||||
"brown-masks-crash"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
[input-datepicker] only disable dates is the validator type is "error"
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
feat: allow Required validator on Fieldset and Form;
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
lion-accordion now replaces expanded with a copy when it changes on click of an invoker button.
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Handle focusin event in invokers in LionAccordion. Fix tabbing issues.
|
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 1.2.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 275f49eb: Preserve error name and enrich it with the response status
|
||||||
|
|
||||||
## 1.2.1
|
## 1.2.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/ajax",
|
"name": "@lion/ajax",
|
||||||
"version": "1.2.1",
|
"version": "1.2.2",
|
||||||
"description": "Thin wrapper around fetch with support for interceptors.",
|
"description": "Thin wrapper around fetch with support for interceptors.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,24 @@
|
||||||
# @lion/ui
|
# @lion/ui
|
||||||
|
|
||||||
|
## 0.4.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- a3738b50: Bypass the requirement to support export & import map to consume @lion/ui
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- ebe13e14: fix: undefined document.body
|
||||||
|
- b0a74f28: fix(progress-indicator): accept 0 as a valid value
|
||||||
|
- b89d889f: Render exactly 6 weeks in every months.
|
||||||
|
- 9b9485db: [calendar] focusCentralDate function should only use buttons inside the dates table
|
||||||
|
- d1f92a3a: Make disabled date buttons not selectable via keyboard navigation in LionCalendar.
|
||||||
|
- d597c077: [localize] with localizeNameSpaces type
|
||||||
|
- 6ccfb278: [input-datepicker] only disable dates is the validator type is "error"
|
||||||
|
- 4cc72b12: feat: allow Required validator on Fieldset and Form;
|
||||||
|
- cecf5ed5: lion-accordion now replaces expanded with a copy when it changes on click of an invoker button.
|
||||||
|
- 857d47a9: Handle focusin event in invokers in LionAccordion. Fix tabbing issues.
|
||||||
|
|
||||||
## 0.4.0-prerelease-bypass-export-map.0
|
## 0.4.0-prerelease-bypass-export-map.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/ui",
|
"name": "@lion/ui",
|
||||||
"version": "0.4.0-prerelease-bypass-export-map.0",
|
"version": "0.4.0",
|
||||||
"description": "A package of extendable web components",
|
"description": "A package of extendable web components",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue