@genesislcap/foundation-state-machine 14.160.1 → 14.161.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +22 -3
  2. package/package.json +12 -12
package/README.md CHANGED
@@ -7,8 +7,6 @@ State machines in `foundation-ui` are built upon the [xState](https://github.com
7
7
 
8
8
  For details on how machines work see the API Docs and the v5+ version of the [xstate docs](https://stately.ai/docs/xstate-v5).
9
9
 
10
- ### [API Docs](./docs/api/index.md)
11
-
12
10
  ### Pre-built state machines
13
11
 
14
12
  Overtime this package will provide a number of pre-built machines that offer common functionality. Visit their README files and API Docs for more information.
@@ -18,9 +16,30 @@ Overtime this package will provide a number of pre-built machines that offer com
18
16
 
19
17
  Domain focused machines like `AuthMachine` will live in different packages.
20
18
 
19
+
20
+ ## Installation
21
+
22
+ To enable this module in your application, follow the steps below.
23
+
24
+ 1. Add `@genesislcap/foundation-state-machine` 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.
25
+
26
+ ```json
27
+ {
28
+ ...
29
+ "dependencies": {
30
+ ...
31
+ "@genesislcap/foundation-state-machine": "latest"
32
+ ...
33
+ },
34
+ ...
35
+ }
36
+ ```
37
+
38
+ ## [API Docs](./docs/api/index.md)
39
+
21
40
  ## License
22
41
 
23
- 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.
42
+ 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.
24
43
 
25
44
  ### Licensed components
26
45
  Genesis low-code platform
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-state-machine",
3
3
  "description": "Genesis Foundation State Machine",
4
- "version": "14.160.1",
4
+ "version": "14.161.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -44,19 +44,19 @@
44
44
  "test": "genx test"
45
45
  },
46
46
  "devDependencies": {
47
- "@genesislcap/foundation-testing": "14.160.1",
48
- "@genesislcap/genx": "14.160.1",
49
- "@genesislcap/rollup-builder": "14.160.1",
50
- "@genesislcap/ts-builder": "14.160.1",
51
- "@genesislcap/uvu-playwright-builder": "14.160.1",
52
- "@genesislcap/vite-builder": "14.160.1",
53
- "@genesislcap/webpack-builder": "14.160.1",
47
+ "@genesislcap/foundation-testing": "14.161.0",
48
+ "@genesislcap/genx": "14.161.0",
49
+ "@genesislcap/rollup-builder": "14.161.0",
50
+ "@genesislcap/ts-builder": "14.161.0",
51
+ "@genesislcap/uvu-playwright-builder": "14.161.0",
52
+ "@genesislcap/vite-builder": "14.161.0",
53
+ "@genesislcap/webpack-builder": "14.161.0",
54
54
  "rimraf": "^3.0.2"
55
55
  },
56
56
  "dependencies": {
57
- "@genesislcap/foundation-comms": "14.160.1",
58
- "@genesislcap/foundation-logger": "14.160.1",
59
- "@genesislcap/foundation-utils": "14.160.1",
57
+ "@genesislcap/foundation-comms": "14.161.0",
58
+ "@genesislcap/foundation-logger": "14.161.0",
59
+ "@genesislcap/foundation-utils": "14.161.0",
60
60
  "@microsoft/fast-element": "^1.12.0",
61
61
  "@microsoft/fast-foundation": "^2.49.4",
62
62
  "cockatiel": "^3.1.1",
@@ -72,5 +72,5 @@
72
72
  "publishConfig": {
73
73
  "access": "public"
74
74
  },
75
- "gitHead": "598e3599570a21709dfdc8e47adf5c77e5feff80"
75
+ "gitHead": "75ef6861f287624c5efcee0f3ca24d1c167102d3"
76
76
  }