Version Packages
This commit is contained in:
parent
a30dbf32f0
commit
ed1c9517e4
9 changed files with 30 additions and 37 deletions
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
[combobox] change mimicUserTyping test helper function async and use sendKeys() internally
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'providence-analytics': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
update dependencies
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fix(ui/calendar): use correct firstUpdated type signature
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
[core] fix chromium detection
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
[accordion] make accordion closeable again
|
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 0.16.6
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- a30dbf3: update dependencies
|
||||||
|
|
||||||
## 0.16.5
|
## 0.16.5
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
@ -199,14 +205,14 @@
|
||||||
This means tag names are no longer being rewritten with a hash.
|
This means tag names are no longer being rewritten with a hash.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { css, LitElement } from "lit";
|
import { css, LitElement } from 'lit';
|
||||||
import { ScopedElementsMixin } from "@open-wc/scoped-elements";
|
import { ScopedElementsMixin } from '@open-wc/scoped-elements';
|
||||||
import { MyButton } from "./MyButton.js";
|
import { MyButton } from './MyButton.js';
|
||||||
|
|
||||||
export class MyElement extends ScopedElementsMixin(LitElement) {
|
export class MyElement extends ScopedElementsMixin(LitElement) {
|
||||||
static get scopedElements() {
|
static get scopedElements() {
|
||||||
return {
|
return {
|
||||||
"my-button": MyButton,
|
'my-button': MyButton,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "providence-analytics",
|
"name": "providence-analytics",
|
||||||
"version": "0.16.5",
|
"version": "0.16.6",
|
||||||
"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",
|
"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",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,17 @@
|
||||||
# @lion/ui
|
# @lion/ui
|
||||||
|
|
||||||
|
## 0.8.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- 27af6be: [combobox] change mimicUserTyping test helper function async and use sendKeys() internally
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 5530eef: fix(ui/calendar): use correct firstUpdated type signature
|
||||||
|
- dbb9640: [core] fix chromium detection
|
||||||
|
- 96b09e5: [accordion] make accordion closeable again
|
||||||
|
|
||||||
## 0.7.9
|
## 0.7.9
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
@ -146,9 +158,9 @@ BREAKING:
|
||||||
For optimized bundling, it's reccommended to load feedback messages per entrypoint. For instance, when you only use form-core in your app:
|
For optimized bundling, it's reccommended to load feedback messages per entrypoint. For instance, when you only use form-core in your app:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { LionInputTel } from "@lion/ui/input-tel.js";
|
import { LionInputTel } from '@lion/ui/input-tel.js';
|
||||||
import { getLocalizeManager } from "@lion/ui/localize-no-side-effects.js";
|
import { getLocalizeManager } from '@lion/ui/localize-no-side-effects.js';
|
||||||
import { loadInputTelMessagesNoSideEffects } from "@lion/ui/validate-messages-no-side-effects.js";
|
import { loadInputTelMessagesNoSideEffects } from '@lion/ui/validate-messages-no-side-effects.js';
|
||||||
|
|
||||||
export class MyInputTel extends LionInputTel {
|
export class MyInputTel extends LionInputTel {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
|
@ -516,12 +528,12 @@ BREAKING:
|
||||||
Recommended approach is to do below at the top of your app (before lion code runs):
|
Recommended approach is to do below at the top of your app (before lion code runs):
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { singletonManager } from "singleton-manager";
|
import { singletonManager } from 'singleton-manager';
|
||||||
import { LocalizeManager } from "@lion/ui/localize-no-side-effects.js";
|
import { LocalizeManager } from '@lion/ui/localize-no-side-effects.js';
|
||||||
|
|
||||||
class MyLocalizeManager extends LocalizeManager {}
|
class MyLocalizeManager extends LocalizeManager {}
|
||||||
|
|
||||||
singletonManager.set("@lion/ui::localize::0.x", new MyLocalizeManager());
|
singletonManager.set('@lion/ui::localize::0.x', new MyLocalizeManager());
|
||||||
```
|
```
|
||||||
|
|
||||||
- de51dae2: Use the correct names for singleton registrations
|
- de51dae2: Use the correct names for singleton registrations
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/ui",
|
"name": "@lion/ui",
|
||||||
"version": "0.7.9",
|
"version": "0.8.0",
|
||||||
"description": "A package of extendable web components",
|
"description": "A package of extendable web components",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "ing-bank",
|
"author": "ing-bank",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue