Version Packages
This commit is contained in:
parent
59f10bc5df
commit
67c1f29140
10 changed files with 64 additions and 26 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'rocket-preset-extend-lion-docs': patch
|
||||
---
|
||||
|
||||
Add missing dependency
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
'@lion/button': minor
|
||||
'@lion/form-integrations': minor
|
||||
'@lion/select-rich': minor
|
||||
---
|
||||
|
||||
- BREAKING: In `lion-button` package split of separate buttons for reset & submit:
|
||||
|
||||
- LionButton (a clean fundament, **use outside forms**)
|
||||
- LionButtonReset (logic for. submit and reset events, but without implicit form submission logic: **use for reset buttons**)
|
||||
- LionButtonSubmit (full featured button: **use for submit buttons and buttons with dynamic types**)
|
||||
|
||||
- fixed axe criterium for LionButton (which contained a native button to support form submission)
|
||||
- removed `_beforeTemplate()` & `_afterTemplate()` from LionButton
|
||||
|
|
@ -1,6 +1,13 @@
|
|||
# rocket-preset-extend-lion-docs
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 59f10bc5: Add missing dependency
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 0ca86031: Initial release
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "rocket-preset-extend-lion-docs",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"description": "A rocket preset to reuse lion documentation inside your design system extension",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,18 @@
|
|||
# Change Log
|
||||
|
||||
## 0.14.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 57b2fb9f: - BREAKING: In `lion-button` package split of separate buttons for reset & submit:
|
||||
|
||||
- LionButton (a clean fundament, **use outside forms**)
|
||||
- LionButtonReset (logic for. submit and reset events, but without implicit form submission logic: **use for reset buttons**)
|
||||
- LionButtonSubmit (full featured button: **use for submit buttons and buttons with dynamic types**)
|
||||
|
||||
- fixed axe criterium for LionButton (which contained a native button to support form submission)
|
||||
- removed `_beforeTemplate()` & `_afterTemplate()` from LionButton
|
||||
|
||||
## 0.13.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/button",
|
||||
"version": "0.13.0",
|
||||
"version": "0.14.0",
|
||||
"description": "A button that is easily styleable and accessible in all contexts",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,24 @@
|
|||
# Change Log
|
||||
|
||||
## 0.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 57b2fb9f: - BREAKING: In `lion-button` package split of separate buttons for reset & submit:
|
||||
|
||||
- LionButton (a clean fundament, **use outside forms**)
|
||||
- LionButtonReset (logic for. submit and reset events, but without implicit form submission logic: **use for reset buttons**)
|
||||
- LionButtonSubmit (full featured button: **use for submit buttons and buttons with dynamic types**)
|
||||
|
||||
- fixed axe criterium for LionButton (which contained a native button to support form submission)
|
||||
- removed `_beforeTemplate()` & `_afterTemplate()` from LionButton
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [57b2fb9f]
|
||||
- @lion/button@0.14.0
|
||||
- @lion/select-rich@0.27.0
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/form-integrations",
|
||||
"version": "0.8.0",
|
||||
"version": "0.9.0",
|
||||
"description": "The Form System allows you to create complex forms with various validation in an easy way",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
"test": "cd ../../ && npm run test:browser -- --group form-integrations"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lion/button": "0.13.0",
|
||||
"@lion/button": "0.14.0",
|
||||
"@lion/checkbox-group": "0.18.0",
|
||||
"@lion/combobox": "0.7.0",
|
||||
"@lion/core": "0.18.0",
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
"@lion/localize": "0.20.0",
|
||||
"@lion/radio-group": "0.18.0",
|
||||
"@lion/select": "0.14.0",
|
||||
"@lion/select-rich": "0.26.0",
|
||||
"@lion/select-rich": "0.27.0",
|
||||
"@lion/switch": "0.17.0",
|
||||
"@lion/textarea": "0.13.0",
|
||||
"@lion/validate-messages": "0.7.0"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,23 @@
|
|||
# Change Log
|
||||
|
||||
## 0.27.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 57b2fb9f: - BREAKING: In `lion-button` package split of separate buttons for reset & submit:
|
||||
|
||||
- LionButton (a clean fundament, **use outside forms**)
|
||||
- LionButtonReset (logic for. submit and reset events, but without implicit form submission logic: **use for reset buttons**)
|
||||
- LionButtonSubmit (full featured button: **use for submit buttons and buttons with dynamic types**)
|
||||
|
||||
- fixed axe criterium for LionButton (which contained a native button to support form submission)
|
||||
- removed `_beforeTemplate()` & `_afterTemplate()` from LionButton
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [57b2fb9f]
|
||||
- @lion/button@0.14.0
|
||||
|
||||
## 0.26.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/select-rich",
|
||||
"version": "0.26.0",
|
||||
"version": "0.27.0",
|
||||
"description": "Provides a select with options that can contain html",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
"lion-select-rich.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"@lion/button": "0.13.0",
|
||||
"@lion/button": "0.14.0",
|
||||
"@lion/core": "0.18.0",
|
||||
"@lion/form-core": "0.14.0",
|
||||
"@lion/listbox": "0.10.0",
|
||||
|
|
|
|||
Loading…
Reference in a new issue