@umbraco-cms/backoffice 1.0.0-next.2a93cc95 → 1.0.0-next.2d232d0c
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 +594 -272
- package/context-api.d.ts +76 -6
- package/controller.d.ts +6 -5
- package/custom-elements.json +8055 -0
- package/element.d.ts +3 -3
- package/entity-action.d.ts +30 -13
- package/extensions-api.d.ts +4 -3
- package/extensions-registry.d.ts +20 -13
- package/modal.d.ts +286 -14
- package/models.d.ts +13 -8
- package/observable-api.d.ts +44 -15
- package/package.json +6 -3
- package/repository.d.ts +73 -45
- package/resources.d.ts +3 -3
- package/router.d.ts +380 -0
- package/store.d.ts +90 -44
- package/utils.d.ts +3 -1
- package/vscode-html-custom-data.json +3300 -0
- package/workspace.d.ts +19 -12
package/element.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { HTMLElementConstructor } from './models';
|
|
3
|
-
import {
|
|
3
|
+
import { UmbControllerHostElement } from './controller';
|
|
4
4
|
import { UmbContextToken, UmbContextProviderController, UmbContextCallback, UmbContextConsumerController } from './context-api';
|
|
5
5
|
import { UmbObserverController } from './observable-api';
|
|
6
6
|
|
|
7
7
|
interface ResolvedContexts {
|
|
8
8
|
[key: string]: any;
|
|
9
9
|
}
|
|
10
|
-
declare class UmbElementMixinInterface extends
|
|
10
|
+
declare class UmbElementMixinInterface extends UmbControllerHostElement {
|
|
11
11
|
observe<T>(source: Observable<T>, callback: (_value: T) => void, unique?: string): UmbObserverController<T>;
|
|
12
12
|
provideContext<R = unknown>(alias: string | UmbContextToken<R>, instance: R): UmbContextProviderController<R>;
|
|
13
13
|
consumeContext<R = unknown>(alias: string | UmbContextToken<R>, callback: UmbContextCallback<R>): UmbContextConsumerController<R>;
|
|
14
14
|
consumeAllContexts(contextAliases: string[], callback: (_instances: ResolvedContexts) => void): void;
|
|
15
15
|
}
|
|
16
|
-
declare const UmbElementMixin: <T extends HTMLElementConstructor
|
|
16
|
+
declare const UmbElementMixin: <T extends HTMLElementConstructor>(superClass: T) => HTMLElementConstructor<UmbElementMixinInterface> & T;
|
|
17
17
|
|
|
18
18
|
export { UmbElementMixin, UmbElementMixinInterface };
|
package/entity-action.d.ts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UmbControllerHostElement } from './controller';
|
|
2
2
|
import { UmbEntityActionBase as UmbEntityActionBase$1 } from './entity-action';
|
|
3
|
+
import { UmbFolderRepository } from './repository';
|
|
3
4
|
|
|
4
5
|
interface UmbAction<RepositoryType = unknown> {
|
|
5
|
-
host:
|
|
6
|
+
host: UmbControllerHostElement;
|
|
6
7
|
repository: RepositoryType;
|
|
7
8
|
execute(): Promise<void>;
|
|
8
9
|
}
|
|
9
10
|
declare class UmbActionBase<RepositoryType> {
|
|
10
|
-
host:
|
|
11
|
+
host: UmbControllerHostElement;
|
|
11
12
|
repository?: RepositoryType;
|
|
12
|
-
constructor(host:
|
|
13
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string);
|
|
13
14
|
}
|
|
14
15
|
|
|
15
16
|
interface UmbEntityAction<RepositoryType> extends UmbAction<RepositoryType> {
|
|
@@ -17,7 +18,8 @@ interface UmbEntityAction<RepositoryType> extends UmbAction<RepositoryType> {
|
|
|
17
18
|
}
|
|
18
19
|
declare class UmbEntityActionBase<RepositoryType> extends UmbActionBase<RepositoryType> {
|
|
19
20
|
unique: string;
|
|
20
|
-
|
|
21
|
+
repositoryAlias: string;
|
|
22
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
21
23
|
}
|
|
22
24
|
|
|
23
25
|
interface UmbEntityBulkAction<RepositoryType = unknown> extends UmbAction<RepositoryType> {
|
|
@@ -26,37 +28,52 @@ interface UmbEntityBulkAction<RepositoryType = unknown> extends UmbAction<Reposi
|
|
|
26
28
|
}
|
|
27
29
|
declare class UmbEntityBulkActionBase<RepositoryType = unknown> extends UmbActionBase<RepositoryType> {
|
|
28
30
|
selection: Array<string>;
|
|
29
|
-
constructor(host:
|
|
31
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, selection: Array<string>);
|
|
30
32
|
setSelection(selection: Array<string>): void;
|
|
31
33
|
}
|
|
32
34
|
|
|
33
35
|
declare class UmbCopyEntityAction<T extends {
|
|
34
36
|
copy(): Promise<void>;
|
|
35
37
|
}> extends UmbEntityActionBase$1<T> {
|
|
36
|
-
constructor(host:
|
|
38
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
37
39
|
execute(): Promise<void>;
|
|
38
40
|
}
|
|
39
41
|
|
|
40
42
|
declare class UmbDeleteEntityAction<T extends {
|
|
41
43
|
delete(unique: string): Promise<void>;
|
|
42
|
-
|
|
44
|
+
requestTreeItems(uniques: Array<string>): any;
|
|
43
45
|
}> extends UmbEntityActionBase$1<T> {
|
|
44
46
|
#private;
|
|
45
|
-
constructor(host:
|
|
47
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
48
|
+
execute(): Promise<void>;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
declare class UmbDeleteFolderEntityAction<T extends {
|
|
52
|
+
deleteFolder(unique: string): Promise<void>;
|
|
53
|
+
requestTreeItems(uniques: Array<string>): any;
|
|
54
|
+
}> extends UmbEntityActionBase$1<T> {
|
|
55
|
+
#private;
|
|
56
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
57
|
+
execute(): Promise<void>;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
declare class UmbFolderUpdateEntityAction<T extends UmbFolderRepository = UmbFolderRepository> extends UmbEntityActionBase$1<T> {
|
|
61
|
+
#private;
|
|
62
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
46
63
|
execute(): Promise<void>;
|
|
47
64
|
}
|
|
48
65
|
|
|
49
66
|
declare class UmbMoveEntityAction<T extends {
|
|
50
67
|
move(): Promise<void>;
|
|
51
68
|
}> extends UmbEntityActionBase$1<T> {
|
|
52
|
-
constructor(host:
|
|
69
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
53
70
|
execute(): Promise<void>;
|
|
54
71
|
}
|
|
55
72
|
|
|
56
73
|
declare class UmbSortChildrenOfEntityAction<T extends {
|
|
57
74
|
sortChildrenOf(): Promise<void>;
|
|
58
75
|
}> extends UmbEntityActionBase$1<T> {
|
|
59
|
-
constructor(host:
|
|
76
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
60
77
|
execute(): Promise<void>;
|
|
61
78
|
}
|
|
62
79
|
|
|
@@ -65,8 +82,8 @@ declare class UmbTrashEntityAction<T extends {
|
|
|
65
82
|
requestTreeItems(uniques: Array<string>): any;
|
|
66
83
|
}> extends UmbEntityActionBase$1<T> {
|
|
67
84
|
#private;
|
|
68
|
-
constructor(host:
|
|
85
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
69
86
|
execute(): Promise<void>;
|
|
70
87
|
}
|
|
71
88
|
|
|
72
|
-
export { UmbAction, UmbActionBase, UmbCopyEntityAction, UmbDeleteEntityAction, UmbEntityAction, UmbEntityActionBase, UmbEntityBulkAction, UmbEntityBulkActionBase, UmbMoveEntityAction, UmbSortChildrenOfEntityAction, UmbTrashEntityAction };
|
|
89
|
+
export { UmbAction, UmbActionBase, UmbCopyEntityAction, UmbDeleteEntityAction, UmbDeleteFolderEntityAction, UmbEntityAction, UmbEntityActionBase, UmbEntityBulkAction, UmbEntityBulkActionBase, UmbFolderUpdateEntityAction, UmbMoveEntityAction, UmbSortChildrenOfEntityAction, UmbTrashEntityAction };
|
package/extensions-api.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { ManifestTypes, ManifestKind, ManifestTypeMap, ManifestBase, SpecificManifestTypeOrManifestBase, ManifestElement, ManifestElementWithElementName, ManifestClass } from './extensions-registry';
|
|
3
3
|
import { UmbContextToken } from './context-api';
|
|
4
|
-
import {
|
|
4
|
+
import { PageComponent } from './router';
|
|
5
|
+
import { UmbControllerHostElement } from './controller';
|
|
5
6
|
|
|
6
7
|
declare class UmbExtensionRegistry {
|
|
7
8
|
private _extensions;
|
|
@@ -22,13 +23,13 @@ declare class UmbExtensionRegistry {
|
|
|
22
23
|
}
|
|
23
24
|
declare const UMB_EXTENSION_REGISTRY_TOKEN: UmbContextToken<UmbExtensionRegistry>;
|
|
24
25
|
|
|
25
|
-
declare function createExtensionElement(manifest: ManifestElement): Promise<
|
|
26
|
+
declare function createExtensionElement(manifest: ManifestElement): Promise<PageComponent>;
|
|
26
27
|
|
|
27
28
|
declare function hasDefaultExport<ConstructorType>(object: unknown): object is {
|
|
28
29
|
default: ConstructorType;
|
|
29
30
|
};
|
|
30
31
|
|
|
31
|
-
type UmbEntrypointOnInit = (host:
|
|
32
|
+
type UmbEntrypointOnInit = (host: UmbControllerHostElement, extensionRegistry: UmbExtensionRegistry) => void;
|
|
32
33
|
/**
|
|
33
34
|
* Interface containing supported life-cycle functions for ESModule entrypoints
|
|
34
35
|
*/
|
package/extensions-registry.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ClassConstructor } from './models';
|
|
2
1
|
import { InterfaceLook, InterfaceColor } from '@umbraco-ui/uui-base/lib/types/index';
|
|
3
2
|
import { UmbWorkspaceAction } from './workspace';
|
|
4
|
-
import {
|
|
3
|
+
import { ClassConstructor } from './models';
|
|
4
|
+
import { UmbStoreBase, UmbTreeStore } from './store';
|
|
5
5
|
import { UmbExtensionRegistry } from './extensions-api';
|
|
6
|
-
import {
|
|
6
|
+
import { UmbControllerHostElement } from './controller';
|
|
7
7
|
|
|
8
8
|
interface ManifestCollectionView extends ManifestElement, ManifestWithConditions<ConditionsCollectionView> {
|
|
9
9
|
type: 'collectionView';
|
|
@@ -242,15 +242,22 @@ interface ManifestTree extends ManifestBase {
|
|
|
242
242
|
meta: MetaTree;
|
|
243
243
|
}
|
|
244
244
|
interface MetaTree {
|
|
245
|
-
|
|
246
|
-
|
|
245
|
+
repositoryAlias: string;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
interface ManifestTreeItem extends ManifestElement {
|
|
249
|
+
type: 'treeItem';
|
|
250
|
+
conditions: ConditionsTreeItem;
|
|
251
|
+
}
|
|
252
|
+
interface ConditionsTreeItem {
|
|
253
|
+
entityType: string;
|
|
247
254
|
}
|
|
248
255
|
|
|
249
|
-
interface
|
|
250
|
-
type: '
|
|
251
|
-
meta:
|
|
256
|
+
interface ManifestUserProfileApp extends ManifestElement {
|
|
257
|
+
type: 'userProfileApp';
|
|
258
|
+
meta: MetaUserProfileApp;
|
|
252
259
|
}
|
|
253
|
-
interface
|
|
260
|
+
interface MetaUserProfileApp {
|
|
254
261
|
label: string;
|
|
255
262
|
pathname: string;
|
|
256
263
|
}
|
|
@@ -319,11 +326,11 @@ interface ManifestModal extends ManifestElement {
|
|
|
319
326
|
interface ManifestStore extends ManifestClass<UmbStoreBase> {
|
|
320
327
|
type: 'store';
|
|
321
328
|
}
|
|
322
|
-
interface ManifestTreeStore extends ManifestClass<
|
|
329
|
+
interface ManifestTreeStore extends ManifestClass<UmbTreeStore> {
|
|
323
330
|
type: 'treeStore';
|
|
324
331
|
}
|
|
325
332
|
|
|
326
|
-
type ManifestTypes = ManifestCollectionView | ManifestDashboard | ManifestDashboardCollection | ManifestEntityAction | ManifestEntityBulkAction | ManifestEntrypoint | ManifestExternalLoginProvider | ManifestHeaderApp | ManifestHeaderAppButtonKind | ManifestHealthCheck | ManifestPackageView | ManifestPropertyAction | ManifestPropertyEditorModel | ManifestPropertyEditorUI | ManifestRepository | ManifestSection | ManifestSectionSidebarApp | ManifestSectionSidebarAppMenuKind | ManifestSectionView | ManifestMenu | ManifestMenuItem | ManifestMenuItemTreeKind | ManifestTheme | ManifestTree |
|
|
333
|
+
type ManifestTypes = ManifestCollectionView | ManifestDashboard | ManifestDashboardCollection | ManifestEntityAction | ManifestEntityBulkAction | ManifestEntrypoint | ManifestExternalLoginProvider | ManifestHeaderApp | ManifestHeaderAppButtonKind | ManifestHealthCheck | ManifestPackageView | ManifestPropertyAction | ManifestPropertyEditorModel | ManifestPropertyEditorUI | ManifestRepository | ManifestSection | ManifestSectionSidebarApp | ManifestSectionSidebarAppMenuKind | ManifestSectionView | ManifestMenu | ManifestMenuItem | ManifestMenuItemTreeKind | ManifestTheme | ManifestTree | ManifestTreeItem | ManifestUserProfileApp | ManifestWorkspace | ManifestWorkspaceAction | ManifestWorkspaceView | ManifestWorkspaceViewCollection | ManifestModal | ManifestStore | ManifestTreeStore | ManifestBase;
|
|
327
334
|
type ManifestStandardTypes = ManifestTypes['type'];
|
|
328
335
|
type ManifestTypeMap = {
|
|
329
336
|
[Manifest in ManifestTypes as Manifest['type']]: Manifest;
|
|
@@ -383,8 +390,8 @@ interface ManifestEntrypoint extends ManifestBase {
|
|
|
383
390
|
|
|
384
391
|
declare class UmbEntryPointExtensionInitializer {
|
|
385
392
|
#private;
|
|
386
|
-
constructor(rootHost:
|
|
393
|
+
constructor(rootHost: UmbControllerHostElement, extensionRegistry: UmbExtensionRegistry);
|
|
387
394
|
instantiateEntryPoint(manifest: ManifestEntrypoint): void;
|
|
388
395
|
}
|
|
389
396
|
|
|
390
|
-
export { ConditionsCollectionView, ConditionsDashboard, ConditionsDashboardCollection, ConditionsEditorViewCollection, ConditionsEntityAction, ConditionsEntityBulkAction, ConditionsMenuItem, ConditionsPropertyAction, ConditionsSectionSidebarApp, ConditionsSectionView, ConditionsWorkspaceAction, ConditionsWorkspaceView, HealthCheck, ManifestBase, ManifestClass, ManifestClassWithClassConstructor, ManifestCollectionView, ManifestDashboard, ManifestDashboardCollection, ManifestElement, ManifestElementWithElementName, ManifestEntityAction, ManifestEntityBulkAction, ManifestEntrypoint, ManifestExternalLoginProvider, ManifestHeaderApp, ManifestHeaderAppButtonKind, ManifestHealthCheck, ManifestKind, ManifestMenu, ManifestMenuItem, ManifestMenuItemTreeKind, ManifestModal, ManifestPackageView, ManifestPropertyAction, ManifestPropertyEditorModel, ManifestPropertyEditorUI, ManifestRepository, ManifestSection, ManifestSectionSidebarApp, ManifestSectionSidebarAppMenuKind, ManifestSectionView, ManifestStandardTypes, ManifestStore, ManifestTheme, ManifestTree, ManifestTreeStore, ManifestTypeMap, ManifestTypes,
|
|
397
|
+
export { ConditionsCollectionView, ConditionsDashboard, ConditionsDashboardCollection, ConditionsEditorViewCollection, ConditionsEntityAction, ConditionsEntityBulkAction, ConditionsMenuItem, ConditionsPropertyAction, ConditionsSectionSidebarApp, ConditionsSectionView, ConditionsTreeItem, ConditionsWorkspaceAction, ConditionsWorkspaceView, HealthCheck, ManifestBase, ManifestClass, ManifestClassWithClassConstructor, ManifestCollectionView, ManifestDashboard, ManifestDashboardCollection, ManifestElement, ManifestElementWithElementName, ManifestEntityAction, ManifestEntityBulkAction, ManifestEntrypoint, ManifestExternalLoginProvider, ManifestHeaderApp, ManifestHeaderAppButtonKind, ManifestHealthCheck, ManifestKind, ManifestMenu, ManifestMenuItem, ManifestMenuItemTreeKind, ManifestModal, ManifestPackageView, ManifestPropertyAction, ManifestPropertyEditorModel, ManifestPropertyEditorUI, ManifestRepository, ManifestSection, ManifestSectionSidebarApp, ManifestSectionSidebarAppMenuKind, ManifestSectionView, ManifestStandardTypes, ManifestStore, ManifestTheme, ManifestTree, ManifestTreeItem, ManifestTreeStore, ManifestTypeMap, ManifestTypes, ManifestUserProfileApp, ManifestWithConditions, ManifestWithLoader, ManifestWithMeta, ManifestWithView, ManifestWorkspace, ManifestWorkspaceAction, ManifestWorkspaceView, ManifestWorkspaceViewCollection, MetaCollectionView, MetaDashboard, MetaDashboardCollection, MetaEditor, MetaEditorViewCollection, MetaEntityAction, MetaEntityBulkAction, MetaExternalLoginProvider, MetaHeaderApp, MetaHeaderAppButtonKind, MetaHealthCheck, MetaManifestWithView, MetaMenuItem, MetaMenuItemTreeKind, MetaPackageView, MetaPropertyEditorModel, MetaPropertyEditorUI, MetaSection, MetaSectionSidebarAppMenuKind, MetaSectionView, MetaTree, MetaUserProfileApp, MetaWorkspaceAction, MetaWorkspaceView, PropertyEditorConfig, PropertyEditorConfigDefaultData, PropertyEditorConfigProperty, SpecificManifestTypeOrManifestBase, UmbEntryPointExtensionInitializer };
|
package/modal.d.ts
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import * as rxjs from 'rxjs';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
2
3
|
import * as lit_html from 'lit-html';
|
|
3
4
|
import * as lit from 'lit';
|
|
4
|
-
import { LitElement } from 'lit';
|
|
5
|
-
import { UUIModalSidebarElement, UUIModalSidebarSize } from '@umbraco-ui/uui
|
|
6
|
-
import {
|
|
7
|
-
import { UmbControllerHostInterface } from './controller';
|
|
5
|
+
import { LitElement, TemplateResult } from 'lit';
|
|
6
|
+
import { UUIModalDialogElement, UUIModalSidebarElement, UUIModalSidebarSize } from '@umbraco-ui/uui';
|
|
7
|
+
import { UmbControllerHostElement, UmbControllerInterface } from './controller';
|
|
8
8
|
import { UmbContextToken } from './context-api';
|
|
9
|
+
import { Params } from './router';
|
|
10
|
+
import { UmbModalToken as UmbModalToken$1, UmbModalConfig as UmbModalConfig$1, UmbPickerModalData as UmbPickerModalData$1 } from './modal';
|
|
11
|
+
import { LanguageResponseModel, FolderReponseModel } from './backend-api';
|
|
12
|
+
import { UserDetails } from './models';
|
|
9
13
|
|
|
10
14
|
declare class UmbSearchModalElement extends LitElement {
|
|
11
15
|
#private;
|
|
@@ -23,7 +27,7 @@ declare global {
|
|
|
23
27
|
}
|
|
24
28
|
}
|
|
25
29
|
|
|
26
|
-
declare class UmbModalToken<Data =
|
|
30
|
+
declare class UmbModalToken<Data extends object = object, Result = unknown> {
|
|
27
31
|
protected alias: string;
|
|
28
32
|
protected defaultConfig?: UmbModalConfig | undefined;
|
|
29
33
|
protected _desc?: string | undefined;
|
|
@@ -68,7 +72,7 @@ declare class UmbModalToken<Data = unknown, Result = unknown> {
|
|
|
68
72
|
/**
|
|
69
73
|
* Type which omits the real submit method, and replaces it with a submit method which accepts an optional argument depending on the generic type.
|
|
70
74
|
*/
|
|
71
|
-
type UmbModalHandler<ModalData =
|
|
75
|
+
type UmbModalHandler<ModalData extends object = object, ModalResult = any> = Omit<UmbModalHandlerClass<ModalData, ModalResult>, 'submit'> & OptionalSubmitArgumentIfUndefined<ModalResult>;
|
|
72
76
|
type OptionalSubmitArgumentIfUndefined<T> = T extends undefined ? {
|
|
73
77
|
submit: () => void;
|
|
74
78
|
} : T extends unknown ? {
|
|
@@ -76,17 +80,17 @@ type OptionalSubmitArgumentIfUndefined<T> = T extends undefined ? {
|
|
|
76
80
|
} : {
|
|
77
81
|
submit: (arg: T) => void;
|
|
78
82
|
};
|
|
79
|
-
declare class UmbModalHandlerClass<ModalData, ModalResult> {
|
|
83
|
+
declare class UmbModalHandlerClass<ModalData extends object = object, ModalResult = unknown> {
|
|
80
84
|
#private;
|
|
81
85
|
private _submitPromise;
|
|
82
86
|
private _submitResolver?;
|
|
83
87
|
private _submitRejecter?;
|
|
84
88
|
modalElement: UUIModalDialogElement | UUIModalSidebarElement;
|
|
85
|
-
readonly innerElement: rxjs.Observable<
|
|
89
|
+
readonly innerElement: rxjs.Observable<HTMLElement | undefined>;
|
|
86
90
|
key: string;
|
|
87
91
|
type: UmbModalType;
|
|
88
92
|
size: UUIModalSidebarSize;
|
|
89
|
-
constructor(host:
|
|
93
|
+
constructor(host: UmbControllerHostElement, modalAlias: string | UmbModalToken<ModalData, ModalResult>, data?: ModalData, config?: UmbModalConfig);
|
|
90
94
|
private submit;
|
|
91
95
|
reject(): void;
|
|
92
96
|
onSubmit(): Promise<ModalResult>;
|
|
@@ -100,9 +104,9 @@ interface UmbModalConfig {
|
|
|
100
104
|
}
|
|
101
105
|
declare class UmbModalContext {
|
|
102
106
|
#private;
|
|
103
|
-
host:
|
|
104
|
-
readonly modals: rxjs.Observable<UmbModalHandler
|
|
105
|
-
constructor(host:
|
|
107
|
+
host: UmbControllerHostElement;
|
|
108
|
+
readonly modals: rxjs.Observable<UmbModalHandler[]>;
|
|
109
|
+
constructor(host: UmbControllerHostElement);
|
|
106
110
|
search(): UmbModalHandler<any, any>;
|
|
107
111
|
/**
|
|
108
112
|
* Opens a modal or sidebar modal
|
|
@@ -112,7 +116,7 @@ declare class UmbModalContext {
|
|
|
112
116
|
* @return {*} {UmbModalHandler}
|
|
113
117
|
* @memberof UmbModalContext
|
|
114
118
|
*/
|
|
115
|
-
open<ModalData =
|
|
119
|
+
open<ModalData extends object = object, ModalResult = unknown>(modalAlias: string | UmbModalToken<ModalData, ModalResult>, data?: ModalData, config?: UmbModalConfig): UmbModalHandler<ModalData, ModalResult>;
|
|
116
120
|
/**
|
|
117
121
|
* Closes a modal or sidebar modal
|
|
118
122
|
* @private
|
|
@@ -123,6 +127,274 @@ declare class UmbModalContext {
|
|
|
123
127
|
}
|
|
124
128
|
declare const UMB_MODAL_CONTEXT_TOKEN: UmbContextToken<UmbModalContext>;
|
|
125
129
|
|
|
130
|
+
type UmbModalRouteBuilder = (params: {
|
|
131
|
+
[key: string]: string | number;
|
|
132
|
+
}) => string;
|
|
133
|
+
declare class UmbModalRouteRegistration<UmbModalTokenData extends object = object, UmbModalTokenResult = any> {
|
|
134
|
+
#private;
|
|
135
|
+
constructor(modalAlias: UmbModalToken<UmbModalTokenData, UmbModalTokenResult> | string, path: string, modalConfig?: UmbModalConfig);
|
|
136
|
+
get key(): string;
|
|
137
|
+
get alias(): string | UmbModalToken<UmbModalTokenData, UmbModalTokenResult>;
|
|
138
|
+
get path(): string;
|
|
139
|
+
protected _setPath(path: string): void;
|
|
140
|
+
get modalConfig(): UmbModalConfig | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* Returns true if the modal is currently active.
|
|
143
|
+
*/
|
|
144
|
+
get active(): boolean;
|
|
145
|
+
open(params: {
|
|
146
|
+
[key: string]: string | number;
|
|
147
|
+
}): void;
|
|
148
|
+
/**
|
|
149
|
+
* Returns the modal handler if the modal is currently active. Otherwise its undefined.
|
|
150
|
+
*/
|
|
151
|
+
get modalHandler(): UmbModalHandler<UmbModalTokenData, UmbModalTokenResult> | undefined;
|
|
152
|
+
observeRouteBuilder(callback: (urlBuilder: UmbModalRouteBuilder) => void): this;
|
|
153
|
+
_internal_setRouteBuilder(urlBuilder: UmbModalRouteBuilder): void;
|
|
154
|
+
onSetup(callback: (routingInfo: Params) => UmbModalTokenData | false): this;
|
|
155
|
+
onSubmit(callback: (data: UmbModalTokenResult) => void): this;
|
|
156
|
+
onReject(callback: () => void): this;
|
|
157
|
+
routeSetup(modalContext: UmbModalContext, params: Params): UmbModalHandler<UmbModalTokenData, UmbModalTokenResult> | null;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
declare class UmbModalRouteRegistrationController<D extends object = object, R = any> extends UmbModalRouteRegistration<D, R> implements UmbControllerInterface {
|
|
161
|
+
#private;
|
|
162
|
+
get unique(): undefined;
|
|
163
|
+
constructor(host: UmbControllerHostElement, alias: UmbModalToken$1<D, R> | string, path: string, uniqueParts?: Map<string, string | undefined> | null, modalConfig?: UmbModalConfig$1);
|
|
164
|
+
setUniqueIdentifier(identifier: string, value: string | undefined): void;
|
|
165
|
+
private _registererModal;
|
|
166
|
+
hostConnected(): void;
|
|
167
|
+
hostDisconnected(): void;
|
|
168
|
+
destroy(): void;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
interface UmbAllowedDocumentTypesModalData {
|
|
172
|
+
id: string | null;
|
|
173
|
+
}
|
|
174
|
+
interface UmbAllowedDocumentTypesModalResult {
|
|
175
|
+
documentTypeKey: string;
|
|
176
|
+
}
|
|
177
|
+
declare const UMB_ALLOWED_DOCUMENT_TYPES_MODAL: UmbModalToken$1<UmbAllowedDocumentTypesModalData, UmbAllowedDocumentTypesModalResult>;
|
|
178
|
+
|
|
179
|
+
interface UmbChangePasswordModalData {
|
|
180
|
+
requireOldPassword: boolean;
|
|
181
|
+
}
|
|
182
|
+
declare const UMB_CHANGE_PASSWORD_MODAL: UmbModalToken$1<UmbChangePasswordModalData, unknown>;
|
|
183
|
+
|
|
184
|
+
interface UmbConfirmModalData {
|
|
185
|
+
headline: string;
|
|
186
|
+
content: TemplateResult | string;
|
|
187
|
+
color?: 'positive' | 'danger';
|
|
188
|
+
confirmLabel?: string;
|
|
189
|
+
}
|
|
190
|
+
type UmbConfirmModalResult = undefined;
|
|
191
|
+
declare const UMB_CONFIRM_MODAL: UmbModalToken$1<UmbConfirmModalData, undefined>;
|
|
192
|
+
|
|
193
|
+
interface UmbCreateDictionaryModalData {
|
|
194
|
+
unique: string | null;
|
|
195
|
+
parentName?: Observable<string | undefined>;
|
|
196
|
+
}
|
|
197
|
+
interface UmbCreateDictionaryModalResult {
|
|
198
|
+
name?: string;
|
|
199
|
+
}
|
|
200
|
+
declare const UMB_CREATE_DICTIONARY_MODAL: UmbModalToken$1<UmbCreateDictionaryModalData, UmbCreateDictionaryModalResult>;
|
|
201
|
+
|
|
202
|
+
declare const UMB_CREATE_USER_MODAL: UmbModalToken$1<object, unknown>;
|
|
203
|
+
|
|
204
|
+
declare const UMB_CURRENT_USER_MODAL: UmbModalToken$1<object, unknown>;
|
|
205
|
+
|
|
206
|
+
interface UmbContextDebuggerModalData {
|
|
207
|
+
content: TemplateResult | string;
|
|
208
|
+
}
|
|
209
|
+
declare const UMB_CONTEXT_DEBUGGER_MODAL: UmbModalToken$1<UmbContextDebuggerModalData, unknown>;
|
|
210
|
+
|
|
211
|
+
interface UmbDocumentPickerModalData {
|
|
212
|
+
multiple?: boolean;
|
|
213
|
+
selection?: Array<string>;
|
|
214
|
+
}
|
|
215
|
+
interface UmbDocumentPickerModalResult {
|
|
216
|
+
selection: Array<string>;
|
|
217
|
+
}
|
|
218
|
+
declare const UMB_DOCUMENT_PICKER_MODAL: UmbModalToken$1<UmbDocumentPickerModalData, UmbDocumentPickerModalResult>;
|
|
219
|
+
|
|
220
|
+
interface UmbDocumentTypePickerModalData {
|
|
221
|
+
multiple?: boolean;
|
|
222
|
+
selection?: Array<string>;
|
|
223
|
+
}
|
|
224
|
+
interface UmbDocumentTypePickerModalResult {
|
|
225
|
+
selection: Array<string>;
|
|
226
|
+
}
|
|
227
|
+
declare const UMB_DOCUMENT_TYPE_PICKER_MODAL: UmbModalToken$1<UmbDocumentTypePickerModalData, UmbDocumentTypePickerModalResult>;
|
|
228
|
+
|
|
229
|
+
declare enum OEmbedStatus {
|
|
230
|
+
NotSupported = 0,
|
|
231
|
+
Error = 1,
|
|
232
|
+
Success = 2
|
|
233
|
+
}
|
|
234
|
+
interface UmbEmbeddedMediaDimensions {
|
|
235
|
+
width?: number;
|
|
236
|
+
height?: number;
|
|
237
|
+
constrain?: boolean;
|
|
238
|
+
}
|
|
239
|
+
interface UmbEmbeddedMediaModalData extends UmbEmbeddedMediaDimensions {
|
|
240
|
+
url?: string;
|
|
241
|
+
}
|
|
242
|
+
interface OEmbedResult extends UmbEmbeddedMediaDimensions {
|
|
243
|
+
oEmbedStatus: OEmbedStatus;
|
|
244
|
+
supportsDimensions: boolean;
|
|
245
|
+
markup?: string;
|
|
246
|
+
}
|
|
247
|
+
type UmbEmbeddedMediaModalResult = {
|
|
248
|
+
selection: OEmbedResult;
|
|
249
|
+
};
|
|
250
|
+
declare const UMB_EMBEDDED_MEDIA_MODAL: UmbModalToken$1<UmbEmbeddedMediaModalData, UmbEmbeddedMediaModalResult>;
|
|
251
|
+
|
|
252
|
+
type UmbExamineFieldsSettingsModalData = Array<{
|
|
253
|
+
name: string;
|
|
254
|
+
exposed: boolean;
|
|
255
|
+
}>;
|
|
256
|
+
interface UmbCreateDocumentModalResultData {
|
|
257
|
+
fields?: UmbExamineFieldsSettingsModalData;
|
|
258
|
+
}
|
|
259
|
+
declare const UMB_EXAMINE_FIELDS_SETTINGS_MODAL: UmbModalToken$1<UmbExamineFieldsSettingsModalData, UmbCreateDocumentModalResultData>;
|
|
260
|
+
|
|
261
|
+
interface UmbExportDictionaryModalData {
|
|
262
|
+
unique: string | null;
|
|
263
|
+
}
|
|
264
|
+
interface UmbExportDictionaryModalResult {
|
|
265
|
+
includeChildren?: boolean;
|
|
266
|
+
}
|
|
267
|
+
declare const UMB_EXPORT_DICTIONARY_MODAL: UmbModalToken$1<UmbExportDictionaryModalData, UmbExportDictionaryModalResult>;
|
|
268
|
+
|
|
269
|
+
interface UmbIconPickerModalData {
|
|
270
|
+
multiple: boolean;
|
|
271
|
+
selection: string[];
|
|
272
|
+
}
|
|
273
|
+
interface UmbIconPickerModalResult {
|
|
274
|
+
color: string | undefined;
|
|
275
|
+
icon: string | undefined;
|
|
276
|
+
}
|
|
277
|
+
declare const UMB_ICON_PICKER_MODAL: UmbModalToken$1<UmbIconPickerModalData, UmbIconPickerModalResult>;
|
|
278
|
+
|
|
279
|
+
interface UmbImportDictionaryModalData {
|
|
280
|
+
unique: string | null;
|
|
281
|
+
}
|
|
282
|
+
interface UmbImportDictionaryModalResult {
|
|
283
|
+
temporaryFileId?: string;
|
|
284
|
+
parentId?: string;
|
|
285
|
+
}
|
|
286
|
+
declare const UMB_IMPORT_DICTIONARY_MODAL: UmbModalToken$1<UmbImportDictionaryModalData, UmbImportDictionaryModalResult>;
|
|
287
|
+
|
|
288
|
+
declare const UMB_INVITE_USER_MODAL: UmbModalToken$1<object, unknown>;
|
|
289
|
+
|
|
290
|
+
interface UmbLanguagePickerModalData {
|
|
291
|
+
multiple?: boolean;
|
|
292
|
+
selection?: Array<string>;
|
|
293
|
+
filter?: (language: LanguageResponseModel) => boolean;
|
|
294
|
+
}
|
|
295
|
+
interface UmbLanguagePickerModalResult {
|
|
296
|
+
selection: Array<string>;
|
|
297
|
+
}
|
|
298
|
+
declare const UMB_LANGUAGE_PICKER_MODAL: UmbModalToken$1<UmbLanguagePickerModalData, UmbLanguagePickerModalResult>;
|
|
299
|
+
|
|
300
|
+
interface UmbLinkPickerModalData {
|
|
301
|
+
index: number | null;
|
|
302
|
+
link: UmbLinkPickerLink;
|
|
303
|
+
config: UmbLinkPickerConfig;
|
|
304
|
+
}
|
|
305
|
+
type UmbLinkPickerModalResult = {
|
|
306
|
+
index: number | null;
|
|
307
|
+
link: UmbLinkPickerLink;
|
|
308
|
+
};
|
|
309
|
+
interface UmbLinkPickerLink {
|
|
310
|
+
icon?: string | null;
|
|
311
|
+
name?: string | null;
|
|
312
|
+
published?: boolean | null;
|
|
313
|
+
queryString?: string | null;
|
|
314
|
+
target?: string | null;
|
|
315
|
+
trashed?: boolean | null;
|
|
316
|
+
udi?: string | null;
|
|
317
|
+
url?: string | null;
|
|
318
|
+
}
|
|
319
|
+
interface UmbLinkPickerConfig {
|
|
320
|
+
hideAnchor?: boolean;
|
|
321
|
+
ignoreUserStartNodes?: boolean;
|
|
322
|
+
overlaySize?: UUIModalSidebarSize;
|
|
323
|
+
}
|
|
324
|
+
declare const UMB_LINK_PICKER_MODAL: UmbModalToken$1<UmbLinkPickerModalData, UmbLinkPickerModalResult>;
|
|
325
|
+
|
|
326
|
+
interface UmbMediaPickerModalData {
|
|
327
|
+
multiple?: boolean;
|
|
328
|
+
selection: Array<string>;
|
|
329
|
+
}
|
|
330
|
+
interface UmbMediaPickerModalResult {
|
|
331
|
+
selection: Array<string>;
|
|
332
|
+
}
|
|
333
|
+
declare const UMB_MEDIA_PICKER_MODAL: UmbModalToken$1<UmbMediaPickerModalData, UmbMediaPickerModalResult>;
|
|
334
|
+
|
|
335
|
+
interface UmbPropertyEditorUIPickerModalData {
|
|
336
|
+
selection?: Array<string>;
|
|
337
|
+
submitLabel?: string;
|
|
338
|
+
}
|
|
339
|
+
type UmbPropertyEditorUIPickerModalResult = {
|
|
340
|
+
selection: Array<string>;
|
|
341
|
+
};
|
|
342
|
+
declare const UMB_PROPERTY_EDITOR_UI_PICKER_MODAL: UmbModalToken$1<UmbPropertyEditorUIPickerModalData, UmbPropertyEditorUIPickerModalResult>;
|
|
343
|
+
|
|
344
|
+
interface UmbPropertySettingsModalResult {
|
|
345
|
+
label: string;
|
|
346
|
+
alias: string;
|
|
347
|
+
description: string;
|
|
348
|
+
propertyEditorUI?: string;
|
|
349
|
+
labelOnTop: boolean;
|
|
350
|
+
validation: {
|
|
351
|
+
mandatory: boolean;
|
|
352
|
+
mandatoryMessage: string;
|
|
353
|
+
pattern: string;
|
|
354
|
+
patternMessage: string;
|
|
355
|
+
};
|
|
356
|
+
}
|
|
357
|
+
declare const UMB_PROPERTY_SETTINGS_MODAL: UmbModalToken$1<object, UmbPropertySettingsModalResult>;
|
|
358
|
+
|
|
359
|
+
declare const UMB_SEARCH_MODAL: UmbModalToken$1<object, unknown>;
|
|
360
|
+
|
|
361
|
+
interface UmbSectionPickerModalData {
|
|
362
|
+
multiple: boolean;
|
|
363
|
+
selection: string[];
|
|
364
|
+
}
|
|
365
|
+
declare const UMB_SECTION_PICKER_MODAL: UmbModalToken$1<UmbSectionPickerModalData, unknown>;
|
|
366
|
+
|
|
367
|
+
interface UmbTemplateModalData {
|
|
368
|
+
id: string;
|
|
369
|
+
language?: 'razor' | 'typescript' | 'javascript' | 'css' | 'markdown' | 'json' | 'html';
|
|
370
|
+
}
|
|
371
|
+
interface UmbTemplateModalResult {
|
|
372
|
+
id: string;
|
|
373
|
+
}
|
|
374
|
+
declare const UMB_TEMPLATE_MODAL: UmbModalToken$1<UmbTemplateModalData, UmbTemplateModalResult>;
|
|
375
|
+
|
|
376
|
+
interface UmbTemplatePickerModalData {
|
|
377
|
+
multiple: boolean;
|
|
378
|
+
selection: string[];
|
|
379
|
+
}
|
|
380
|
+
interface UmbTemplatePickerModalResult {
|
|
381
|
+
selection: string[] | undefined;
|
|
382
|
+
}
|
|
383
|
+
declare const UMB_TEMPLATE_PICKER_MODAL: UmbModalToken$1<UmbTemplatePickerModalData, UmbTemplatePickerModalResult>;
|
|
384
|
+
|
|
385
|
+
declare const UMB_USER_GROUP_PICKER_MODAL: UmbModalToken$1<UmbPickerModalData$1<UserDetails>, unknown>;
|
|
386
|
+
|
|
387
|
+
declare const UMB_USER_PICKER_MODAL: UmbModalToken$1<UmbPickerModalData$1<UserDetails>, unknown>;
|
|
388
|
+
|
|
389
|
+
interface UmbFolderModalData {
|
|
390
|
+
repositoryAlias: string;
|
|
391
|
+
unique?: string;
|
|
392
|
+
}
|
|
393
|
+
interface UmbFolderModalResult {
|
|
394
|
+
folder: FolderReponseModel;
|
|
395
|
+
}
|
|
396
|
+
declare const UMB_FOLDER_MODAL: UmbModalToken$1<UmbFolderModalData, UmbFolderModalResult>;
|
|
397
|
+
|
|
126
398
|
interface UmbPickerModalData<T> {
|
|
127
399
|
multiple: boolean;
|
|
128
400
|
selection: Array<string>;
|
|
@@ -132,4 +404,4 @@ interface UmbPickerModalResult<T> {
|
|
|
132
404
|
selection: Array<string>;
|
|
133
405
|
}
|
|
134
406
|
|
|
135
|
-
export { UMB_MODAL_CONTEXT_TOKEN, UmbModalConfig, UmbModalContext, UmbModalHandler, UmbModalHandlerClass, UmbModalToken, UmbModalType, UmbPickerModalData, UmbPickerModalResult };
|
|
407
|
+
export { OEmbedResult, OEmbedStatus, UMB_ALLOWED_DOCUMENT_TYPES_MODAL, UMB_CHANGE_PASSWORD_MODAL, UMB_CONFIRM_MODAL, UMB_CONTEXT_DEBUGGER_MODAL, UMB_CREATE_DICTIONARY_MODAL, UMB_CREATE_USER_MODAL, UMB_CURRENT_USER_MODAL, UMB_DOCUMENT_PICKER_MODAL, UMB_DOCUMENT_TYPE_PICKER_MODAL, UMB_EMBEDDED_MEDIA_MODAL, UMB_EXAMINE_FIELDS_SETTINGS_MODAL, UMB_EXPORT_DICTIONARY_MODAL, UMB_FOLDER_MODAL, UMB_ICON_PICKER_MODAL, UMB_IMPORT_DICTIONARY_MODAL, UMB_INVITE_USER_MODAL, UMB_LANGUAGE_PICKER_MODAL, UMB_LINK_PICKER_MODAL, UMB_MEDIA_PICKER_MODAL, UMB_MODAL_CONTEXT_TOKEN, UMB_PROPERTY_EDITOR_UI_PICKER_MODAL, UMB_PROPERTY_SETTINGS_MODAL, UMB_SEARCH_MODAL, UMB_SECTION_PICKER_MODAL, UMB_TEMPLATE_MODAL, UMB_TEMPLATE_PICKER_MODAL, UMB_USER_GROUP_PICKER_MODAL, UMB_USER_PICKER_MODAL, UmbAllowedDocumentTypesModalData, UmbAllowedDocumentTypesModalResult, UmbChangePasswordModalData, UmbConfirmModalData, UmbConfirmModalResult, UmbContextDebuggerModalData, UmbCreateDictionaryModalData, UmbCreateDictionaryModalResult, UmbCreateDocumentModalResultData, UmbDocumentPickerModalData, UmbDocumentPickerModalResult, UmbDocumentTypePickerModalData, UmbDocumentTypePickerModalResult, UmbEmbeddedMediaModalData, UmbEmbeddedMediaModalResult, UmbExamineFieldsSettingsModalData, UmbExportDictionaryModalData, UmbExportDictionaryModalResult, UmbFolderModalData, UmbFolderModalResult, UmbIconPickerModalData, UmbIconPickerModalResult, UmbImportDictionaryModalData, UmbImportDictionaryModalResult, UmbLanguagePickerModalData, UmbLanguagePickerModalResult, UmbLinkPickerConfig, UmbLinkPickerLink, UmbLinkPickerModalData, UmbLinkPickerModalResult, UmbMediaPickerModalData, UmbMediaPickerModalResult, UmbModalConfig, UmbModalContext, UmbModalHandler, UmbModalHandlerClass, UmbModalRouteBuilder, UmbModalRouteRegistration, UmbModalRouteRegistrationController, UmbModalToken, UmbModalType, UmbPickerModalData, UmbPickerModalResult, UmbPropertyEditorUIPickerModalData, UmbPropertyEditorUIPickerModalResult, UmbPropertySettingsModalResult, UmbSectionPickerModalData, UmbTemplateModalData, UmbTemplateModalResult, UmbTemplatePickerModalData, UmbTemplatePickerModalResult };
|
package/models.d.ts
CHANGED
|
@@ -3,13 +3,18 @@ import { EntityTreeItemResponseModel, FolderTreeItemResponseModel, PackageManife
|
|
|
3
3
|
type HTMLElementConstructor<T = HTMLElement> = new (...args: any[]) => T;
|
|
4
4
|
type ClassConstructor<T> = new (...args: any[]) => T;
|
|
5
5
|
interface Entity {
|
|
6
|
-
|
|
6
|
+
id: string;
|
|
7
7
|
name: string;
|
|
8
8
|
icon: string;
|
|
9
9
|
type: string;
|
|
10
10
|
hasChildren: boolean;
|
|
11
|
-
|
|
11
|
+
parentId: string | null;
|
|
12
12
|
}
|
|
13
|
+
/** Tried to find a common base of our entities — used by Entity Workspace Context */
|
|
14
|
+
type BaseEntity = {
|
|
15
|
+
id?: string;
|
|
16
|
+
name?: string;
|
|
17
|
+
};
|
|
13
18
|
interface UserEntity extends Entity {
|
|
14
19
|
type: 'user';
|
|
15
20
|
}
|
|
@@ -38,23 +43,23 @@ interface UserGroupDetails extends UserGroupEntity {
|
|
|
38
43
|
permissions: Array<string>;
|
|
39
44
|
}
|
|
40
45
|
interface MemberTypeDetails extends EntityTreeItemResponseModel {
|
|
41
|
-
|
|
46
|
+
id: string;
|
|
42
47
|
alias: string;
|
|
43
48
|
properties: [];
|
|
44
49
|
}
|
|
45
50
|
interface MediaTypeDetails extends FolderTreeItemResponseModel {
|
|
46
|
-
|
|
51
|
+
id: string;
|
|
47
52
|
alias: string;
|
|
48
53
|
properties: [];
|
|
49
54
|
}
|
|
50
55
|
interface MemberGroupDetails extends EntityTreeItemResponseModel {
|
|
51
|
-
|
|
56
|
+
id: string;
|
|
52
57
|
}
|
|
53
58
|
interface MemberDetails extends EntityTreeItemResponseModel {
|
|
54
|
-
|
|
59
|
+
id: string;
|
|
55
60
|
}
|
|
56
61
|
interface DocumentBlueprintDetails {
|
|
57
|
-
|
|
62
|
+
id: string;
|
|
58
63
|
name: string;
|
|
59
64
|
type: 'document-blueprint';
|
|
60
65
|
properties: Array<any>;
|
|
@@ -72,4 +77,4 @@ type UmbPackageWithMigrationStatus = UmbPackage & {
|
|
|
72
77
|
hasPendingMigrations: boolean;
|
|
73
78
|
};
|
|
74
79
|
|
|
75
|
-
export { ClassConstructor, DocumentBlueprintDetails, Entity, HTMLElementConstructor, MediaTypeDetails, MemberDetails, MemberGroupDetails, MemberTypeDetails, PackageManifestResponse, SwatchDetails, UmbPackage, UmbPackageWithMigrationStatus, UserDetails, UserEntity, UserGroupDetails, UserGroupEntity, UserStatus };
|
|
80
|
+
export { BaseEntity, ClassConstructor, DocumentBlueprintDetails, Entity, HTMLElementConstructor, MediaTypeDetails, MemberDetails, MemberGroupDetails, MemberTypeDetails, PackageManifestResponse, SwatchDetails, UmbPackage, UmbPackageWithMigrationStatus, UserDetails, UserEntity, UserGroupDetails, UserGroupEntity, UserStatus };
|