chore: release new versions

- @lion/ajax@0.2.10
 - babel-plugin-extend-docs@0.1.0
 - @lion/button@0.5.12
 - @lion/calendar@0.7.2
 - @lion/checkbox-group@0.8.8
 - @lion/choice-input@0.8.2
 - @lion/core@0.5.2
 - @lion/dialog@0.4.17
 - @lion/field@0.12.2
 - @lion/fieldset@0.10.2
 - @lion/form-system@0.7.10
 - @lion/form@0.4.23
 - @lion/helpers@0.3.6
 - @lion/icon@0.4.4
 - @lion/input-amount@0.5.23
 - @lion/input-date@0.5.23
 - @lion/input-datepicker@0.11.6
 - @lion/input-email@0.6.7
 - @lion/input-iban@0.7.2
 - @lion/input-range@0.2.23
 - @lion/input@0.5.22
 - @lion/localize@0.9.2
 - @lion/overlays@0.13.2
 - @lion/radio-group@0.8.8
 - remark-extend@0.1.2
 - @lion/select-rich@0.15.3
 - @lion/select@0.5.22
 - @lion/steps@0.3.9
 - @lion/switch@0.8.2
 - @lion/tabs@0.2.9
 - @lion/textarea@0.5.23
 - @lion/tooltip@0.8.12
 - @lion/validate@0.9.2
This commit is contained in:
CircleCI 2020-04-29 08:07:58 +00:00
parent a8fb94edca
commit 2476211c21
66 changed files with 436 additions and 131 deletions

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.2.10](https://github.com/ing-bank/lion/compare/@lion/ajax@0.2.9...@lion/ajax@0.2.10) (2020-04-29)
**Note:** Version bump only for package @lion/ajax
## [0.2.9](https://github.com/ing-bank/lion/compare/@lion/ajax@0.2.8...@lion/ajax@0.2.9) (2020-04-02) ## [0.2.9](https://github.com/ing-bank/lion/compare/@lion/ajax@0.2.8...@lion/ajax@0.2.9) (2020-04-02)
**Note:** Version bump only for package @lion/ajax **Note:** Version bump only for package @lion/ajax

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/ajax", "name": "@lion/ajax",
"version": "0.2.9", "version": "0.2.10",
"description": "Thin wrapper around axios to allow for custom interceptors", "description": "Thin wrapper around axios to allow for custom interceptors",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -35,6 +35,6 @@
], ],
"dependencies": { "dependencies": {
"@bundled-es-modules/axios": "0.18.1", "@bundled-es-modules/axios": "0.18.1",
"@lion/core": "0.5.1" "@lion/core": "0.5.2"
} }
} }

View file

@ -0,0 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 0.1.0 (2020-04-29)
### Features
* **babel-plugin-extends-docs:** extend docs by rewriting imports/code ([2cdb7ca](https://github.com/ing-bank/lion/commit/2cdb7cac50c21bf2af5314797375c68c60523252))

View file

@ -1,6 +1,6 @@
{ {
"name": "babel-plugin-extend-docs", "name": "babel-plugin-extend-docs",
"version": "0.0.0", "version": "0.1.0",
"description": "Babel plugin which rewrites imports and templates according to a configuration", "description": "Babel plugin which rewrites imports and templates according to a configuration",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",

View file

@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.5.12](https://github.com/ing-bank/lion/compare/@lion/button@0.5.11...@lion/button@0.5.12) (2020-04-29)
### Bug Fixes
* add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
* **button:** adjust button to more sensible default styling ([#674](https://github.com/ing-bank/lion/issues/674)) ([78cd503](https://github.com/ing-bank/lion/commit/78cd503b5ef4c54cce5bae5008397e1ce1242133))
## [0.5.11](https://github.com/ing-bank/lion/compare/@lion/button@0.5.10...@lion/button@0.5.11) (2020-04-02) ## [0.5.11](https://github.com/ing-bank/lion/compare/@lion/button@0.5.10...@lion/button@0.5.11) (2020-04-02)
**Note:** Version bump only for package @lion/button **Note:** Version bump only for package @lion/button

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/button", "name": "@lion/button",
"version": "0.5.11", "version": "0.5.12",
"description": "A button that is easily styleable and accessible in all contexts", "description": "A button that is easily styleable and accessible in all contexts",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,7 +34,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1" "@lion/core": "0.5.2"
}, },
"devDependencies": { "devDependencies": {
"@polymer/iron-test-helpers": "^3.0.1" "@polymer/iron-test-helpers": "^3.0.1"

View file

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.7.2](https://github.com/ing-bank/lion/compare/@lion/calendar@0.7.1...@lion/calendar@0.7.2) (2020-04-29)
### Bug Fixes
* add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
## [0.7.1](https://github.com/ing-bank/lion/compare/@lion/calendar@0.7.0...@lion/calendar@0.7.1) (2020-04-02) ## [0.7.1](https://github.com/ing-bank/lion/compare/@lion/calendar@0.7.0...@lion/calendar@0.7.1) (2020-04-02)

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/calendar", "name": "@lion/calendar",
"version": "0.7.1", "version": "0.7.2",
"description": "Standalone calendar", "description": "Standalone calendar",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -35,7 +35,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/localize": "0.9.1" "@lion/localize": "0.9.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.8.8](https://github.com/ing-bank/lion/compare/@lion/checkbox-group@0.8.7...@lion/checkbox-group@0.8.8) (2020-04-29)
**Note:** Version bump only for package @lion/checkbox-group
## [0.8.7](https://github.com/ing-bank/lion/compare/@lion/checkbox-group@0.8.6...@lion/checkbox-group@0.8.7) (2020-04-02) ## [0.8.7](https://github.com/ing-bank/lion/compare/@lion/checkbox-group@0.8.6...@lion/checkbox-group@0.8.7) (2020-04-02)
**Note:** Version bump only for package @lion/checkbox-group **Note:** Version bump only for package @lion/checkbox-group

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/checkbox-group", "name": "@lion/checkbox-group",
"version": "0.8.7", "version": "0.8.8",
"description": "A container for multiple checkboxes", "description": "A container for multiple checkboxes",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,9 +34,9 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/choice-input": "0.8.1", "@lion/choice-input": "0.8.2",
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/fieldset": "0.10.1", "@lion/fieldset": "0.10.2",
"@lion/input": "0.5.21" "@lion/input": "0.5.22"
} }
} }

View file

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.8.2](https://github.com/ing-bank/lion/compare/@lion/choice-input@0.8.1...@lion/choice-input@0.8.2) (2020-04-29)
### Bug Fixes
* add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
## [0.8.1](https://github.com/ing-bank/lion/compare/@lion/choice-input@0.8.0...@lion/choice-input@0.8.1) (2020-04-02) ## [0.8.1](https://github.com/ing-bank/lion/compare/@lion/choice-input@0.8.0...@lion/choice-input@0.8.1) (2020-04-02)
**Note:** Version bump only for package @lion/choice-input **Note:** Version bump only for package @lion/choice-input

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/choice-input", "name": "@lion/choice-input",
"version": "0.8.1", "version": "0.8.2",
"description": "Base for all choise inputs like checkbox/radio", "description": "Base for all choise inputs like checkbox/radio",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,7 +34,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1" "@lion/field": "0.12.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.5.2](https://github.com/ing-bank/lion/compare/@lion/core@0.5.1...@lion/core@0.5.2) (2020-04-29)
**Note:** Version bump only for package @lion/core
## [0.5.1](https://github.com/ing-bank/lion/compare/@lion/core@0.5.0...@lion/core@0.5.1) (2020-04-02) ## [0.5.1](https://github.com/ing-bank/lion/compare/@lion/core@0.5.0...@lion/core@0.5.1) (2020-04-02)
**Note:** Version bump only for package @lion/core **Note:** Version bump only for package @lion/core

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/core", "name": "@lion/core",
"version": "0.5.1", "version": "0.5.2",
"description": "Core functionality that is shared across all Lion Web Components", "description": "Core functionality that is shared across all Lion Web Components",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.4.17](https://github.com/ing-bank/lion/compare/@lion/dialog@0.4.16...@lion/dialog@0.4.17) (2020-04-29)
**Note:** Version bump only for package @lion/dialog
## [0.4.16](https://github.com/ing-bank/lion/compare/@lion/dialog@0.4.15...@lion/dialog@0.4.16) (2020-04-15) ## [0.4.16](https://github.com/ing-bank/lion/compare/@lion/dialog@0.4.15...@lion/dialog@0.4.16) (2020-04-15)
**Note:** Version bump only for package @lion/dialog **Note:** Version bump only for package @lion/dialog

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/dialog", "name": "@lion/dialog",
"version": "0.4.16", "version": "0.4.17",
"description": "Show relative overlay content on click, as a webcomponent", "description": "Show relative overlay content on click, as a webcomponent",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -32,7 +32,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/overlays": "0.13.1" "@lion/overlays": "0.13.2"
} }
} }

View file

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.12.2](https://github.com/ing-bank/lion/compare/@lion/field@0.12.1...@lion/field@0.12.2) (2020-04-29)
### Bug Fixes
* add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
## [0.12.1](https://github.com/ing-bank/lion/compare/@lion/field@0.12.0...@lion/field@0.12.1) (2020-04-02) ## [0.12.1](https://github.com/ing-bank/lion/compare/@lion/field@0.12.0...@lion/field@0.12.1) (2020-04-02)

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/field", "name": "@lion/field",
"version": "0.12.1", "version": "0.12.2",
"description": "Fields are the most fundamental building block of the Form System", "description": "Fields are the most fundamental building block of the Form System",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -36,7 +36,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/validate": "0.9.1" "@lion/validate": "0.9.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.10.2](https://github.com/ing-bank/lion/compare/@lion/fieldset@0.10.1...@lion/fieldset@0.10.2) (2020-04-29)
**Note:** Version bump only for package @lion/fieldset
## [0.10.1](https://github.com/ing-bank/lion/compare/@lion/fieldset@0.10.0...@lion/fieldset@0.10.1) (2020-04-02) ## [0.10.1](https://github.com/ing-bank/lion/compare/@lion/fieldset@0.10.0...@lion/fieldset@0.10.1) (2020-04-02)
**Note:** Version bump only for package @lion/fieldset **Note:** Version bump only for package @lion/fieldset

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/fieldset", "name": "@lion/fieldset",
"version": "0.10.1", "version": "0.10.2",
"description": "Allows to groups multiple input fields or other fieldsets together", "description": "Allows to groups multiple input fields or other fieldsets together",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,8 +34,8 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1", "@lion/field": "0.12.2",
"@lion/validate": "0.9.1" "@lion/validate": "0.9.2"
} }
} }

View file

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.7.10](https://github.com/ing-bank/lion/compare/@lion/form-system@0.7.9...@lion/form-system@0.7.10) (2020-04-29)
### Bug Fixes
* **button:** adjust button to more sensible default styling ([#674](https://github.com/ing-bank/lion/issues/674)) ([78cd503](https://github.com/ing-bank/lion/commit/78cd503b5ef4c54cce5bae5008397e1ce1242133))
## [0.7.9](https://github.com/ing-bank/lion/compare/@lion/form-system@0.7.8...@lion/form-system@0.7.9) (2020-04-20) ## [0.7.9](https://github.com/ing-bank/lion/compare/@lion/form-system@0.7.8...@lion/form-system@0.7.9) (2020-04-20)
**Note:** Version bump only for package @lion/form-system **Note:** Version bump only for package @lion/form-system

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/form-system", "name": "@lion/form-system",
"version": "0.7.9", "version": "0.7.10",
"description": "The Form System allows you to create complex forms with various validation in an easy way", "description": "The Form System allows you to create complex forms with various validation in an easy way",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -33,24 +33,24 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/button": "0.5.11", "@lion/button": "0.5.12",
"@lion/checkbox-group": "0.8.7", "@lion/checkbox-group": "0.8.8",
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1", "@lion/field": "0.12.2",
"@lion/fieldset": "0.10.1", "@lion/fieldset": "0.10.2",
"@lion/form": "0.4.22", "@lion/form": "0.4.23",
"@lion/input": "0.5.21", "@lion/input": "0.5.22",
"@lion/input-amount": "0.5.22", "@lion/input-amount": "0.5.23",
"@lion/input-date": "0.5.22", "@lion/input-date": "0.5.23",
"@lion/input-datepicker": "0.11.5", "@lion/input-datepicker": "0.11.6",
"@lion/input-email": "0.6.6", "@lion/input-email": "0.6.7",
"@lion/input-iban": "0.7.1", "@lion/input-iban": "0.7.2",
"@lion/input-range": "0.2.22", "@lion/input-range": "0.2.23",
"@lion/localize": "0.9.1", "@lion/localize": "0.9.2",
"@lion/radio-group": "0.8.7", "@lion/radio-group": "0.8.8",
"@lion/select": "0.5.21", "@lion/select": "0.5.22",
"@lion/select-rich": "0.15.2", "@lion/select-rich": "0.15.3",
"@lion/textarea": "0.5.22", "@lion/textarea": "0.5.23",
"@lion/validate": "0.9.1" "@lion/validate": "0.9.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.4.23](https://github.com/ing-bank/lion/compare/@lion/form@0.4.22...@lion/form@0.4.23) (2020-04-29)
**Note:** Version bump only for package @lion/form
## [0.4.22](https://github.com/ing-bank/lion/compare/@lion/form@0.4.21...@lion/form@0.4.22) (2020-04-02) ## [0.4.22](https://github.com/ing-bank/lion/compare/@lion/form@0.4.21...@lion/form@0.4.22) (2020-04-02)
**Note:** Version bump only for package @lion/form **Note:** Version bump only for package @lion/form

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/form", "name": "@lion/form",
"version": "0.4.22", "version": "0.4.23",
"description": "It enhances the functionality of the native `form` component. It is designed to interact with (instances of) form fields", "description": "It enhances the functionality of the native `form` component. It is designed to interact with (instances of) form fields",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,7 +34,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/fieldset": "0.10.1" "@lion/fieldset": "0.10.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.3.6](https://github.com/ing-bank/lion/compare/@lion/helpers@0.3.5...@lion/helpers@0.3.6) (2020-04-29)
**Note:** Version bump only for package @lion/helpers
## [0.3.5](https://github.com/ing-bank/lion/compare/@lion/helpers@0.3.4...@lion/helpers@0.3.5) (2020-04-02) ## [0.3.5](https://github.com/ing-bank/lion/compare/@lion/helpers@0.3.4...@lion/helpers@0.3.5) (2020-04-02)
**Note:** Version bump only for package @lion/helpers **Note:** Version bump only for package @lion/helpers

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/helpers", "name": "@lion/helpers",
"version": "0.3.5", "version": "0.3.6",
"description": "Helpers that are used throughout lion and can be used outside", "description": "Helpers that are used throughout lion and can be used outside",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,6 +34,6 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1" "@lion/core": "0.5.2"
} }
} }

View file

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.4.4](https://github.com/ing-bank/lion/compare/@lion/icon@0.4.3...@lion/icon@0.4.4) (2020-04-29)
### Bug Fixes
* add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
## [0.4.3](https://github.com/ing-bank/lion/compare/@lion/icon@0.4.2...@lion/icon@0.4.3) (2020-04-02) ## [0.4.3](https://github.com/ing-bank/lion/compare/@lion/icon@0.4.2...@lion/icon@0.4.3) (2020-04-02)
**Note:** Version bump only for package @lion/icon **Note:** Version bump only for package @lion/icon

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/icon", "name": "@lion/icon",
"version": "0.4.3", "version": "0.4.4",
"description": "A web component easily displaying svg icons", "description": "A web component easily displaying svg icons",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,6 +34,6 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1" "@lion/core": "0.5.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.5.23](https://github.com/ing-bank/lion/compare/@lion/input-amount@0.5.22...@lion/input-amount@0.5.23) (2020-04-29)
**Note:** Version bump only for package @lion/input-amount
## [0.5.22](https://github.com/ing-bank/lion/compare/@lion/input-amount@0.5.21...@lion/input-amount@0.5.22) (2020-04-17) ## [0.5.22](https://github.com/ing-bank/lion/compare/@lion/input-amount@0.5.21...@lion/input-amount@0.5.22) (2020-04-17)

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/input-amount", "name": "@lion/input-amount",
"version": "0.5.22", "version": "0.5.23",
"description": "Provide a way for users to fill in an amount", "description": "Provide a way for users to fill in an amount",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,10 +34,10 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1", "@lion/field": "0.12.2",
"@lion/input": "0.5.21", "@lion/input": "0.5.22",
"@lion/localize": "0.9.1", "@lion/localize": "0.9.2",
"@lion/validate": "0.9.1" "@lion/validate": "0.9.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.5.23](https://github.com/ing-bank/lion/compare/@lion/input-date@0.5.22...@lion/input-date@0.5.23) (2020-04-29)
**Note:** Version bump only for package @lion/input-date
## [0.5.22](https://github.com/ing-bank/lion/compare/@lion/input-date@0.5.21...@lion/input-date@0.5.22) (2020-04-02) ## [0.5.22](https://github.com/ing-bank/lion/compare/@lion/input-date@0.5.21...@lion/input-date@0.5.22) (2020-04-02)
**Note:** Version bump only for package @lion/input-date **Note:** Version bump only for package @lion/input-date

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/input-date", "name": "@lion/input-date",
"version": "0.5.22", "version": "0.5.23",
"description": "Provide a way for users to fill in a date", "description": "Provide a way for users to fill in a date",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,10 +34,10 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1", "@lion/field": "0.12.2",
"@lion/input": "0.5.21", "@lion/input": "0.5.22",
"@lion/localize": "0.9.1", "@lion/localize": "0.9.2",
"@lion/validate": "0.9.1" "@lion/validate": "0.9.2"
} }
} }

View file

@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.11.6](https://github.com/ing-bank/lion/compare/@lion/input-datepicker@0.11.5...@lion/input-datepicker@0.11.6) (2020-04-29)
### Bug Fixes
* add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
* **input-datepicker:** align template to FormControlMixin ([a02f9e8](https://github.com/ing-bank/lion/commit/a02f9e8b3e734162fe2c43d293a1324515cbfdaf))
## [0.11.5](https://github.com/ing-bank/lion/compare/@lion/input-datepicker@0.11.4...@lion/input-datepicker@0.11.5) (2020-04-16) ## [0.11.5](https://github.com/ing-bank/lion/compare/@lion/input-datepicker@0.11.4...@lion/input-datepicker@0.11.5) (2020-04-16)

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/input-datepicker", "name": "@lion/input-datepicker",
"version": "0.11.5", "version": "0.11.6",
"description": "Provide a way for users to fill in a date via a calendar overlay", "description": "Provide a way for users to fill in a date via a calendar overlay",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -38,12 +38,12 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/calendar": "0.7.1", "@lion/calendar": "0.7.2",
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1", "@lion/field": "0.12.2",
"@lion/input-date": "0.5.22", "@lion/input-date": "0.5.23",
"@lion/localize": "0.9.1", "@lion/localize": "0.9.2",
"@lion/overlays": "0.13.1", "@lion/overlays": "0.13.2",
"@lion/validate": "0.9.1" "@lion/validate": "0.9.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.6.7](https://github.com/ing-bank/lion/compare/@lion/input-email@0.6.6...@lion/input-email@0.6.7) (2020-04-29)
**Note:** Version bump only for package @lion/input-email
## [0.6.6](https://github.com/ing-bank/lion/compare/@lion/input-email@0.6.5...@lion/input-email@0.6.6) (2020-04-02) ## [0.6.6](https://github.com/ing-bank/lion/compare/@lion/input-email@0.6.5...@lion/input-email@0.6.6) (2020-04-02)
**Note:** Version bump only for package @lion/input-email **Note:** Version bump only for package @lion/input-email

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/input-email", "name": "@lion/input-email",
"version": "0.6.6", "version": "0.6.7",
"description": "Provide a way for users to fill in an email", "description": "Provide a way for users to fill in an email",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,10 +34,10 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1", "@lion/field": "0.12.2",
"@lion/input": "0.5.21", "@lion/input": "0.5.22",
"@lion/localize": "0.9.1", "@lion/localize": "0.9.2",
"@lion/validate": "0.9.1" "@lion/validate": "0.9.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.7.2](https://github.com/ing-bank/lion/compare/@lion/input-iban@0.7.1...@lion/input-iban@0.7.2) (2020-04-29)
**Note:** Version bump only for package @lion/input-iban
## [0.7.1](https://github.com/ing-bank/lion/compare/@lion/input-iban@0.7.0...@lion/input-iban@0.7.1) (2020-04-02) ## [0.7.1](https://github.com/ing-bank/lion/compare/@lion/input-iban@0.7.0...@lion/input-iban@0.7.1) (2020-04-02)

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/input-iban", "name": "@lion/input-iban",
"version": "0.7.1", "version": "0.7.2",
"description": "Provide a way for users to fill in an iban", "description": "Provide a way for users to fill in an iban",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,11 +34,11 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1", "@lion/field": "0.12.2",
"@lion/input": "0.5.21", "@lion/input": "0.5.22",
"@lion/localize": "0.9.1", "@lion/localize": "0.9.2",
"@lion/validate": "0.9.1", "@lion/validate": "0.9.2",
"ibantools": "^2.2.0" "ibantools": "^2.2.0"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.2.23](https://github.com/ing-bank/lion/compare/@lion/input-range@0.2.22...@lion/input-range@0.2.23) (2020-04-29)
**Note:** Version bump only for package @lion/input-range
## [0.2.22](https://github.com/ing-bank/lion/compare/@lion/input-range@0.2.21...@lion/input-range@0.2.22) (2020-04-16) ## [0.2.22](https://github.com/ing-bank/lion/compare/@lion/input-range@0.2.21...@lion/input-range@0.2.22) (2020-04-16)

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/input-range", "name": "@lion/input-range",
"version": "0.2.22", "version": "0.2.23",
"description": "Provide a way for users to select one value from a range of values", "description": "Provide a way for users to select one value from a range of values",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -33,9 +33,9 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1", "@lion/field": "0.12.2",
"@lion/input": "0.5.21", "@lion/input": "0.5.22",
"@lion/localize": "0.9.1" "@lion/localize": "0.9.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.5.22](https://github.com/ing-bank/lion/compare/@lion/input@0.5.21...@lion/input@0.5.22) (2020-04-29)
**Note:** Version bump only for package @lion/input
## [0.5.21](https://github.com/ing-bank/lion/compare/@lion/input@0.5.20...@lion/input@0.5.21) (2020-04-02) ## [0.5.21](https://github.com/ing-bank/lion/compare/@lion/input@0.5.20...@lion/input@0.5.21) (2020-04-02)
**Note:** Version bump only for package @lion/input **Note:** Version bump only for package @lion/input

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/input", "name": "@lion/input",
"version": "0.5.21", "version": "0.5.22",
"description": "It enhances the functionality of the native `<input>` element", "description": "It enhances the functionality of the native `<input>` element",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,7 +34,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1" "@lion/field": "0.12.2"
} }
} }

View file

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.9.2](https://github.com/ing-bank/lion/compare/@lion/localize@0.9.1...@lion/localize@0.9.2) (2020-04-29)
### Bug Fixes
* **localization:** force TR currency code at the end ([#641](https://github.com/ing-bank/lion/issues/641)) ([89a84a8](https://github.com/ing-bank/lion/commit/89a84a8b29969a018d28af4dadc509709caaa7c3))
## [0.9.1](https://github.com/ing-bank/lion/compare/@lion/localize@0.9.0...@lion/localize@0.9.1) (2020-04-02) ## [0.9.1](https://github.com/ing-bank/lion/compare/@lion/localize@0.9.0...@lion/localize@0.9.1) (2020-04-02)
**Note:** Version bump only for package @lion/localize **Note:** Version bump only for package @lion/localize

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/localize", "name": "@lion/localize",
"version": "0.9.1", "version": "0.9.2",
"description": "The localization system helps to manage localization data split into locales and automate its loading", "description": "The localization system helps to manage localization data split into locales and automate its loading",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -36,7 +36,7 @@
], ],
"dependencies": { "dependencies": {
"@bundled-es-modules/message-format": "6.0.4", "@bundled-es-modules/message-format": "6.0.4",
"@lion/core": "0.5.1" "@lion/core": "0.5.2"
}, },
"devDependencies": { "devDependencies": {
"@bundled-es-modules/fetch-mock": "^6.5.2" "@bundled-es-modules/fetch-mock": "^6.5.2"

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.13.2](https://github.com/ing-bank/lion/compare/@lion/overlays@0.13.1...@lion/overlays@0.13.2) (2020-04-29)
**Note:** Version bump only for package @lion/overlays
## [0.13.1](https://github.com/ing-bank/lion/compare/@lion/overlays@0.13.0...@lion/overlays@0.13.1) (2020-04-15) ## [0.13.1](https://github.com/ing-bank/lion/compare/@lion/overlays@0.13.0...@lion/overlays@0.13.1) (2020-04-15)

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/overlays", "name": "@lion/overlays",
"version": "0.13.1", "version": "0.13.2",
"description": "Overlays System using lit-html for rendering", "description": "Overlays System using lit-html for rendering",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -36,7 +36,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"popper.js": "^1.15.0" "popper.js": "^1.15.0"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.8.8](https://github.com/ing-bank/lion/compare/@lion/radio-group@0.8.7...@lion/radio-group@0.8.8) (2020-04-29)
**Note:** Version bump only for package @lion/radio-group
## [0.8.7](https://github.com/ing-bank/lion/compare/@lion/radio-group@0.8.6...@lion/radio-group@0.8.7) (2020-04-02) ## [0.8.7](https://github.com/ing-bank/lion/compare/@lion/radio-group@0.8.6...@lion/radio-group@0.8.7) (2020-04-02)
**Note:** Version bump only for package @lion/radio-group **Note:** Version bump only for package @lion/radio-group

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/radio-group", "name": "@lion/radio-group",
"version": "0.8.7", "version": "0.8.8",
"description": "Manage a group of choices", "description": "Manage a group of choices",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,9 +34,9 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/choice-input": "0.8.1", "@lion/choice-input": "0.8.2",
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/fieldset": "0.10.1", "@lion/fieldset": "0.10.2",
"@lion/input": "0.5.21" "@lion/input": "0.5.22"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.1.2](https://github.com/ing-bank/lion/compare/remark-extend@0.1.1...remark-extend@0.1.2) (2020-04-29)
**Note:** Version bump only for package remark-extend
## [0.1.1](https://github.com/ing-bank/lion/compare/remark-extend@0.1.0...remark-extend@0.1.1) (2020-04-20) ## [0.1.1](https://github.com/ing-bank/lion/compare/remark-extend@0.1.0...remark-extend@0.1.1) (2020-04-20)

View file

@ -1,6 +1,6 @@
{ {
"name": "remark-extend", "name": "remark-extend",
"version": "0.1.1", "version": "0.1.2",
"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",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",

View file

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.15.3](https://github.com/ing-bank/lion/compare/@lion/select-rich@0.15.2...@lion/select-rich@0.15.3) (2020-04-29)
### Bug Fixes
* add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
## [0.15.2](https://github.com/ing-bank/lion/compare/@lion/select-rich@0.15.1...@lion/select-rich@0.15.2) (2020-04-20) ## [0.15.2](https://github.com/ing-bank/lion/compare/@lion/select-rich@0.15.1...@lion/select-rich@0.15.2) (2020-04-20)
**Note:** Version bump only for package @lion/select-rich **Note:** Version bump only for package @lion/select-rich

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/select-rich", "name": "@lion/select-rich",
"version": "0.15.2", "version": "0.15.3",
"description": "Provides a select with options that can contain html", "description": "Provides a select with options that can contain html",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -38,11 +38,11 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/button": "0.5.11", "@lion/button": "0.5.12",
"@lion/choice-input": "0.8.1", "@lion/choice-input": "0.8.2",
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1", "@lion/field": "0.12.2",
"@lion/overlays": "0.13.1", "@lion/overlays": "0.13.2",
"@lion/validate": "0.9.1" "@lion/validate": "0.9.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.5.22](https://github.com/ing-bank/lion/compare/@lion/select@0.5.21...@lion/select@0.5.22) (2020-04-29)
**Note:** Version bump only for package @lion/select
## [0.5.21](https://github.com/ing-bank/lion/compare/@lion/select@0.5.20...@lion/select@0.5.21) (2020-04-02) ## [0.5.21](https://github.com/ing-bank/lion/compare/@lion/select@0.5.20...@lion/select@0.5.21) (2020-04-02)
**Note:** Version bump only for package @lion/select **Note:** Version bump only for package @lion/select

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/select", "name": "@lion/select",
"version": "0.5.21", "version": "0.5.22",
"description": "Provide a set of options where you can select one", "description": "Provide a set of options where you can select one",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,7 +34,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1" "@lion/field": "0.12.2"
} }
} }

View file

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.3.9](https://github.com/ing-bank/lion/compare/@lion/steps@0.3.8...@lion/steps@0.3.9) (2020-04-29)
### Bug Fixes
* add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
## [0.3.8](https://github.com/ing-bank/lion/compare/@lion/steps@0.3.7...@lion/steps@0.3.8) (2020-04-02) ## [0.3.8](https://github.com/ing-bank/lion/compare/@lion/steps@0.3.7...@lion/steps@0.3.8) (2020-04-02)
**Note:** Version bump only for package @lion/steps **Note:** Version bump only for package @lion/steps

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/steps", "name": "@lion/steps",
"version": "0.3.8", "version": "0.3.9",
"description": "Breaks a single goal down into dependable sub-tasks.", "description": "Breaks a single goal down into dependable sub-tasks.",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,6 +34,6 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1" "@lion/core": "0.5.2"
} }
} }

View file

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.8.2](https://github.com/ing-bank/lion/compare/@lion/switch@0.8.1...@lion/switch@0.8.2) (2020-04-29)
### Bug Fixes
* add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
## [0.8.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.8.0...@lion/switch@0.8.1) (2020-04-02) ## [0.8.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.8.0...@lion/switch@0.8.1) (2020-04-02)
**Note:** Version bump only for package @lion/switch **Note:** Version bump only for package @lion/switch

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/switch", "name": "@lion/switch",
"version": "0.8.1", "version": "0.8.2",
"description": "A Switch is used for switching a property or feature on and off", "description": "A Switch is used for switching a property or feature on and off",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,8 +34,8 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/choice-input": "0.8.1", "@lion/choice-input": "0.8.2",
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1" "@lion/field": "0.12.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.2.9](https://github.com/ing-bank/lion/compare/@lion/tabs@0.2.8...@lion/tabs@0.2.9) (2020-04-29)
**Note:** Version bump only for package @lion/tabs
## [0.2.8](https://github.com/ing-bank/lion/compare/@lion/tabs@0.2.7...@lion/tabs@0.2.8) (2020-04-02) ## [0.2.8](https://github.com/ing-bank/lion/compare/@lion/tabs@0.2.7...@lion/tabs@0.2.8) (2020-04-02)
**Note:** Version bump only for package @lion/tabs **Note:** Version bump only for package @lion/tabs

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/tabs", "name": "@lion/tabs",
"version": "0.2.8", "version": "0.2.9",
"description": "Allows users to quickly move between a small number of equally important views.", "description": "Allows users to quickly move between a small number of equally important views.",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,6 +34,6 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1" "@lion/core": "0.5.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.5.23](https://github.com/ing-bank/lion/compare/@lion/textarea@0.5.22...@lion/textarea@0.5.23) (2020-04-29)
**Note:** Version bump only for package @lion/textarea
## [0.5.22](https://github.com/ing-bank/lion/compare/@lion/textarea@0.5.21...@lion/textarea@0.5.22) (2020-04-02) ## [0.5.22](https://github.com/ing-bank/lion/compare/@lion/textarea@0.5.21...@lion/textarea@0.5.22) (2020-04-02)
**Note:** Version bump only for package @lion/textarea **Note:** Version bump only for package @lion/textarea

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/textarea", "name": "@lion/textarea",
"version": "0.5.22", "version": "0.5.23",
"description": "Provide a way for users to write text that is multiple lines long", "description": "Provide a way for users to write text that is multiple lines long",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,8 +34,8 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/field": "0.12.1", "@lion/field": "0.12.2",
"autosize": "4.0.2" "autosize": "4.0.2"
} }
} }

View file

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.8.12](https://github.com/ing-bank/lion/compare/@lion/tooltip@0.8.11...@lion/tooltip@0.8.12) (2020-04-29)
### Bug Fixes
* add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
## [0.8.11](https://github.com/ing-bank/lion/compare/@lion/tooltip@0.8.10...@lion/tooltip@0.8.11) (2020-04-15) ## [0.8.11](https://github.com/ing-bank/lion/compare/@lion/tooltip@0.8.10...@lion/tooltip@0.8.11) (2020-04-15)
**Note:** Version bump only for package @lion/tooltip **Note:** Version bump only for package @lion/tooltip

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/tooltip", "name": "@lion/tooltip",
"version": "0.8.11", "version": "0.8.12",
"description": "Show relative overlay content on hover", "description": "Show relative overlay content on hover",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -34,7 +34,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/overlays": "0.13.1" "@lion/overlays": "0.13.2"
} }
} }

View file

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.9.2](https://github.com/ing-bank/lion/compare/@lion/validate@0.9.1...@lion/validate@0.9.2) (2020-04-29)
**Note:** Version bump only for package @lion/validate
## [0.9.1](https://github.com/ing-bank/lion/compare/@lion/validate@0.9.0...@lion/validate@0.9.1) (2020-04-02) ## [0.9.1](https://github.com/ing-bank/lion/compare/@lion/validate@0.9.0...@lion/validate@0.9.1) (2020-04-02)

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/validate", "name": "@lion/validate",
"version": "0.9.1", "version": "0.9.2",
"description": "Validate your form elements", "description": "Validate your form elements",
"author": "ing-bank", "author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/", "homepage": "https://github.com/ing-bank/lion/",
@ -36,7 +36,7 @@
"*.js" "*.js"
], ],
"dependencies": { "dependencies": {
"@lion/core": "0.5.1", "@lion/core": "0.5.2",
"@lion/localize": "0.9.1" "@lion/localize": "0.9.2"
} }
} }