@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
24 lines (23 loc) • 1.25 kB
TypeScript
import { PropertiesBlockSettings, SpacingSettings } from "@omnia/fx-models";
import { types } from "typestyle";
import { ITheming } from "../ux/theming";
export declare const PropertiesBlockAdvancedStyles: {
propertyWrapper?: types.NestedCSSProperties;
propertyContentWrapper?: (settings: PropertiesBlockSettings) => types.NestedCSSProperties;
icon?: types.NestedCSSProperties;
propertyLabelWrapper?: (fullWidth: boolean, textColor: string) => types.NestedCSSProperties;
propertyLabel?: (fullWidth: boolean) => types.NestedCSSProperties;
propertyValue?: (textColor: string) => types.NestedCSSProperties;
propertiesWrapper?: (settings: PropertiesBlockSettings, theming: ITheming) => types.NestedCSSProperties;
separator: (theming: ITheming) => types.NestedCSSProperties;
};
export declare const PropertiesBlockStyles: {
padding?: (spacing: SpacingSettings) => types.NestedCSSProperties;
layout?: types.NestedCSSProperties;
wrapper?: types.NestedCSSProperties;
contentHidden?: types.NestedCSSProperties;
propertyLabel?: types.NestedCSSProperties;
propertyValue?: types.NestedCSSProperties;
setting?: types.NestedCSSProperties;
propertyText?: (theme: ITheming) => types.NestedCSSProperties;
};