diff --git a/CHANGELOG.md b/CHANGELOG.md index 127073c6..3df273db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.42.x + +- For `ui-keyring` the stores are now not exported from the index, imports should be changed to either `ui-keyring/stores` or explicitly to `ui-keyring/stores/Extension` + # 0.41.1 - Adapt interface to cater for new `@polkadot/keyring`, where pairs - diff --git a/packages/ui-keyring/src/Base.ts b/packages/ui-keyring/src/Base.ts index b6ae0aca..76a25cef 100644 --- a/packages/ui-keyring/src/Base.ts +++ b/packages/ui-keyring/src/Base.ts @@ -14,7 +14,7 @@ import accounts from './observable/accounts'; import addresses from './observable/addresses'; import contracts from './observable/contracts'; import env from './observable/development'; -import { BrowserStore } from './stores'; +import BrowserStore from './stores/Browser'; // direct import (skip index with all) import { MAX_PASS_LEN } from './defaults'; export default class Base { diff --git a/packages/ui-keyring/src/index.ts b/packages/ui-keyring/src/index.ts index 1723d642..437072ab 100644 --- a/packages/ui-keyring/src/index.ts +++ b/packages/ui-keyring/src/index.ts @@ -5,7 +5,6 @@ import { assertSingletonPackage } from '@polkadot/util'; import keyring, { Keyring } from './Keyring'; -export * from './stores'; assertSingletonPackage('@polkadot/ui-keyring');