1.0.0-beta.26 (@scion/workbench-client)
github-actions
released this
11 Sep 11:21
·
52 commits
to master
since this release
1.0.0-beta.26 (2024-09-11)
Features
- workbench-client/popup: support returning result on focus loss (ce5089e)
BREAKING CHANGES
- workbench-client/popup: The method
closeWithError
has been removed from theWorkbenchPopup
handle. Instead, pass anError
object to theclose
method.
Before migration:
import {Beans} from '@scion/toolkit/bean-manager';
import {WorkbenchPopup} from '@scion/workbench-client';
Beans.get(WorkbenchPopup).closeWithError('some error');
After migration:
import {Beans} from '@scion/toolkit/bean-manager';
import {WorkbenchPopup} from '@scion/workbench-client';
Beans.get(WorkbenchPopup).close(new Error('some error'));