@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
23 lines (22 loc) • 630 B
TypeScript
import { LayoutCanvasStore } from "../../..";
import { VueComponentBase } from "@omnia/fx/ux";
export default class GeneralItem extends VueComponentBase {
editorStore: LayoutCanvasStore;
private subscriptionHandler;
private omniaUxLoc;
private section;
private settings;
private model;
mounted(): void;
created(): void;
/**Watch for fixed width changes */
private onWidthChange;
/**
* Watch for section changes
* */
private onSectionChange;
private onSetWidthOption;
private onSetAlignment;
private onSetSectionType;
render(): VueTsxSupport.JSX.Element;
}