Version Packages
This commit is contained in:
parent
bad0ad4adf
commit
1dfe35f000
68 changed files with 378 additions and 174 deletions
|
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
'@lion/overlays': minor
|
||||
---
|
||||
|
||||
⚠️ BREAKING CHANGE:
|
||||
|
||||
Fixed a few problems with the backdropNode and contentNode where they were not torn down properly.
|
||||
Simplified the handleBackdrop code to work for both local and global.
|
||||
Local overlay backdrop can now be animated.
|
||||
Added more demos and docs for backdrop.
|
||||
|
||||
The breaking changes lie in the fact that the backdrop style classes are now prefixed 'local'/'global' respectively, instead of always 'global' and the class name suffixes for the `backdropNode` have changed from `fade-in`/`fade-out` to `animation-in`/`animation-out`, as not all animations are fades.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/listbox': patch
|
||||
---
|
||||
|
||||
no cancellation multi mouse click
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/combobox': patch
|
||||
---
|
||||
|
||||
form-control class to correct node
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@lion/calendar': minor
|
||||
'@lion/input-datepicker': minor
|
||||
---
|
||||
|
||||
Add types for calendar and datepicker packages.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/form-core': patch
|
||||
---
|
||||
|
||||
ChoiceGroupMixin: On value change uncheck all formElements that do not meet the requested condition
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@lion/listbox': patch
|
||||
'@lion/select-rich': patch
|
||||
---
|
||||
|
||||
add types
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
'providence-analytics': patch
|
||||
---
|
||||
|
||||
Providence windows support
|
||||
|
||||
- fix: make all tests run on Windows
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/combobox': patch
|
||||
---
|
||||
|
||||
Add a new option showAllOnEmpty which shows the full list if the input has an empty value
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/overlays': patch
|
||||
---
|
||||
|
||||
If a content slot cannot be found, OverlayMixin should check if there is a contentNode imperatively passed through the config.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/listbox': minor
|
||||
---
|
||||
|
||||
Add reset function to listbox and all extentions
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
---
|
||||
'@lion/fieldset': patch
|
||||
'@lion/form-core': patch
|
||||
'@lion/input': patch
|
||||
'@lion/select': patch
|
||||
'@lion/switch': patch
|
||||
'@lion/textarea': patch
|
||||
---
|
||||
|
||||
Refactor of some fields to ensure that \_inputNode has the right type. It starts as HTMLElement for LionField, and all HTMLInputElement, HTMLSelectElement and HTMLTextAreaElement logic, are moved to the right places.
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@lion/button': patch
|
||||
'@lion/combobox': patch
|
||||
---
|
||||
|
||||
Types button and combobox
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/select-rich': patch
|
||||
---
|
||||
|
||||
Change scrollTargetNode to listboxNode, same as parent and extention layer. The extention layer has a different overlayContentNode and had to set it back to listboxNode.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@lion/combobox": patch
|
||||
---
|
||||
|
||||
add inherited styles in combobox (aria 1.1) _inputNode to allow styling
|
||||
|
|
@ -1,5 +1,11 @@
|
|||
# Change Log
|
||||
|
||||
## 0.7.15
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6679fe77: Types button and combobox
|
||||
|
||||
## 0.7.14
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/button",
|
||||
"version": "0.7.14",
|
||||
"version": "0.7.15",
|
||||
"description": "A button that is easily styleable and accessible in all contexts",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# Change Log
|
||||
|
||||
## 0.12.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- e9cee039: Add types for calendar and datepicker packages.
|
||||
|
||||
## 0.11.3
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/calendar",
|
||||
"version": "0.11.3",
|
||||
"version": "0.12.0",
|
||||
"description": "Standalone calendar",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# Change Log
|
||||
|
||||
## 0.12.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/fieldset@0.15.1
|
||||
- @lion/input@0.10.1
|
||||
|
||||
## 0.12.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/checkbox-group",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"description": "A container for multiple checkboxes",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -34,9 +34,9 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/fieldset": "0.15.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/input": "0.10.0"
|
||||
"@lion/fieldset": "0.15.1",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/input": "0.10.1"
|
||||
},
|
||||
"keywords": [
|
||||
"checkbox-group",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,24 @@
|
|||
## 0.1.0
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 533417f2: form-control class to correct node
|
||||
- 928a673a: Add a new option showAllOnEmpty which shows the full list if the input has an empty value
|
||||
- 6679fe77: Types button and combobox
|
||||
- c76c0786: add inherited styles in combobox (aria 1.1) \_inputNode to allow styling
|
||||
- Updated dependencies [d83f7fc5]
|
||||
- Updated dependencies [d1c6b18c]
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [17a0d6bf]
|
||||
- Updated dependencies [a4c4f1ee]
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/overlays@0.21.0
|
||||
- @lion/listbox@0.2.0
|
||||
- @lion/form-core@0.6.3
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/combobox",
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"description": "A widget made up of a single-line textbox and an associated pop-up listbox element",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -40,9 +40,9 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/listbox": "0.1.2",
|
||||
"@lion/overlays": "0.20.0"
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/listbox": "0.2.0",
|
||||
"@lion/overlays": "0.21.0"
|
||||
},
|
||||
"keywords": [
|
||||
"combobox",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
# Change Log
|
||||
|
||||
## 0.9.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d83f7fc5]
|
||||
- Updated dependencies [a4c4f1ee]
|
||||
- @lion/overlays@0.21.0
|
||||
|
||||
## 0.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/dialog",
|
||||
"version": "0.9.0",
|
||||
"version": "0.9.1",
|
||||
"description": "Show relative overlay content on click, as a webcomponent",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/overlays": "0.20.0"
|
||||
"@lion/overlays": "0.21.0"
|
||||
},
|
||||
"keywords": [
|
||||
"dialog",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.15.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0aa4480e: Refactor of some fields to ensure that \_inputNode has the right type. It starts as HTMLElement for LionField, and all HTMLInputElement, HTMLSelectElement and HTMLTextAreaElement logic, are moved to the right places.
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
|
||||
## 0.15.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/fieldset",
|
||||
"version": "0.15.0",
|
||||
"version": "0.15.1",
|
||||
"description": "Allows to groups multiple input fields or other fieldsets together",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2"
|
||||
"@lion/form-core": "0.6.3"
|
||||
},
|
||||
"keywords": [
|
||||
"fieldset",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# Change Log
|
||||
|
||||
## 0.6.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- d5faa459: ChoiceGroupMixin: On value change uncheck all formElements that do not meet the requested condition
|
||||
- 0aa4480e: Refactor of some fields to ensure that \_inputNode has the right type. It starts as HTMLElement for LionField, and all HTMLInputElement, HTMLSelectElement and HTMLTextAreaElement logic, are moved to the right places.
|
||||
|
||||
## 0.6.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/form-core",
|
||||
"version": "0.6.2",
|
||||
"version": "0.6.3",
|
||||
"description": "Form-core contains all essential building blocks for creating form fields and fieldsets",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,32 @@
|
|||
# Change Log
|
||||
|
||||
## 0.3.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [e9cee039]
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [17a0d6bf]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- Updated dependencies [6679fe77]
|
||||
- Updated dependencies [20469ce7]
|
||||
- @lion/input-datepicker@0.17.0
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/select-rich@0.21.5
|
||||
- @lion/fieldset@0.15.1
|
||||
- @lion/input@0.10.1
|
||||
- @lion/select@0.8.1
|
||||
- @lion/textarea@0.8.1
|
||||
- @lion/button@0.7.15
|
||||
- @lion/checkbox-group@0.12.1
|
||||
- @lion/input-date@0.8.1
|
||||
- @lion/input-email@0.9.1
|
||||
- @lion/input-iban@0.10.1
|
||||
- @lion/input-range@0.5.1
|
||||
- @lion/radio-group@0.12.1
|
||||
- @lion/validate-messages@0.3.1
|
||||
- @lion/form@0.7.1
|
||||
|
||||
## 0.3.4
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/form-integrations",
|
||||
"version": "0.3.4",
|
||||
"version": "0.3.5",
|
||||
"description": "The Form System allows you to create complex forms with various validation in an easy way",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -29,24 +29,24 @@
|
|||
"./docs/helper-wc/h-output.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"@lion/button": "0.7.14",
|
||||
"@lion/checkbox-group": "0.12.0",
|
||||
"@lion/button": "0.7.15",
|
||||
"@lion/checkbox-group": "0.12.1",
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/fieldset": "0.15.0",
|
||||
"@lion/form": "0.7.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/input": "0.10.0",
|
||||
"@lion/input-date": "0.8.0",
|
||||
"@lion/input-datepicker": "0.16.2",
|
||||
"@lion/input-email": "0.9.0",
|
||||
"@lion/input-iban": "0.10.0",
|
||||
"@lion/input-range": "0.5.0",
|
||||
"@lion/fieldset": "0.15.1",
|
||||
"@lion/form": "0.7.1",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/input": "0.10.1",
|
||||
"@lion/input-date": "0.8.1",
|
||||
"@lion/input-datepicker": "0.17.0",
|
||||
"@lion/input-email": "0.9.1",
|
||||
"@lion/input-iban": "0.10.1",
|
||||
"@lion/input-range": "0.5.1",
|
||||
"@lion/localize": "0.14.5",
|
||||
"@lion/radio-group": "0.12.0",
|
||||
"@lion/select": "0.8.0",
|
||||
"@lion/select-rich": "0.21.4",
|
||||
"@lion/textarea": "0.8.0",
|
||||
"@lion/validate-messages": "0.3.0"
|
||||
"@lion/radio-group": "0.12.1",
|
||||
"@lion/select": "0.8.1",
|
||||
"@lion/select-rich": "0.21.5",
|
||||
"@lion/textarea": "0.8.1",
|
||||
"@lion/validate-messages": "0.3.1"
|
||||
},
|
||||
"keywords": [
|
||||
"form",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# Change Log
|
||||
|
||||
## 0.7.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/fieldset@0.15.1
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/form",
|
||||
"version": "0.7.0",
|
||||
"version": "0.7.1",
|
||||
"description": "It enhances the functionality of the native `form` component. It is designed to interact with (instances of) form fields",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/fieldset": "0.15.0"
|
||||
"@lion/fieldset": "0.15.1"
|
||||
},
|
||||
"keywords": [
|
||||
"form",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.8.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/input@0.10.1
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/input-amount",
|
||||
"version": "0.8.0",
|
||||
"version": "0.8.1",
|
||||
"description": "Provide a way for users to fill in an amount",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,12 +32,12 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/input": "0.10.0",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/input": "0.10.1",
|
||||
"@lion/localize": "0.14.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lion/validate-messages": "0.3.0"
|
||||
"@lion/validate-messages": "0.3.1"
|
||||
},
|
||||
"keywords": [
|
||||
"input-amount",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.8.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/input@0.10.1
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/input-date",
|
||||
"version": "0.8.0",
|
||||
"version": "0.8.1",
|
||||
"description": "Provide a way for users to fill in a date",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,12 +32,12 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/input": "0.10.0",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/input": "0.10.1",
|
||||
"@lion/localize": "0.14.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lion/validate-messages": "0.3.0"
|
||||
"@lion/validate-messages": "0.3.1"
|
||||
},
|
||||
"keywords": [
|
||||
"input-date",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,23 @@
|
|||
# Change Log
|
||||
|
||||
## 0.17.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- e9cee039: Add types for calendar and datepicker packages.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d83f7fc5]
|
||||
- Updated dependencies [e9cee039]
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [a4c4f1ee]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/overlays@0.21.0
|
||||
- @lion/calendar@0.12.0
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/input-date@0.8.1
|
||||
|
||||
## 0.16.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/input-datepicker",
|
||||
"version": "0.16.2",
|
||||
"version": "0.17.0",
|
||||
"description": "Provide a way for users to fill in a date via a calendar overlay",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -31,15 +31,15 @@
|
|||
"lion-input-datepicker.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"@lion/calendar": "0.11.3",
|
||||
"@lion/calendar": "0.12.0",
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/input-date": "0.8.0",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/input-date": "0.8.1",
|
||||
"@lion/localize": "0.14.5",
|
||||
"@lion/overlays": "0.20.0"
|
||||
"@lion/overlays": "0.21.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lion/validate-messages": "0.3.0"
|
||||
"@lion/validate-messages": "0.3.1"
|
||||
},
|
||||
"keywords": [
|
||||
"calendar",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.9.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/input@0.10.1
|
||||
|
||||
## 0.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/input-email",
|
||||
"version": "0.9.0",
|
||||
"version": "0.9.1",
|
||||
"description": "Provide a way for users to fill in an email",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,12 +32,12 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/input": "0.10.0",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/input": "0.10.1",
|
||||
"@lion/localize": "0.14.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lion/validate-messages": "0.3.0"
|
||||
"@lion/validate-messages": "0.3.1"
|
||||
},
|
||||
"keywords": [
|
||||
"input-email",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.10.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/input@0.10.1
|
||||
|
||||
## 0.10.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/input-iban",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"description": "Provide a way for users to fill in an iban",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,13 +32,13 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/input": "0.10.0",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/input": "0.10.1",
|
||||
"@lion/localize": "0.14.5",
|
||||
"ibantools": "^2.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lion/validate-messages": "0.3.0"
|
||||
"@lion/validate-messages": "0.3.1"
|
||||
},
|
||||
"keywords": [
|
||||
"input-iban",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.5.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/input@0.10.1
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/input-range",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"description": "Provide a way for users to select one value from a range of values",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,8 +32,8 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/input": "0.10.0",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/input": "0.10.1",
|
||||
"@lion/localize": "0.14.5"
|
||||
},
|
||||
"keywords": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/input@0.10.1
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/input-stepper",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"description": "This component enables the user to increase and decrease a numeric value by predefined range.",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -33,8 +33,8 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/input": "0.10.0"
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/input": "0.10.1"
|
||||
},
|
||||
"keywords": [
|
||||
"input",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.10.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0aa4480e: Refactor of some fields to ensure that \_inputNode has the right type. It starts as HTMLElement for LionField, and all HTMLInputElement, HTMLSelectElement and HTMLTextAreaElement logic, are moved to the right places.
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
|
||||
## 0.10.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/input",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"description": "It enhances the functionality of the native `<input>` element",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2"
|
||||
"@lion/form-core": "0.6.3"
|
||||
},
|
||||
"keywords": [
|
||||
"input",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,19 @@
|
|||
# @lion/listbox
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- d5faa459: Add reset function to listbox and all extentions
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- d1c6b18c: no cancellation multi mouse click
|
||||
- 17a0d6bf: add types
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/listbox",
|
||||
"version": "0.1.2",
|
||||
"version": "0.2.0",
|
||||
"description": "A listbox widget presents a list of options and allows a user to select one or more of them",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2"
|
||||
"@lion/form-core": "0.6.3"
|
||||
},
|
||||
"keywords": [
|
||||
"form",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,22 @@
|
|||
# Change Log
|
||||
|
||||
## 0.21.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- d83f7fc5: ⚠️ BREAKING CHANGE:
|
||||
|
||||
Fixed a few problems with the backdropNode and contentNode where they were not torn down properly.
|
||||
Simplified the handleBackdrop code to work for both local and global.
|
||||
Local overlay backdrop can now be animated.
|
||||
Added more demos and docs for backdrop.
|
||||
|
||||
The breaking changes lie in the fact that the backdrop style classes are now prefixed 'local'/'global' respectively, instead of always 'global' and the class name suffixes for the `backdropNode` have changed from `fade-in`/`fade-out` to `animation-in`/`animation-out`, as not all animations are fades.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- a4c4f1ee: If a content slot cannot be found, OverlayMixin should check if there is a contentNode imperatively passed through the config.
|
||||
|
||||
## 0.20.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/overlays",
|
||||
"version": "0.20.0",
|
||||
"version": "0.21.0",
|
||||
"description": "Overlays System using lit-html for rendering",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
# Change Log
|
||||
|
||||
## 0.6.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- b71bd7f2: Providence windows support
|
||||
|
||||
- fix: make all tests run on Windows
|
||||
|
||||
## 0.6.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "providence-analytics",
|
||||
"version": "0.6.2",
|
||||
"version": "0.6.3",
|
||||
"description": "Providence is the 'All Seeing Eye' that measures effectivity and popularity of software. Release management will become highly efficient due to an accurate impact analysis of (breaking) changes",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# Change Log
|
||||
|
||||
## 0.12.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/fieldset@0.15.1
|
||||
- @lion/input@0.10.1
|
||||
|
||||
## 0.12.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/radio-group",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"description": "Manage a group of choices",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -33,9 +33,9 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/fieldset": "0.15.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/input": "0.10.0"
|
||||
"@lion/fieldset": "0.15.1",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/input": "0.10.1"
|
||||
},
|
||||
"keywords": [
|
||||
"lion",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,24 @@
|
|||
# Change Log
|
||||
|
||||
## 0.21.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 17a0d6bf: add types
|
||||
- 20469ce7: Change scrollTargetNode to listboxNode, same as parent and extention layer. The extention layer has a different overlayContentNode and had to set it back to listboxNode.
|
||||
- Updated dependencies [d83f7fc5]
|
||||
- Updated dependencies [d1c6b18c]
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [17a0d6bf]
|
||||
- Updated dependencies [a4c4f1ee]
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- Updated dependencies [6679fe77]
|
||||
- @lion/overlays@0.21.0
|
||||
- @lion/listbox@0.2.0
|
||||
- @lion/form-core@0.6.3
|
||||
- @lion/button@0.7.15
|
||||
|
||||
## 0.21.4
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/select-rich",
|
||||
"version": "0.21.4",
|
||||
"version": "0.21.5",
|
||||
"description": "Provides a select with options that can contain html",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,11 +32,11 @@
|
|||
"lion-select-rich.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"@lion/button": "0.7.14",
|
||||
"@lion/button": "0.7.15",
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/listbox": "0.1.2",
|
||||
"@lion/overlays": "0.20.0"
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/listbox": "0.2.0",
|
||||
"@lion/overlays": "0.21.0"
|
||||
},
|
||||
"keywords": [
|
||||
"field",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.8.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0aa4480e: Refactor of some fields to ensure that \_inputNode has the right type. It starts as HTMLElement for LionField, and all HTMLInputElement, HTMLSelectElement and HTMLTextAreaElement logic, are moved to the right places.
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/select",
|
||||
"version": "0.8.0",
|
||||
"version": "0.8.1",
|
||||
"description": "Provide a set of options where you can select one",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2"
|
||||
"@lion/form-core": "0.6.3"
|
||||
},
|
||||
"keywords": [
|
||||
"lion",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.12.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0aa4480e: Refactor of some fields to ensure that \_inputNode has the right type. It starts as HTMLElement for LionField, and all HTMLInputElement, HTMLSelectElement and HTMLTextAreaElement logic, are moved to the right places.
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
|
||||
## 0.12.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/switch",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"description": "A Switch is used for switching a property or feature on and off",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2"
|
||||
"@lion/form-core": "0.6.3"
|
||||
},
|
||||
"keywords": [
|
||||
"lion",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.8.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0aa4480e: Refactor of some fields to ensure that \_inputNode has the right type. It starts as HTMLElement for LionField, and all HTMLInputElement, HTMLSelectElement and HTMLTextAreaElement logic, are moved to the right places.
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/textarea",
|
||||
"version": "0.8.0",
|
||||
"version": "0.8.1",
|
||||
"description": "Provide a way for users to write text that is multiple lines long",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@types/autosize": "^3.0.7",
|
||||
"autosize": "4.0.2"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
# Change Log
|
||||
|
||||
## 0.15.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d83f7fc5]
|
||||
- Updated dependencies [a4c4f1ee]
|
||||
- @lion/overlays@0.21.0
|
||||
|
||||
## 0.15.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/tooltip",
|
||||
"version": "0.15.0",
|
||||
"version": "0.15.1",
|
||||
"description": "Show relative overlay content on hover",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/overlays": "0.20.0"
|
||||
"@lion/overlays": "0.21.0"
|
||||
},
|
||||
"keywords": [
|
||||
"lion",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
# Change Log
|
||||
|
||||
## 0.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d5faa459]
|
||||
- Updated dependencies [0aa4480e]
|
||||
- @lion/form-core@0.6.3
|
||||
|
||||
## 0.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/validate-messages",
|
||||
"version": "0.3.0",
|
||||
"version": "0.3.1",
|
||||
"description": "A set of localized messages for default Validators",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@lion/core": "0.13.0",
|
||||
"@lion/form-core": "0.6.2",
|
||||
"@lion/form-core": "0.6.3",
|
||||
"@lion/localize": "0.14.5"
|
||||
},
|
||||
"keywords": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue