@agendize/design-system
Version:
Agendize web design system
25 lines • 955 B
TypeScript
import { TextAlign } from "../../viewModel";
export declare const SectionColorValues: string[];
export declare const SectionPaddingValues: string[];
export declare const TitleLevelValues: string[];
export declare const SectionVariantValues: string[];
export declare type SectionColor = typeof SectionColorValues[number];
export declare type SectionPaddingOption = typeof SectionPaddingValues[number];
export declare type TitleLevelOption = typeof TitleLevelValues[number];
export declare type SectionType = typeof SectionVariantValues[number];
export interface SectionProperties {
id?: string;
title?: string;
titleLevel?: TitleLevelOption;
titleClass?: string;
subTitle?: string;
padding?: SectionPaddingOption;
border?: boolean;
color?: SectionColor;
bodyStretch?: boolean;
containerGap?: 2 | 3 | 5;
gap?: number;
textAlign?: TextAlign;
variant?: SectionType;
}
//# sourceMappingURL=viewModel.d.ts.map