@umbraco-cms/backoffice 1.0.0-next.b82f3242 → 1.0.0-next.bc46b74e
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 +509 -90
- package/collection.d.ts +38 -0
- package/content-type.d.ts +127 -0
- package/context-api.d.ts +2 -2
- package/custom-elements.json +5059 -4520
- package/entity-action.d.ts +1 -1
- package/extensions-api.d.ts +11 -11
- package/extensions-registry.d.ts +125 -84
- package/id.d.ts +6 -0
- package/modal.d.ts +53 -31
- package/models.d.ts +3 -70
- package/observable-api.d.ts +13 -1
- package/package.json +1 -1
- package/picker-input.d.ts +3 -2
- package/repository.d.ts +53 -38
- package/resources.d.ts +18 -11
- package/router.d.ts +1 -13
- package/section.d.ts +29 -0
- package/sorter.d.ts +103 -0
- package/store.d.ts +1 -1
- package/tree.d.ts +136 -0
- package/umbraco-package-schema.json +37072 -1756
- package/utils.d.ts +27 -9
- package/variant.d.ts +21 -0
- package/vscode-html-custom-data.json +2177 -2010
- package/workspace.d.ts +62 -17
- package/property-editor.d.ts +0 -8
package/entity-action.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ declare class UmbDeleteEntityAction<T extends UmbDetailRepository & UmbItemRepos
|
|
|
45
45
|
execute(): Promise<void>;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
declare class UmbDeleteFolderEntityAction<T extends
|
|
48
|
+
declare class UmbDeleteFolderEntityAction<T extends UmbFolderRepository> extends UmbEntityActionBase$1<T> {
|
|
49
49
|
#private;
|
|
50
50
|
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
51
51
|
execute(): Promise<void>;
|
package/extensions-api.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { ManifestTypes, ManifestKind, ManifestTypeMap, ManifestBase, SpecificManifestTypeOrManifestBase, ManifestElement, ManifestElementWithElementName, ManifestClass } from '@umbraco-cms/backoffice/extensions-registry';
|
|
2
|
+
import { ManifestTypes, ManifestKind, ManifestTypeMap, ManifestBase, SpecificManifestTypeOrManifestBase, ManifestElement, ManifestElementWithElementName, ManifestWithLoader, ManifestClass } from '@umbraco-cms/backoffice/extensions-registry';
|
|
3
3
|
import { UmbContextToken } from '@umbraco-cms/backoffice/context-api';
|
|
4
|
-
import { PageComponent } from '@umbraco-cms/backoffice/router';
|
|
5
4
|
import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller';
|
|
6
5
|
|
|
7
6
|
declare class UmbExtensionRegistry {
|
|
@@ -11,6 +10,7 @@ declare class UmbExtensionRegistry {
|
|
|
11
10
|
readonly kinds: Observable<ManifestKind[]>;
|
|
12
11
|
defineKind(kind: ManifestKind): void;
|
|
13
12
|
register(manifest: ManifestTypes | ManifestKind): void;
|
|
13
|
+
registerMany(manifests: Array<ManifestTypes>): void;
|
|
14
14
|
unregister(alias: string): void;
|
|
15
15
|
isRegistered(alias: string): boolean;
|
|
16
16
|
private _kindsOfType;
|
|
@@ -23,7 +23,7 @@ declare class UmbExtensionRegistry {
|
|
|
23
23
|
}
|
|
24
24
|
declare const UMB_EXTENSION_REGISTRY_TOKEN: UmbContextToken<UmbExtensionRegistry>;
|
|
25
25
|
|
|
26
|
-
declare function createExtensionElement(manifest: ManifestElement): Promise<
|
|
26
|
+
declare function createExtensionElement<ElementType extends HTMLElement>(manifest: ManifestElement<ElementType>): Promise<ElementType | undefined>;
|
|
27
27
|
|
|
28
28
|
declare function hasDefaultExport<ConstructorType>(object: unknown): object is {
|
|
29
29
|
default: ConstructorType;
|
|
@@ -44,19 +44,19 @@ declare function hasInitExport(obj: unknown): obj is Pick<UmbEntrypointModule, '
|
|
|
44
44
|
|
|
45
45
|
declare function isManifestElementNameType(manifest: unknown): manifest is ManifestElementWithElementName;
|
|
46
46
|
|
|
47
|
-
declare function isManifestElementableType(manifest: ManifestBase): manifest is ManifestElement;
|
|
47
|
+
declare function isManifestElementableType<ElementType extends HTMLElement = HTMLElement>(manifest: ManifestBase): manifest is ManifestElement;
|
|
48
48
|
|
|
49
|
-
type
|
|
50
|
-
loader: () => Promise<object | HTMLElement>;
|
|
51
|
-
};
|
|
52
|
-
type ManifestJSType = ManifestElement & {
|
|
49
|
+
type ManifestJSType<T> = ManifestWithLoader<T> & {
|
|
53
50
|
js: string;
|
|
54
51
|
};
|
|
55
|
-
declare function
|
|
52
|
+
declare function isManifestJSType<T>(manifest: ManifestBase | unknown): manifest is ManifestJSType<T>;
|
|
56
53
|
|
|
57
|
-
|
|
54
|
+
type ManifestLoaderType<T> = ManifestWithLoader<T> & {
|
|
55
|
+
loader: () => Promise<T>;
|
|
56
|
+
};
|
|
57
|
+
declare function isManifestLoaderType<T>(manifest: ManifestBase): manifest is ManifestLoaderType<T>;
|
|
58
58
|
|
|
59
|
-
declare function
|
|
59
|
+
declare function loadExtension<T = unknown>(manifest: ManifestWithLoader<T>): Promise<T | null>;
|
|
60
60
|
|
|
61
61
|
declare function createExtensionElementOrFallback(manifest: any, fallbackElementName: string): Promise<HTMLElement | undefined>;
|
|
62
62
|
|
package/extensions-registry.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { DataTypePropertyPresentationModel, TreeItemPresentationModel } from '@umbraco-cms/backoffice/backend-api';
|
|
2
|
+
import { UmbStoreBase, UmbTreeStore, UmbItemStore } from '@umbraco-cms/backoffice/store';
|
|
1
3
|
import { InterfaceLook, InterfaceColor } from '@umbraco-ui/uui-base/lib/types/index';
|
|
2
4
|
import { ClassConstructor } from '@umbraco-cms/backoffice/models';
|
|
3
|
-
import {
|
|
5
|
+
import { UmbWorkspaceAction } from '@umbraco-cms/backoffice/workspace';
|
|
6
|
+
import { UmbModalHandler } from '@umbraco-cms/backoffice/modal';
|
|
4
7
|
import { UmbExtensionRegistry } from '@umbraco-cms/backoffice/extensions-api';
|
|
5
8
|
import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller';
|
|
6
9
|
|
|
@@ -31,7 +34,7 @@ interface ConditionsCollectionView {
|
|
|
31
34
|
entityType: string;
|
|
32
35
|
}
|
|
33
36
|
|
|
34
|
-
interface ManifestDashboard extends ManifestElement
|
|
37
|
+
interface ManifestDashboard extends ManifestElement<UmbDashboardExtensionElement>, ManifestWithConditions<ConditionsDashboard> {
|
|
35
38
|
type: 'dashboard';
|
|
36
39
|
meta: MetaDashboard;
|
|
37
40
|
}
|
|
@@ -123,7 +126,7 @@ interface MetaEntityAction {
|
|
|
123
126
|
repositoryAlias: string;
|
|
124
127
|
}
|
|
125
128
|
interface ConditionsEntityAction {
|
|
126
|
-
|
|
129
|
+
entityTypes: Array<string>;
|
|
127
130
|
}
|
|
128
131
|
|
|
129
132
|
/**
|
|
@@ -157,7 +160,11 @@ interface ConditionsEntityBulkAction {
|
|
|
157
160
|
entityType: string;
|
|
158
161
|
}
|
|
159
162
|
|
|
160
|
-
interface
|
|
163
|
+
interface UmbExternalLoginProviderExtensionElement extends HTMLElement {
|
|
164
|
+
manifest?: ManifestExternalLoginProvider;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
interface ManifestExternalLoginProvider extends ManifestElement<UmbExternalLoginProviderExtensionElement> {
|
|
161
168
|
type: 'externalLoginProvider';
|
|
162
169
|
meta: MetaExternalLoginProvider;
|
|
163
170
|
}
|
|
@@ -203,6 +210,43 @@ interface HealthCheck {
|
|
|
203
210
|
description: string;
|
|
204
211
|
}
|
|
205
212
|
|
|
213
|
+
interface ManifestMenu extends ManifestElement {
|
|
214
|
+
type: 'menu';
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
interface UmbMenuItemExtensionElement extends HTMLElement {
|
|
218
|
+
manifest?: ManifestMenuItem;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
interface ManifestMenuItem extends ManifestElement<UmbMenuItemExtensionElement> {
|
|
222
|
+
type: 'menuItem';
|
|
223
|
+
meta: MetaMenuItem;
|
|
224
|
+
conditions: ConditionsMenuItem;
|
|
225
|
+
}
|
|
226
|
+
interface MetaMenuItem {
|
|
227
|
+
label: string;
|
|
228
|
+
icon: string;
|
|
229
|
+
entityType?: string;
|
|
230
|
+
}
|
|
231
|
+
interface ConditionsMenuItem {
|
|
232
|
+
menus: Array<string>;
|
|
233
|
+
}
|
|
234
|
+
interface ManifestMenuItemTreeKind extends ManifestMenuItem {
|
|
235
|
+
type: 'menuItem';
|
|
236
|
+
kind: 'tree';
|
|
237
|
+
meta: MetaMenuItemTreeKind;
|
|
238
|
+
}
|
|
239
|
+
interface MetaMenuItemTreeKind {
|
|
240
|
+
treeAlias: string;
|
|
241
|
+
label: string;
|
|
242
|
+
icon: string;
|
|
243
|
+
entityType?: string;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
interface ManifestModal extends ManifestElement {
|
|
247
|
+
type: 'modal';
|
|
248
|
+
}
|
|
249
|
+
|
|
206
250
|
interface ManifestPackageView extends ManifestElement {
|
|
207
251
|
type: 'packageView';
|
|
208
252
|
meta: MetaPackageView;
|
|
@@ -218,7 +262,7 @@ interface ConditionsPropertyAction {
|
|
|
218
262
|
propertyEditors: string[];
|
|
219
263
|
}
|
|
220
264
|
|
|
221
|
-
interface ManifestPropertyEditorUI extends ManifestElement {
|
|
265
|
+
interface ManifestPropertyEditorUI extends ManifestElement<UmbPropertyEditorExtensionElement> {
|
|
222
266
|
type: 'propertyEditorUI';
|
|
223
267
|
meta: MetaPropertyEditorUI;
|
|
224
268
|
}
|
|
@@ -252,7 +296,11 @@ interface PropertyEditorConfigDefaultData {
|
|
|
252
296
|
value: any;
|
|
253
297
|
}
|
|
254
298
|
|
|
255
|
-
interface
|
|
299
|
+
interface ManifestRepository extends ManifestClass<unknown> {
|
|
300
|
+
type: 'repository';
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
interface ManifestSection extends ManifestElement<UmbSectionExtensionElement> {
|
|
256
304
|
type: 'section';
|
|
257
305
|
meta: MetaSection;
|
|
258
306
|
}
|
|
@@ -261,20 +309,11 @@ interface MetaSection {
|
|
|
261
309
|
pathname: string;
|
|
262
310
|
}
|
|
263
311
|
|
|
264
|
-
interface
|
|
265
|
-
|
|
266
|
-
meta: MetaSectionView;
|
|
267
|
-
}
|
|
268
|
-
interface MetaSectionView {
|
|
269
|
-
label: string;
|
|
270
|
-
pathname: string;
|
|
271
|
-
icon: string;
|
|
272
|
-
}
|
|
273
|
-
interface ConditionsSectionView {
|
|
274
|
-
sections: Array<string>;
|
|
312
|
+
interface UmbSectionSidebarAppExtensionElement extends HTMLElement {
|
|
313
|
+
manifest?: ManifestSectionSidebarApp;
|
|
275
314
|
}
|
|
276
315
|
|
|
277
|
-
interface ManifestSectionSidebarApp extends ManifestElement {
|
|
316
|
+
interface ManifestSectionSidebarApp extends ManifestElement<UmbSectionSidebarAppExtensionElement> {
|
|
278
317
|
type: 'sectionSidebarApp';
|
|
279
318
|
conditions: ConditionsSectionSidebarApp;
|
|
280
319
|
}
|
|
@@ -291,33 +330,31 @@ interface MetaSectionSidebarAppMenuKind {
|
|
|
291
330
|
menu: string;
|
|
292
331
|
}
|
|
293
332
|
|
|
294
|
-
interface
|
|
295
|
-
|
|
333
|
+
interface UmbSectionViewExtensionElement extends HTMLElement {
|
|
334
|
+
manifest?: ManifestSectionView;
|
|
296
335
|
}
|
|
297
336
|
|
|
298
|
-
interface
|
|
299
|
-
type: '
|
|
300
|
-
meta:
|
|
301
|
-
conditions: ConditionsMenuItem;
|
|
337
|
+
interface ManifestSectionView extends ManifestElement<UmbSectionViewExtensionElement>, ManifestWithConditions<ConditionsSectionView> {
|
|
338
|
+
type: 'sectionView';
|
|
339
|
+
meta: MetaSectionView;
|
|
302
340
|
}
|
|
303
|
-
interface
|
|
341
|
+
interface MetaSectionView {
|
|
304
342
|
label: string;
|
|
343
|
+
pathname: string;
|
|
305
344
|
icon: string;
|
|
306
|
-
entityType?: string;
|
|
307
345
|
}
|
|
308
|
-
interface
|
|
309
|
-
|
|
346
|
+
interface ConditionsSectionView {
|
|
347
|
+
sections: Array<string>;
|
|
310
348
|
}
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
meta: MetaMenuItemTreeKind;
|
|
349
|
+
|
|
350
|
+
interface ManifestStore extends ManifestClass<UmbStoreBase> {
|
|
351
|
+
type: 'store';
|
|
315
352
|
}
|
|
316
|
-
interface
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
353
|
+
interface ManifestTreeStore extends ManifestClass<UmbTreeStore> {
|
|
354
|
+
type: 'treeStore';
|
|
355
|
+
}
|
|
356
|
+
interface ManifestItemStore extends ManifestClass<UmbItemStore> {
|
|
357
|
+
type: 'itemStore';
|
|
321
358
|
}
|
|
322
359
|
|
|
323
360
|
/**
|
|
@@ -341,12 +378,12 @@ interface MetaTree {
|
|
|
341
378
|
repositoryAlias: string;
|
|
342
379
|
}
|
|
343
380
|
|
|
344
|
-
interface ManifestTreeItem extends ManifestElement {
|
|
381
|
+
interface ManifestTreeItem extends ManifestElement<UmbTreeItemExtensionElement> {
|
|
345
382
|
type: 'treeItem';
|
|
346
383
|
conditions: ConditionsTreeItem;
|
|
347
384
|
}
|
|
348
385
|
interface ConditionsTreeItem {
|
|
349
|
-
|
|
386
|
+
entityTypes: Array<string>;
|
|
350
387
|
}
|
|
351
388
|
|
|
352
389
|
interface ManifestUserProfileApp extends ManifestElement {
|
|
@@ -375,61 +412,37 @@ interface MetaWorkspaceAction {
|
|
|
375
412
|
label?: string;
|
|
376
413
|
look?: InterfaceLook;
|
|
377
414
|
color?: InterfaceColor;
|
|
378
|
-
api: ClassConstructor<
|
|
415
|
+
api: ClassConstructor<UmbWorkspaceAction>;
|
|
379
416
|
}
|
|
380
417
|
interface ConditionsWorkspaceAction {
|
|
381
418
|
workspaces: Array<string>;
|
|
382
419
|
}
|
|
383
420
|
|
|
384
|
-
interface
|
|
385
|
-
|
|
386
|
-
meta: MetaWorkspaceView;
|
|
387
|
-
conditions: ConditionsWorkspaceView;
|
|
421
|
+
interface UmbWorkspaceEditorViewExtensionElement extends HTMLElement {
|
|
422
|
+
manifest?: ManifestWorkspaceEditorView;
|
|
388
423
|
}
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
424
|
+
|
|
425
|
+
interface ManifestWorkspaceEditorView extends ManifestWithView<UmbWorkspaceEditorViewExtensionElement> {
|
|
426
|
+
type: 'workspaceEditorView';
|
|
427
|
+
conditions: ConditionsWorkspaceView;
|
|
393
428
|
}
|
|
394
429
|
interface ConditionsWorkspaceView {
|
|
395
430
|
workspaces: string[];
|
|
396
431
|
}
|
|
397
432
|
|
|
398
|
-
interface ManifestWorkspaceViewCollection extends
|
|
433
|
+
interface ManifestWorkspaceViewCollection extends ManifestWithView, ManifestWithConditions<ConditionsEditorViewCollection> {
|
|
399
434
|
type: 'workspaceViewCollection';
|
|
400
435
|
meta: MetaEditorViewCollection;
|
|
401
436
|
}
|
|
402
|
-
interface MetaEditorViewCollection {
|
|
403
|
-
pathname: string;
|
|
404
|
-
label: string;
|
|
405
|
-
icon: string;
|
|
437
|
+
interface MetaEditorViewCollection extends MetaManifestWithView {
|
|
406
438
|
entityType: string;
|
|
407
|
-
|
|
408
|
-
repositoryAlias?: string;
|
|
439
|
+
repositoryAlias: string;
|
|
409
440
|
}
|
|
410
441
|
interface ConditionsEditorViewCollection {
|
|
411
442
|
workspaces: string[];
|
|
412
443
|
}
|
|
413
444
|
|
|
414
|
-
|
|
415
|
-
type: 'repository';
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
interface ManifestModal extends ManifestElement {
|
|
419
|
-
type: 'modal';
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
interface ManifestStore extends ManifestClass<UmbStoreBase> {
|
|
423
|
-
type: 'store';
|
|
424
|
-
}
|
|
425
|
-
interface ManifestTreeStore extends ManifestClass<UmbTreeStore> {
|
|
426
|
-
type: 'treeStore';
|
|
427
|
-
}
|
|
428
|
-
interface ManifestItemStore extends ManifestClass<UmbItemStore> {
|
|
429
|
-
type: 'itemStore';
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
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 | ManifestItemStore | ManifestBase;
|
|
445
|
+
type ManifestTypes = ManifestCollectionView | ManifestDashboard | ManifestDashboardCollection | ManifestEntityAction | ManifestEntityBulkAction | ManifestEntrypoint | ManifestExternalLoginProvider | ManifestHeaderApp | ManifestHeaderAppButtonKind | ManifestHealthCheck | ManifestItemStore | ManifestMenu | ManifestMenuItem | ManifestMenuItemTreeKind | ManifestModal | ManifestPackageView | ManifestPropertyAction | ManifestPropertyEditorModel | ManifestPropertyEditorUI | ManifestRepository | ManifestSection | ManifestSectionSidebarApp | ManifestSectionSidebarAppMenuKind | ManifestSectionView | ManifestStore | ManifestTheme | ManifestTree | ManifestTreeItem | ManifestTreeStore | ManifestUserProfileApp | ManifestWorkspace | ManifestWorkspaceAction | ManifestWorkspaceEditorView | ManifestWorkspaceViewCollection | ManifestBase;
|
|
433
446
|
type ManifestStandardTypes = ManifestTypes['type'];
|
|
434
447
|
type ManifestTypeMap = {
|
|
435
448
|
[Manifest in ManifestTypes as Manifest['type']]: Manifest;
|
|
@@ -481,7 +494,10 @@ interface ManifestWithLoader<LoaderReturnType> extends ManifestBase {
|
|
|
481
494
|
/**
|
|
482
495
|
* The type of extension such as dashboard etc...
|
|
483
496
|
*/
|
|
484
|
-
interface ManifestClass<
|
|
497
|
+
interface ManifestClass<ClassType = unknown> extends ManifestWithLoader<{
|
|
498
|
+
default: ClassConstructor<ClassType>;
|
|
499
|
+
}> {
|
|
500
|
+
readonly CLASS_TYPE?: ClassType;
|
|
485
501
|
/**
|
|
486
502
|
* The file location of the javascript file to load
|
|
487
503
|
* @TJS-required
|
|
@@ -494,12 +510,15 @@ interface ManifestClass<T = unknown> extends ManifestWithLoader<object> {
|
|
|
494
510
|
/**
|
|
495
511
|
* @TJS-ignore
|
|
496
512
|
*/
|
|
497
|
-
class?: ClassConstructor<
|
|
513
|
+
class?: ClassConstructor<ClassType>;
|
|
498
514
|
}
|
|
499
|
-
interface ManifestClassWithClassConstructor extends ManifestClass {
|
|
500
|
-
class: ClassConstructor<
|
|
515
|
+
interface ManifestClassWithClassConstructor<T = unknown> extends ManifestClass<T> {
|
|
516
|
+
class: ClassConstructor<T>;
|
|
501
517
|
}
|
|
502
|
-
interface ManifestElement extends
|
|
518
|
+
interface ManifestElement<ElementType extends HTMLElement = HTMLElement> extends ManifestWithLoader<{
|
|
519
|
+
default: ClassConstructor<ElementType>;
|
|
520
|
+
} | Omit<object, 'default'>> {
|
|
521
|
+
readonly ELEMENT_TYPE?: ElementType;
|
|
503
522
|
/**
|
|
504
523
|
* The file location of the javascript file to load
|
|
505
524
|
*
|
|
@@ -516,7 +535,7 @@ interface ManifestElement extends ManifestWithLoader<object | HTMLElement> {
|
|
|
516
535
|
*/
|
|
517
536
|
meta?: unknown;
|
|
518
537
|
}
|
|
519
|
-
interface ManifestWithView extends ManifestElement {
|
|
538
|
+
interface ManifestWithView<ElementType extends HTMLElement = HTMLElement> extends ManifestElement<ElementType> {
|
|
520
539
|
meta: MetaManifestWithView;
|
|
521
540
|
}
|
|
522
541
|
interface MetaManifestWithView {
|
|
@@ -542,17 +561,39 @@ interface ManifestWithMeta extends ManifestBase {
|
|
|
542
561
|
* You could have custom logic to decide which extensions to load/register by using extensionRegistry
|
|
543
562
|
*/
|
|
544
563
|
interface ManifestEntrypoint extends ManifestBase {
|
|
545
|
-
type: '
|
|
564
|
+
type: 'entryPoint';
|
|
546
565
|
/**
|
|
547
566
|
* The file location of the javascript file to load in the backoffice
|
|
548
567
|
*/
|
|
549
568
|
js: string;
|
|
550
569
|
}
|
|
551
570
|
|
|
571
|
+
interface UmbDashboardExtensionElement extends HTMLElement {
|
|
572
|
+
manifest?: ManifestDashboard;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
interface UmbModalExtensionElement<UmbModalData extends object = object, UmbModalResult = unknown> extends HTMLElement {
|
|
576
|
+
modalHandler?: UmbModalHandler<UmbModalData, UmbModalResult>;
|
|
577
|
+
data?: UmbModalData;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
interface UmbPropertyEditorExtensionElement extends HTMLElement {
|
|
581
|
+
value: unknown;
|
|
582
|
+
config: DataTypePropertyPresentationModel[];
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
interface UmbSectionExtensionElement extends HTMLElement {
|
|
586
|
+
manifest?: ManifestSection;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
interface UmbTreeItemExtensionElement extends HTMLElement {
|
|
590
|
+
item?: TreeItemPresentationModel;
|
|
591
|
+
}
|
|
592
|
+
|
|
552
593
|
declare class UmbEntryPointExtensionInitializer {
|
|
553
594
|
#private;
|
|
554
|
-
constructor(
|
|
555
|
-
instantiateEntryPoint(manifest: ManifestEntrypoint): void
|
|
595
|
+
constructor(host: UmbControllerHostElement, extensionRegistry: UmbExtensionRegistry);
|
|
596
|
+
instantiateEntryPoint(manifest: ManifestEntrypoint): Promise<void>;
|
|
556
597
|
}
|
|
557
598
|
|
|
558
|
-
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, ManifestItemStore, 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,
|
|
599
|
+
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, ManifestItemStore, 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, ManifestWorkspaceEditorView, ManifestWorkspaceViewCollection, MetaCollectionView, MetaDashboard, MetaDashboardCollection, MetaEditor, MetaEditorViewCollection, MetaEntityAction, MetaEntityBulkAction, MetaExternalLoginProvider, MetaHeaderApp, MetaHeaderAppButtonKind, MetaHealthCheck, MetaManifestWithView, MetaMenuItem, MetaMenuItemTreeKind, MetaPackageView, MetaPropertyEditorModel, MetaPropertyEditorUI, MetaSection, MetaSectionSidebarAppMenuKind, MetaSectionView, MetaTree, MetaUserProfileApp, MetaWorkspaceAction, PropertyEditorConfig, PropertyEditorConfigDefaultData, PropertyEditorConfigProperty, SpecificManifestTypeOrManifestBase, UmbDashboardExtensionElement, UmbEntryPointExtensionInitializer, UmbExternalLoginProviderExtensionElement, UmbMenuItemExtensionElement, UmbModalExtensionElement, UmbPropertyEditorExtensionElement, UmbSectionExtensionElement, UmbSectionSidebarAppExtensionElement, UmbSectionViewExtensionElement, UmbTreeItemExtensionElement, UmbWorkspaceEditorViewExtensionElement };
|
package/id.d.ts
ADDED
package/modal.d.ts
CHANGED
|
@@ -1,24 +1,23 @@
|
|
|
1
1
|
import * as rxjs from 'rxjs';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import * as lit_html from 'lit-html';
|
|
4
3
|
import * as lit from 'lit';
|
|
5
4
|
import { LitElement, TemplateResult } from 'lit';
|
|
5
|
+
import * as lit_html from 'lit-html';
|
|
6
6
|
import { UUIModalDialogElement, UUIModalSidebarElement, UUIModalSidebarSize } from '@umbraco-ui/uui';
|
|
7
7
|
import { UmbControllerHostElement, UmbControllerInterface } from '@umbraco-cms/backoffice/controller';
|
|
8
8
|
import { UmbContextToken } from '@umbraco-cms/backoffice/context-api';
|
|
9
9
|
import { Params } from '@umbraco-cms/backoffice/router';
|
|
10
|
-
import { UmbModalToken as UmbModalToken$1, UmbModalConfig as UmbModalConfig$1, UmbPickerModalData as UmbPickerModalData$1 } from '@umbraco-cms/backoffice/modal';
|
|
11
|
-
import { LanguageResponseModel, FolderReponseModel } from '@umbraco-cms/backoffice/backend-api';
|
|
12
|
-
import { UserDetails } from '@umbraco-cms/backoffice/models';
|
|
10
|
+
import { UmbModalToken as UmbModalToken$1, UmbModalConfig as UmbModalConfig$1, UmbPickerModalData as UmbPickerModalData$1, UmbPickerModalResult as UmbPickerModalResult$1 } from '@umbraco-cms/backoffice/modal';
|
|
11
|
+
import { LanguageResponseModel, UserResponseModel, FolderReponseModel, FolderTreeItemResponseModel } from '@umbraco-cms/backoffice/backend-api';
|
|
13
12
|
|
|
14
13
|
declare class UmbSearchModalElement extends LitElement {
|
|
15
14
|
#private;
|
|
16
|
-
static styles: lit.CSSResult[];
|
|
17
15
|
private _input;
|
|
18
16
|
private _search;
|
|
19
17
|
private _groups;
|
|
20
18
|
connectedCallback(): void;
|
|
21
19
|
render(): lit_html.TemplateResult<1>;
|
|
20
|
+
static styles: lit.CSSResult[];
|
|
22
21
|
}
|
|
23
22
|
|
|
24
23
|
declare global {
|
|
@@ -210,10 +209,10 @@ declare const UMB_CONTEXT_DEBUGGER_MODAL: UmbModalToken$1<UmbContextDebuggerModa
|
|
|
210
209
|
|
|
211
210
|
interface UmbDocumentPickerModalData {
|
|
212
211
|
multiple?: boolean;
|
|
213
|
-
selection?: Array<string>;
|
|
212
|
+
selection?: Array<string | null>;
|
|
214
213
|
}
|
|
215
214
|
interface UmbDocumentPickerModalResult {
|
|
216
|
-
selection: Array<string>;
|
|
215
|
+
selection: Array<string | null>;
|
|
217
216
|
}
|
|
218
217
|
declare const UMB_DOCUMENT_PICKER_MODAL: UmbModalToken$1<UmbDocumentPickerModalData, UmbDocumentPickerModalResult>;
|
|
219
218
|
|
|
@@ -222,7 +221,7 @@ interface UmbDocumentTypePickerModalData {
|
|
|
222
221
|
selection?: Array<string>;
|
|
223
222
|
}
|
|
224
223
|
interface UmbDocumentTypePickerModalResult {
|
|
225
|
-
selection: Array<string>;
|
|
224
|
+
selection: Array<string | null>;
|
|
226
225
|
}
|
|
227
226
|
declare const UMB_DOCUMENT_TYPE_PICKER_MODAL: UmbModalToken$1<UmbDocumentTypePickerModalData, UmbDocumentTypePickerModalResult>;
|
|
228
227
|
|
|
@@ -267,8 +266,8 @@ interface UmbExportDictionaryModalResult {
|
|
|
267
266
|
declare const UMB_EXPORT_DICTIONARY_MODAL: UmbModalToken$1<UmbExportDictionaryModalData, UmbExportDictionaryModalResult>;
|
|
268
267
|
|
|
269
268
|
interface UmbIconPickerModalData {
|
|
270
|
-
|
|
271
|
-
|
|
269
|
+
color: string | undefined;
|
|
270
|
+
icon: string | undefined;
|
|
272
271
|
}
|
|
273
272
|
interface UmbIconPickerModalResult {
|
|
274
273
|
color: string | undefined;
|
|
@@ -289,11 +288,11 @@ declare const UMB_INVITE_USER_MODAL: UmbModalToken$1<object, unknown>;
|
|
|
289
288
|
|
|
290
289
|
interface UmbLanguagePickerModalData {
|
|
291
290
|
multiple?: boolean;
|
|
292
|
-
selection?: Array<string>;
|
|
291
|
+
selection?: Array<string | null>;
|
|
293
292
|
filter?: (language: LanguageResponseModel) => boolean;
|
|
294
293
|
}
|
|
295
294
|
interface UmbLanguagePickerModalResult {
|
|
296
|
-
selection: Array<string>;
|
|
295
|
+
selection: Array<string | null>;
|
|
297
296
|
}
|
|
298
297
|
declare const UMB_LANGUAGE_PICKER_MODAL: UmbModalToken$1<UmbLanguagePickerModalData, UmbLanguagePickerModalResult>;
|
|
299
298
|
|
|
@@ -328,7 +327,7 @@ interface UmbMediaPickerModalData {
|
|
|
328
327
|
selection: Array<string>;
|
|
329
328
|
}
|
|
330
329
|
interface UmbMediaPickerModalResult {
|
|
331
|
-
selection: Array<string>;
|
|
330
|
+
selection: Array<string | null>;
|
|
332
331
|
}
|
|
333
332
|
declare const UMB_MEDIA_PICKER_MODAL: UmbModalToken$1<UmbMediaPickerModalData, UmbMediaPickerModalResult>;
|
|
334
333
|
|
|
@@ -360,9 +359,12 @@ declare const UMB_SEARCH_MODAL: UmbModalToken$1<object, unknown>;
|
|
|
360
359
|
|
|
361
360
|
interface UmbSectionPickerModalData {
|
|
362
361
|
multiple: boolean;
|
|
363
|
-
selection: string
|
|
362
|
+
selection: Array<string | null>;
|
|
364
363
|
}
|
|
365
|
-
|
|
364
|
+
interface UmbSectionPickerModalResult {
|
|
365
|
+
selection: Array<string | null>;
|
|
366
|
+
}
|
|
367
|
+
declare const UMB_SECTION_PICKER_MODAL: UmbModalToken$1<UmbSectionPickerModalData, UmbSectionPickerModalResult>;
|
|
366
368
|
|
|
367
369
|
interface UmbTemplateModalData {
|
|
368
370
|
id: string;
|
|
@@ -375,16 +377,20 @@ declare const UMB_TEMPLATE_MODAL: UmbModalToken$1<UmbTemplateModalData, UmbTempl
|
|
|
375
377
|
|
|
376
378
|
interface UmbTemplatePickerModalData {
|
|
377
379
|
multiple: boolean;
|
|
378
|
-
selection: string
|
|
380
|
+
selection: Array<string | null>;
|
|
379
381
|
}
|
|
380
382
|
interface UmbTemplatePickerModalResult {
|
|
381
|
-
selection: string
|
|
383
|
+
selection: Array<string | null>;
|
|
382
384
|
}
|
|
383
385
|
declare const UMB_TEMPLATE_PICKER_MODAL: UmbModalToken$1<UmbTemplatePickerModalData, UmbTemplatePickerModalResult>;
|
|
384
386
|
|
|
385
|
-
declare const UMB_USER_GROUP_PICKER_MODAL: UmbModalToken$1<UmbPickerModalData$1<
|
|
387
|
+
declare const UMB_USER_GROUP_PICKER_MODAL: UmbModalToken$1<UmbPickerModalData$1<any>, unknown>;
|
|
386
388
|
|
|
387
|
-
|
|
389
|
+
type UmbUserPickerModalData = UmbPickerModalData$1<UserResponseModel>;
|
|
390
|
+
interface UmbUserPickerModalResult {
|
|
391
|
+
selection: Array<string | null>;
|
|
392
|
+
}
|
|
393
|
+
declare const UMB_USER_PICKER_MODAL: UmbModalToken$1<UmbUserPickerModalData, UmbUserPickerModalResult>;
|
|
388
394
|
|
|
389
395
|
interface UmbFolderModalData {
|
|
390
396
|
repositoryAlias: string;
|
|
@@ -395,22 +401,38 @@ interface UmbFolderModalResult {
|
|
|
395
401
|
}
|
|
396
402
|
declare const UMB_FOLDER_MODAL: UmbModalToken$1<UmbFolderModalData, UmbFolderModalResult>;
|
|
397
403
|
|
|
398
|
-
interface
|
|
399
|
-
|
|
400
|
-
|
|
404
|
+
interface UmbPartialViewPickerModalData {
|
|
405
|
+
multiple: boolean;
|
|
406
|
+
selection: string[];
|
|
401
407
|
}
|
|
402
|
-
interface
|
|
403
|
-
selection: Array<string
|
|
408
|
+
interface UmbPartialViewPickerModalResult {
|
|
409
|
+
selection: Array<string | null> | undefined;
|
|
404
410
|
}
|
|
405
|
-
declare const
|
|
411
|
+
declare const UMB_PARTIAL_VIEW_PICKER_MODAL_ALIAS = "Umb.Modal.PartialViewPicker";
|
|
412
|
+
declare const UMB_PARTIAL_VIEW_PICKER_MODAL: UmbModalToken$1<UmbPartialViewPickerModalData, UmbPartialViewPickerModalResult>;
|
|
406
413
|
|
|
407
|
-
interface
|
|
414
|
+
interface UmbDictionaryItemPickerModalData {
|
|
408
415
|
multiple: boolean;
|
|
409
|
-
selection:
|
|
410
|
-
filter?: (language: T) => boolean;
|
|
416
|
+
selection: string[];
|
|
411
417
|
}
|
|
412
|
-
interface
|
|
413
|
-
selection: Array<string>;
|
|
418
|
+
interface UmbDictionaryItemPickerModalResult {
|
|
419
|
+
selection: Array<string | null>;
|
|
420
|
+
}
|
|
421
|
+
declare const UMB_DICTIONARY_ITEM_PICKER_MODAL_ALIAS = "Umb.Modal.DictionaryItemPicker";
|
|
422
|
+
declare const UMB_DICTIONARY_ITEM_PICKER_MODAL: UmbModalToken$1<UmbDictionaryItemPickerModalData, UmbDictionaryItemPickerModalResult>;
|
|
423
|
+
|
|
424
|
+
type UmbDataTypePickerModalData = UmbPickerModalData$1<FolderTreeItemResponseModel>;
|
|
425
|
+
type UmbDataTypePickerModalResult = UmbPickerModalResult$1;
|
|
426
|
+
declare const UMB_DATA_TYPE_PICKER_MODAL: UmbModalToken$1<UmbDataTypePickerModalData, UmbPickerModalResult$1>;
|
|
427
|
+
|
|
428
|
+
interface UmbPickerModalData<T> {
|
|
429
|
+
multiple?: boolean;
|
|
430
|
+
selection?: Array<string | null>;
|
|
431
|
+
filter?: (item: T) => boolean;
|
|
432
|
+
pickableFilter?: (item: T) => boolean;
|
|
433
|
+
}
|
|
434
|
+
interface UmbPickerModalResult {
|
|
435
|
+
selection: Array<string | null>;
|
|
414
436
|
}
|
|
415
437
|
|
|
416
|
-
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_DATA_TYPE_PICKER_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, UmbDataTypePickerModalData, UmbDataTypePickerModalResult, 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 };
|
|
438
|
+
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_DATA_TYPE_PICKER_MODAL, UMB_DICTIONARY_ITEM_PICKER_MODAL, UMB_DICTIONARY_ITEM_PICKER_MODAL_ALIAS, 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_PARTIAL_VIEW_PICKER_MODAL, UMB_PARTIAL_VIEW_PICKER_MODAL_ALIAS, 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, UmbDataTypePickerModalData, UmbDataTypePickerModalResult, UmbDictionaryItemPickerModalData, UmbDictionaryItemPickerModalResult, 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, UmbPartialViewPickerModalData, UmbPartialViewPickerModalResult, UmbPickerModalData, UmbPickerModalResult, UmbPropertyEditorUIPickerModalData, UmbPropertyEditorUIPickerModalResult, UmbPropertySettingsModalResult, UmbSectionPickerModalData, UmbSectionPickerModalResult, UmbTemplateModalData, UmbTemplateModalResult, UmbTemplatePickerModalData, UmbTemplatePickerModalResult, UmbUserPickerModalData, UmbUserPickerModalResult };
|