@umbraco-cms/backoffice 1.0.0-next.c1172939 → 1.0.0-next.de0ffca0
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/context-api.d.ts +16 -6
- package/controller.d.ts +5 -5
- package/custom-elements.json +497 -34
- package/element.d.ts +2 -2
- package/entity-action.d.ts +11 -11
- package/extensions-api.d.ts +2 -2
- package/extensions-registry.d.ts +8 -8
- package/modal.d.ts +585 -12
- package/models.d.ts +6 -1
- package/observable-api.d.ts +19 -4
- package/package.json +1 -1
- package/resources.d.ts +3 -3
- package/router.d.ts +130 -0
- package/store.d.ts +3 -3
- package/vscode-html-custom-data.json +196 -32
- package/workspace.d.ts +16 -9
package/observable-api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as rxjs from 'rxjs';
|
|
2
2
|
import { Observable, BehaviorSubject } from 'rxjs';
|
|
3
|
-
import { UmbControllerInterface,
|
|
3
|
+
import { UmbControllerInterface, UmbControllerHostElement } from './controller';
|
|
4
4
|
|
|
5
5
|
declare class UmbObserver<T> {
|
|
6
6
|
#private;
|
|
@@ -13,7 +13,7 @@ declare class UmbObserver<T> {
|
|
|
13
13
|
declare class UmbObserverController<T = unknown> extends UmbObserver<T> implements UmbControllerInterface {
|
|
14
14
|
_alias?: string;
|
|
15
15
|
get unique(): string | undefined;
|
|
16
|
-
constructor(host:
|
|
16
|
+
constructor(host: UmbControllerHostElement, source: Observable<T>, callback: (_value: T) => void, alias?: string);
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
/**
|
|
@@ -99,7 +99,7 @@ declare class DeepState<T> extends BehaviorSubject<T> {
|
|
|
99
99
|
*/
|
|
100
100
|
declare class ArrayState<T> extends DeepState<T[]> {
|
|
101
101
|
private _getUnique?;
|
|
102
|
-
constructor(initialData: T[],
|
|
102
|
+
constructor(initialData: T[], getUniqueMethod?: (entry: T) => unknown);
|
|
103
103
|
/**
|
|
104
104
|
* @method remove
|
|
105
105
|
* @param {unknown[]} uniques - The unique values to remove.
|
|
@@ -181,6 +181,21 @@ declare class ArrayState<T> extends DeepState<T[]> {
|
|
|
181
181
|
* ]);
|
|
182
182
|
*/
|
|
183
183
|
append(entries: T[]): this;
|
|
184
|
+
/**
|
|
185
|
+
* @method updateOne
|
|
186
|
+
* @param {unknown} unique - Unique value to find entry to update.
|
|
187
|
+
* @param {Partial<T>} entry - new data to be added in this Subject.
|
|
188
|
+
* @return {ArrayState<T>} Reference to it self.
|
|
189
|
+
* @description - Update a item with some new data, requires the ArrayState to be constructed with a getUnique method.
|
|
190
|
+
* @example <caption>Example append some data.</caption>
|
|
191
|
+
* const data = [
|
|
192
|
+
* { key: 1, value: 'foo'},
|
|
193
|
+
* { key: 2, value: 'bar'}
|
|
194
|
+
* ];
|
|
195
|
+
* const myState = new ArrayState(data, (x) => x.key);
|
|
196
|
+
* myState.updateOne(2, {value: 'updated-bar'});
|
|
197
|
+
*/
|
|
198
|
+
updateOne(unique: unknown, entry: Partial<T>): this;
|
|
184
199
|
}
|
|
185
200
|
|
|
186
201
|
/**
|
|
@@ -246,4 +261,4 @@ declare function appendToFrozenArray<T>(data: T[], entry: T, getUniqueMethod?: (
|
|
|
246
261
|
*/
|
|
247
262
|
declare function partialUpdateFrozenArray<T>(data: T[], partialEntry: Partial<T>, findMethod: (entry: T) => boolean): T[];
|
|
248
263
|
|
|
249
|
-
export { ArrayState, BooleanState, ClassState, DeepState, NumberState, ObjectState, StringState, UmbObserver, UmbObserverController, appendToFrozenArray, createObservablePart, partialUpdateFrozenArray };
|
|
264
|
+
export { ArrayState, BasicState, BooleanState, ClassState, DeepState, MappingFunction, NumberState, ObjectState, StringState, UmbObserver, UmbObserverController, appendToFrozenArray, createObservablePart, partialUpdateFrozenArray };
|
package/package.json
CHANGED
package/resources.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { UmbNotificationOptions } from './notification';
|
|
2
2
|
import { ProblemDetailsModel } from './backend-api';
|
|
3
|
-
import { UmbController,
|
|
3
|
+
import { UmbController, UmbControllerHostElement } from './controller';
|
|
4
4
|
import { DataSourceResponse as DataSourceResponse$1 } from './repository';
|
|
5
5
|
|
|
6
6
|
declare class UmbResourceController extends UmbController {
|
|
7
7
|
#private;
|
|
8
|
-
constructor(host:
|
|
8
|
+
constructor(host: UmbControllerHostElement, promise: Promise<any>, alias?: string);
|
|
9
9
|
hostConnected(): void;
|
|
10
10
|
hostDisconnected(): void;
|
|
11
11
|
/**
|
|
@@ -45,6 +45,6 @@ interface DataSourceResponse<T = undefined> {
|
|
|
45
45
|
|
|
46
46
|
declare function tryExecute<T>(promise: Promise<T>): Promise<DataSourceResponse<T>>;
|
|
47
47
|
|
|
48
|
-
declare function tryExecuteAndNotify<T>(host:
|
|
48
|
+
declare function tryExecuteAndNotify<T>(host: UmbControllerHostElement, resource: Promise<T>, options?: UmbNotificationOptions<any>): Promise<DataSourceResponse<T>>;
|
|
49
49
|
|
|
50
50
|
export { UmbResourceController, tryExecute, tryExecuteAndNotify };
|
package/router.d.ts
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { UmbContextToken } from './context-api';
|
|
2
|
+
import { UmbControllerHostElement } from './controller';
|
|
3
|
+
import { UmbModalRouteRegistration } from './modal';
|
|
4
|
+
|
|
5
|
+
interface UmbRouteLocation {
|
|
6
|
+
name?: string;
|
|
7
|
+
params: {
|
|
8
|
+
[key: string]: string;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare class UmbRouteContext {
|
|
13
|
+
#private;
|
|
14
|
+
private _onGotModals;
|
|
15
|
+
constructor(host: UmbControllerHostElement, _onGotModals: (contextRoutes: any) => void);
|
|
16
|
+
registerModal(registration: UmbModalRouteRegistration): UmbModalRouteRegistration<object, any>;
|
|
17
|
+
unregisterModal(registrationToken: ReturnType<typeof this$1.registerModal>): void;
|
|
18
|
+
_internal_routerGotBasePath(routerBasePath: string): void;
|
|
19
|
+
_internal_modalRouterChanged(activeModalPath: string | undefined): void;
|
|
20
|
+
}
|
|
21
|
+
declare const UMB_ROUTE_CONTEXT_TOKEN: UmbContextToken<UmbRouteContext>;
|
|
22
|
+
|
|
23
|
+
interface IRouterSlot<D = any, P = any> extends HTMLElement {
|
|
24
|
+
readonly route: IRoute<D> | null;
|
|
25
|
+
readonly isRoot: boolean;
|
|
26
|
+
readonly fragments: IPathFragments | null;
|
|
27
|
+
readonly params: Params | null;
|
|
28
|
+
readonly match: IRouteMatch<D> | null;
|
|
29
|
+
routes: IRoute<D>[];
|
|
30
|
+
add: ((routes: IRoute<D>[], navigate?: boolean) => void);
|
|
31
|
+
clear: (() => void);
|
|
32
|
+
render: (() => Promise<void>);
|
|
33
|
+
constructAbsolutePath: ((path: PathFragment) => string);
|
|
34
|
+
parent: IRouterSlot<P> | null | undefined;
|
|
35
|
+
queryParentRouterSlot: (() => IRouterSlot<P> | null);
|
|
36
|
+
}
|
|
37
|
+
type IRoutingInfo<D = any, P = any> = {
|
|
38
|
+
slot: IRouterSlot<D, P>;
|
|
39
|
+
match: IRouteMatch<D>;
|
|
40
|
+
};
|
|
41
|
+
type CustomResolver<D = any, P = any> = ((info: IRoutingInfo<D>) => boolean | void | Promise<boolean> | Promise<void>);
|
|
42
|
+
type Guard<D = any, P = any> = ((info: IRoutingInfo<D, P>) => boolean | Promise<boolean>);
|
|
43
|
+
type PageComponent = HTMLElement;
|
|
44
|
+
type ModuleResolver = Promise<{
|
|
45
|
+
default: any;
|
|
46
|
+
}>;
|
|
47
|
+
type Class<T extends PageComponent = PageComponent> = {
|
|
48
|
+
new (...args: any[]): T;
|
|
49
|
+
};
|
|
50
|
+
type Setup<D = any> = ((component: PageComponent, info: IRoutingInfo<D>) => void);
|
|
51
|
+
type PathMatch = "prefix" | "suffix" | "full" | "fuzzy";
|
|
52
|
+
/**
|
|
53
|
+
* The base route interface.
|
|
54
|
+
* D = the data type of the data
|
|
55
|
+
*/
|
|
56
|
+
interface IRouteBase<D = any> {
|
|
57
|
+
path: PathFragment;
|
|
58
|
+
data?: D;
|
|
59
|
+
guards?: Guard[];
|
|
60
|
+
pathMatch?: PathMatch;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Route type used for redirection.
|
|
64
|
+
*/
|
|
65
|
+
interface IRedirectRoute<D = any> extends IRouteBase<D> {
|
|
66
|
+
redirectTo: string;
|
|
67
|
+
preserveQuery?: boolean;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Route type used to resolve and stamp components.
|
|
71
|
+
*/
|
|
72
|
+
interface IComponentRoute<D = any> extends IRouteBase<D> {
|
|
73
|
+
component: Class | ModuleResolver | PageComponent | (() => Class) | (() => PageComponent) | (() => ModuleResolver);
|
|
74
|
+
setup?: Setup;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Route type used to take control of how the route should resolve.
|
|
78
|
+
*/
|
|
79
|
+
interface IResolverRoute<D = any> extends IRouteBase<D> {
|
|
80
|
+
resolve: CustomResolver;
|
|
81
|
+
}
|
|
82
|
+
type IRoute<D = any> = IRedirectRoute<D> | IComponentRoute<D> | IResolverRoute<D>;
|
|
83
|
+
type PathFragment = string;
|
|
84
|
+
type IPathFragments = {
|
|
85
|
+
consumed: PathFragment;
|
|
86
|
+
rest: PathFragment;
|
|
87
|
+
};
|
|
88
|
+
interface IRouteMatch<D = any> {
|
|
89
|
+
route: IRoute<D>;
|
|
90
|
+
params: Params;
|
|
91
|
+
fragments: IPathFragments;
|
|
92
|
+
match: RegExpMatchArray;
|
|
93
|
+
}
|
|
94
|
+
type PushStateEvent = CustomEvent<null>;
|
|
95
|
+
type ReplaceStateEvent = CustomEvent<null>;
|
|
96
|
+
type ChangeStateEvent = CustomEvent<null>;
|
|
97
|
+
type WillChangeStateEvent = CustomEvent<{
|
|
98
|
+
url?: string | null;
|
|
99
|
+
eventName: GlobalRouterEvent;
|
|
100
|
+
}>;
|
|
101
|
+
type NavigationStartEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
|
|
102
|
+
type NavigationSuccessEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
|
|
103
|
+
type NavigationCancelEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
|
|
104
|
+
type NavigationErrorEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
|
|
105
|
+
type NavigationEndEvent<D = any> = CustomEvent<IRoutingInfo<D>>;
|
|
106
|
+
type Params = {
|
|
107
|
+
[key: string]: string;
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* History related events.
|
|
111
|
+
*/
|
|
112
|
+
type GlobalRouterEvent = "pushstate" | "replacestate" | "popstate" | "changestate" | "willchangestate" | "navigationstart" | "navigationcancel" | "navigationerror" | "navigationsuccess" | "navigationend";
|
|
113
|
+
declare global {
|
|
114
|
+
interface GlobalEventHandlersEventMap {
|
|
115
|
+
"pushstate": PushStateEvent;
|
|
116
|
+
"replacestate": ReplaceStateEvent;
|
|
117
|
+
"popstate": PopStateEvent;
|
|
118
|
+
"changestate": ChangeStateEvent;
|
|
119
|
+
"navigationstart": NavigationStartEvent;
|
|
120
|
+
"navigationend": NavigationEndEvent;
|
|
121
|
+
"navigationsuccess": NavigationSuccessEvent;
|
|
122
|
+
"navigationcancel": NavigationCancelEvent;
|
|
123
|
+
"navigationerror": NavigationErrorEvent;
|
|
124
|
+
"willchangestate": WillChangeStateEvent;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
type UmbRoute = IRoute;
|
|
129
|
+
|
|
130
|
+
export { UMB_ROUTE_CONTEXT_TOKEN, UmbRoute, UmbRouteContext, UmbRouteLocation };
|
package/store.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as rxjs from 'rxjs';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import {
|
|
3
|
+
import { UmbControllerHostElement } from './controller';
|
|
4
4
|
import { EntityTreeItemResponseModel, FileSystemTreeItemPresentationModel } from './backend-api';
|
|
5
5
|
import { UmbStoreBase as UmbStoreBase$1, UmbTreeStore as UmbTreeStore$1 } from './store';
|
|
6
6
|
|
|
@@ -39,9 +39,9 @@ interface UmbContentStore<T> extends UmbEntityDetailStore<T> {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
declare class UmbStoreBase {
|
|
42
|
-
protected _host:
|
|
42
|
+
protected _host: UmbControllerHostElement;
|
|
43
43
|
readonly storeAlias: string;
|
|
44
|
-
constructor(_host:
|
|
44
|
+
constructor(_host: UmbControllerHostElement, storeAlias: string);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
/**
|
|
@@ -51,18 +51,33 @@
|
|
|
51
51
|
"attributes": []
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
|
-
"name": "umb-document-type-workspace-
|
|
55
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_icon` {`{ color: string; name: string; }`} - \n\n * `
|
|
54
|
+
"name": "umb-document-type-workspace-editor",
|
|
55
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_icon` {`{ color: string; name: string; }`} - \n\n * `_name` {`string | undefined`} - \n\n * `_alias` {`string | undefined`} - \n\n * `_modalContext` - ",
|
|
56
56
|
"attributes": []
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
"name": "umb-document-type-workspace",
|
|
60
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`{ path: string; component: () =>
|
|
60
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`{ path: string; component: () => UmbDocumentTypeWorkspaceEditorElement; setup: (component: HTMLElement, info: any) => void; }[]`} - ",
|
|
61
61
|
"attributes": []
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
|
-
"name": "umb-workspace-view-
|
|
65
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `
|
|
64
|
+
"name": "umb-document-type-workspace-view-design",
|
|
65
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_workspaceContext` - \n\n * `_tabs` {`any[]`} - ",
|
|
66
|
+
"attributes": []
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "umb-document-type-workspace-view-details",
|
|
70
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_workspaceContext` - ",
|
|
71
|
+
"attributes": []
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "umb-document-type-workspace-view-structure",
|
|
75
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_workspaceContext` - ",
|
|
76
|
+
"attributes": []
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "umb-document-type-workspace-view-templates",
|
|
80
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_workspaceContext` - ",
|
|
66
81
|
"attributes": []
|
|
67
82
|
},
|
|
68
83
|
{
|
|
@@ -89,13 +104,18 @@
|
|
|
89
104
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selection` {`string[]`} - \n\n * `_multiple` {`boolean`} - ",
|
|
90
105
|
"attributes": []
|
|
91
106
|
},
|
|
107
|
+
{
|
|
108
|
+
"name": "umb-document-type-picker-modal",
|
|
109
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selection` {`string[]`} - \n\n * `_multiple` {`boolean`} - ",
|
|
110
|
+
"attributes": []
|
|
111
|
+
},
|
|
92
112
|
{
|
|
93
113
|
"name": "umb-document-tree-item",
|
|
94
114
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_item` - \n\n * `item` - ",
|
|
95
115
|
"attributes": []
|
|
96
116
|
},
|
|
97
117
|
{
|
|
98
|
-
"name": "umb-document-workspace-
|
|
118
|
+
"name": "umb-document-workspace-editor",
|
|
99
119
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `splitViewElement` - \n\n * `_unique` {`string | undefined`} - \n\n * `_routes` {`IRoute<any>[] | undefined`} - \n\n * `_availableVariants` {`any[]`} - \n\n * `_workspaceSplitViews` {`ActiveVariant[]`} - \n\n * `_gotWorkspaceRoute` - ",
|
|
100
120
|
"attributes": []
|
|
101
121
|
},
|
|
@@ -155,7 +175,7 @@
|
|
|
155
175
|
},
|
|
156
176
|
{
|
|
157
177
|
"name": "umb-document-info-workspace-view",
|
|
158
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_historyList` {`HistoryNode[]`} - \n\n * `_total` {`number | undefined`} - \n\n * `_currentPage` {`number`} - \n\n * `_nodeName` {`string`} - \n\n * `_workspaceContext`
|
|
178
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_historyList` {`HistoryNode[]`} - \n\n * `_total` {`number | undefined`} - \n\n * `_currentPage` {`number`} - \n\n * `_nodeName` {`string`} - \n\n * `_workspaceContext` - \n\n * `itemsPerPage` {`number`} - ",
|
|
159
179
|
"attributes": []
|
|
160
180
|
},
|
|
161
181
|
{
|
|
@@ -347,7 +367,7 @@
|
|
|
347
367
|
},
|
|
348
368
|
{
|
|
349
369
|
"name": "umb-examine-fields-settings-modal",
|
|
350
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_fields`
|
|
370
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_fields` - ",
|
|
351
371
|
"attributes": []
|
|
352
372
|
},
|
|
353
373
|
{
|
|
@@ -1199,6 +1219,20 @@
|
|
|
1199
1219
|
}
|
|
1200
1220
|
]
|
|
1201
1221
|
},
|
|
1222
|
+
{
|
|
1223
|
+
"name": "umb-input-document-type-picker",
|
|
1224
|
+
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selectedKeys` {`string[]`} - \n\n * `selectedKeys` {`string[]`} - \n\n * `_items` {`any[] | undefined`} - \n\n * `_modalContext` - \n\n * `_documentTypeStore` - \n\n * `_pickedItemsObserver` - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`string`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
1225
|
+
"attributes": [
|
|
1226
|
+
{
|
|
1227
|
+
"name": "value",
|
|
1228
|
+
"description": "`value` {`string`} - \n\nProperty: value"
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"name": "onchange",
|
|
1232
|
+
"description": "`change` {`CustomEvent<unknown>`} - "
|
|
1233
|
+
}
|
|
1234
|
+
]
|
|
1235
|
+
},
|
|
1202
1236
|
{
|
|
1203
1237
|
"name": "umb-input-eye-dropper",
|
|
1204
1238
|
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `opacity` {`boolean`} - \n\n * `swatches` {`string[]`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `opacity` {`boolean`} - \n\n * `swatches` {`string[]`} - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
@@ -1280,8 +1314,18 @@
|
|
|
1280
1314
|
},
|
|
1281
1315
|
{
|
|
1282
1316
|
"name": "umb-input-multi-url-picker",
|
|
1283
|
-
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - when the value of the input changes\n\n * `blur` {} - when the input loses focus\n\n * `focus` {} - when the input gains focus\n\nAttributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `hide-anchor` {`boolean | undefined`} - \n\n * `ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `overlaySize` {UUIModalSidebarSize} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `hideAnchor` {`boolean | undefined`} - \n\n * `ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `overlaySize` {UUIModalSidebarSize} - \n\n * `urls` {Array<UmbLinkPickerLink>} - \n\n * `_urls` {`
|
|
1317
|
+
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - when the value of the input changes\n\n * `blur` {} - when the input loses focus\n\n * `focus` {} - when the input gains focus\n\nAttributes:\n\n * `alias` {`string | undefined`} - \n\n * `variantId` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `hide-anchor` {`boolean | undefined`} - \n\n * `ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `overlaySize` {UUIModalSidebarSize} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `alias` {`string | undefined`} - \n\n * `variantId` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `hideAnchor` {`boolean | undefined`} - \n\n * `ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `overlaySize` {UUIModalSidebarSize} - \n\n * `urls` {Array<UmbLinkPickerLink>} - \n\n * `_urls` {`any[]`} - \n\n * `_modalRoute` - \n\n * `myModalRegistration` - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
1284
1318
|
"attributes": [
|
|
1319
|
+
{
|
|
1320
|
+
"name": "alias",
|
|
1321
|
+
"description": "`alias` {`string | undefined`} - \n\nProperty: alias",
|
|
1322
|
+
"values": []
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"name": "variantId",
|
|
1326
|
+
"description": "`variantId` - \n\nProperty: variantId",
|
|
1327
|
+
"values": []
|
|
1328
|
+
},
|
|
1285
1329
|
{
|
|
1286
1330
|
"name": "min",
|
|
1287
1331
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: undefined",
|
|
@@ -1468,6 +1512,46 @@
|
|
|
1468
1512
|
}
|
|
1469
1513
|
]
|
|
1470
1514
|
},
|
|
1515
|
+
{
|
|
1516
|
+
"name": "umb-input-template-picker",
|
|
1517
|
+
"description": "Events:\n\n * `change-default` {`CustomEvent<unknown>`} - \n\n * `change-allowed` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `allowedKeys` {`string[]`} - \n\n * `defaultKey` {`string`} - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `_allowedKeys` {`string[]`} - \n\n * `allowedKeys` {`string[]`} - \n\n * `_defaultKey` {`string`} - \n\n * `defaultKey` {`string`} - \n\n * `_modalContext` - \n\n * `_templateRepository` - \n\n * `_pickedTemplates` {`any[]`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
1518
|
+
"attributes": [
|
|
1519
|
+
{
|
|
1520
|
+
"name": "min",
|
|
1521
|
+
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: undefined",
|
|
1522
|
+
"values": []
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
"name": "max",
|
|
1526
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: undefined",
|
|
1527
|
+
"values": []
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
"name": "min-message",
|
|
1531
|
+
"description": "`min-message` {boolean} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
"name": "maxMessage",
|
|
1535
|
+
"description": "`maxMessage` {boolean} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
"name": "allowedKeys",
|
|
1539
|
+
"description": "`allowedKeys` {`string[]`} - \n\nProperty: allowedKeys"
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"name": "defaultKey",
|
|
1543
|
+
"description": "`defaultKey` {`string`} - \n\nProperty: defaultKey"
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"name": "onchange-default",
|
|
1547
|
+
"description": "`change-default` {`CustomEvent<unknown>`} - "
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"name": "onchange-allowed",
|
|
1551
|
+
"description": "`change-allowed` {`CustomEvent<unknown>`} - "
|
|
1552
|
+
}
|
|
1553
|
+
]
|
|
1554
|
+
},
|
|
1471
1555
|
{
|
|
1472
1556
|
"name": "umb-input-toggle",
|
|
1473
1557
|
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `checked` {`boolean`} - \n\n * `showLabels` {`boolean`} - \n\n * `labelOn` {`string | undefined`} - \n\n * `labelOff` {`string | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_checked` {`boolean`} - \n\n * `checked` {`boolean`} - \n\n * `showLabels` {`boolean`} - \n\n * `labelOn` {`string | undefined`} - \n\n * `labelOff` {`string | undefined`} - \n\n * `_currentLabel` {`string | undefined`} - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
@@ -1714,6 +1798,37 @@
|
|
|
1714
1798
|
}
|
|
1715
1799
|
]
|
|
1716
1800
|
},
|
|
1801
|
+
{
|
|
1802
|
+
"name": "umb-template-card",
|
|
1803
|
+
"description": "Events:\n\n * `open` {`CustomEvent<unknown>`} - \n\n * `selected` {} - \n\n * `change-default` {`CustomEvent<unknown>`} - \n\nSlots:\n\n * `actions` {} - \n\nAttributes:\n\n * `default` {`boolean`} - \n\n * `key` {`string`} - \n\n * `name` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `default` {`boolean`} - \n\n * `_key` {`string`} - \n\n * `key` {`string`} - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
1804
|
+
"attributes": [
|
|
1805
|
+
{
|
|
1806
|
+
"name": "default",
|
|
1807
|
+
"description": "`default` {`boolean`} - \n\nProperty: default\n\nDefault: false",
|
|
1808
|
+
"valueSet": "v"
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
"name": "key",
|
|
1812
|
+
"description": "`key` {`string`} - \n\nProperty: key"
|
|
1813
|
+
},
|
|
1814
|
+
{
|
|
1815
|
+
"name": "name",
|
|
1816
|
+
"description": "`name` {`string`} - \n\nProperty: name\n\nDefault: "
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
"name": "onopen",
|
|
1820
|
+
"description": "`open` {`CustomEvent<unknown>`} - "
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"name": "onselected",
|
|
1824
|
+
"description": "`selected` {} - "
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"name": "onchange-default",
|
|
1828
|
+
"description": "`change-default` {`CustomEvent<unknown>`} - "
|
|
1829
|
+
}
|
|
1830
|
+
]
|
|
1831
|
+
},
|
|
1717
1832
|
{
|
|
1718
1833
|
"name": "umb-tooltip-menu",
|
|
1719
1834
|
"description": "Attributes:\n\n * `icon-only` {`boolean`} - \n\n * `items` {`TooltipMenuItem[]`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `iconOnly` {`boolean`} - \n\n * `items` {`TooltipMenuItem[]`} - ",
|
|
@@ -1837,7 +1952,7 @@
|
|
|
1837
1952
|
},
|
|
1838
1953
|
{
|
|
1839
1954
|
"name": "umb-workspace-action-menu",
|
|
1840
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_actionMenuIsOpen` {`boolean`} - \n\n * `_workspaceContext`
|
|
1955
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_actionMenuIsOpen` {`boolean`} - \n\n * `_workspaceContext` - \n\n * `_entityKey` {`string | undefined`} - \n\n * `_entityType` {`string | undefined`} - ",
|
|
1841
1956
|
"attributes": []
|
|
1842
1957
|
},
|
|
1843
1958
|
{
|
|
@@ -1847,7 +1962,7 @@
|
|
|
1847
1962
|
},
|
|
1848
1963
|
{
|
|
1849
1964
|
"name": "umb-workspace-view-collection",
|
|
1850
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `manifest` - \n\n * `_workspaceContext`
|
|
1965
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `manifest` - \n\n * `_workspaceContext` - \n\n * `_collectionContext` - ",
|
|
1851
1966
|
"attributes": []
|
|
1852
1967
|
},
|
|
1853
1968
|
{
|
|
@@ -1945,23 +2060,21 @@
|
|
|
1945
2060
|
},
|
|
1946
2061
|
{
|
|
1947
2062
|
"name": "umb-confirm-modal",
|
|
1948
|
-
"description": "Attributes:\n\n * `data`
|
|
2063
|
+
"description": "Attributes:\n\n * `data` - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `data` - ",
|
|
1949
2064
|
"attributes": [
|
|
1950
2065
|
{
|
|
1951
2066
|
"name": "data",
|
|
1952
|
-
"description": "`data`
|
|
1953
|
-
"values": []
|
|
2067
|
+
"description": "`data` - \n\nProperty: data"
|
|
1954
2068
|
}
|
|
1955
2069
|
]
|
|
1956
2070
|
},
|
|
1957
2071
|
{
|
|
1958
2072
|
"name": "umb-embedded-media-modal",
|
|
1959
|
-
"description": "Attributes:\n\n * `data`
|
|
2073
|
+
"description": "Attributes:\n\n * `data` - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `data` - \n\n * `_model` {`UmbEmbeddedMediaModalModel`} - ",
|
|
1960
2074
|
"attributes": [
|
|
1961
2075
|
{
|
|
1962
2076
|
"name": "data",
|
|
1963
|
-
"description": "`data`
|
|
1964
|
-
"values": []
|
|
2077
|
+
"description": "`data` - \n\nProperty: data"
|
|
1965
2078
|
}
|
|
1966
2079
|
]
|
|
1967
2080
|
},
|
|
@@ -1985,7 +2098,7 @@
|
|
|
1985
2098
|
},
|
|
1986
2099
|
{
|
|
1987
2100
|
"name": "umb-link-picker-modal",
|
|
1988
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selectedKey` {`string | undefined`} - \n\n * `
|
|
2101
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selectedKey` {`string | undefined`} - \n\n * `_index` {`number | null`} - \n\n * `_link` - \n\n * `_layout` - \n\n * `_linkInput` - \n\n * `_linkQueryInput` - \n\n * `_linkTitleInput` - ",
|
|
1989
2102
|
"attributes": []
|
|
1990
2103
|
},
|
|
1991
2104
|
{
|
|
@@ -1998,6 +2111,16 @@
|
|
|
1998
2111
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_sections` {`any[]`} - ",
|
|
1999
2112
|
"attributes": []
|
|
2000
2113
|
},
|
|
2114
|
+
{
|
|
2115
|
+
"name": "umb-template-picker-modal",
|
|
2116
|
+
"description": "Properties:\n\n * `_selection` {`string[]`} - \n\n * `_multiple` {`boolean`} - \n\n * `styles` {`CSSResult[]`} - ",
|
|
2117
|
+
"attributes": []
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
"name": "umb-template-modal",
|
|
2121
|
+
"description": "Properties:\n\n * `_key` {`string`} - \n\n * `_template` - \n\n * `_codeEditor` - \n\n * `styles` {`CSSResult[]`} - ",
|
|
2122
|
+
"attributes": []
|
|
2123
|
+
},
|
|
2001
2124
|
{
|
|
2002
2125
|
"name": "umb-property-action-clear",
|
|
2003
2126
|
"description": "Events:\n\n * `close` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`string`} - \n\nProperties:\n\n * `_propertyContext` - \n\n * `value` {`string`} - ",
|
|
@@ -2063,12 +2186,11 @@
|
|
|
2063
2186
|
},
|
|
2064
2187
|
{
|
|
2065
2188
|
"name": "umb-property-editor-ui-picker-modal",
|
|
2066
|
-
"description": "Attributes:\n\n * `data`
|
|
2189
|
+
"description": "Attributes:\n\n * `data` - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `data` - \n\n * `_groupedPropertyEditorUIs` {`GroupedPropertyEditorUIs`} - \n\n * `_propertyEditorUIs` {`any[]`} - \n\n * `_selection` {`string[]`} - \n\n * `_submitLabel` {`string`} - \n\n * `modalHandler` - ",
|
|
2067
2190
|
"attributes": [
|
|
2068
2191
|
{
|
|
2069
2192
|
"name": "data",
|
|
2070
|
-
"description": "`data`
|
|
2071
|
-
"values": []
|
|
2193
|
+
"description": "`data` - \n\nProperty: data"
|
|
2072
2194
|
}
|
|
2073
2195
|
]
|
|
2074
2196
|
},
|
|
@@ -2373,11 +2495,11 @@
|
|
|
2373
2495
|
},
|
|
2374
2496
|
{
|
|
2375
2497
|
"name": "umb-property-editor-ui-multi-url-picker",
|
|
2376
|
-
"description": "Events:\n\n * `property-value-change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`
|
|
2498
|
+
"description": "Events:\n\n * `property-value-change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`any[]`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `value` {`any[]`} - \n\n * `config` {`any[]`} - \n\n * `_overlaySize` {`UUIModalSidebarSize | undefined`} - \n\n * `_hideAnchor` {`boolean | undefined`} - \n\n * `_ignoreUserStartNodes` {`boolean | undefined`} - \n\n * `_maxNumber` {`number | undefined`} - \n\n * `_minNumber` {`number | undefined`} - \n\n * `_alias` {`string | undefined`} - \n\n * `_propertyVariantId` {`string | undefined`} - ",
|
|
2377
2499
|
"attributes": [
|
|
2378
2500
|
{
|
|
2379
2501
|
"name": "value",
|
|
2380
|
-
"description": "`value` {`
|
|
2502
|
+
"description": "`value` {`any[]`} - \n\nProperty: value\n\nDefault: "
|
|
2381
2503
|
},
|
|
2382
2504
|
{
|
|
2383
2505
|
"name": "onproperty-value-change",
|
|
@@ -2704,12 +2826,12 @@
|
|
|
2704
2826
|
"attributes": []
|
|
2705
2827
|
},
|
|
2706
2828
|
{
|
|
2707
|
-
"name": "umb-export-dictionary-modal
|
|
2829
|
+
"name": "umb-export-dictionary-modal",
|
|
2708
2830
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_form` {`HTMLFormElement`} - ",
|
|
2709
2831
|
"attributes": []
|
|
2710
2832
|
},
|
|
2711
2833
|
{
|
|
2712
|
-
"name": "umb-import-dictionary-modal
|
|
2834
|
+
"name": "umb-import-dictionary-modal",
|
|
2713
2835
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_form` {`HTMLFormElement`} - \n\n * `_uploadedDictionary` - \n\n * `_showUploadView` {`boolean`} - \n\n * `_showImportView` {`boolean`} - \n\n * `_showErrorView` {`boolean`} - \n\n * `_selection` {`string[]`} - ",
|
|
2714
2836
|
"attributes": []
|
|
2715
2837
|
},
|
|
@@ -2739,23 +2861,42 @@
|
|
|
2739
2861
|
},
|
|
2740
2862
|
{
|
|
2741
2863
|
"name": "umb-change-password-modal",
|
|
2742
|
-
"description": "Attributes:\n\n * `data`
|
|
2864
|
+
"description": "Attributes:\n\n * `data` - \n\nProperties:\n\n * `styles` - \n\n * `modalHandler` - \n\n * `data` - ",
|
|
2743
2865
|
"attributes": [
|
|
2744
2866
|
{
|
|
2745
2867
|
"name": "data",
|
|
2746
|
-
"description": "`data`
|
|
2747
|
-
"values": []
|
|
2868
|
+
"description": "`data` - \n\nProperty: data"
|
|
2748
2869
|
}
|
|
2749
2870
|
]
|
|
2750
2871
|
},
|
|
2751
2872
|
{
|
|
2752
2873
|
"name": "umb-current-user-modal",
|
|
2753
|
-
"description": "Properties:\n\n * `styles` - \n\n * `modalHandler` - \n\n * `_currentUser` - \n\n * `
|
|
2874
|
+
"description": "Properties:\n\n * `styles` - \n\n * `modalHandler` - \n\n * `_currentUser` - \n\n * `_currentUserStore` - ",
|
|
2875
|
+
"attributes": []
|
|
2876
|
+
},
|
|
2877
|
+
{
|
|
2878
|
+
"name": "umb-user-profile-app-external-login-providers",
|
|
2879
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - ",
|
|
2880
|
+
"attributes": []
|
|
2881
|
+
},
|
|
2882
|
+
{
|
|
2883
|
+
"name": "umb-user-profile-app-history",
|
|
2884
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_history` {`UmbCurrentUserHistoryItem[]`} - ",
|
|
2754
2885
|
"attributes": []
|
|
2755
2886
|
},
|
|
2756
2887
|
{
|
|
2757
2888
|
"name": "umb-user-dashboard-test",
|
|
2758
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `
|
|
2889
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_history` {`UmbCurrentUserHistoryItem[]`} - ",
|
|
2890
|
+
"attributes": []
|
|
2891
|
+
},
|
|
2892
|
+
{
|
|
2893
|
+
"name": "umb-user-profile-app-profile",
|
|
2894
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_currentUser` - \n\n * `_modalContext` - \n\n * `_currentUserStore` - ",
|
|
2895
|
+
"attributes": []
|
|
2896
|
+
},
|
|
2897
|
+
{
|
|
2898
|
+
"name": "umb-user-profile-app-themes",
|
|
2899
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_themeAlias` {`string | null`} - \n\n * `_themes` {`any[]`} - ",
|
|
2759
2900
|
"attributes": []
|
|
2760
2901
|
},
|
|
2761
2902
|
{
|
|
@@ -2918,11 +3059,34 @@
|
|
|
2918
3059
|
},
|
|
2919
3060
|
{
|
|
2920
3061
|
"name": "umb-router-slot",
|
|
2921
|
-
"description": "Events:\n\n * `init` - fires when the router is connected\n\n * `change` - fires when a path of this router is changed\n\nAttributes:\n\n * `routes` {`
|
|
3062
|
+
"description": "Events:\n\n * `init` - fires when the router is connected\n\n * `change` - fires when a path of this router is changed\n\nAttributes:\n\n * `routes` {`any[] | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `routes` {`any[] | undefined`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `absoluteRouterPath` {`string | undefined`} - \n\n * `_activeLocalPath` {`string | undefined`} - \n\n * `localActiveViewPath` {`string | undefined`} - \n\n * `absoluteActiveViewPath` {`string`} - \n\n * `_onNavigationChanged` - ",
|
|
3063
|
+
"attributes": [
|
|
3064
|
+
{
|
|
3065
|
+
"name": "routes",
|
|
3066
|
+
"description": "`routes` {`any[] | undefined`} - \n\nProperty: routes",
|
|
3067
|
+
"values": []
|
|
3068
|
+
},
|
|
3069
|
+
{
|
|
3070
|
+
"name": "oninit",
|
|
3071
|
+
"description": "`init` - fires when the router is connected"
|
|
3072
|
+
},
|
|
3073
|
+
{
|
|
3074
|
+
"name": "onchange",
|
|
3075
|
+
"description": "`change` - fires when a path of this router is changed"
|
|
3076
|
+
}
|
|
3077
|
+
]
|
|
3078
|
+
},
|
|
3079
|
+
{
|
|
3080
|
+
"name": "umb-variant-router-slot",
|
|
3081
|
+
"description": "Events:\n\n * `init` - fires when the router is connected\n\n * `change` - fires when a path of this router is changed\n\nAttributes:\n\n * `variantId` {`UmbVariantId[]`} - \n\n * `routes` {`any[] | undefined`} - \n\nProperties:\n\n * `_routes` {`any[] | undefined`} - \n\n * `variantId` {`UmbVariantId[]`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `routes` {`any[] | undefined`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `absoluteRouterPath` {`string | undefined`} - \n\n * `_activeLocalPath` {`string | undefined`} - \n\n * `localActiveViewPath` {`string | undefined`} - \n\n * `absoluteActiveViewPath` {`string`} - \n\n * `_onNavigationChanged` - ",
|
|
2922
3082
|
"attributes": [
|
|
3083
|
+
{
|
|
3084
|
+
"name": "variantId",
|
|
3085
|
+
"description": "`variantId` {`UmbVariantId[]`} - \n\nProperty: variantId"
|
|
3086
|
+
},
|
|
2923
3087
|
{
|
|
2924
3088
|
"name": "routes",
|
|
2925
|
-
"description": "`routes` {`
|
|
3089
|
+
"description": "`routes` {`any[] | undefined`} - \n\nProperty: routes",
|
|
2926
3090
|
"values": []
|
|
2927
3091
|
},
|
|
2928
3092
|
{
|