@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
48 lines (47 loc) • 1.4 kB
TypeScript
import { NestedCSSProperties } from "typestyle/lib/types";
export declare const Styles: {
darkColors: {
activeTextColor: string;
activeBgColor: string;
hoverTextColor: string;
hoverBgColor: string;
componentLabel: string;
disabledComponentLabel: string;
};
lightColors: {
activeTextColor: string;
activeBgColor: string;
hoverTextColor: string;
hoverBgColor: string;
componentLabel: string;
disabledComponentLabel: string;
};
clearfix: {
visibility: string;
display: string;
fontSize: number;
content: string;
clear: string;
height: number;
};
fonts: {
getFont(fontSize: number, opacity?: number, bold?: boolean): NestedCSSProperties;
readonly dialogHeading: NestedCSSProperties;
readonly groupingHeading: NestedCSSProperties;
readonly itemPrimary: NestedCSSProperties;
readonly itemSecondary: NestedCSSProperties;
};
components: {
layout: string;
title: string;
settingsGear: string;
};
chips: {
item: (minHeight: string, fontSize: string, padding?: {
top?: string;
right?: string;
bottom?: string;
left?: string;
}, handleChildMarginInList?: boolean) => NestedCSSProperties;
};
};