@openfin/core-web 0.38.29
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/LICENSE.md +4 -0
- package/README.md +40 -0
- package/docs/platform-developer-guide.md +115 -0
- package/docs/web-application-developer-guide.md +125 -0
- package/out/api-client.d.ts +122 -0
- package/out/api-client.js +1 -0
- package/out/docs/@openfin/core-web/README.md +48 -0
- package/out/docs/@openfin/core-web/functions/connect.md +46 -0
- package/out/docs/@openfin/core-web/iframe-broker/README.md +35 -0
- package/out/docs/@openfin/core-web/iframe-broker/functions/init.md +17 -0
- package/out/docs/@openfin/core-web/iframe-broker/functions/rejectConnections.md +19 -0
- package/out/docs/@openfin/core-web/iframe-broker/type-aliases/ConnectionOptions.md +23 -0
- package/out/docs/@openfin/core-web/shared-worker/README.md +16 -0
- package/out/docs/@openfin/core-web/shared-worker/variables/default.md +9 -0
- package/out/docs/@openfin/core-web/type-aliases/BaseConnectionOptions.md +29 -0
- package/out/docs/@openfin/core-web/type-aliases/ConnectionConfig.md +9 -0
- package/out/docs/@openfin/core-web/type-aliases/InheritModeConnectConfig.md +42 -0
- package/out/docs/@openfin/core-web/type-aliases/StandAloneConnectonConfig.md +31 -0
- package/out/docs/@openfin/core-web/type-aliases/WebCreateLayoutOptions.md +15 -0
- package/out/docs/@openfin/core-web/type-aliases/WebLayoutComponent.md +23 -0
- package/out/docs/@openfin/core-web/type-aliases/WebLayoutInitOptions.md +15 -0
- package/out/docs/@openfin/core-web/type-aliases/WebLayoutOptions.md +15 -0
- package/out/docs/@openfin/core-web/type-aliases/WebLayoutPlatformOptions.md +15 -0
- package/out/docs/@openfin/core-web/type-aliases/WebLayoutSnapshot.md +15 -0
- package/out/docs/README.md +11 -0
- package/out/iframe-broker.d.ts +14 -0
- package/out/iframe-broker.js +1 -0
- package/out/main-95b39f26.js +1 -0
- package/out/main-ca728fd0.js +1 -0
- package/out/shared-worker.js +1 -0
- package/out/styles.css +737 -0
- package/package.json +58 -0
package/package.json
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
{
|
2
|
+
"name": "@openfin/core-web",
|
3
|
+
"version": "0.38.29",
|
4
|
+
"description": "",
|
5
|
+
"private": false,
|
6
|
+
"files": [
|
7
|
+
"./out/*",
|
8
|
+
"./docs/*"
|
9
|
+
],
|
10
|
+
"main": "./out/api-client.js",
|
11
|
+
"types": "./out/api-client.d.ts",
|
12
|
+
"exports": {
|
13
|
+
".": {
|
14
|
+
"types": "./out/api-client.d.ts",
|
15
|
+
"default": "./out/api-client.js"
|
16
|
+
},
|
17
|
+
"./iframe-broker": {
|
18
|
+
"types": "./out/iframe-broker.d.ts",
|
19
|
+
"default": "./out/iframe-broker.js"
|
20
|
+
},
|
21
|
+
"./shared-worker": "./out/shared-worker.js",
|
22
|
+
"./styles.css": "./out/styles.css"
|
23
|
+
},
|
24
|
+
"scripts": {
|
25
|
+
"prebuild": "rimraf out",
|
26
|
+
"test": "vitest --run",
|
27
|
+
"build:lib": "rollup --config rollup/rollup.config.client.mjs",
|
28
|
+
"build:broker": "rollup --config rollup/rollup.config.broker.mjs",
|
29
|
+
"build:worker": "webpack --env production",
|
30
|
+
"build:rollup": "npm run build:lib && npm run build:broker",
|
31
|
+
"build:docs": "typedoc --tsconfig tsconfig.json",
|
32
|
+
"build": "run-p build:worker build:rollup build:docs",
|
33
|
+
"postbuild": "ts-node scripts/bundle-css.ts",
|
34
|
+
"dev:lib": "rollup --config rollup/rollup.config.client.mjs --environment MODE:development",
|
35
|
+
"dev:worker": "webpack --env development",
|
36
|
+
"dev:broker": "rollup --config rollup/rollup.config.broker.mjs --environment MODE:development",
|
37
|
+
"postdev": "npm run postbuild",
|
38
|
+
"dev": "run-p dev:*",
|
39
|
+
"watch:lib": "rollup --config rollup/rollup.config.client.mjs --watch --environment MODE:development",
|
40
|
+
"watch:broker": "rollup --config rollup/rollup.config.broker.mjs --watch --environment MODE:development",
|
41
|
+
"watch:worker": "webpack --env development --watch",
|
42
|
+
"watch": "run-p watch:*",
|
43
|
+
"ci:prepublish": "of-npm prepublish",
|
44
|
+
"ci:postpublish": "of-npm postpublish",
|
45
|
+
"ci:publish": "npm publish"
|
46
|
+
},
|
47
|
+
"author": "",
|
48
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
49
|
+
"dependencies": {
|
50
|
+
"events": "^3.3.0",
|
51
|
+
"lodash": "4.17.21",
|
52
|
+
"golden-layout": "2.6.0",
|
53
|
+
"uuid": "^8.3.2"
|
54
|
+
},
|
55
|
+
"peerDependencies": {
|
56
|
+
"@openfin/core": "38.81.29"
|
57
|
+
}
|
58
|
+
}
|