chore: release new versions
- @lion/ajax@0.1.0 - @lion/button@0.1.0 - @lion/checkbox-group@0.1.0 - @lion/checkbox@0.1.0 - @lion/choice-input@0.1.0 - @lion/core@0.1.0 - @lion/field@0.1.0 - @lion/fieldset@0.1.0 - @lion/form-system@0.0.1 - @lion/form@0.1.0 - @lion/icon@0.1.0 - @lion/input-amount@0.1.0 - @lion/input-date@0.1.0 - @lion/input-email@0.1.0 - @lion/input-iban@0.1.0 - @lion/input@0.1.0 - @lion/localize@0.1.0 - @lion/overlays@0.1.0 - @lion/popup@0.1.0 - @lion/radio-group@0.1.0 - @lion/radio@0.1.0 - @lion/select@0.1.0 - @lion/steps@0.1.0 - @lion/textarea@0.1.0 - @lion/tooltip@0.1.0 - @lion/validate@0.1.0
This commit is contained in:
parent
38dcca96ac
commit
116fbec47b
52 changed files with 457 additions and 169 deletions
11
packages/ajax/CHANGELOG.md
Normal file
11
packages/ajax/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/ajax",
|
"name": "@lion/ajax",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,12 +29,12 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@bundled-es-modules/axios": "0.18.0",
|
||||||
"@bundled-es-modules/axios": "0.18.0"
|
"@lion/core": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
|
||||||
"@open-wc/storybook": "^0.1.5",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
|
"@open-wc/testing": "^0.11.1",
|
||||||
"sinon": "^7.2.2"
|
"sinon": "^7.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/button/CHANGELOG.md
Normal file
11
packages/button/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/button",
|
"name": "@lion/button",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"description": "A button that is easily stylable and accessible in all contexts",
|
"description": "A button that is easily stylable 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/",
|
||||||
|
|
@ -29,14 +29,14 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0"
|
"@lion/core": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/icon": "0.0.0",
|
"@lion/form": "^0.1.0",
|
||||||
"@lion/form": "0.0.0",
|
"@lion/icon": "^0.1.0",
|
||||||
"@lion/input": "0.0.0",
|
"@lion/input": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
|
||||||
"@open-wc/storybook": "^0.1.5",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
|
"@open-wc/testing": "^0.11.1",
|
||||||
"@polymer/iron-test-helpers": "^3.0.1",
|
"@polymer/iron-test-helpers": "^3.0.1",
|
||||||
"sinon": "^7.2.2"
|
"sinon": "^7.2.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/checkbox-group/CHANGELOG.md
Normal file
11
packages/checkbox-group/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/checkbox-group",
|
"name": "@lion/checkbox-group",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,15 +29,15 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/fieldset": "0.0.0"
|
"@lion/fieldset": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/checkbox": "0.0.0",
|
"@lion/checkbox": "^0.1.0",
|
||||||
"@lion/form": "0.0.0",
|
"@lion/form": "^0.1.0",
|
||||||
"@lion/localize": "0.0.0",
|
"@lion/localize": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
|
||||||
"@open-wc/storybook": "^0.1.5",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
|
"@open-wc/testing": "^0.11.1",
|
||||||
"sinon": "^7.2.2"
|
"sinon": "^7.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/checkbox/CHANGELOG.md
Normal file
11
packages/checkbox/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/checkbox",
|
"name": "@lion/checkbox",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"description": "A single styleable and accessible checkbox",
|
"description": "A single styleable and accessible checkbox",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
"homepage": "https://github.com/ing-bank/lion/",
|
"homepage": "https://github.com/ing-bank/lion/",
|
||||||
|
|
@ -29,13 +29,12 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/choice-input": "^0.1.0",
|
||||||
"@lion/choice-input": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/input": "0.0.0"
|
"@lion/input": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/choice-input/CHANGELOG.md
Normal file
11
packages/choice-input/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/choice-input",
|
"name": "@lion/choice-input",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,12 +29,12 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/field": "0.0.0"
|
"@lion/field": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/input": "0.0.0",
|
"@lion/input": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/core/CHANGELOG.md
Normal file
11
packages/core/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/core",
|
"name": "@lion/core",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
"lit-html": "1.0.0"
|
"lit-html": "1.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
|
||||||
"@open-wc/storybook": "^0.1.5",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
|
"@open-wc/testing": "^0.11.1",
|
||||||
"sinon": "^7.2.2"
|
"sinon": "^7.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/field/CHANGELOG.md
Normal file
11
packages/field/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/field",
|
"name": "@lion/field",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,13 +29,13 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/validate": "0.0.0"
|
"@lion/validate": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/localize": "0.0.0",
|
"@lion/localize": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
|
||||||
"@open-wc/storybook": "^0.1.5",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
|
"@open-wc/testing": "^0.11.1",
|
||||||
"sinon": "^7.2.2"
|
"sinon": "^7.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/fieldset/CHANGELOG.md
Normal file
11
packages/fieldset/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/fieldset",
|
"name": "@lion/fieldset",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,15 +29,15 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/field": "0.0.0",
|
"@lion/field": "^0.1.0",
|
||||||
"@lion/validate": "0.0.0"
|
"@lion/validate": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/localize": "0.0.0",
|
"@lion/input": "^0.1.0",
|
||||||
"@lion/input": "0.0.0",
|
"@lion/localize": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
|
||||||
"@open-wc/storybook": "^0.1.5",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
|
"@open-wc/testing": "^0.11.1",
|
||||||
"sinon": "^7.2.2"
|
"sinon": "^7.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/form-system/CHANGELOG.md
Normal file
11
packages/form-system/CHANGELOG.md
Normal 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.0.1 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* cycle dependencies by adding form-system package ([38dcca9](https://github.com/ing-bank/lion/commit/38dcca9))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/form-system",
|
"name": "@lion/form-system",
|
||||||
"version": "0.0.0",
|
"version": "0.0.1",
|
||||||
"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/",
|
||||||
|
|
@ -29,20 +29,20 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/checkbox": "^0.1.0",
|
||||||
"@lion/form": "0.0.0",
|
"@lion/checkbox-group": "^0.1.0",
|
||||||
"@lion/fieldset": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/textarea": "0.0.0",
|
"@lion/fieldset": "^0.1.0",
|
||||||
"@lion/input": "0.0.0",
|
"@lion/form": "^0.1.0",
|
||||||
"@lion/checkbox": "0.0.0",
|
"@lion/input": "^0.1.0",
|
||||||
"@lion/checkbox-group": "0.0.0",
|
"@lion/input-amount": "^0.1.0",
|
||||||
"@lion/radio": "0.0.0",
|
"@lion/input-date": "^0.1.0",
|
||||||
"@lion/radio-group": "0.0.0",
|
"@lion/input-email": "^0.1.0",
|
||||||
"@lion/input-iban": "0.0.0",
|
"@lion/input-iban": "^0.1.0",
|
||||||
"@lion/input-amount": "0.0.0",
|
"@lion/radio": "^0.1.0",
|
||||||
"@lion/input-date": "0.0.0",
|
"@lion/radio-group": "^0.1.0",
|
||||||
"@lion/input-email": "0.0.0",
|
"@lion/textarea": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
16
packages/form/CHANGELOG.md
Normal file
16
packages/form/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
# 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* cycle dependencies by adding form-system package ([38dcca9](https://github.com/ing-bank/lion/commit/38dcca9))
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/form",
|
"name": "@lion/form",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,15 +29,15 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/fieldset": "0.0.0"
|
"@lion/fieldset": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/input": "0.0.0",
|
"@lion/input": "^0.1.0",
|
||||||
"@lion/input-iban": "0.0.0",
|
"@lion/input-iban": "^0.1.0",
|
||||||
"@lion/textarea": "0.0.0",
|
"@lion/textarea": "^0.1.0",
|
||||||
"@lion/validate": "0.0.0",
|
"@lion/validate": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/icon/CHANGELOG.md
Normal file
11
packages/icon/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/icon",
|
"name": "@lion/icon",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,11 +29,10 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0"
|
"@lion/core": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/input-amount/CHANGELOG.md
Normal file
11
packages/input-amount/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/input-amount",
|
"name": "@lion/input-amount",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,15 +29,14 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/input": "0.0.0",
|
"@lion/field": "^0.1.0",
|
||||||
"@lion/field": "0.0.0",
|
"@lion/input": "^0.1.0",
|
||||||
"@lion/localize": "0.0.0",
|
"@lion/localize": "^0.1.0",
|
||||||
"@lion/validate": "0.0.0"
|
"@lion/validate": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/input-date/CHANGELOG.md
Normal file
11
packages/input-date/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/input-date",
|
"name": "@lion/input-date",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,15 +29,14 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/input": "0.0.0",
|
"@lion/field": "^0.1.0",
|
||||||
"@lion/field": "0.0.0",
|
"@lion/input": "^0.1.0",
|
||||||
"@lion/localize": "0.0.0",
|
"@lion/localize": "^0.1.0",
|
||||||
"@lion/validate": "0.0.0"
|
"@lion/validate": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/input-email/CHANGELOG.md
Normal file
11
packages/input-email/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/input-email",
|
"name": "@lion/input-email",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,15 +29,14 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/input": "0.0.0",
|
"@lion/field": "^0.1.0",
|
||||||
"@lion/field": "0.0.0",
|
"@lion/input": "^0.1.0",
|
||||||
"@lion/localize": "0.0.0",
|
"@lion/localize": "^0.1.0",
|
||||||
"@lion/validate": "0.0.0"
|
"@lion/validate": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/input-iban/CHANGELOG.md
Normal file
11
packages/input-iban/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/input-iban",
|
"name": "@lion/input-iban",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -30,14 +30,14 @@
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bundled-es-modules/ibantools": "2.0.0",
|
"@bundled-es-modules/ibantools": "2.0.0",
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/input": "0.0.0",
|
"@lion/field": "^0.1.0",
|
||||||
"@lion/field": "0.0.0",
|
"@lion/input": "^0.1.0",
|
||||||
"@lion/localize": "0.0.0"
|
"@lion/localize": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/validate": "0.0.0",
|
"@lion/validate": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/input/CHANGELOG.md
Normal file
11
packages/input/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/input",
|
"name": "@lion/input",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,13 +29,13 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/field": "0.0.0"
|
"@lion/field": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/localize": "0.0.0",
|
"@lion/localize": "^0.1.0",
|
||||||
"@lion/validate": "0.0.0",
|
"@lion/validate": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
16
packages/localize/CHANGELOG.md
Normal file
16
packages/localize/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
# 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **localize:** work with dates of different timezones ([cbbf0d4](https://github.com/ing-bank/lion/commit/cbbf0d4))
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/localize",
|
"name": "@lion/localize",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -30,12 +30,12 @@
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bundled-es-modules/message-format": "6.0.4",
|
"@bundled-es-modules/message-format": "6.0.4",
|
||||||
"@lion/core": "0.0.0"
|
"@lion/core": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@bundled-es-modules/fetch-mock": "^6.5.2",
|
"@bundled-es-modules/fetch-mock": "^6.5.2",
|
||||||
"@open-wc/testing": "^0.11.1",
|
|
||||||
"@open-wc/storybook": "^0.1.5",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
|
"@open-wc/testing": "^0.11.1",
|
||||||
"sinon": "^7.2.2"
|
"sinon": "^7.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/overlays/CHANGELOG.md
Normal file
11
packages/overlays/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/overlays",
|
"name": "@lion/overlays",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,11 +29,11 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0"
|
"@lion/core": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
|
||||||
"@open-wc/storybook": "^0.1.5",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
|
"@open-wc/testing": "^0.11.1",
|
||||||
"@polymer/iron-test-helpers": "^3.0.1",
|
"@polymer/iron-test-helpers": "^3.0.1",
|
||||||
"sinon": "^7.2.2"
|
"sinon": "^7.2.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/popup/CHANGELOG.md
Normal file
11
packages/popup/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/popup",
|
"name": "@lion/popup",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"description": "Show relative overlay content on click",
|
"description": "Show relative overlay content on click",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
"homepage": "https://github.com/ing-bank/lion/",
|
"homepage": "https://github.com/ing-bank/lion/",
|
||||||
|
|
@ -29,13 +29,13 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/overlays": "0.0.0"
|
"@lion/overlays": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/icon": "0.0.0",
|
"@lion/button": "^0.1.0",
|
||||||
"@lion/button": "0.0.0",
|
"@lion/icon": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/radio-group/CHANGELOG.md
Normal file
11
packages/radio-group/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/radio-group",
|
"name": "@lion/radio-group",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,13 +29,13 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/fieldset": "0.0.0"
|
"@lion/fieldset": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/radio": "0.0.0",
|
"@lion/form": "^0.1.0",
|
||||||
"@lion/form": "0.0.0",
|
"@lion/radio": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/radio/CHANGELOG.md
Normal file
11
packages/radio/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/radio",
|
"name": "@lion/radio",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"description": "Provide a way for users to check a single option amongst a set of choices",
|
"description": "Provide a way for users to check a single option amongst a set of choices",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
"homepage": "https://github.com/ing-bank/lion/",
|
"homepage": "https://github.com/ing-bank/lion/",
|
||||||
|
|
@ -29,13 +29,12 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/choice-input": "^0.1.0",
|
||||||
"@lion/choice-input": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/input": "0.0.0"
|
"@lion/input": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/select/CHANGELOG.md
Normal file
11
packages/select/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/select",
|
"name": "@lion/select",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,12 +29,11 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/field": "0.0.0"
|
"@lion/field": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/steps/CHANGELOG.md
Normal file
11
packages/steps/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/steps",
|
"name": "@lion/steps",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,11 +29,11 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0"
|
"@lion/core": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
|
||||||
"@open-wc/storybook": "^0.1.5",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
|
"@open-wc/testing": "^0.11.1",
|
||||||
"sinon": "^7.2.2"
|
"sinon": "^7.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/textarea/CHANGELOG.md
Normal file
11
packages/textarea/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/textarea",
|
"name": "@lion/textarea",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,13 +29,12 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/input": "0.0.0",
|
"@lion/input": "^0.1.0",
|
||||||
"autosize": "4.0.2"
|
"autosize": "4.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/tooltip/CHANGELOG.md
Normal file
11
packages/tooltip/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/tooltip",
|
"name": "@lion/tooltip",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,13 +29,13 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/overlays": "0.0.0"
|
"@lion/overlays": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lion/icon": "0.0.0",
|
"@lion/button": "^0.1.0",
|
||||||
"@lion/button": "0.0.0",
|
"@lion/icon": "^0.1.0",
|
||||||
"@open-wc/testing": "^0.11.1",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
"@open-wc/storybook": "^0.1.5"
|
"@open-wc/testing": "^0.11.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
packages/validate/CHANGELOG.md
Normal file
11
packages/validate/CHANGELOG.md
Normal 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 (2019-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* release inital public lion version ([ec8da8f](https://github.com/ing-bank/lion/commit/ec8da8f))
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/validate",
|
"name": "@lion/validate",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"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/",
|
||||||
|
|
@ -29,12 +29,12 @@
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/core": "0.0.0",
|
"@lion/core": "^0.1.0",
|
||||||
"@lion/localize": "0.0.0"
|
"@lion/localize": "^0.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@open-wc/testing": "^0.11.1",
|
|
||||||
"@open-wc/storybook": "^0.1.5",
|
"@open-wc/storybook": "^0.1.5",
|
||||||
|
"@open-wc/testing": "^0.11.1",
|
||||||
"sinon": "^7.2.2"
|
"sinon": "^7.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue