Skip to content

1.0.0-beta.26 (@scion/workbench-client)

Compare
Choose a tag to compare
@github-actions 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 the WorkbenchPopup handle. Instead, pass an Error object to the close 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'));