@umbraco-cms/backoffice 1.0.0-next.23b74307 → 1.0.0-next.264a3c21
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/README.md +2 -3
- package/backend-api.d.ts +1036 -295
- package/collection.d.ts +38 -0
- package/content-type.d.ts +127 -0
- package/context-api.d.ts +46 -6
- package/{controller.d.ts → controller-api.d.ts} +2 -2
- package/custom-elements.json +5563 -4422
- package/{element.d.ts → element-api.d.ts} +5 -5
- package/entity-action.d.ts +6 -13
- package/extension-api.d.ts +200 -0
- package/extension-registry.d.ts +472 -0
- package/id.d.ts +6 -0
- package/modal.d.ts +83 -379
- package/models.d.ts +10 -73
- package/notification.d.ts +1 -1
- package/observable-api.d.ts +75 -49
- package/package.json +2 -2
- package/picker-input.d.ts +25 -0
- package/repository.d.ts +88 -48
- package/resources.d.ts +10 -14
- package/router.d.ts +263 -25
- package/section.d.ts +29 -0
- package/sorter.d.ts +103 -0
- package/store.d.ts +51 -56
- package/tree.d.ts +136 -0
- package/umbraco-package-schema.json +37755 -0
- package/utils.d.ts +28 -8
- package/variant.d.ts +21 -0
- package/vscode-html-custom-data.json +2370 -2014
- package/workspace.d.ts +66 -21
- package/extensions-api.d.ts +0 -66
- package/extensions-registry.d.ts +0 -397
- package/property-editor.d.ts +0 -8
|
@@ -0,0 +1,472 @@
|
|
|
1
|
+
import { ManifestElement, ManifestWithConditions, ManifestBase, ManifestClass, ManifestWithLoader, ClassConstructor, ManifestWithView, MetaManifestWithView, ManifestEntryPoint, ManifestKind, UmbExtensionRegistry } from '@umbraco-cms/backoffice/extension-api';
|
|
2
|
+
import { UmbModalHandler } from '@umbraco-cms/backoffice/modal';
|
|
3
|
+
import { DataTypePropertyPresentationModel, TreeItemPresentationModel } from '@umbraco-cms/backoffice/backend-api';
|
|
4
|
+
import { UmbStoreBase, UmbTreeStore, UmbItemStore } from '@umbraco-cms/backoffice/store';
|
|
5
|
+
import { InterfaceLook, InterfaceColor } from '@umbraco-ui/uui-base/lib/types/index';
|
|
6
|
+
import { UmbWorkspaceAction } from '@umbraco-cms/backoffice/workspace';
|
|
7
|
+
|
|
8
|
+
interface ManifestCollectionView extends ManifestElement, ManifestWithConditions<ConditionsCollectionView> {
|
|
9
|
+
type: 'collectionView';
|
|
10
|
+
meta: MetaCollectionView;
|
|
11
|
+
}
|
|
12
|
+
interface MetaCollectionView {
|
|
13
|
+
/**
|
|
14
|
+
* The friendly name of the collection view
|
|
15
|
+
*/
|
|
16
|
+
label: string;
|
|
17
|
+
/**
|
|
18
|
+
* An icon to represent the collection view
|
|
19
|
+
*
|
|
20
|
+
* @examples [
|
|
21
|
+
* "umb:box",
|
|
22
|
+
* "umb:grid"
|
|
23
|
+
* ]
|
|
24
|
+
*/
|
|
25
|
+
icon: string;
|
|
26
|
+
/**
|
|
27
|
+
* The URL pathname for this collection view that can be deep linked to by sharing the url
|
|
28
|
+
*/
|
|
29
|
+
pathName: string;
|
|
30
|
+
}
|
|
31
|
+
interface ConditionsCollectionView {
|
|
32
|
+
entityType: string;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
interface ManifestDashboard extends ManifestElement<UmbDashboardExtensionElement>, ManifestWithConditions<ConditionsDashboard> {
|
|
36
|
+
type: 'dashboard';
|
|
37
|
+
meta: MetaDashboard;
|
|
38
|
+
}
|
|
39
|
+
interface MetaDashboard {
|
|
40
|
+
/**
|
|
41
|
+
* This is the URL path for the dashboard which is used for navigating or deep linking directly to the dashboard
|
|
42
|
+
* https://yoursite.com/section/settings/dashboard/my-dashboard-path
|
|
43
|
+
*
|
|
44
|
+
* @example my-dashboard-path
|
|
45
|
+
* @examples [
|
|
46
|
+
* "my-dashboard-path"
|
|
47
|
+
* ]
|
|
48
|
+
*/
|
|
49
|
+
pathname: string;
|
|
50
|
+
/**
|
|
51
|
+
* The displayed name (label) for the tab of the dashboard
|
|
52
|
+
*/
|
|
53
|
+
label?: string;
|
|
54
|
+
}
|
|
55
|
+
interface ConditionsDashboard {
|
|
56
|
+
/**
|
|
57
|
+
* An array of section aliases that the dashboard should be available in
|
|
58
|
+
*
|
|
59
|
+
* @uniqueItems true
|
|
60
|
+
* @minItems 1
|
|
61
|
+
* @items.examples [
|
|
62
|
+
* "Umb.Section.Content",
|
|
63
|
+
* "Umb.Section.Settings"
|
|
64
|
+
* ]
|
|
65
|
+
*
|
|
66
|
+
*/
|
|
67
|
+
sections: string[];
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
interface ManifestDashboardCollection extends ManifestBase {
|
|
71
|
+
type: 'dashboardCollection';
|
|
72
|
+
meta: MetaDashboardCollection;
|
|
73
|
+
conditions: ConditionsDashboardCollection;
|
|
74
|
+
}
|
|
75
|
+
interface MetaDashboardCollection {
|
|
76
|
+
pathname: string;
|
|
77
|
+
label?: string;
|
|
78
|
+
repositoryAlias: string;
|
|
79
|
+
}
|
|
80
|
+
interface ConditionsDashboardCollection {
|
|
81
|
+
sections: string[];
|
|
82
|
+
entityType: string;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* An action to perform on an entity
|
|
87
|
+
* For example for content you may wish to create a new document etc
|
|
88
|
+
*/
|
|
89
|
+
interface ManifestEntityAction extends ManifestElement {
|
|
90
|
+
type: 'entityAction';
|
|
91
|
+
meta: MetaEntityAction;
|
|
92
|
+
conditions: ConditionsEntityAction;
|
|
93
|
+
}
|
|
94
|
+
interface MetaEntityAction {
|
|
95
|
+
/**
|
|
96
|
+
* An icon to represent the action to be performed
|
|
97
|
+
*
|
|
98
|
+
* @examples [
|
|
99
|
+
* "umb:box",
|
|
100
|
+
* "umb:grid"
|
|
101
|
+
* ]
|
|
102
|
+
*/
|
|
103
|
+
icon?: string;
|
|
104
|
+
/**
|
|
105
|
+
* The friendly name of the action to perform
|
|
106
|
+
*
|
|
107
|
+
* @examples [
|
|
108
|
+
* "Create",
|
|
109
|
+
* "Create Content Template"
|
|
110
|
+
* ]
|
|
111
|
+
*/
|
|
112
|
+
label: string;
|
|
113
|
+
/**
|
|
114
|
+
* @TJS-ignore
|
|
115
|
+
*/
|
|
116
|
+
api: any;
|
|
117
|
+
/**
|
|
118
|
+
* The alias for the repsoitory of the entity type this action is for
|
|
119
|
+
* such as 'Umb.Repository.Documents'
|
|
120
|
+
* @examples [
|
|
121
|
+
* "Umb.Repository.Documents"
|
|
122
|
+
* ]
|
|
123
|
+
*/
|
|
124
|
+
repositoryAlias: string;
|
|
125
|
+
}
|
|
126
|
+
interface ConditionsEntityAction {
|
|
127
|
+
entityTypes: Array<string>;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* An action to perform on multiple entities
|
|
132
|
+
* For example for content you may wish to move one or more documents in bulk
|
|
133
|
+
*/
|
|
134
|
+
interface ManifestEntityBulkAction extends ManifestElement, ManifestWithConditions<ConditionsEntityBulkAction> {
|
|
135
|
+
type: 'entityBulkAction';
|
|
136
|
+
meta: MetaEntityBulkAction;
|
|
137
|
+
}
|
|
138
|
+
interface MetaEntityBulkAction {
|
|
139
|
+
/**
|
|
140
|
+
* A friendly label for the action
|
|
141
|
+
*/
|
|
142
|
+
label: string;
|
|
143
|
+
/**
|
|
144
|
+
* @TJS-ignore
|
|
145
|
+
*/
|
|
146
|
+
api: any;
|
|
147
|
+
/**
|
|
148
|
+
* The alias for the repsoitory of the entity type this action is for
|
|
149
|
+
* such as 'Umb.Repository.Documents'
|
|
150
|
+
*
|
|
151
|
+
* @examples [
|
|
152
|
+
* "Umb.Repository.Documents"
|
|
153
|
+
* ]
|
|
154
|
+
*/
|
|
155
|
+
repositoryAlias: string;
|
|
156
|
+
}
|
|
157
|
+
interface ConditionsEntityBulkAction {
|
|
158
|
+
entityType: string;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
interface UmbExternalLoginProviderExtensionElement extends HTMLElement {
|
|
162
|
+
manifest?: ManifestExternalLoginProvider;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
interface ManifestExternalLoginProvider extends ManifestElement<UmbExternalLoginProviderExtensionElement> {
|
|
166
|
+
type: 'externalLoginProvider';
|
|
167
|
+
meta: MetaExternalLoginProvider;
|
|
168
|
+
}
|
|
169
|
+
interface MetaExternalLoginProvider {
|
|
170
|
+
label: string;
|
|
171
|
+
pathname: string;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Header apps are displayed in the top right corner of the backoffice
|
|
176
|
+
* The two provided header apps are the search and the user menu
|
|
177
|
+
*/
|
|
178
|
+
interface ManifestHeaderApp extends ManifestElement {
|
|
179
|
+
type: 'headerApp';
|
|
180
|
+
}
|
|
181
|
+
interface MetaHeaderApp {
|
|
182
|
+
pathname: string;
|
|
183
|
+
label: string;
|
|
184
|
+
icon: string;
|
|
185
|
+
}
|
|
186
|
+
interface ManifestHeaderAppButtonKind extends ManifestHeaderApp {
|
|
187
|
+
type: 'headerApp';
|
|
188
|
+
kind: 'button';
|
|
189
|
+
meta: MetaHeaderAppButtonKind;
|
|
190
|
+
}
|
|
191
|
+
interface MetaHeaderAppButtonKind {
|
|
192
|
+
href: string;
|
|
193
|
+
label: string;
|
|
194
|
+
icon: string;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
interface ManifestHealthCheck extends ManifestElement {
|
|
198
|
+
type: 'healthCheck';
|
|
199
|
+
meta: MetaHealthCheck;
|
|
200
|
+
}
|
|
201
|
+
interface MetaHealthCheck {
|
|
202
|
+
label: string;
|
|
203
|
+
api: any;
|
|
204
|
+
}
|
|
205
|
+
interface HealthCheck {
|
|
206
|
+
alias: string;
|
|
207
|
+
name: string;
|
|
208
|
+
description: string;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
interface ManifestMenu extends ManifestElement {
|
|
212
|
+
type: 'menu';
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
interface UmbMenuItemExtensionElement extends HTMLElement {
|
|
216
|
+
manifest?: ManifestMenuItem;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
interface ManifestMenuItem extends ManifestElement<UmbMenuItemExtensionElement> {
|
|
220
|
+
type: 'menuItem';
|
|
221
|
+
meta: MetaMenuItem;
|
|
222
|
+
conditions: ConditionsMenuItem;
|
|
223
|
+
}
|
|
224
|
+
interface MetaMenuItem {
|
|
225
|
+
label: string;
|
|
226
|
+
icon: string;
|
|
227
|
+
entityType?: string;
|
|
228
|
+
}
|
|
229
|
+
interface ConditionsMenuItem {
|
|
230
|
+
menus: Array<string>;
|
|
231
|
+
}
|
|
232
|
+
interface ManifestMenuItemTreeKind extends ManifestMenuItem {
|
|
233
|
+
type: 'menuItem';
|
|
234
|
+
kind: 'tree';
|
|
235
|
+
meta: MetaMenuItemTreeKind;
|
|
236
|
+
}
|
|
237
|
+
interface MetaMenuItemTreeKind {
|
|
238
|
+
treeAlias: string;
|
|
239
|
+
label: string;
|
|
240
|
+
icon: string;
|
|
241
|
+
entityType?: string;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
interface ManifestModal extends ManifestElement {
|
|
245
|
+
type: 'modal';
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
interface ManifestPackageView extends ManifestElement {
|
|
249
|
+
type: 'packageView';
|
|
250
|
+
meta: MetaPackageView;
|
|
251
|
+
}
|
|
252
|
+
interface MetaPackageView {
|
|
253
|
+
packageName: string;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
interface ManifestPropertyAction extends ManifestElement, ManifestWithConditions<ConditionsPropertyAction> {
|
|
257
|
+
type: 'propertyAction';
|
|
258
|
+
}
|
|
259
|
+
interface ConditionsPropertyAction {
|
|
260
|
+
propertyEditors: string[];
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
interface ManifestPropertyEditorUI extends ManifestElement<UmbPropertyEditorExtensionElement> {
|
|
264
|
+
type: 'propertyEditorUI';
|
|
265
|
+
meta: MetaPropertyEditorUI;
|
|
266
|
+
}
|
|
267
|
+
interface MetaPropertyEditorUI {
|
|
268
|
+
label: string;
|
|
269
|
+
propertyEditorModel: string;
|
|
270
|
+
icon: string;
|
|
271
|
+
group: string;
|
|
272
|
+
config?: PropertyEditorConfig;
|
|
273
|
+
supportsReadOnly?: boolean;
|
|
274
|
+
}
|
|
275
|
+
interface ManifestPropertyEditorModel extends ManifestBase {
|
|
276
|
+
type: 'propertyEditorModel';
|
|
277
|
+
meta: MetaPropertyEditorModel;
|
|
278
|
+
}
|
|
279
|
+
interface MetaPropertyEditorModel {
|
|
280
|
+
config?: PropertyEditorConfig;
|
|
281
|
+
}
|
|
282
|
+
interface PropertyEditorConfig {
|
|
283
|
+
properties: PropertyEditorConfigProperty[];
|
|
284
|
+
defaultData?: PropertyEditorConfigDefaultData[];
|
|
285
|
+
}
|
|
286
|
+
interface PropertyEditorConfigProperty {
|
|
287
|
+
label: string;
|
|
288
|
+
description?: string;
|
|
289
|
+
alias: string;
|
|
290
|
+
propertyEditorUI: string;
|
|
291
|
+
}
|
|
292
|
+
interface PropertyEditorConfigDefaultData {
|
|
293
|
+
alias: string;
|
|
294
|
+
value: any;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
interface ManifestRepository extends ManifestClass<unknown> {
|
|
298
|
+
type: 'repository';
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
interface ManifestSection extends ManifestElement<UmbSectionExtensionElement> {
|
|
302
|
+
type: 'section';
|
|
303
|
+
meta: MetaSection;
|
|
304
|
+
}
|
|
305
|
+
interface MetaSection {
|
|
306
|
+
label: string;
|
|
307
|
+
pathname: string;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
interface UmbSectionSidebarAppExtensionElement extends HTMLElement {
|
|
311
|
+
manifest?: ManifestSectionSidebarApp;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
interface ManifestSectionSidebarApp extends ManifestElement<UmbSectionSidebarAppExtensionElement> {
|
|
315
|
+
type: 'sectionSidebarApp';
|
|
316
|
+
conditions: ConditionsSectionSidebarApp;
|
|
317
|
+
}
|
|
318
|
+
interface ConditionsSectionSidebarApp {
|
|
319
|
+
sections: Array<string>;
|
|
320
|
+
}
|
|
321
|
+
interface ManifestSectionSidebarAppMenuKind extends ManifestSectionSidebarApp {
|
|
322
|
+
type: 'sectionSidebarApp';
|
|
323
|
+
kind: 'menu';
|
|
324
|
+
meta: MetaSectionSidebarAppMenuKind;
|
|
325
|
+
}
|
|
326
|
+
interface MetaSectionSidebarAppMenuKind {
|
|
327
|
+
label: string;
|
|
328
|
+
menu: string;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
interface UmbSectionViewExtensionElement extends HTMLElement {
|
|
332
|
+
manifest?: ManifestSectionView;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
interface ManifestSectionView extends ManifestElement<UmbSectionViewExtensionElement>, ManifestWithConditions<ConditionsSectionView> {
|
|
336
|
+
type: 'sectionView';
|
|
337
|
+
meta: MetaSectionView;
|
|
338
|
+
}
|
|
339
|
+
interface MetaSectionView {
|
|
340
|
+
label: string;
|
|
341
|
+
pathname: string;
|
|
342
|
+
icon: string;
|
|
343
|
+
}
|
|
344
|
+
interface ConditionsSectionView {
|
|
345
|
+
sections: Array<string>;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
interface ManifestStore extends ManifestClass<UmbStoreBase> {
|
|
349
|
+
type: 'store';
|
|
350
|
+
}
|
|
351
|
+
interface ManifestTreeStore extends ManifestClass<UmbTreeStore> {
|
|
352
|
+
type: 'treeStore';
|
|
353
|
+
}
|
|
354
|
+
interface ManifestItemStore extends ManifestClass<UmbItemStore> {
|
|
355
|
+
type: 'itemStore';
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* Theme manifest for styling the backoffice of Umbraco such as dark, high contrast etc
|
|
360
|
+
*/
|
|
361
|
+
interface ManifestTheme extends ManifestWithLoader<string> {
|
|
362
|
+
type: 'theme';
|
|
363
|
+
/**
|
|
364
|
+
* File location of the CSS file of the theme
|
|
365
|
+
*
|
|
366
|
+
* @examples ["themes/dark.theme.css"]
|
|
367
|
+
*/
|
|
368
|
+
css?: string;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
interface ManifestTree extends ManifestBase {
|
|
372
|
+
type: 'tree';
|
|
373
|
+
meta: MetaTree;
|
|
374
|
+
}
|
|
375
|
+
interface MetaTree {
|
|
376
|
+
repositoryAlias: string;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
interface ManifestTreeItem extends ManifestElement<UmbTreeItemExtensionElement> {
|
|
380
|
+
type: 'treeItem';
|
|
381
|
+
conditions: ConditionsTreeItem;
|
|
382
|
+
}
|
|
383
|
+
interface ConditionsTreeItem {
|
|
384
|
+
entityTypes: Array<string>;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
interface ManifestUserProfileApp extends ManifestElement {
|
|
388
|
+
type: 'userProfileApp';
|
|
389
|
+
meta: MetaUserProfileApp;
|
|
390
|
+
}
|
|
391
|
+
interface MetaUserProfileApp {
|
|
392
|
+
label: string;
|
|
393
|
+
pathname: string;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
interface ManifestWorkspace extends ManifestElement {
|
|
397
|
+
type: 'workspace';
|
|
398
|
+
meta: MetaEditor;
|
|
399
|
+
}
|
|
400
|
+
interface MetaEditor {
|
|
401
|
+
entityType: string;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
interface ManifestWorkspaceAction extends ManifestElement {
|
|
405
|
+
type: 'workspaceAction';
|
|
406
|
+
meta: MetaWorkspaceAction;
|
|
407
|
+
conditions: ConditionsWorkspaceAction;
|
|
408
|
+
}
|
|
409
|
+
interface MetaWorkspaceAction {
|
|
410
|
+
label?: string;
|
|
411
|
+
look?: InterfaceLook;
|
|
412
|
+
color?: InterfaceColor;
|
|
413
|
+
api: ClassConstructor<UmbWorkspaceAction>;
|
|
414
|
+
}
|
|
415
|
+
interface ConditionsWorkspaceAction {
|
|
416
|
+
workspaces: Array<string>;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
interface UmbWorkspaceEditorViewExtensionElement extends HTMLElement {
|
|
420
|
+
manifest?: ManifestWorkspaceEditorView;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
interface ManifestWorkspaceEditorView extends ManifestWithView<UmbWorkspaceEditorViewExtensionElement> {
|
|
424
|
+
type: 'workspaceEditorView';
|
|
425
|
+
conditions: ConditionsWorkspaceView;
|
|
426
|
+
}
|
|
427
|
+
interface ConditionsWorkspaceView {
|
|
428
|
+
workspaces: string[];
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
interface ManifestWorkspaceViewCollection extends ManifestWithView, ManifestWithConditions<ConditionsEditorViewCollection> {
|
|
432
|
+
type: 'workspaceViewCollection';
|
|
433
|
+
meta: MetaEditorViewCollection;
|
|
434
|
+
}
|
|
435
|
+
interface MetaEditorViewCollection extends MetaManifestWithView {
|
|
436
|
+
entityType: string;
|
|
437
|
+
repositoryAlias: string;
|
|
438
|
+
}
|
|
439
|
+
interface ConditionsEditorViewCollection {
|
|
440
|
+
workspaces: string[];
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
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;
|
|
444
|
+
|
|
445
|
+
interface UmbDashboardExtensionElement extends HTMLElement {
|
|
446
|
+
manifest?: ManifestDashboard;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
interface UmbModalExtensionElement<UmbModalData extends object = object, UmbModalResult = unknown, ModalManifestType extends ManifestModal = ManifestModal> extends HTMLElement {
|
|
450
|
+
manifest?: ModalManifestType;
|
|
451
|
+
modalHandler?: UmbModalHandler<UmbModalData, UmbModalResult>;
|
|
452
|
+
data?: UmbModalData;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
interface UmbPropertyEditorExtensionElement extends HTMLElement {
|
|
456
|
+
value: unknown;
|
|
457
|
+
config: DataTypePropertyPresentationModel[];
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
interface UmbSectionExtensionElement extends HTMLElement {
|
|
461
|
+
manifest?: ManifestSection;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
interface UmbTreeItemExtensionElement extends HTMLElement {
|
|
465
|
+
item?: TreeItemPresentationModel;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
type UmbBackofficeManifestKind = ManifestKind<ManifestTypes>;
|
|
469
|
+
type UmbBackofficeExtensionRegistry = UmbExtensionRegistry<ManifestTypes>;
|
|
470
|
+
declare const umbExtensionsRegistry: UmbBackofficeExtensionRegistry;
|
|
471
|
+
|
|
472
|
+
export { ConditionsCollectionView, ConditionsDashboard, ConditionsDashboardCollection, ConditionsEditorViewCollection, ConditionsEntityAction, ConditionsEntityBulkAction, ConditionsMenuItem, ConditionsPropertyAction, ConditionsSectionSidebarApp, ConditionsSectionView, ConditionsTreeItem, ConditionsWorkspaceAction, ConditionsWorkspaceView, HealthCheck, ManifestCollectionView, ManifestDashboard, ManifestDashboardCollection, ManifestEntityAction, ManifestEntityBulkAction, ManifestExternalLoginProvider, ManifestHeaderApp, ManifestHeaderAppButtonKind, ManifestHealthCheck, ManifestItemStore, ManifestMenu, ManifestMenuItem, ManifestMenuItemTreeKind, ManifestModal, ManifestPackageView, ManifestPropertyAction, ManifestPropertyEditorModel, ManifestPropertyEditorUI, ManifestRepository, ManifestSection, ManifestSectionSidebarApp, ManifestSectionSidebarAppMenuKind, ManifestSectionView, ManifestStore, ManifestTheme, ManifestTree, ManifestTreeItem, ManifestTreeStore, ManifestTypes, ManifestUserProfileApp, ManifestWorkspace, ManifestWorkspaceAction, ManifestWorkspaceEditorView, ManifestWorkspaceViewCollection, MetaCollectionView, MetaDashboard, MetaDashboardCollection, MetaEditor, MetaEditorViewCollection, MetaEntityAction, MetaEntityBulkAction, MetaExternalLoginProvider, MetaHeaderApp, MetaHeaderAppButtonKind, MetaHealthCheck, MetaMenuItem, MetaMenuItemTreeKind, MetaPackageView, MetaPropertyEditorModel, MetaPropertyEditorUI, MetaSection, MetaSectionSidebarAppMenuKind, MetaSectionView, MetaTree, MetaUserProfileApp, MetaWorkspaceAction, PropertyEditorConfig, PropertyEditorConfigDefaultData, PropertyEditorConfigProperty, UmbBackofficeExtensionRegistry, UmbBackofficeManifestKind, UmbDashboardExtensionElement, UmbExternalLoginProviderExtensionElement, UmbMenuItemExtensionElement, UmbModalExtensionElement, UmbPropertyEditorExtensionElement, UmbSectionExtensionElement, UmbSectionSidebarAppExtensionElement, UmbSectionViewExtensionElement, UmbTreeItemExtensionElement, UmbWorkspaceEditorViewExtensionElement, umbExtensionsRegistry };
|