@umbraco-cms/backoffice 1.0.0-next.c1172939 → 1.0.0-next.fc037c85
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/custom-elements.json +454 -24
- package/modal.d.ts +578 -12
- package/observable-api.d.ts +1 -1
- package/package.json +1 -1
- package/router.d.ts +130 -0
- package/vscode-html-custom-data.json +169 -21
package/modal.d.ts
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
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 { LitElement, TemplateResult } from 'lit';
|
|
5
6
|
import { UUIModalDialogElement, UUIModalSidebarElement, UUIModalSidebarSize } from '@umbraco-ui/uui';
|
|
6
|
-
import { UmbControllerHostInterface } from './controller';
|
|
7
|
+
import { UmbControllerHostInterface as UmbControllerHostInterface$1 } from './controller';
|
|
7
8
|
import { UmbContextToken } from './context-api';
|
|
9
|
+
import { UmbModalToken as UmbModalToken$1, UmbModalConfig as UmbModalConfig$1, UmbPickerModalData as UmbPickerModalData$1 } from './modal';
|
|
10
|
+
import { LanguageResponseModel } from './backend-api';
|
|
11
|
+
import { UserDetails } from './models';
|
|
8
12
|
|
|
9
13
|
declare class UmbSearchModalElement extends LitElement {
|
|
10
14
|
#private;
|
|
@@ -22,7 +26,7 @@ declare global {
|
|
|
22
26
|
}
|
|
23
27
|
}
|
|
24
28
|
|
|
25
|
-
declare class UmbModalToken<Data =
|
|
29
|
+
declare class UmbModalToken<Data extends object = object, Result = unknown> {
|
|
26
30
|
protected alias: string;
|
|
27
31
|
protected defaultConfig?: UmbModalConfig | undefined;
|
|
28
32
|
protected _desc?: string | undefined;
|
|
@@ -67,7 +71,7 @@ declare class UmbModalToken<Data = unknown, Result = unknown> {
|
|
|
67
71
|
/**
|
|
68
72
|
* Type which omits the real submit method, and replaces it with a submit method which accepts an optional argument depending on the generic type.
|
|
69
73
|
*/
|
|
70
|
-
type UmbModalHandler<ModalData =
|
|
74
|
+
type UmbModalHandler<ModalData extends object = object, ModalResult = any> = Omit<UmbModalHandlerClass<ModalData, ModalResult>, 'submit'> & OptionalSubmitArgumentIfUndefined<ModalResult>;
|
|
71
75
|
type OptionalSubmitArgumentIfUndefined<T> = T extends undefined ? {
|
|
72
76
|
submit: () => void;
|
|
73
77
|
} : T extends unknown ? {
|
|
@@ -75,17 +79,17 @@ type OptionalSubmitArgumentIfUndefined<T> = T extends undefined ? {
|
|
|
75
79
|
} : {
|
|
76
80
|
submit: (arg: T) => void;
|
|
77
81
|
};
|
|
78
|
-
declare class UmbModalHandlerClass<ModalData, ModalResult> {
|
|
82
|
+
declare class UmbModalHandlerClass<ModalData extends object = object, ModalResult = unknown> {
|
|
79
83
|
#private;
|
|
80
84
|
private _submitPromise;
|
|
81
85
|
private _submitResolver?;
|
|
82
86
|
private _submitRejecter?;
|
|
83
87
|
modalElement: UUIModalDialogElement | UUIModalSidebarElement;
|
|
84
|
-
readonly innerElement: rxjs.Observable<
|
|
88
|
+
readonly innerElement: rxjs.Observable<HTMLElement | undefined>;
|
|
85
89
|
key: string;
|
|
86
90
|
type: UmbModalType;
|
|
87
91
|
size: UUIModalSidebarSize;
|
|
88
|
-
constructor(host: UmbControllerHostInterface, modalAlias: string | UmbModalToken<ModalData, ModalResult>, data?: ModalData, config?: UmbModalConfig);
|
|
92
|
+
constructor(host: UmbControllerHostInterface$1, modalAlias: string | UmbModalToken<ModalData, ModalResult>, data?: ModalData, config?: UmbModalConfig);
|
|
89
93
|
private submit;
|
|
90
94
|
reject(): void;
|
|
91
95
|
onSubmit(): Promise<ModalResult>;
|
|
@@ -99,9 +103,9 @@ interface UmbModalConfig {
|
|
|
99
103
|
}
|
|
100
104
|
declare class UmbModalContext {
|
|
101
105
|
#private;
|
|
102
|
-
host: UmbControllerHostInterface;
|
|
103
|
-
readonly modals: rxjs.Observable<UmbModalHandler<
|
|
104
|
-
constructor(host: UmbControllerHostInterface);
|
|
106
|
+
host: UmbControllerHostInterface$1;
|
|
107
|
+
readonly modals: rxjs.Observable<UmbModalHandler<object, any>[]>;
|
|
108
|
+
constructor(host: UmbControllerHostInterface$1);
|
|
105
109
|
search(): UmbModalHandler<any, any>;
|
|
106
110
|
/**
|
|
107
111
|
* Opens a modal or sidebar modal
|
|
@@ -111,7 +115,7 @@ declare class UmbModalContext {
|
|
|
111
115
|
* @return {*} {UmbModalHandler}
|
|
112
116
|
* @memberof UmbModalContext
|
|
113
117
|
*/
|
|
114
|
-
open<ModalData =
|
|
118
|
+
open<ModalData extends object = object, ModalResult = unknown>(modalAlias: string | UmbModalToken<ModalData, ModalResult>, data?: ModalData, config?: UmbModalConfig): UmbModalHandler<ModalData, ModalResult>;
|
|
115
119
|
/**
|
|
116
120
|
* Closes a modal or sidebar modal
|
|
117
121
|
* @private
|
|
@@ -122,6 +126,568 @@ declare class UmbModalContext {
|
|
|
122
126
|
}
|
|
123
127
|
declare const UMB_MODAL_CONTEXT_TOKEN: UmbContextToken<UmbModalContext>;
|
|
124
128
|
|
|
129
|
+
interface IRouterSlot<D = any, P = any> extends HTMLElement {
|
|
130
|
+
readonly route: IRoute<D> | null;
|
|
131
|
+
readonly isRoot: boolean;
|
|
132
|
+
readonly fragments: IPathFragments | null;
|
|
133
|
+
readonly params: Params | null;
|
|
134
|
+
readonly match: IRouteMatch<D> | null;
|
|
135
|
+
routes: IRoute<D>[];
|
|
136
|
+
add: ((routes: IRoute<D>[], navigate?: boolean) => void);
|
|
137
|
+
clear: (() => void);
|
|
138
|
+
render: (() => Promise<void>);
|
|
139
|
+
constructAbsolutePath: ((path: PathFragment) => string);
|
|
140
|
+
parent: IRouterSlot<P> | null | undefined;
|
|
141
|
+
queryParentRouterSlot: (() => IRouterSlot<P> | null);
|
|
142
|
+
}
|
|
143
|
+
type IRoutingInfo<D = any, P = any> = {
|
|
144
|
+
slot: IRouterSlot<D, P>;
|
|
145
|
+
match: IRouteMatch<D>;
|
|
146
|
+
};
|
|
147
|
+
type CustomResolver<D = any, P = any> = ((info: IRoutingInfo<D>) => boolean | void | Promise<boolean> | Promise<void>);
|
|
148
|
+
type Guard<D = any, P = any> = ((info: IRoutingInfo<D, P>) => boolean | Promise<boolean>);
|
|
149
|
+
type PageComponent = HTMLElement;
|
|
150
|
+
type ModuleResolver = Promise<{
|
|
151
|
+
default: any;
|
|
152
|
+
}>;
|
|
153
|
+
type Class<T extends PageComponent = PageComponent> = {
|
|
154
|
+
new (...args: any[]): T;
|
|
155
|
+
};
|
|
156
|
+
type Setup<D = any> = ((component: PageComponent, info: IRoutingInfo<D>) => void);
|
|
157
|
+
type PathMatch = "prefix" | "suffix" | "full" | "fuzzy";
|
|
158
|
+
/**
|
|
159
|
+
* The base route interface.
|
|
160
|
+
* D = the data type of the data
|
|
161
|
+
*/
|
|
162
|
+
interface IRouteBase<D = any> {
|
|
163
|
+
path: PathFragment;
|
|
164
|
+
data?: D;
|
|
165
|
+
guards?: Guard[];
|
|
166
|
+
pathMatch?: PathMatch;
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* Route type used for redirection.
|
|
170
|
+
*/
|
|
171
|
+
interface IRedirectRoute<D = any> extends IRouteBase<D> {
|
|
172
|
+
redirectTo: string;
|
|
173
|
+
preserveQuery?: boolean;
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* Route type used to resolve and stamp components.
|
|
177
|
+
*/
|
|
178
|
+
interface IComponentRoute<D = any> extends IRouteBase<D> {
|
|
179
|
+
component: Class | ModuleResolver | PageComponent | (() => Class) | (() => PageComponent) | (() => ModuleResolver);
|
|
180
|
+
setup?: Setup;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* Route type used to take control of how the route should resolve.
|
|
184
|
+
*/
|
|
185
|
+
interface IResolverRoute<D = any> extends IRouteBase<D> {
|
|
186
|
+
resolve: CustomResolver;
|
|
187
|
+
}
|
|
188
|
+
type IRoute<D = any> = IRedirectRoute<D> | IComponentRoute<D> | IResolverRoute<D>;
|
|
189
|
+
type PathFragment = string;
|
|
190
|
+
type IPathFragments = {
|
|
191
|
+
consumed: PathFragment;
|
|
192
|
+
rest: PathFragment;
|
|
193
|
+
};
|
|
194
|
+
interface IRouteMatch<D = any> {
|
|
195
|
+
route: IRoute<D>;
|
|
196
|
+
params: Params;
|
|
197
|
+
fragments: IPathFragments;
|
|
198
|
+
match: RegExpMatchArray;
|
|
199
|
+
}
|
|
200
|
+
type PushStateEvent = CustomEvent<null>;
|
|
201
|
+
type ReplaceStateEvent = CustomEvent<null>;
|
|
202
|
+
type ChangeStateEvent = CustomEvent<null>;
|
|
203
|
+
type WillChangeStateEvent = CustomEvent<{
|
|
204
|
+
url?: string | null;
|
|
205
|
+
eventName: GlobalRouterEvent;
|
|
206
|
+
}>;
|
|
207
|
+
type NavigationStartEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
|
|
208
|
+
type NavigationSuccessEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
|
|
209
|
+
type NavigationCancelEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
|
|
210
|
+
type NavigationErrorEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
|
|
211
|
+
type NavigationEndEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
|
|
212
|
+
type Params = {
|
|
213
|
+
[key: string]: string;
|
|
214
|
+
};
|
|
215
|
+
/**
|
|
216
|
+
* History related events.
|
|
217
|
+
*/
|
|
218
|
+
type GlobalRouterEvent = "pushstate" | "replacestate" | "popstate" | "changestate" | "willchangestate" | "navigationstart" | "navigationcancel" | "navigationerror" | "navigationsuccess" | "navigationend";
|
|
219
|
+
declare global {
|
|
220
|
+
interface GlobalEventHandlersEventMap {
|
|
221
|
+
"pushstate": PushStateEvent;
|
|
222
|
+
"replacestate": ReplaceStateEvent;
|
|
223
|
+
"popstate": PopStateEvent;
|
|
224
|
+
"changestate": ChangeStateEvent;
|
|
225
|
+
"navigationstart": NavigationStartEvent;
|
|
226
|
+
"navigationend": NavigationEndEvent;
|
|
227
|
+
"navigationsuccess": NavigationSuccessEvent;
|
|
228
|
+
"navigationcancel": NavigationCancelEvent;
|
|
229
|
+
"navigationerror": NavigationErrorEvent;
|
|
230
|
+
"willchangestate": WillChangeStateEvent;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* Slot for a node in the router tree.
|
|
236
|
+
* @slot - Default content.
|
|
237
|
+
* @event changestate - Dispatched when the router slot state changes.
|
|
238
|
+
*/
|
|
239
|
+
declare class RouterSlot<D = any, P = any> extends HTMLElement implements IRouterSlot<D, P> {
|
|
240
|
+
/**
|
|
241
|
+
* Listeners on the router.
|
|
242
|
+
*/
|
|
243
|
+
private listeners;
|
|
244
|
+
/**
|
|
245
|
+
* The available routes.
|
|
246
|
+
*/
|
|
247
|
+
private _routes;
|
|
248
|
+
get routes(): IRoute<D>[];
|
|
249
|
+
set routes(routes: IRoute<D>[]);
|
|
250
|
+
/**
|
|
251
|
+
* The parent router.
|
|
252
|
+
* Is REQUIRED if this router is a child.
|
|
253
|
+
* When set, the relevant listeners are added or teared down because they depend on the parent.
|
|
254
|
+
*/
|
|
255
|
+
_parent: IRouterSlot<P> | null | undefined;
|
|
256
|
+
get parent(): IRouterSlot<P> | null | undefined;
|
|
257
|
+
set parent(router: IRouterSlot<P> | null | undefined);
|
|
258
|
+
/**
|
|
259
|
+
* Whether the router is a root router.
|
|
260
|
+
*/
|
|
261
|
+
get isRoot(): boolean;
|
|
262
|
+
/**
|
|
263
|
+
* The current route match.
|
|
264
|
+
*/
|
|
265
|
+
private _routeMatch;
|
|
266
|
+
get match(): IRouteMatch<D> | null;
|
|
267
|
+
/**
|
|
268
|
+
* The current route of the match.
|
|
269
|
+
*/
|
|
270
|
+
get route(): IRoute<D> | null;
|
|
271
|
+
/**
|
|
272
|
+
* The current path fragment of the match
|
|
273
|
+
*/
|
|
274
|
+
get fragments(): IPathFragments | null;
|
|
275
|
+
/**
|
|
276
|
+
* The current params of the match.
|
|
277
|
+
*/
|
|
278
|
+
get params(): Params | null;
|
|
279
|
+
/**
|
|
280
|
+
* Hooks up the element.
|
|
281
|
+
*/
|
|
282
|
+
constructor();
|
|
283
|
+
/**
|
|
284
|
+
* Query the parent router slot when the router slot is connected.
|
|
285
|
+
*/
|
|
286
|
+
connectedCallback(): void;
|
|
287
|
+
/**
|
|
288
|
+
* Tears down the element.
|
|
289
|
+
*/
|
|
290
|
+
disconnectedCallback(): void;
|
|
291
|
+
/**
|
|
292
|
+
* Queries the parent router.
|
|
293
|
+
*/
|
|
294
|
+
queryParentRouterSlot(): IRouterSlot<P> | null;
|
|
295
|
+
/**
|
|
296
|
+
* Returns an absolute path relative to the router slot.
|
|
297
|
+
* @param path
|
|
298
|
+
*/
|
|
299
|
+
constructAbsolutePath(path: PathFragment): string;
|
|
300
|
+
/**
|
|
301
|
+
* Adds routes to the router.
|
|
302
|
+
* Navigates automatically if the router slot is the root and is connected.
|
|
303
|
+
* @param routes
|
|
304
|
+
* @param navigate
|
|
305
|
+
*/
|
|
306
|
+
add(routes: IRoute<D>[], navigate?: boolean): void;
|
|
307
|
+
/**
|
|
308
|
+
* Removes all routes.
|
|
309
|
+
*/
|
|
310
|
+
clear(): void;
|
|
311
|
+
/**
|
|
312
|
+
* Each time the path changes, load the new path.
|
|
313
|
+
*/
|
|
314
|
+
render(): Promise<void>;
|
|
315
|
+
/**
|
|
316
|
+
* Attaches listeners, either globally or on the parent router.
|
|
317
|
+
*/
|
|
318
|
+
protected attachListeners(): void;
|
|
319
|
+
/**
|
|
320
|
+
* Clears the children in the DOM.
|
|
321
|
+
*/
|
|
322
|
+
protected clearChildren(): void;
|
|
323
|
+
/**
|
|
324
|
+
* Detaches the listeners.
|
|
325
|
+
*/
|
|
326
|
+
protected detachListeners(): void;
|
|
327
|
+
/**
|
|
328
|
+
* Notify the listeners.
|
|
329
|
+
*/
|
|
330
|
+
notifyChildRouters(info: any): void;
|
|
331
|
+
/**
|
|
332
|
+
* Loads a new path based on the routes.
|
|
333
|
+
* Returns true if a navigation was made to a new page.
|
|
334
|
+
*/
|
|
335
|
+
protected renderPath(path: string | PathFragment): Promise<boolean>;
|
|
336
|
+
}
|
|
337
|
+
declare global {
|
|
338
|
+
interface HTMLElementTagNameMap {
|
|
339
|
+
"router-slot": RouterSlot;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
/**
|
|
344
|
+
* Router link.
|
|
345
|
+
* @slot - Default content.
|
|
346
|
+
*/
|
|
347
|
+
declare class RouterLink extends HTMLElement {
|
|
348
|
+
private listeners;
|
|
349
|
+
private _context;
|
|
350
|
+
static get observedAttributes(): string[];
|
|
351
|
+
/**
|
|
352
|
+
* The path of the navigation.
|
|
353
|
+
* @attr
|
|
354
|
+
*/
|
|
355
|
+
set path(value: string | PathFragment);
|
|
356
|
+
get path(): string | PathFragment;
|
|
357
|
+
/**
|
|
358
|
+
* Whether the element is disabled or not.
|
|
359
|
+
* @attr
|
|
360
|
+
*/
|
|
361
|
+
get disabled(): boolean;
|
|
362
|
+
set disabled(value: boolean);
|
|
363
|
+
/**
|
|
364
|
+
* Whether the element is active or not.
|
|
365
|
+
* @attr
|
|
366
|
+
*/
|
|
367
|
+
get active(): boolean;
|
|
368
|
+
set active(value: boolean);
|
|
369
|
+
/**
|
|
370
|
+
* Whether the focus should be delegated.
|
|
371
|
+
* @attr
|
|
372
|
+
*/
|
|
373
|
+
get delegateFocus(): boolean;
|
|
374
|
+
set delegateFocus(value: boolean);
|
|
375
|
+
/**
|
|
376
|
+
* Whether the query should be preserved or not.
|
|
377
|
+
* @attr
|
|
378
|
+
*/
|
|
379
|
+
get preserveQuery(): boolean;
|
|
380
|
+
set preserveQuery(value: boolean);
|
|
381
|
+
/**
|
|
382
|
+
* The current router slot context.
|
|
383
|
+
*/
|
|
384
|
+
get context(): IRouterSlot | null;
|
|
385
|
+
set context(value: IRouterSlot | null);
|
|
386
|
+
/**
|
|
387
|
+
* Returns the absolute path.
|
|
388
|
+
*/
|
|
389
|
+
get absolutePath(): string;
|
|
390
|
+
constructor();
|
|
391
|
+
/**
|
|
392
|
+
* Hooks up the element.
|
|
393
|
+
*/
|
|
394
|
+
connectedCallback(): void;
|
|
395
|
+
/**
|
|
396
|
+
* Tear down listeners.
|
|
397
|
+
*/
|
|
398
|
+
disconnectedCallback(): void;
|
|
399
|
+
/**
|
|
400
|
+
* Reacts to attribute changed callback.
|
|
401
|
+
* @param name
|
|
402
|
+
* @param oldValue
|
|
403
|
+
* @param newValue
|
|
404
|
+
*/
|
|
405
|
+
attributeChangedCallback(name: string, oldValue: unknown, newValue: unknown): void;
|
|
406
|
+
private updateTabIndex;
|
|
407
|
+
/**
|
|
408
|
+
* Returns the absolute path constructed relative to the context.
|
|
409
|
+
* If no router parent was found the path property is the absolute one.
|
|
410
|
+
*/
|
|
411
|
+
constructAbsolutePath(path: string): string;
|
|
412
|
+
/**
|
|
413
|
+
* Updates whether the route is active or not.
|
|
414
|
+
*/
|
|
415
|
+
protected updateActive(): void;
|
|
416
|
+
/**
|
|
417
|
+
* Navigates to the specified path.
|
|
418
|
+
*/
|
|
419
|
+
navigate(path: string, e?: Event): void;
|
|
420
|
+
}
|
|
421
|
+
declare global {
|
|
422
|
+
interface HTMLElementTagNameMap {
|
|
423
|
+
"router-link": RouterLink;
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
declare global {
|
|
428
|
+
interface History {
|
|
429
|
+
"native": {
|
|
430
|
+
"back": ((distance?: any) => void);
|
|
431
|
+
"forward": ((distance?: any) => void);
|
|
432
|
+
"go": ((delta?: any) => void);
|
|
433
|
+
"pushState": ((data: any, title?: string, url?: string | null) => void);
|
|
434
|
+
"replaceState": ((data: any, title?: string, url?: string | null) => void);
|
|
435
|
+
};
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
type UmbModalRouteBuilder = (params: {
|
|
440
|
+
[key: string]: string | number;
|
|
441
|
+
}) => string;
|
|
442
|
+
declare class UmbModalRouteRegistration<UmbModalTokenData extends object = object, UmbModalTokenResult = any> {
|
|
443
|
+
#private;
|
|
444
|
+
constructor(modalAlias: UmbModalToken<UmbModalTokenData, UmbModalTokenResult> | string, path: string, modalConfig?: UmbModalConfig);
|
|
445
|
+
get key(): string;
|
|
446
|
+
get alias(): string | UmbModalToken<UmbModalTokenData, UmbModalTokenResult>;
|
|
447
|
+
get path(): string;
|
|
448
|
+
protected _setPath(path: string): void;
|
|
449
|
+
get modalConfig(): UmbModalConfig | undefined;
|
|
450
|
+
/**
|
|
451
|
+
* Returns true if the modal is currently active.
|
|
452
|
+
*/
|
|
453
|
+
get active(): boolean;
|
|
454
|
+
open(params: {
|
|
455
|
+
[key: string]: string | number;
|
|
456
|
+
}): void;
|
|
457
|
+
/**
|
|
458
|
+
* Returns the modal handler if the modal is currently active. Otherwise its undefined.
|
|
459
|
+
*/
|
|
460
|
+
get modalHandler(): UmbModalHandler<UmbModalTokenData, UmbModalTokenResult> | undefined;
|
|
461
|
+
observeRouteBuilder(callback: (urlBuilder: UmbModalRouteBuilder) => void): this;
|
|
462
|
+
_internal_setRouteBuilder(urlBuilder: UmbModalRouteBuilder): void;
|
|
463
|
+
onSetup(callback: (routingInfo: Params) => UmbModalTokenData | false): this;
|
|
464
|
+
onSubmit(callback: (data: UmbModalTokenResult) => void): this;
|
|
465
|
+
onReject(callback: () => void): this;
|
|
466
|
+
routeSetup(modalContext: UmbModalContext, params: Params): UmbModalHandler<UmbModalTokenData, UmbModalTokenResult> | null;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
interface UmbControllerInterface {
|
|
470
|
+
get unique(): string | undefined;
|
|
471
|
+
hostConnected(): void;
|
|
472
|
+
hostDisconnected(): void;
|
|
473
|
+
destroy(): void;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
declare class UmbControllerHostInterface extends HTMLElement {
|
|
477
|
+
hasController(controller: UmbControllerInterface): boolean;
|
|
478
|
+
getControllers(filterMethod: (ctrl: UmbControllerInterface) => boolean): UmbControllerInterface[];
|
|
479
|
+
addController(controller: UmbControllerInterface): void;
|
|
480
|
+
removeController(controller: UmbControllerInterface): void;
|
|
481
|
+
}
|
|
482
|
+
declare global {
|
|
483
|
+
interface HTMLElement {
|
|
484
|
+
connectedCallback(): void;
|
|
485
|
+
disconnectedCallback(): void;
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
declare class UmbModalRouteRegistrationController<D extends object = object, R = any> extends UmbModalRouteRegistration<D, R> implements UmbControllerInterface {
|
|
490
|
+
#private;
|
|
491
|
+
get unique(): undefined;
|
|
492
|
+
constructor(host: UmbControllerHostInterface, alias: UmbModalToken$1<D, R> | string, path: string, uniqueParts?: Map<string, string | undefined> | null, modalConfig?: UmbModalConfig$1);
|
|
493
|
+
setUniqueIdentifier(identifier: string, value: string | undefined): void;
|
|
494
|
+
private _registererModal;
|
|
495
|
+
hostConnected(): void;
|
|
496
|
+
hostDisconnected(): void;
|
|
497
|
+
destroy(): void;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
interface UmbAllowedDocumentTypesModalData {
|
|
501
|
+
key: string | null;
|
|
502
|
+
}
|
|
503
|
+
interface UmbAllowedDocumentTypesModalResult {
|
|
504
|
+
documentTypeKey: string;
|
|
505
|
+
}
|
|
506
|
+
declare const UMB_ALLOWED_DOCUMENT_TYPES_MODAL: UmbModalToken$1<UmbAllowedDocumentTypesModalData, UmbAllowedDocumentTypesModalResult>;
|
|
507
|
+
|
|
508
|
+
interface UmbChangePasswordModalData {
|
|
509
|
+
requireOldPassword: boolean;
|
|
510
|
+
}
|
|
511
|
+
declare const UMB_CHANGE_PASSWORD_MODAL: UmbModalToken$1<UmbChangePasswordModalData, unknown>;
|
|
512
|
+
|
|
513
|
+
interface UmbConfirmModalData {
|
|
514
|
+
headline: string;
|
|
515
|
+
content: TemplateResult | string;
|
|
516
|
+
color?: 'positive' | 'danger';
|
|
517
|
+
confirmLabel?: string;
|
|
518
|
+
}
|
|
519
|
+
type UmbConfirmModalResult = undefined;
|
|
520
|
+
declare const UMB_CONFIRM_MODAL: UmbModalToken$1<UmbConfirmModalData, undefined>;
|
|
521
|
+
|
|
522
|
+
interface UmbCreateDictionaryModalData {
|
|
523
|
+
unique: string | null;
|
|
524
|
+
parentName?: Observable<string | undefined>;
|
|
525
|
+
}
|
|
526
|
+
interface UmbCreateDictionaryModalResult {
|
|
527
|
+
name?: string;
|
|
528
|
+
}
|
|
529
|
+
declare const UMB_CREATE_DICTIONARY_MODAL: UmbModalToken$1<UmbCreateDictionaryModalData, UmbCreateDictionaryModalResult>;
|
|
530
|
+
|
|
531
|
+
declare const UMB_CREATE_USER_MODAL: UmbModalToken$1<object, unknown>;
|
|
532
|
+
|
|
533
|
+
declare const UMB_CURRENT_USER_MODAL: UmbModalToken$1<object, unknown>;
|
|
534
|
+
|
|
535
|
+
interface UmbContextDebuggerModalData {
|
|
536
|
+
content: TemplateResult | string;
|
|
537
|
+
}
|
|
538
|
+
declare const UMB_CONTEXT_DEBUGGER_MODAL: UmbModalToken$1<UmbContextDebuggerModalData, unknown>;
|
|
539
|
+
|
|
540
|
+
interface UmbDocumentPickerModalData {
|
|
541
|
+
multiple?: boolean;
|
|
542
|
+
selection?: Array<string>;
|
|
543
|
+
}
|
|
544
|
+
interface UmbDocumentPickerModalResult {
|
|
545
|
+
selection: Array<string>;
|
|
546
|
+
}
|
|
547
|
+
declare const UMB_DOCUMENT_PICKER_MODAL: UmbModalToken$1<UmbDocumentPickerModalData, UmbDocumentPickerModalResult>;
|
|
548
|
+
|
|
549
|
+
declare enum OEmbedStatus {
|
|
550
|
+
NotSupported = 0,
|
|
551
|
+
Error = 1,
|
|
552
|
+
Success = 2
|
|
553
|
+
}
|
|
554
|
+
interface UmbEmbeddedMediaDimensions {
|
|
555
|
+
width?: number;
|
|
556
|
+
height?: number;
|
|
557
|
+
constrain?: boolean;
|
|
558
|
+
}
|
|
559
|
+
interface UmbEmbeddedMediaModalData extends UmbEmbeddedMediaDimensions {
|
|
560
|
+
url?: string;
|
|
561
|
+
}
|
|
562
|
+
interface OEmbedResult extends UmbEmbeddedMediaDimensions {
|
|
563
|
+
oEmbedStatus: OEmbedStatus;
|
|
564
|
+
supportsDimensions: boolean;
|
|
565
|
+
markup?: string;
|
|
566
|
+
}
|
|
567
|
+
type UmbEmbeddedMediaModalResult = {
|
|
568
|
+
selection: OEmbedResult;
|
|
569
|
+
};
|
|
570
|
+
declare const UMB_EMBEDDED_MEDIA_MODAL: UmbModalToken$1<UmbEmbeddedMediaModalData, UmbEmbeddedMediaModalResult>;
|
|
571
|
+
|
|
572
|
+
type UmbExamineFieldsSettingsModalData = Array<{
|
|
573
|
+
name: string;
|
|
574
|
+
exposed: boolean;
|
|
575
|
+
}>;
|
|
576
|
+
interface UmbCreateDocumentModalResultData {
|
|
577
|
+
fields?: UmbExamineFieldsSettingsModalData;
|
|
578
|
+
}
|
|
579
|
+
declare const UMB_EXAMINE_FIELDS_SETTINGS_MODAL: UmbModalToken$1<UmbExamineFieldsSettingsModalData, UmbCreateDocumentModalResultData>;
|
|
580
|
+
|
|
581
|
+
interface UmbExportDictionaryModalData {
|
|
582
|
+
unique: string | null;
|
|
583
|
+
}
|
|
584
|
+
interface UmbExportDictionaryModalResult {
|
|
585
|
+
includeChildren?: boolean;
|
|
586
|
+
}
|
|
587
|
+
declare const UMB_EXPORT_DICTIONARY_MODAL: UmbModalToken$1<UmbExportDictionaryModalData, UmbExportDictionaryModalResult>;
|
|
588
|
+
|
|
589
|
+
interface UmbIconPickerModalData {
|
|
590
|
+
multiple: boolean;
|
|
591
|
+
selection: string[];
|
|
592
|
+
}
|
|
593
|
+
interface UmbIconPickerModalResult {
|
|
594
|
+
color: string | undefined;
|
|
595
|
+
icon: string | undefined;
|
|
596
|
+
}
|
|
597
|
+
declare const UMB_ICON_PICKER_MODAL: UmbModalToken$1<UmbIconPickerModalData, UmbIconPickerModalResult>;
|
|
598
|
+
|
|
599
|
+
interface UmbImportDictionaryModalData {
|
|
600
|
+
unique: string | null;
|
|
601
|
+
}
|
|
602
|
+
interface UmbImportDictionaryModalResult {
|
|
603
|
+
fileName?: string;
|
|
604
|
+
parentKey?: string;
|
|
605
|
+
}
|
|
606
|
+
declare const UMB_IMPORT_DICTIONARY_MODAL: UmbModalToken$1<UmbImportDictionaryModalData, UmbImportDictionaryModalResult>;
|
|
607
|
+
|
|
608
|
+
declare const UMB_INVITE_USER_MODAL: UmbModalToken$1<object, unknown>;
|
|
609
|
+
|
|
610
|
+
interface UmbLanguagePickerModalData {
|
|
611
|
+
multiple?: boolean;
|
|
612
|
+
selection?: Array<string>;
|
|
613
|
+
filter?: (language: LanguageResponseModel) => boolean;
|
|
614
|
+
}
|
|
615
|
+
interface UmbLanguagePickerModalResult {
|
|
616
|
+
selection: Array<string>;
|
|
617
|
+
}
|
|
618
|
+
declare const UMB_LANGUAGE_PICKER_MODAL: UmbModalToken$1<UmbLanguagePickerModalData, UmbLanguagePickerModalResult>;
|
|
619
|
+
|
|
620
|
+
interface UmbLinkPickerModalData {
|
|
621
|
+
index: number | null;
|
|
622
|
+
link: UmbLinkPickerLink;
|
|
623
|
+
config: UmbLinkPickerConfig;
|
|
624
|
+
}
|
|
625
|
+
type UmbLinkPickerModalResult = {
|
|
626
|
+
index: number | null;
|
|
627
|
+
link: UmbLinkPickerLink;
|
|
628
|
+
};
|
|
629
|
+
interface UmbLinkPickerLink {
|
|
630
|
+
icon?: string | null;
|
|
631
|
+
name?: string | null;
|
|
632
|
+
published?: boolean | null;
|
|
633
|
+
queryString?: string | null;
|
|
634
|
+
target?: string | null;
|
|
635
|
+
trashed?: boolean | null;
|
|
636
|
+
udi?: string | null;
|
|
637
|
+
url?: string | null;
|
|
638
|
+
}
|
|
639
|
+
interface UmbLinkPickerConfig {
|
|
640
|
+
hideAnchor?: boolean;
|
|
641
|
+
ignoreUserStartNodes?: boolean;
|
|
642
|
+
overlaySize?: UUIModalSidebarSize;
|
|
643
|
+
}
|
|
644
|
+
declare const UMB_LINK_PICKER_MODAL: UmbModalToken$1<UmbLinkPickerModalData, UmbLinkPickerModalResult>;
|
|
645
|
+
|
|
646
|
+
interface UmbMediaPickerModalData {
|
|
647
|
+
multiple?: boolean;
|
|
648
|
+
selection: Array<string>;
|
|
649
|
+
}
|
|
650
|
+
interface UmbMediaPickerModalResult {
|
|
651
|
+
selection: Array<string>;
|
|
652
|
+
}
|
|
653
|
+
declare const UMB_MEDIA_PICKER_MODAL: UmbModalToken$1<UmbMediaPickerModalData, UmbMediaPickerModalResult>;
|
|
654
|
+
|
|
655
|
+
interface UmbPropertyEditorUIPickerModalData {
|
|
656
|
+
selection?: Array<string>;
|
|
657
|
+
submitLabel?: string;
|
|
658
|
+
}
|
|
659
|
+
type UmbPropertyEditorUIPickerModalResult = {
|
|
660
|
+
selection: Array<string>;
|
|
661
|
+
};
|
|
662
|
+
declare const UMB_PROPERTY_EDITOR_UI_PICKER_MODAL: UmbModalToken$1<UmbPropertyEditorUIPickerModalData, UmbPropertyEditorUIPickerModalResult>;
|
|
663
|
+
|
|
664
|
+
interface UmbPropertySettingsModalResult {
|
|
665
|
+
label: string;
|
|
666
|
+
alias: string;
|
|
667
|
+
description: string;
|
|
668
|
+
propertyEditorUI?: string;
|
|
669
|
+
labelOnTop: boolean;
|
|
670
|
+
validation: {
|
|
671
|
+
mandatory: boolean;
|
|
672
|
+
mandatoryMessage: string;
|
|
673
|
+
pattern: string;
|
|
674
|
+
patternMessage: string;
|
|
675
|
+
};
|
|
676
|
+
}
|
|
677
|
+
declare const UMB_PROPERTY_SETTINGS_MODAL: UmbModalToken$1<object, UmbPropertySettingsModalResult>;
|
|
678
|
+
|
|
679
|
+
declare const UMB_SEARCH_MODAL: UmbModalToken$1<object, unknown>;
|
|
680
|
+
|
|
681
|
+
interface UmbSectionPickerModalData {
|
|
682
|
+
multiple: boolean;
|
|
683
|
+
selection: string[];
|
|
684
|
+
}
|
|
685
|
+
declare const UMB_SECTION_PICKER_MODAL: UmbModalToken$1<UmbSectionPickerModalData, unknown>;
|
|
686
|
+
|
|
687
|
+
declare const UMB_USER_GROUP_PICKER_MODAL: UmbModalToken$1<UmbPickerModalData$1<UserDetails>, unknown>;
|
|
688
|
+
|
|
689
|
+
declare const UMB_USER_PICKER_MODAL: UmbModalToken$1<UmbPickerModalData$1<UserDetails>, unknown>;
|
|
690
|
+
|
|
125
691
|
interface UmbPickerModalData<T> {
|
|
126
692
|
multiple: boolean;
|
|
127
693
|
selection: Array<string>;
|
|
@@ -131,4 +697,4 @@ interface UmbPickerModalResult<T> {
|
|
|
131
697
|
selection: Array<string>;
|
|
132
698
|
}
|
|
133
699
|
|
|
134
|
-
export { UMB_MODAL_CONTEXT_TOKEN, UmbModalConfig, UmbModalContext, UmbModalHandler, UmbModalHandlerClass, UmbModalToken, UmbModalType, UmbPickerModalData, UmbPickerModalResult };
|
|
700
|
+
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_EMBEDDED_MEDIA_MODAL, UMB_EXAMINE_FIELDS_SETTINGS_MODAL, UMB_EXPORT_DICTIONARY_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_USER_GROUP_PICKER_MODAL, UMB_USER_PICKER_MODAL, UmbAllowedDocumentTypesModalData, UmbAllowedDocumentTypesModalResult, UmbChangePasswordModalData, UmbConfirmModalData, UmbConfirmModalResult, UmbContextDebuggerModalData, UmbCreateDictionaryModalData, UmbCreateDictionaryModalResult, UmbCreateDocumentModalResultData, UmbDocumentPickerModalData, UmbDocumentPickerModalResult, UmbEmbeddedMediaModalData, UmbEmbeddedMediaModalResult, UmbExamineFieldsSettingsModalData, UmbExportDictionaryModalData, UmbExportDictionaryModalResult, 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 };
|
package/observable-api.d.ts
CHANGED
|
@@ -246,4 +246,4 @@ declare function appendToFrozenArray<T>(data: T[], entry: T, getUniqueMethod?: (
|
|
|
246
246
|
*/
|
|
247
247
|
declare function partialUpdateFrozenArray<T>(data: T[], partialEntry: Partial<T>, findMethod: (entry: T) => boolean): T[];
|
|
248
248
|
|
|
249
|
-
export { ArrayState, BooleanState, ClassState, DeepState, NumberState, ObjectState, StringState, UmbObserver, UmbObserverController, appendToFrozenArray, createObservablePart, partialUpdateFrozenArray };
|
|
249
|
+
export { ArrayState, BasicState, BooleanState, ClassState, DeepState, NumberState, ObjectState, StringState, UmbObserver, UmbObserverController, appendToFrozenArray, createObservablePart, partialUpdateFrozenArray };
|