Version Packages

This commit is contained in:
github-actions[bot] 2022-11-28 17:04:29 +00:00 committed by Thijs Louisse
parent f0e6ee922c
commit f7fde3152a
4 changed files with 20 additions and 22 deletions

View file

@ -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());
```

View file

@ -1,5 +0,0 @@
---
'@lion/ui': patch
---
Use the correct names for singleton registrations

View file

@ -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

View file

@ -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",