Version Packages (#2083)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
be36bf3b1b
commit
83eefe4958
12 changed files with 28 additions and 37 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/ajax': minor
|
||||
---
|
||||
|
||||
make return type for `fetchJson` generic
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
avoid calling push in iterable object to avoid error loading overlays in old chromium versions
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'publish-docs': patch
|
||||
---
|
||||
|
||||
code example is formatted correctly which is needed for code replacement and transformation functions on docs generation to work as intended
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
Fix search issues when modifying the middle of the input word in LionCombobox.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
Fix accessibility currency linking to label after setting currency from undefined in LionInputAmount.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
lion-calendar: when determining if user interacted with a day button, use event.composedPath()[0] instead of event.target to fix Firefox 111+ issue
|
||||
|
|
@ -1,5 +1,11 @@
|
|||
# publish-docs
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 8bf54e66: code example is formatted correctly which is needed for code replacement and transformation functions on docs generation to work as intended
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "publish-docs",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "A tool that copies and processes your documentation (in a monorepo) so it can be published/shipped with your package.",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -11,6 +11,10 @@
|
|||
"directory": "packages-node/publish-docs"
|
||||
},
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
"./docs/*": "./docs/*"
|
||||
},
|
||||
"bin": {
|
||||
"publish-docs": "src/cli.js"
|
||||
},
|
||||
|
|
@ -37,9 +41,5 @@
|
|||
],
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
"./docs/*": "./docs/*"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# Change Log
|
||||
|
||||
## 1.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 0952647d: make return type for `fetchJson` generic
|
||||
|
||||
## 1.2.3
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/ajax",
|
||||
"version": "1.2.3",
|
||||
"version": "1.3.0",
|
||||
"description": "Thin wrapper around fetch with support for interceptors.",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# @lion/ui
|
||||
|
||||
## 0.4.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- b1320a9a: avoid calling push in iterable object to avoid error loading overlays in old chromium versions
|
||||
- dcf3a4b0: Fix search issues when modifying the middle of the input word in LionCombobox.
|
||||
- be36bf3b: Fix accessibility currency linking to label after setting currency from undefined in LionInputAmount.
|
||||
- 63a8e725: lion-calendar: when determining if user interacted with a day button, use event.composedPath()[0] instead of event.target to fix Firefox 111+ issue
|
||||
|
||||
## 0.4.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/ui",
|
||||
"version": "0.4.1",
|
||||
"version": "0.4.2",
|
||||
"description": "A package of extendable web components",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
Loading…
Reference in a new issue