@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
17 lines (16 loc) • 612 B
TypeScript
import { ThemeDefinition } from "@omnia/fx/models";
import { LayoutCanvasStore } from "../../..";
import { VueComponentBase, ThemeStore } from "@omnia/fx/ux";
export default class BlockThemingLayoutSettingItem extends VueComponentBase {
editorStore: LayoutCanvasStore;
private subscriptionHandler;
themeStore: ThemeStore;
private omniaUxLoc;
private layoutDefinition;
private editingThemedefinition;
mounted(): void;
created(): void;
onThemingChange(updatedTheme: ThemeDefinition): void;
onSetThemeOption(option: boolean): void;
render(): VueTsxSupport.JSX.Element;
}