@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
25 lines (24 loc) • 798 B
TypeScript
import { LayoutCanvasStore } from "../../..";
import { BlockTitleSettingsStore, MultilingualStore } from "@omnia/fx/stores";
import { VueComponentBase } from "@omnia/fx/ux";
export default class HeaderSectionItem extends VueComponentBase {
editorStore: LayoutCanvasStore;
private subscriptionHandler;
multilingualStore: MultilingualStore;
blockTitleSettingsStore: BlockTitleSettingsStore;
private localizationService;
private omniaUxLoc;
private section;
private model;
private headerLevels;
mounted(): void;
created(): void;
/**
* Watch for section changes
* */
private onSectionChange;
private onIconValueChanged;
private onHeaderLevelValueChanged;
private onHeaderValueChanged;
render(): VueTsxSupport.JSX.Element;
}