@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
19 lines (18 loc) • 687 B
TypeScript
import { OmniaUxLocalization } from "../../..";
import { Section, StepperSectionSettings } from "../../../../models";
import { VueComponentBase } from "../../../VueComponentBase";
export interface LayoutSectionStepperRendererProps {
section: Section;
layoutId: string;
useScrollMargingFix: boolean;
themeTargetId?: string;
}
export declare class LayoutSectionStepperRenderer extends VueComponentBase<LayoutSectionStepperRendererProps> {
section: Section<StepperSectionSettings>;
layoutId: string;
useScrollMargingFix: boolean;
omniaUxLoc: OmniaUxLocalization;
created(): void;
private renderSectionItem;
render(): VueTsxSupport.JSX.Element;
}