@openfin/core-web 0.45.42 → 0.45.44
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/out/api-client.cjs.js +1 -1
- package/out/api-client.esm.js +1 -1
- package/out/docs/assets/icons.js +1 -1
- package/out/docs/assets/icons.svg +1 -1
- package/out/docs/assets/main.js +1 -1
- package/out/docs/assets/style.css +66 -21
- package/out/docs/documents/OpenFin_Web_Application_Developer_Guide.html +4 -4
- package/out/docs/documents/Platform_Developer_Guide.html +7 -7
- package/out/docs/functions/_openfin_core_web.connect.html +6 -6
- package/out/docs/index.html +1 -1
- package/out/docs/modules/_openfin_core_web.html +3 -3
- package/out/docs/modules/_openfin_core_web_iframe_broker.html +3 -3
- package/out/docs/types/_openfin_core_web.BaseConfig.html +2 -2
- package/out/docs/types/_openfin_core_web.InheritModeConnectConfig.html +2 -2
- package/out/docs/types/_openfin_core_web.StandAloneConnectConfig.html +2 -2
- package/out/docs/types/_openfin_core_web_iframe_broker.ConnectionOptions.html +1 -1
- package/out/docs/variables/_openfin_core_web_shared_worker.default.html +1 -1
- package/out/iframe-broker.cjs.js +1 -1
- package/out/iframe-broker.esm.js +1 -1
- package/out/main-320ba966.js +1 -0
- package/out/main-53e51444.js +1 -0
- package/out/main-5e192b1a.js +3 -0
- package/out/main-c6588e30.js +3 -0
- package/out/shared-worker.js +1 -1
- package/package.json +64 -58
- package/out/main-3265ad5b.js +0 -1
- package/out/main-dcd7898b.js +0 -3
- package/out/main-dfeb9386.js +0 -3
- package/out/main-f8d740b3.js +0 -1
package/package.json
CHANGED
|
@@ -1,62 +1,68 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"import": "./out/iframe-broker.esm.js",
|
|
22
|
-
"require": "./out/iframe-broker.cjs.js"
|
|
23
|
-
},
|
|
24
|
-
"./shared-worker": "./out/shared-worker.js",
|
|
25
|
-
"./styles.css": "./out/styles.css"
|
|
2
|
+
"name": "@openfin/core-web",
|
|
3
|
+
"version": "0.45.44",
|
|
4
|
+
"description": "",
|
|
5
|
+
"private": false,
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"./out/*",
|
|
11
|
+
"./docs/*"
|
|
12
|
+
],
|
|
13
|
+
"module": "./out/api-client.esm.js",
|
|
14
|
+
"main": "./out/api-client.cjs.js",
|
|
15
|
+
"types": "./out/api-client.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./out/api-client.d.ts",
|
|
19
|
+
"import": "./out/api-client.esm.js",
|
|
20
|
+
"require": "./out/api-client.cjs.js"
|
|
26
21
|
},
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"build:lib:cjs": "rollup --config rollup.config.mjs --name api-client --format cjs",
|
|
32
|
-
"build:broker:esm": "rollup --config rollup.config.mjs --name iframe-broker --format esm",
|
|
33
|
-
"build:broker:cjs": "rollup --config rollup.config.mjs --name iframe-broker --format cjs",
|
|
34
|
-
"build:worker": "webpack --env production",
|
|
35
|
-
"build:rollup": "run-s build:lib:* build:broker:*",
|
|
36
|
-
"build:docs": "typedoc --tsconfig tsconfig.json",
|
|
37
|
-
"build:css": "ts-node scripts/bundle-css.ts",
|
|
38
|
-
"build": "run-p build:worker build:rollup build:docs",
|
|
39
|
-
"postbuild": "npm run build:css",
|
|
40
|
-
"dev:worker": "webpack --env development",
|
|
41
|
-
"postdev": "npm run postbuild",
|
|
42
|
-
"dev": "run-p dev:worker build:rollup build:docs",
|
|
43
|
-
"watch": "echo [WARNING] Web Interop does not support watch due to ApiExtractor incompatibility",
|
|
44
|
-
"ci:prepack": "of-npm prepack",
|
|
45
|
-
"ci:pack": "npm pack",
|
|
46
|
-
"ci:postpack": "of-npm postpack",
|
|
47
|
-
"version:update": "of-npm version --bump patch '$MAJOR.$RMAJOR.$PATCH'",
|
|
48
|
-
"release-notes:create": "node scripts/create-release-notes.js"
|
|
22
|
+
"./iframe-broker": {
|
|
23
|
+
"types": "./out/iframe-broker.d.ts",
|
|
24
|
+
"import": "./out/iframe-broker.esm.js",
|
|
25
|
+
"require": "./out/iframe-broker.cjs.js"
|
|
49
26
|
},
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
27
|
+
"./shared-worker": "./out/shared-worker.js",
|
|
28
|
+
"./styles.css": "./out/styles.css"
|
|
29
|
+
},
|
|
30
|
+
"author": "",
|
|
31
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"buffer": "6.0.3",
|
|
34
|
+
"events": "^3.3.0",
|
|
35
|
+
"he": "^1.2.0",
|
|
36
|
+
"lodash": "4.17.21",
|
|
37
|
+
"url": "^0.11.4",
|
|
38
|
+
"uuid": "^8.3.2",
|
|
39
|
+
"tslib": "2.8.1"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@openfin/core": "45.100.45"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"prebuild": "rimraf out",
|
|
46
|
+
"test": "vitest --run",
|
|
47
|
+
"build:lib:esm": "rollup --config rollup.config.mjs --name api-client --format esm",
|
|
48
|
+
"build:lib:cjs": "rollup --config rollup.config.mjs --name api-client --format cjs",
|
|
49
|
+
"build:broker:esm": "rollup --config rollup.config.mjs --name iframe-broker --format esm",
|
|
50
|
+
"build:broker:cjs": "rollup --config rollup.config.mjs --name iframe-broker --format cjs",
|
|
51
|
+
"build:worker": "webpack --env production",
|
|
52
|
+
"build:rollup": "run-s build:lib:* build:broker:*",
|
|
53
|
+
"build:docs": "typedoc --tsconfig tsconfig.json",
|
|
54
|
+
"build:css": "ts-node scripts/bundle-css.ts",
|
|
55
|
+
"build": "run-p build:worker build:rollup build:docs",
|
|
56
|
+
"postbuild": "pnpm run build:css",
|
|
57
|
+
"dev:worker": "webpack --env development",
|
|
58
|
+
"postdev": "pnpm run postbuild",
|
|
59
|
+
"dev": "run-p dev:worker build:rollup build:docs",
|
|
60
|
+
"watch": "echo [WARNING] Web Interop does not support watch due to ApiExtractor incompatibility",
|
|
61
|
+
"ci:prepack": "of-npm prepack",
|
|
62
|
+
"ci:pack": "pnpm pack",
|
|
63
|
+
"ci:postpack": "of-npm postpack",
|
|
64
|
+
"version:update": "of-npm version --bump patch '$MAJOR.$RMAJOR.$PATCH'",
|
|
65
|
+
"release-notes:create": "node scripts/create-release-notes.js",
|
|
66
|
+
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
67
|
+
}
|
|
62
68
|
}
|