@arche-mc2/arche-controls
Version:
We know that there are a ton of react UI library projects to choose from. Our hope with this one is to provide the next generation of react components that you can use to bootstrap your next project, or as a reference for building a UIKit. Read on to get
21 lines (20 loc) • 1.34 kB
TypeScript
import { UpMenuProps, UpMenuState } from './UpMenu';
import { WithThemeProps } from '../../../Common/theming';
import { CustomStyles } from '../../../Common/theming/types';
import { NestedCSSProperties } from 'typestyle/lib/types';
export declare type UpMenuCustomStylesKeys = 'menu' | 'nav' | 'content' | 'header' | 'footer';
export declare type UpMenuCustomStyles = CustomStyles<UpMenuCustomStylesKeys, Partial<UpMenuProps>, UpMenuState>;
export declare const getMenuCustomStyle: (key: UpMenuCustomStylesKeys, customStyles: CustomStyles<UpMenuCustomStylesKeys, Partial<UpMenuProps>, UpMenuState>, props: Partial<UpMenuProps>, state?: UpMenuState) => NestedCSSProperties;
export declare const MenuStyles: (props: UpMenuProps & WithThemeProps & UpMenuState) => string;
export declare const heightTopBar: number;
export declare const widthLeftMenuStandard: number;
export declare const widthLeftMenuCollapse: number;
export declare const styleMenuOh: string;
export declare const styleLeftMenu: string;
export declare const imgHomelink: string;
export declare const styleLeftMenuCollapse: string;
export declare const rightSpace: string;
export declare const rightSpaceCollapse: string;
export declare const styleTopbar: string;
export declare const styleContenu: string;
export declare const styleUserExpand: string;