@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
27 lines (26 loc) • 814 B
TypeScript
import { LayoutItem } from "../../../../../models";
import { VueComponentBase, VueComponentBaseProps } from "../../../..";
interface BreakPointSettingsProps extends VueComponentBaseProps {
item: LayoutItem;
}
export declare class BreakPointSettingsComponent extends VueComponentBase<BreakPointSettingsProps> {
secondarycolor: boolean;
item: LayoutItem;
private editorStore;
private subscriptionHandler;
private omniaUxLoc;
private primaryColor;
private model;
mounted(): void;
created(): void;
private activeTab;
private onSelectBreakPoint;
private initSettings;
/**
* Creates the block settings element
*/
createBlockSettingsForm(elementName: string): void;
private renderBreakPoints;
render(): VueTsxSupport.JSX.Element;
}
export {};