@genesislcap/foundation-events 14.160.0 → 14.161.0
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/README.md +22 -3
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
`foundation-events` contains strongly typed [event emitting utilities](./src/eventEmitter/README.md) and interfaces.
|
|
4
4
|
|
|
5
|
-
### [API Docs](./docs/api/index.md)
|
|
6
|
-
|
|
7
5
|
- Contains [event emitting utilities](./src/eventEmitter/README.md).
|
|
8
6
|
- Contains common system level:
|
|
9
7
|
- Custom event types
|
|
@@ -88,9 +86,30 @@ To denote the type of "statistic":
|
|
|
88
86
|
[](https://lerna.js.org/)
|
|
89
87
|
[](https://www.typescriptlang.org/)
|
|
90
88
|
|
|
89
|
+
|
|
90
|
+
## Installation
|
|
91
|
+
|
|
92
|
+
To enable this module in your application, follow the steps below.
|
|
93
|
+
|
|
94
|
+
1. Add `@genesislcap/foundation-events` 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.
|
|
95
|
+
|
|
96
|
+
```json
|
|
97
|
+
{
|
|
98
|
+
...
|
|
99
|
+
"dependencies": {
|
|
100
|
+
...
|
|
101
|
+
"@genesislcap/foundation-events": "latest"
|
|
102
|
+
...
|
|
103
|
+
},
|
|
104
|
+
...
|
|
105
|
+
}
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## [API Docs](./docs/api/index.md)
|
|
109
|
+
|
|
91
110
|
## License
|
|
92
111
|
|
|
93
|
-
Note: this project provides front
|
|
112
|
+
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.
|
|
94
113
|
|
|
95
114
|
### Licensed components
|
|
96
115
|
Genesis low-code platform
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-events",
|
|
3
3
|
"description": "Genesis Foundation Events",
|
|
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",
|
|
@@ -40,17 +40,17 @@
|
|
|
40
40
|
"test:debug": "genx test --debug"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@genesislcap/foundation-testing": "14.
|
|
44
|
-
"@genesislcap/genx": "14.
|
|
45
|
-
"@genesislcap/rollup-builder": "14.
|
|
46
|
-
"@genesislcap/ts-builder": "14.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
48
|
-
"@genesislcap/vite-builder": "14.
|
|
49
|
-
"@genesislcap/webpack-builder": "14.
|
|
43
|
+
"@genesislcap/foundation-testing": "14.161.0",
|
|
44
|
+
"@genesislcap/genx": "14.161.0",
|
|
45
|
+
"@genesislcap/rollup-builder": "14.161.0",
|
|
46
|
+
"@genesislcap/ts-builder": "14.161.0",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "14.161.0",
|
|
48
|
+
"@genesislcap/vite-builder": "14.161.0",
|
|
49
|
+
"@genesislcap/webpack-builder": "14.161.0",
|
|
50
50
|
"rimraf": "^3.0.2"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@genesislcap/foundation-logger": "14.
|
|
53
|
+
"@genesislcap/foundation-logger": "14.161.0",
|
|
54
54
|
"@microsoft/fast-element": "^1.12.0",
|
|
55
55
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
56
56
|
"tslib": "^2.3.1"
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "75ef6861f287624c5efcee0f3ca24d1c167102d3"
|
|
67
67
|
}
|