@umbraco-cms/backoffice 1.0.0-next.3b4f30db → 1.0.0-next.426eb58e
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/backend-api.d.ts +2 -8
- package/context-api.d.ts +3 -3
- package/controller.d.ts +1 -1
- package/custom-elements.json +1176 -1008
- package/element.d.ts +4 -4
- package/entity-action.d.ts +6 -13
- package/extensions-api.d.ts +5 -4
- package/extensions-registry.d.ts +174 -13
- package/modal.d.ts +20 -11
- package/models.d.ts +1 -1
- package/notification.d.ts +1 -1
- package/observable-api.d.ts +14 -2
- package/package.json +1 -1
- package/picker-input.d.ts +24 -0
- package/property-editor.d.ts +1 -1
- package/repository.d.ts +38 -7
- package/resources.d.ts +24 -15
- package/router.d.ts +4 -9
- package/sorter.d.ts +103 -0
- package/store.d.ts +42 -47
- package/umbraco-package-schema.json +2439 -0
- package/utils.d.ts +1 -1
- package/vscode-html-custom-data.json +324 -278
- package/workspace.d.ts +2 -2
package/backend-api.d.ts
CHANGED
|
@@ -40,15 +40,9 @@ interface OnCancel {
|
|
|
40
40
|
(cancelHandler: () => void): void;
|
|
41
41
|
}
|
|
42
42
|
declare class CancelablePromise<T> implements Promise<T> {
|
|
43
|
-
|
|
44
|
-
private _isResolved;
|
|
45
|
-
private _isRejected;
|
|
46
|
-
private _isCancelled;
|
|
47
|
-
private readonly _cancelHandlers;
|
|
48
|
-
private readonly _promise;
|
|
49
|
-
private _resolve?;
|
|
50
|
-
private _reject?;
|
|
43
|
+
#private;
|
|
51
44
|
constructor(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void, onCancel: OnCancel) => void);
|
|
45
|
+
get [Symbol.toStringTag](): string;
|
|
52
46
|
then<TResult1 = T, TResult2 = never>(onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null): Promise<TResult1 | TResult2>;
|
|
53
47
|
catch<TResult = never>(onRejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null): Promise<T | TResult>;
|
|
54
48
|
finally(onFinally?: (() => void) | null): Promise<T>;
|
package/context-api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { UmbControllerHostElement, UmbControllerInterface } from '
|
|
2
|
-
import { UmbWorkspaceContextInterface } from '
|
|
3
|
-
import { BaseEntity } from '
|
|
1
|
+
import { UmbControllerHostElement, UmbControllerInterface } from '@umbraco-cms/backoffice/controller';
|
|
2
|
+
import { UmbWorkspaceContextInterface } from '@umbraco-cms/backoffice/workspace';
|
|
3
|
+
import { BaseEntity } from '@umbraco-cms/backoffice/models';
|
|
4
4
|
|
|
5
5
|
declare class UmbContextToken<T = unknown> {
|
|
6
6
|
protected alias: string;
|
package/controller.d.ts
CHANGED