@genesislcap/foundation-store 14.160.0 → 14.161.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +22 -3
- package/package.json +12 -12
package/README.md
CHANGED
@@ -9,8 +9,6 @@ application doesn't warrant a store, or that you would prefer to use a store you
|
|
9
9
|
flexible, so you can use whatever you like to handle application level state management, but you should be mindful of
|
10
10
|
degrading performance.
|
11
11
|
|
12
|
-
### [API Docs](./docs/api/index.md)
|
13
|
-
|
14
12
|
## Background
|
15
13
|
|
16
14
|
Client apps today manage application state in different ways. These apps might leverage common third party stores likes
|
@@ -646,9 +644,30 @@ ${when(x => x.tradeEntry.ui.isOpen, html<TradeEntryForm>`
|
|
646
644
|
`}
|
647
645
|
```
|
648
646
|
|
647
|
+
|
648
|
+
## Installation
|
649
|
+
|
650
|
+
To enable this module in your application, follow the steps below.
|
651
|
+
|
652
|
+
1. Add `@genesislcap/foundation-store` as a dependency in your `package.json` file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](https://learn.genesis.global/secure/web/basics/package-json-basics/) page.
|
653
|
+
|
654
|
+
```json
|
655
|
+
{
|
656
|
+
...
|
657
|
+
"dependencies": {
|
658
|
+
...
|
659
|
+
"@genesislcap/foundation-store": "latest"
|
660
|
+
...
|
661
|
+
},
|
662
|
+
...
|
663
|
+
}
|
664
|
+
```
|
665
|
+
|
666
|
+
## [API Docs](./docs/api/index.md)
|
667
|
+
|
649
668
|
## License
|
650
669
|
|
651
|
-
Note: this project provides front
|
670
|
+
Note: this project provides front-end dependencies and uses licensed components listed in the next section; thus, licenses for those components are required during development. Contact [Genesis Global](https://genesis.global/contact-us/) for more details.
|
652
671
|
|
653
672
|
### Licensed components
|
654
673
|
Genesis low-code platform
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@genesislcap/foundation-store",
|
3
3
|
"description": "Genesis Foundation Store",
|
4
|
-
"version": "14.
|
4
|
+
"version": "14.161.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -27,19 +27,19 @@
|
|
27
27
|
"test:coverage": "genx test --coverage"
|
28
28
|
},
|
29
29
|
"devDependencies": {
|
30
|
-
"@genesislcap/foundation-testing": "14.
|
31
|
-
"@genesislcap/genx": "14.
|
32
|
-
"@genesislcap/rollup-builder": "14.
|
33
|
-
"@genesislcap/ts-builder": "14.
|
34
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
35
|
-
"@genesislcap/vite-builder": "14.
|
36
|
-
"@genesislcap/webpack-builder": "14.
|
30
|
+
"@genesislcap/foundation-testing": "14.161.0",
|
31
|
+
"@genesislcap/genx": "14.161.0",
|
32
|
+
"@genesislcap/rollup-builder": "14.161.0",
|
33
|
+
"@genesislcap/ts-builder": "14.161.0",
|
34
|
+
"@genesislcap/uvu-playwright-builder": "14.161.0",
|
35
|
+
"@genesislcap/vite-builder": "14.161.0",
|
36
|
+
"@genesislcap/webpack-builder": "14.161.0",
|
37
37
|
"rimraf": "^3.0.2"
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@genesislcap/foundation-events": "14.
|
41
|
-
"@genesislcap/foundation-logger": "14.
|
42
|
-
"@genesislcap/foundation-utils": "14.
|
40
|
+
"@genesislcap/foundation-events": "14.161.0",
|
41
|
+
"@genesislcap/foundation-logger": "14.161.0",
|
42
|
+
"@genesislcap/foundation-utils": "14.161.0",
|
43
43
|
"@microsoft/fast-element": "^1.12.0",
|
44
44
|
"@microsoft/fast-foundation": "^2.49.4",
|
45
45
|
"@microsoft/fast-web-utilities": "^5.4.1",
|
@@ -55,5 +55,5 @@
|
|
55
55
|
"publishConfig": {
|
56
56
|
"access": "public"
|
57
57
|
},
|
58
|
-
"gitHead": "
|
58
|
+
"gitHead": "75ef6861f287624c5efcee0f3ca24d1c167102d3"
|
59
59
|
}
|