Version Packages
This commit is contained in:
parent
040c5b58c0
commit
66a9dd99a3
16 changed files with 59 additions and 51 deletions
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/input-tel': patch
|
|
||||||
'@lion/input-tel-dropdown': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
make sure input-tel(-dropdown) depends on latest minors
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/input-tel-dropdown': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
add fix for edge cases onDropdownValueChange
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/form-core': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fix type export ValidationType
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/form-core': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Make sure form elements are added in the correct order even when non-form elements are in between.
|
|
||||||
|
|
||||||
```html
|
|
||||||
<lion-form>
|
|
||||||
<lion-input></lion-input>
|
|
||||||
<some-separator></some-separator>
|
|
||||||
<!-- inserting something here should result in the correct formElements order -->
|
|
||||||
<div role="group">
|
|
||||||
<lion-input></lion-input>
|
|
||||||
<!-- inserting something here should result in the correct formElements order -->
|
|
||||||
</div>
|
|
||||||
</lion-form>
|
|
||||||
```
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'rocket-preset-extend-lion-docs': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
feat: allow globalReplaceFunction in rocket-preset-extend-lion-docs
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'remark-extend': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
feat: allow globalReplaceFunction in remark-extend
|
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 0.5.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 63f8f6fd: feat: allow globalReplaceFunction in remark-extend
|
||||||
|
|
||||||
## 0.5.0
|
## 0.5.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "remark-extend",
|
"name": "remark-extend",
|
||||||
"version": "0.5.0",
|
"version": "0.5.1",
|
||||||
"description": "A plugin for remark that allows to extend a md file with another md file",
|
"description": "A plugin for remark that allows to extend a md file with another md file",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,13 @@
|
||||||
# rocket-preset-extend-lion-docs
|
# rocket-preset-extend-lion-docs
|
||||||
|
|
||||||
|
## 0.3.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- f46d9087: feat: allow globalReplaceFunction in rocket-preset-extend-lion-docs
|
||||||
|
- Updated dependencies [63f8f6fd]
|
||||||
|
- remark-extend@0.5.1
|
||||||
|
|
||||||
## 0.3.0
|
## 0.3.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "rocket-preset-extend-lion-docs",
|
"name": "rocket-preset-extend-lion-docs",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"description": "A rocket preset to reuse lion documentation inside your design system extension",
|
"description": "A rocket preset to reuse lion documentation inside your design system extension",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
@ -32,7 +32,7 @@
|
||||||
"babel-plugin-extend-docs": "0.5.3",
|
"babel-plugin-extend-docs": "0.5.3",
|
||||||
"es-module-lexer": "^0.3.6",
|
"es-module-lexer": "^0.3.6",
|
||||||
"plugins-manager": "^0.3.0",
|
"plugins-manager": "^0.3.0",
|
||||||
"remark-extend": "0.5.0",
|
"remark-extend": "0.5.1",
|
||||||
"unist-util-visit": "^2.0.2"
|
"unist-util-visit": "^2.0.2"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,24 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 0.18.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 63466d61: fix type export ValidationType
|
||||||
|
- 20af7a44: Make sure form elements are added in the correct order even when non-form elements are in between.
|
||||||
|
|
||||||
|
```html
|
||||||
|
<lion-form>
|
||||||
|
<lion-input></lion-input>
|
||||||
|
<some-separator></some-separator>
|
||||||
|
<!-- inserting something here should result in the correct formElements order -->
|
||||||
|
<div role="group">
|
||||||
|
<lion-input></lion-input>
|
||||||
|
<!-- inserting something here should result in the correct formElements order -->
|
||||||
|
</div>
|
||||||
|
</lion-form>
|
||||||
|
```
|
||||||
|
|
||||||
## 0.18.0
|
## 0.18.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/form-core",
|
"name": "@lion/form-core",
|
||||||
"version": "0.18.0",
|
"version": "0.18.1",
|
||||||
"description": "Form-core contains all essential building blocks for creating form fields and fieldsets",
|
"description": "Form-core contains all essential building blocks for creating form fields and fieldsets",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,14 @@
|
||||||
# @lion/input-tel-dropdown
|
# @lion/input-tel-dropdown
|
||||||
|
|
||||||
|
## 0.2.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 20436115: make sure input-tel(-dropdown) depends on latest minors
|
||||||
|
- 3dee788f: add fix for edge cases onDropdownValueChange
|
||||||
|
- Updated dependencies [20436115]
|
||||||
|
- @lion/input-tel@0.2.1
|
||||||
|
|
||||||
## 0.2.0
|
## 0.2.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/input-tel-dropdown",
|
"name": "@lion/input-tel-dropdown",
|
||||||
"version": "0.2.0",
|
"version": "0.2.1",
|
||||||
"description": "Input field for entering phone numbers with the help of a dropdown region list",
|
"description": "Input field for entering phone numbers with the help of a dropdown region list",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "^0.23.0",
|
"@lion/core": "^0.23.0",
|
||||||
"@lion/input-tel": "^0.2.0",
|
"@lion/input-tel": "^0.2.1",
|
||||||
"@lion/localize": "^0.25.0"
|
"@lion/localize": "^0.25.0"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,14 @@
|
||||||
# @lion/input-tel
|
# @lion/input-tel
|
||||||
|
|
||||||
|
## 0.2.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 20436115: make sure input-tel(-dropdown) depends on latest minors
|
||||||
|
- Updated dependencies [63466d61]
|
||||||
|
- Updated dependencies [20af7a44]
|
||||||
|
- @lion/form-core@0.18.1
|
||||||
|
|
||||||
## 0.2.0
|
## 0.2.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/input-tel",
|
"name": "@lion/input-tel",
|
||||||
"version": "0.2.0",
|
"version": "0.2.1",
|
||||||
"description": "Input field for entering phone numbers, including validation, formatting and mobile keyboard support.",
|
"description": "Input field for entering phone numbers, including validation, formatting and mobile keyboard support.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "^0.23.0",
|
"@lion/core": "^0.23.0",
|
||||||
"@lion/form-core": "^0.18.0",
|
"@lion/form-core": "^0.18.1",
|
||||||
"@lion/input": "^0.18.0",
|
"@lion/input": "^0.18.0",
|
||||||
"@lion/localize": "^0.25.0",
|
"@lion/localize": "^0.25.0",
|
||||||
"awesome-phonenumber": "^3.0.1"
|
"awesome-phonenumber": "^3.0.1"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue