@genesislcap/foundation-openfin 14.214.1-FUI-2233.1
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/MODULE_FEDERATION.md +11 -0
- package/README.md +59 -0
- package/dist/dts/index.d.ts +8 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/dts/notifications/openfin-notifications-listener.d.ts +125 -0
- package/dist/dts/notifications/openfin-notifications-listener.d.ts.map +1 -0
- package/dist/dts/tsdoc-metadata.json +11 -0
- package/dist/dts/utils.d.ts +7 -0
- package/dist/dts/utils.d.ts.map +1 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/notifications/openfin-notifications-listener.js +148 -0
- package/dist/esm/utils.js +6 -0
- package/dist/foundation-openfin.api.json +574 -0
- package/dist/foundation-openfin.d.ts +136 -0
- package/docs/.gitattributes +2 -0
- package/docs/api/foundation-openfin.isopenfin.md +16 -0
- package/docs/api/foundation-openfin.md +24 -0
- package/docs/api/foundation-openfin.openfinnotifications.connectedcallback.md +15 -0
- package/docs/api/foundation-openfin.openfinnotifications.md +33 -0
- package/docs/api/foundation-openfin.openfinnotifications.mode.md +19 -0
- package/docs/api/foundation-openfin.openfinnotifications.notificationsplatform.md +40 -0
- package/docs/api/foundation-openfin.openfinnotifications.shownotificationtoast.md +22 -0
- package/docs/api/foundation-openfin.openfinnotifications.toast.md +19 -0
- package/docs/api/foundation-openfin.openfinnotifications.toastbuttons.md +71 -0
- package/docs/api/foundation-openfin.openfintoastbutton.cta.md +11 -0
- package/docs/api/foundation-openfin.openfintoastbutton.md +25 -0
- package/docs/api/foundation-openfin.openfintoastbutton.message.md +11 -0
- package/docs/api/foundation-openfin.openfintoastbutton.task.md +11 -0
- package/docs/api/index.md +12 -0
- package/docs/api-report.md +42 -0
- package/license.txt +46 -0
- package/package.json +96 -0
- package/tsdoc.json +20 -0
package/package.json
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@genesislcap/foundation-openfin",
|
|
3
|
+
"description": "Genesis Foundation Openfin",
|
|
4
|
+
"version": "14.214.1-FUI-2233.1",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"license": "SEE LICENSE IN license.txt",
|
|
7
|
+
"main": "dist/esm/index.js",
|
|
8
|
+
"types": "dist/dts/index.d.ts",
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=20.0.0"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/dts/index.d.ts",
|
|
15
|
+
"default": "./dist/esm/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./testing": {
|
|
18
|
+
"types": "./dist/dts/testing/index.d.ts",
|
|
19
|
+
"default": "./dist/esm/testing/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./package.json": "./package.json"
|
|
22
|
+
},
|
|
23
|
+
"typesVersions": {
|
|
24
|
+
"*": {
|
|
25
|
+
"testing": [
|
|
26
|
+
"./dist/dts/testing/index.d.ts"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"config": {
|
|
31
|
+
"PORT": 4000
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "genx build -b ts",
|
|
35
|
+
"build:rollup": "genx build -b rollup",
|
|
36
|
+
"build:rollup:stats": "genx analyze -b rollup",
|
|
37
|
+
"build:webpack": "genx build",
|
|
38
|
+
"build:webpack:stats": "genx analyze",
|
|
39
|
+
"circular": "npx -y madge --extensions ts --circular ./src",
|
|
40
|
+
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
41
|
+
"dev": "npm run dev:tsc",
|
|
42
|
+
"dev:rollup": "genx dev -b rollup",
|
|
43
|
+
"dev:tsc": "genx dev -b ts",
|
|
44
|
+
"dev:webpack": "genx dev -b webpack",
|
|
45
|
+
"serve": "genx serve",
|
|
46
|
+
"test": "genx test",
|
|
47
|
+
"test:coverage": "genx test --coverage",
|
|
48
|
+
"test:coverage:browser": "genx test --coverage --browser",
|
|
49
|
+
"test:unit:browser": "genx test --browser",
|
|
50
|
+
"test:unit:browser:watch": "genx test --browser --watch",
|
|
51
|
+
"test:unit:watch": "genx test --watch",
|
|
52
|
+
"test:debug": "genx test --debug"
|
|
53
|
+
},
|
|
54
|
+
"madge": {
|
|
55
|
+
"detectiveOptions": {
|
|
56
|
+
"ts": {
|
|
57
|
+
"skipTypeImports": true
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@genesislcap/foundation-testing": "14.211.5",
|
|
63
|
+
"@genesislcap/genx": "14.211.5",
|
|
64
|
+
"@genesislcap/rollup-builder": "14.211.5",
|
|
65
|
+
"@genesislcap/ts-builder": "14.211.5",
|
|
66
|
+
"@genesislcap/uvu-playwright-builder": "14.211.5",
|
|
67
|
+
"@genesislcap/vite-builder": "14.211.5",
|
|
68
|
+
"@genesislcap/webpack-builder": "14.211.5",
|
|
69
|
+
"rimraf": "^5.0.0",
|
|
70
|
+
"sinon": "^17.0.1"
|
|
71
|
+
},
|
|
72
|
+
"dependencies": {
|
|
73
|
+
"@finos/fdc3": "2.1.1",
|
|
74
|
+
"@genesislcap/foundation-logger": "14.211.5",
|
|
75
|
+
"@genesislcap/foundation-notifications": "14.211.5",
|
|
76
|
+
"@genesislcap/foundation-ui": "14.211.5",
|
|
77
|
+
"@genesislcap/foundation-utils": "14.211.5",
|
|
78
|
+
"@genesislcap/web-core": "14.211.5",
|
|
79
|
+
"@interopio/desktop": "^6.3.1",
|
|
80
|
+
"@microsoft/fast-element": "^1.12.0",
|
|
81
|
+
"@microsoft/fast-foundation": "^2.49.4",
|
|
82
|
+
"@openfin/workspace": "^19.1.23",
|
|
83
|
+
"@openfin/workspace-platform": "^19.1.23",
|
|
84
|
+
"rxjs": "^7.5.4",
|
|
85
|
+
"tslib": "^2.3.1"
|
|
86
|
+
},
|
|
87
|
+
"repository": {
|
|
88
|
+
"type": "git",
|
|
89
|
+
"url": "git+https://github.com/genesislcap/foundation-ui.git",
|
|
90
|
+
"directory": "packages/foundation/foundation-fdc3"
|
|
91
|
+
},
|
|
92
|
+
"publishConfig": {
|
|
93
|
+
"access": "public"
|
|
94
|
+
},
|
|
95
|
+
"gitHead": "d50911f073a134b4f6dc338df4220f57bb375d3a"
|
|
96
|
+
}
|
package/tsdoc.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
|
|
3
|
+
"extends": ["@microsoft/api-extractor/extends/tsdoc-base.json"],
|
|
4
|
+
"tagDefinitions": [
|
|
5
|
+
{
|
|
6
|
+
"tagName": "@tagname",
|
|
7
|
+
"syntaxKind": "block",
|
|
8
|
+
"allowMultiple": true
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"tagName": "@fires",
|
|
12
|
+
"syntaxKind": "block",
|
|
13
|
+
"allowMultiple": true
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"supportForTags": {
|
|
17
|
+
"@tagname": true,
|
|
18
|
+
"@fires": true
|
|
19
|
+
}
|
|
20
|
+
}
|