@rws-framework/client 2.21.3 → 2.21.4

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rws-framework/client",
3
3
  "private": false,
4
- "version": "2.21.3",
4
+ "version": "2.21.4",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "docs": "typedoc --tsconfig ./tsconfig.json"
package/src/index.ts CHANGED
@@ -22,7 +22,7 @@ import { RWSIgnore, RWSInject, RWSView } from './components/_decorator';
22
22
  import type { DefaultRWSPluginOptionsType } from './plugins/_plugin';
23
23
  import type { IRWSPlugin, IStaticRWSPlugin, IPluginSpawnOption } from './types/IRWSPlugin';
24
24
  import type IRWSUser from './types/IRWSUser';
25
- import type { IAssetShowOptions } from './components/_component';
25
+ import type { IAssetShowOptions, IRWSViewComponent } from './components/_component';
26
26
  import type { RWSDecoratorOptions } from './components/_decorator';
27
27
  import type { IKDBTypeInfo, IKDBTypesResponse } from './types/IBackendCore';
28
28
  import type { DOMOutputType, TagsProcessorType } from './services/DOMService';
@@ -84,5 +84,6 @@ export type {
84
84
  IAssetShowOptions as IRWSAssetShowOptions,
85
85
  IRWSConfig,
86
86
  IRWSUser,
87
- TagsProcessorType
87
+ TagsProcessorType,
88
+ IRWSViewComponent
88
89
  }
@@ -1,9 +1,9 @@
1
- import { ViewTemplate } from '@microsoft/fast-element';
1
+ import { FASTElement, ViewTemplate } from '@microsoft/fast-element';
2
2
  import { DOMOutputType } from '../services/DOMService';
3
3
 
4
4
  type IAssetShowOptions = Record<string, any>;
5
5
 
6
- interface IRWSViewComponent extends Node {
6
+ interface IRWSViewComponent extends FASTElement {
7
7
  __isLoading: boolean;
8
8
  routeParams: Record<string, string>;
9
9
  trashIterator: number;