@umbraco-cms/backoffice 1.0.0-next.de0ffca0 → 1.0.0-next.f2af51c4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/backend-api.d.ts +594 -272
- package/context-api.d.ts +62 -2
- package/controller.d.ts +2 -1
- package/custom-elements.json +525 -57
- package/element.d.ts +1 -1
- package/entity-action.d.ts +19 -2
- package/extensions-api.d.ts +2 -1
- package/extensions-registry.d.ts +6 -3
- package/modal.d.ts +27 -318
- package/models.d.ts +8 -8
- package/observable-api.d.ts +62 -48
- package/package.json +1 -1
- package/picker-input.d.ts +24 -0
- package/repository.d.ts +65 -28
- package/router.d.ts +272 -22
- package/store.d.ts +48 -53
- package/utils.d.ts +3 -1
- package/vscode-html-custom-data.json +219 -53
- package/workspace.d.ts +4 -4
package/context-api.d.ts
CHANGED
|
@@ -165,11 +165,71 @@ declare class UmbContextProvideEventImplementation extends Event implements UmbC
|
|
|
165
165
|
declare const isUmbContextProvideEventType: (event: Event) => event is UmbContextProvideEventImplementation;
|
|
166
166
|
|
|
167
167
|
interface UmbEntityWorkspaceContextInterface<EntityType = unknown> extends UmbWorkspaceContextInterface<EntityType> {
|
|
168
|
-
|
|
168
|
+
getEntityId(): string | undefined;
|
|
169
169
|
getEntityType(): string;
|
|
170
170
|
save(): Promise<void>;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
declare const UMB_ENTITY_WORKSPACE_CONTEXT: UmbContextToken<UmbEntityWorkspaceContextInterface<BaseEntity>>;
|
|
174
174
|
|
|
175
|
-
|
|
175
|
+
/**
|
|
176
|
+
* Change the collection of Contexts into a simplified array of data
|
|
177
|
+
*
|
|
178
|
+
* @param contexts This is a map of the collected contexts from umb-debug
|
|
179
|
+
* @returns An array of simplified context data
|
|
180
|
+
*/
|
|
181
|
+
declare function contextData(contexts: Map<any, any>): Array<DebugContextData>;
|
|
182
|
+
interface DebugContextData {
|
|
183
|
+
/**
|
|
184
|
+
* The alias of the context
|
|
185
|
+
*
|
|
186
|
+
* @type {string}
|
|
187
|
+
* @memberof DebugContextData
|
|
188
|
+
*/
|
|
189
|
+
alias: string;
|
|
190
|
+
/**
|
|
191
|
+
* The type of the context such as object or string
|
|
192
|
+
*
|
|
193
|
+
* @type {("string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function")}
|
|
194
|
+
* @memberof DebugContextData
|
|
195
|
+
*/
|
|
196
|
+
type: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
|
|
197
|
+
/**
|
|
198
|
+
* Data about the context that includes method and property names
|
|
199
|
+
*
|
|
200
|
+
* @type {DebugContextItemData}
|
|
201
|
+
* @memberof DebugContextData
|
|
202
|
+
*/
|
|
203
|
+
data: DebugContextItemData;
|
|
204
|
+
}
|
|
205
|
+
interface DebugContextItemData {
|
|
206
|
+
type: string;
|
|
207
|
+
methods?: Array<unknown>;
|
|
208
|
+
properties?: Array<DebugContextItemPropertyData>;
|
|
209
|
+
value?: unknown;
|
|
210
|
+
}
|
|
211
|
+
interface DebugContextItemPropertyData {
|
|
212
|
+
/**
|
|
213
|
+
* The name of the property
|
|
214
|
+
*
|
|
215
|
+
* @type {string}
|
|
216
|
+
* @memberof DebugContextItemPropertyData
|
|
217
|
+
*/
|
|
218
|
+
key: string;
|
|
219
|
+
/**
|
|
220
|
+
* The type of the property's value such as string or number
|
|
221
|
+
*
|
|
222
|
+
* @type {("string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function")}
|
|
223
|
+
* @memberof DebugContextItemPropertyData
|
|
224
|
+
*/
|
|
225
|
+
type: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
|
|
226
|
+
/**
|
|
227
|
+
* Simple types such as string or number can have their value displayed stored inside the property
|
|
228
|
+
*
|
|
229
|
+
* @type {("string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function")}
|
|
230
|
+
* @memberof DebugContextItemPropertyData
|
|
231
|
+
*/
|
|
232
|
+
value?: unknown;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export { DebugContextData, DebugContextItemData, DebugContextItemPropertyData, UMB_ENTITY_WORKSPACE_CONTEXT, UmbContextCallback, UmbContextConsumer, UmbContextConsumerController, UmbContextDebugRequest, UmbContextProvideEvent, UmbContextProvideEventImplementation, UmbContextProvider, UmbContextProviderController, UmbContextRequestEvent, UmbContextRequestEventImplementation, UmbContextToken, contextData, isUmbContextProvideEventType, isUmbContextRequestEvent, umbContextProvideEventType, umbContextRequestEventType, umbDebugContextEventType };
|
package/controller.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ declare class UmbControllerHostElement extends HTMLElement {
|
|
|
11
11
|
hasController(controller: UmbControllerInterface): boolean;
|
|
12
12
|
getControllers(filterMethod: (ctrl: UmbControllerInterface) => boolean): UmbControllerInterface[];
|
|
13
13
|
addController(controller: UmbControllerInterface): void;
|
|
14
|
+
removeControllerByUnique(unique: UmbControllerInterface['unique']): void;
|
|
14
15
|
removeController(controller: UmbControllerInterface): void;
|
|
15
16
|
}
|
|
16
17
|
/**
|
|
@@ -20,7 +21,7 @@ declare class UmbControllerHostElement extends HTMLElement {
|
|
|
20
21
|
* @param {Object} superClass - superclass to be extended.
|
|
21
22
|
* @mixin
|
|
22
23
|
*/
|
|
23
|
-
declare const UmbControllerHostMixin: <T extends HTMLElementConstructor
|
|
24
|
+
declare const UmbControllerHostMixin: <T extends HTMLElementConstructor>(superClass: T) => HTMLElementConstructor<UmbControllerHostElement> & T;
|
|
24
25
|
declare global {
|
|
25
26
|
interface HTMLElement {
|
|
26
27
|
connectedCallback(): void;
|