@furystack/shades 4.0.4 → 4.0.5

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 +2 -1
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -37,6 +37,7 @@ The **@furystack/shades** package contains a router component, a router-link com
37
37
 
38
38
  - Shade is close to the DOM and the natives. You are encouraged to use native browser methods while you can
39
39
  - You can use small independent services for state tracking with the _injector_
40
- - Use observable values. Subscribe in the `constructed()` method and dispose them on the callback that it returns.
40
+ - ~~Use observable values. Subscribe in the `constructed()` method and dispose them on the callback that it returns.~~
41
+ - You can use resources (valueobservers) that will be disposed automatically when your component will be removed from DOM.
41
42
  - Re-render **can** be skipped on state update. E.g. Why should you break a whole form with a re-render? Why should you update a complete _grid_ if only on item's one field has been changed?
42
43
  - Nothing is true, everything is permitted 🗡
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@furystack/shades",
3
- "version": "4.0.4",
3
+ "version": "4.0.5",
4
4
  "description": "Google Authentication Provider for FuryStack",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -14,10 +14,10 @@
14
14
  },
15
15
  "keywords": [
16
16
  "FuryStack",
17
- "HTTP",
18
- "REST",
19
- "API",
20
- "Actions"
17
+ "Shades",
18
+ "UI",
19
+ "JSX",
20
+ "WebApp"
21
21
  ],
22
22
  "publishConfig": {
23
23
  "access": "public"
@@ -32,13 +32,13 @@
32
32
  "jsdom": "^19.0.0"
33
33
  },
34
34
  "dependencies": {
35
- "@furystack/core": "^10.4.5",
36
- "@furystack/inject": "^5.0.2",
37
- "@furystack/utils": "^2.0.2",
35
+ "@furystack/core": "^10.4.6",
36
+ "@furystack/inject": "^5.0.3",
37
+ "@furystack/utils": "^2.0.3",
38
38
  "path-to-regexp": "^6.2.0",
39
39
  "tslib": "^2.3.1",
40
40
  "uuid": "^8.3.2"
41
41
  },
42
42
  "typings": "./dist/index.d.ts",
43
- "gitHead": "c06b94b4dc91dd3e37ba682e95e71a969e9454d2"
43
+ "gitHead": "dcee00dfb4035fe382ec726af4d614ef9d8a579f"
44
44
  }