@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
22 lines (21 loc) • 776 B
TypeScript
import { Section, StepperSectionSettings } from "../../../../models";
import { VueComponentBase } from "../../..";
import { MultilingualStore } from "../../../../stores";
import { OmniaUxLocalization } from "../../../UxModels";
export interface LayoutSectionStepperProps {
section: Section;
layoutId: string;
useScrollMargingFix: boolean;
tabState: object;
themeTargetId?: string;
}
export declare class LayoutSectionStepper extends VueComponentBase<LayoutSectionStepperProps> {
multilingualStore: MultilingualStore;
omniaUxLoc: OmniaUxLocalization;
section: Section<StepperSectionSettings>;
layoutId: string;
useScrollMargingFix: boolean;
tabState: object;
private renderSectionItem;
render(): VueTsxSupport.JSX.Element;
}