@rws-framework/client 2.0.7 → 2.0.9

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/README.md +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # RWS Frontend Framework README
1
+ # RWS-JS Client Setup and Configuration Guide
2
+
3
+ RWS-JS Client is a web-component powered, MS FAST powered framework that you can use to create domain-agnostic modular asynchoronous components with intershared states. It is capable of holding and sharing authorization data between web components, and helps bind it to backend.
2
4
 
3
5
  ## Table of Contents
4
6
 
@@ -278,7 +280,7 @@ Router tag:
278
280
 
279
281
  ## Backend Imports
280
282
 
281
- `backendImports.ts` consolidates various backend interfaces, routes, and models, allowing for a synchronized frontend and backend.
283
+ `backendImports.ts` consolidates various backend interfaces, routes, and models, allowing for a synchronized frontend and backend from package https://github.com/papablack/rws
282
284
 
283
285
  ```typescript
284
286
  import IBook from '../../backend/src/models/interfaces/IBook';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rws-framework/client",
3
3
  "private": false,
4
- "version": "2.0.7",
4
+ "version": "2.0.9",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "docs": "typedoc --tsconfig ./tsconfig.json"