Version Packages
This commit is contained in:
parent
cc62c4d90b
commit
1a36727f18
13 changed files with 47 additions and 26 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/button': patch
|
||||
---
|
||||
|
||||
Fix button user-select for Edge/Safari by adding prefixes for the CSS rule.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/select-rich': patch
|
||||
---
|
||||
|
||||
Set pointer-events to none to fix Safari bug where click event is blocked by text content wrapper.
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
'@lion/combobox': patch
|
||||
'@lion/select-rich': patch
|
||||
'@lion/tooltip': patch
|
||||
---
|
||||
|
||||
Fix some type issues with static get styles, CSSResultArray combines CSSResult and CSSResult[].
|
||||
|
|
@ -1,5 +1,11 @@
|
|||
# Change Log
|
||||
|
||||
## 0.8.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 3fefc359: Fix button user-select for Edge/Safari by adding prefixes for the CSS rule.
|
||||
|
||||
## 0.8.8
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/button",
|
||||
"version": "0.8.8",
|
||||
"version": "0.8.9",
|
||||
"description": "A button that is easily styleable and accessible in all contexts",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# Change Log
|
||||
|
||||
## 0.1.18
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ef7ccbb9: Fix some type issues with static get styles, CSSResultArray combines CSSResult and CSSResult[].
|
||||
|
||||
## 0.1.17
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/combobox",
|
||||
"version": "0.1.17",
|
||||
"version": "0.1.18",
|
||||
"description": "A widget made up of a single-line textbox and an associated pop-up listbox element",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,16 @@
|
|||
# Change Log
|
||||
|
||||
## 0.3.23
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [3fefc359]
|
||||
- Updated dependencies [3fefc359]
|
||||
- Updated dependencies [ef7ccbb9]
|
||||
- @lion/button@0.8.9
|
||||
- @lion/select-rich@0.21.22
|
||||
- @lion/combobox@0.1.18
|
||||
|
||||
## 0.3.22
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/form-integrations",
|
||||
"version": "0.3.22",
|
||||
"version": "0.3.23",
|
||||
"description": "The Form System allows you to create complex forms with various validation in an easy way",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -33,9 +33,9 @@
|
|||
"./docs/helper-wc/h-output.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"@lion/button": "0.8.8",
|
||||
"@lion/button": "0.8.9",
|
||||
"@lion/checkbox-group": "0.12.13",
|
||||
"@lion/combobox": "0.1.17",
|
||||
"@lion/combobox": "0.1.18",
|
||||
"@lion/core": "0.13.7",
|
||||
"@lion/fieldset": "0.15.13",
|
||||
"@lion/form": "0.7.13",
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
"@lion/localize": "0.15.4",
|
||||
"@lion/radio-group": "0.12.13",
|
||||
"@lion/select": "0.8.13",
|
||||
"@lion/select-rich": "0.21.21",
|
||||
"@lion/select-rich": "0.21.22",
|
||||
"@lion/switch": "0.12.13",
|
||||
"@lion/textarea": "0.8.13",
|
||||
"@lion/validate-messages": "0.3.13"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# Change Log
|
||||
|
||||
## 0.21.22
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 3fefc359: Set pointer-events to none to fix Safari bug where click event is blocked by text content wrapper.
|
||||
- ef7ccbb9: Fix some type issues with static get styles, CSSResultArray combines CSSResult and CSSResult[].
|
||||
- Updated dependencies [3fefc359]
|
||||
- @lion/button@0.8.9
|
||||
|
||||
## 0.21.21
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/select-rich",
|
||||
"version": "0.21.21",
|
||||
"version": "0.21.22",
|
||||
"description": "Provides a select with options that can contain html",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
"lion-select-rich.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"@lion/button": "0.8.8",
|
||||
"@lion/button": "0.8.9",
|
||||
"@lion/core": "0.13.7",
|
||||
"@lion/form-core": "0.7.0",
|
||||
"@lion/listbox": "0.4.0",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# Change Log
|
||||
|
||||
## 0.16.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ef7ccbb9: Fix some type issues with static get styles, CSSResultArray combines CSSResult and CSSResult[].
|
||||
|
||||
## 0.16.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/tooltip",
|
||||
"version": "0.16.0",
|
||||
"version": "0.16.1",
|
||||
"description": "Show relative overlay content on hover",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
Loading…
Reference in a new issue