@umbraco-cms/backoffice 1.0.0-next.e3cf00d3 → 1.0.0-next.ea0eb63c
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/collection.d.ts +9 -3
- package/context-api.d.ts +2 -2
- package/custom-elements.json +4452 -4452
- package/modal.d.ts +3 -4
- package/models.d.ts +3 -87
- package/package.json +1 -1
- package/repository.d.ts +1 -1
- package/section.d.ts +1 -3
- package/tree.d.ts +14 -0
- package/vscode-html-custom-data.json +1916 -1916
- package/workspace.d.ts +2 -2
package/workspace.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as rxjs from 'rxjs';
|
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller';
|
|
4
4
|
import { UmbWorkspaceContextInterface as UmbWorkspaceContextInterface$1 } from '@umbraco-cms/backoffice/workspace';
|
|
5
|
-
import {
|
|
5
|
+
import { UmbEntityBase } from '@umbraco-cms/backoffice/models';
|
|
6
6
|
|
|
7
7
|
interface UmbWorkspaceContextInterface<DataType = unknown> {
|
|
8
8
|
host: UmbControllerHostElement;
|
|
@@ -23,7 +23,7 @@ interface UmbEntityWorkspaceContextInterface<EntityType = unknown> extends UmbWo
|
|
|
23
23
|
save(): Promise<void>;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
declare abstract class UmbWorkspaceContext<T, EntityType extends
|
|
26
|
+
declare abstract class UmbWorkspaceContext<T, EntityType extends UmbEntityBase> implements UmbEntityWorkspaceContextInterface<EntityType> {
|
|
27
27
|
#private;
|
|
28
28
|
host: UmbControllerHostElement;
|
|
29
29
|
repository: T;
|