@openfin/workspace-platform 4.24.0 → 4.25.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.
|
@@ -610,8 +610,21 @@ export declare type BrowserOverrideCallback = OpenFin.OverrideCallback<Workspace
|
|
|
610
610
|
* Configuration for initializing a Browser.
|
|
611
611
|
*/
|
|
612
612
|
export interface BrowserInitConfig {
|
|
613
|
+
/**
|
|
614
|
+
* Default options for creating a new browser window. Any option not included in WorkspacePlatform.getCurrentSync().Browser.createWindow(options) call will default to the value provided in this field.
|
|
615
|
+
*/
|
|
613
616
|
defaultWindowOptions?: BrowserCreateWindowRequest;
|
|
617
|
+
/**
|
|
618
|
+
* The default options when creating a new browser window. Any option not included in WorkspacePlatform.getCurrentSync().Browser.createView(options) call will default to the value provided in this field.
|
|
619
|
+
*/
|
|
614
620
|
defaultViewOptions?: OpenFin.ViewOptions;
|
|
621
|
+
/**
|
|
622
|
+
* Override workspace platform behavior
|
|
623
|
+
*/
|
|
615
624
|
overrideCallback?: BrowserOverrideCallback;
|
|
625
|
+
/**
|
|
626
|
+
* Override workspace platform interop behavior
|
|
627
|
+
* https://cdn.openfin.co/docs/javascript/stable/InteropBroker.html
|
|
628
|
+
*/
|
|
616
629
|
interopOverride?: OpenFin.OverrideCallback<InteropBroker, InteropBroker>;
|
|
617
630
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@openfin/workspace-platform","description":"An API for creating your own Workspace platform.","contributors":[],"version":"4.
|
|
1
|
+
{"name":"@openfin/workspace-platform","description":"An API for creating your own Workspace platform.","contributors":[],"version":"4.25.0","main":"index.ts","scripts":{"deploy":"npm run deploy:npm && npm run deploy:docs","deploy:npm":"cd out && npm publish","deploy:docs":"aws s3 cp --recursive ./docs/ s3://cdn.openfin.co/workspace/api/platform/docs/","deploy:next":"npm run deploy:next:npm && npm run deploy:next:docs","deploy:next:npm":"cd out && npm publish --tag next","deploy:next:docs":"aws s3 cp --recursive ./docs/ s3://cdn.openfin.co/workspace/api/platform/docs/next/","cp:readme":"copyfiles README.md out","cp:package":"node ../common/scripts/cp-package.js","cp:next:package":"node ../common/scripts/cp-package-next.js","create:rootIndex":"node ../common/scripts/cp-root-index.js","package":"npm run cp:readme && npm run cp:package && npm run create:rootIndex","package:next":"npm run cp:readme && npm run cp:next:package && npm run create:rootIndex","clean":"rimraf ./out && rimraf ./docs","build:common":"cross-env ENV=prod webpack --mode=production --config ./webpack.common.config.js","build":"npm run clean && npm run build:common && npm run build:docs","build:docs":"typedoc --tsconfig ./tsconfig.json --readme none --disableSources ./src/index.ts","test":"jest --watch --colors","test:ci":"jest"},"keywords":["client","api","workspace","platform"],"license":"MIT"}
|