Merge pull request #2105 from ing-bank/changeset-release/master
Version Packages
This commit is contained in:
commit
64a1b65c98
10 changed files with 35 additions and 46 deletions
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
feat: [combobox] add `allow-custom-choice` (former requireOptionMatch=false) and make it compatible with `multiple-choice`
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fix: [combobox] single choice with `allow-custom-choice`(former requireOptionMatch=false) doesn't clear selection
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fix: [radio-group] resetting a radio-group containing options with formatters doesn't check the default value
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fix: [combobox] model-value-changed event emitted when clearing a combobox sends stale value
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
---
|
|
||||||
'providence-analytics': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Many improvements:
|
|
||||||
|
|
||||||
- rewritten from babel to swc
|
|
||||||
- swcTraverse tool, compatible with babel traverse api
|
|
||||||
- increased performance
|
|
||||||
- better windows compatibility
|
|
||||||
|
|
||||||
BREAKING:
|
|
||||||
|
|
||||||
- package fully written as esm
|
|
||||||
- entrypoints changed:
|
|
||||||
- `@providence-analytics/src/cli` => `@providence-analytics/cli.js`
|
|
||||||
- `@providence-analytics/analyzers` => `@providence-analytics/analyzers.js`
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fix: [combobox] autocomplete feature for the lion-combobox component. It used to autoselect a wrong item
|
|
||||||
|
|
@ -1,5 +1,23 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 0.15.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- bdb038e1: Many improvements:
|
||||||
|
|
||||||
|
- rewritten from babel to swc
|
||||||
|
- swcTraverse tool, compatible with babel traverse api
|
||||||
|
- increased performance
|
||||||
|
- better windows compatibility
|
||||||
|
|
||||||
|
BREAKING:
|
||||||
|
|
||||||
|
- package fully written as esm
|
||||||
|
- entrypoints changed:
|
||||||
|
- `@providence-analytics/src/cli` => `@providence-analytics/cli.js`
|
||||||
|
- `@providence-analytics/analyzers` => `@providence-analytics/analyzers.js`
|
||||||
|
|
||||||
## 0.14.1
|
## 0.14.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "providence-analytics",
|
"name": "providence-analytics",
|
||||||
"version": "0.14.1",
|
"version": "0.15.0",
|
||||||
"description": "Providence is the 'All Seeing Eye' that measures effectivity and popularity of software. Release management will become highly efficient due to an accurate impact analysis of (breaking) changes",
|
"description": "Providence is the 'All Seeing Eye' that measures effectivity and popularity of software. Release management will become highly efficient due to an accurate impact analysis of (breaking) changes",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
@ -64,8 +64,8 @@
|
||||||
"@types/inquirer": "^9.0.3",
|
"@types/inquirer": "^9.0.3",
|
||||||
"@types/mocha": "^10.0.1",
|
"@types/mocha": "^10.0.1",
|
||||||
"@web/dev-server-core": "^0.4.0",
|
"@web/dev-server-core": "^0.4.0",
|
||||||
"mock-require": "^3.0.3",
|
"mock-fs": "^5.2.0",
|
||||||
"mock-fs": "^5.2.0"
|
"mock-require": "^3.0.3"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"analysis",
|
"analysis",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,18 @@
|
||||||
# @lion/ui
|
# @lion/ui
|
||||||
|
|
||||||
|
## 0.5.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- 7f644cd7: feat: [combobox] add `allow-custom-choice` (former requireOptionMatch=false) and make it compatible with `multiple-choice`
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- be4e25a1: fix: [combobox] single choice with `allow-custom-choice`(former requireOptionMatch=false) doesn't clear selection
|
||||||
|
- e923ba40: fix: [radio-group] resetting a radio-group containing options with formatters doesn't check the default value
|
||||||
|
- 7235a4f7: fix: [combobox] model-value-changed event emitted when clearing a combobox sends stale value
|
||||||
|
- c459ded9: fix: [combobox] autocomplete feature for the lion-combobox component. It used to autoselect a wrong item
|
||||||
|
|
||||||
## 0.4.2
|
## 0.4.2
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/ui",
|
"name": "@lion/ui",
|
||||||
"version": "0.4.2",
|
"version": "0.5.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