Version Packages
This commit is contained in:
parent
f0e6ee922c
commit
f7fde3152a
4 changed files with 20 additions and 22 deletions
|
|
@ -1,16 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
BREAKING: remove setIcons, setOverlays, setLocalize.
|
|
||||||
|
|
||||||
Recommended approach is to do below at the top of your app (before lion code runs):
|
|
||||||
|
|
||||||
```js
|
|
||||||
import { singletonManager } from 'singleton-manager';
|
|
||||||
import { LocalizeManager } from '@lion/ui/localize-no-side-effects.js';
|
|
||||||
|
|
||||||
class MyLocalizeManager extends LocalizeManager {}
|
|
||||||
|
|
||||||
singletonManager.set('@lion/ui::localize::0.x', new MyLocalizeManager());
|
|
||||||
```
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@lion/ui': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Use the correct names for singleton registrations
|
|
||||||
|
|
@ -1,5 +1,24 @@
|
||||||
# @lion/ui
|
# @lion/ui
|
||||||
|
|
||||||
|
## 0.0.8
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- f0e6ee92: BREAKING: remove setIcons, setOverlays, setLocalize.
|
||||||
|
|
||||||
|
Recommended approach is to do below at the top of your app (before lion code runs):
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { singletonManager } from 'singleton-manager';
|
||||||
|
import { LocalizeManager } from '@lion/ui/localize-no-side-effects.js';
|
||||||
|
|
||||||
|
class MyLocalizeManager extends LocalizeManager {}
|
||||||
|
|
||||||
|
singletonManager.set('@lion/ui::localize::0.x', new MyLocalizeManager());
|
||||||
|
```
|
||||||
|
|
||||||
|
- de51dae2: Use the correct names for singleton registrations
|
||||||
|
|
||||||
## 0.0.7
|
## 0.0.7
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lion/ui",
|
"name": "@lion/ui",
|
||||||
"version": "0.0.7",
|
"version": "0.0.8",
|
||||||
"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