This commit is contained in:
Niels Lyngsø
2024-01-03 10:20:35 +01:00
parent 391404149b
commit 87f435e309

View File

@@ -22,8 +22,15 @@ export class UmbBlockContext<
#setting = new UmbObjectState<UmbBlockDataType | undefined>(undefined);
public readonly setting = this.#setting.asObservable();
constructor(host: UmbControllerHost) {
// Public properties:
public readonly contentUdi: string;
constructor(host: UmbControllerHost, contentUdi) {
super(host, UMB_BLOCK_CONTEXT);
this.contentUdi = contentUdi;
// Consume block manager?
// observe data.
}
}