@rws-framework/client 2.21.0 → 2.21.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/client.ts +1 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rws-framework/client",
3
3
  "private": false,
4
- "version": "2.21.0",
4
+ "version": "2.21.1",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "docs": "typedoc --tsconfig ./tsconfig.json"
package/src/client.ts CHANGED
@@ -15,7 +15,6 @@ import RWSWindow, { RWSWindowComponentRegister, loadRWSRichWindow } from './type
15
15
 
16
16
  import { DI, Container, Registration } from './components/_container';
17
17
 
18
- import { declareRWSComponents } from './components/index';
19
18
  import RWSContainer from './components/_container';
20
19
  import TheRWSService from './services/_service';
21
20
 
@@ -206,4 +205,4 @@ class RWSClient {
206
205
  }
207
206
 
208
207
  export default DI.createInterface<RWSClient>(x => x.singleton(RWSClient));
209
- export { RWSClient as RWSClientInstance, declareRWSComponents };
208
+ export { RWSClient as RWSClientInstance };