@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
55 lines (54 loc) • 1.18 kB
TypeScript
declare const CLASS_PREFIX = "md-flex";
declare const ALIGN_CONTENT: {
start: string;
end: string;
center: string;
spaceBetween: string;
spaceAround: string;
spaceEvenly: string;
stretch: string;
baseline: string;
};
declare const JUSTIFY_CONTENT: {
left: string;
right: string;
start: string;
end: string;
center: string;
spaceBetween: string;
spaceAround: string;
spaceEvenly: string;
stretch: string;
baseline: string;
};
declare const ALIGN_ITEMS: {
start: string;
end: string;
center: string;
stretch: string;
baseline: string;
selfStart: string;
selfEnd: string;
};
declare const DIRECTION: {
row: string;
column: string;
rowReverse: string;
columnReverse: string;
};
declare const WRAP: {
wrap: string;
nowrap: string;
wrapReverse: string;
};
declare const DEFAULTS: {
DIRECTION: string;
JUSTIFY_CONTENT: string;
ALIGN_ITEMS: string;
ALIGN_CONTENT: string;
WRAP: string;
};
declare const STYLE: {
wrapper: string;
};
export { CLASS_PREFIX, DEFAULTS, STYLE, ALIGN_CONTENT, JUSTIFY_CONTENT, ALIGN_ITEMS, DIRECTION, WRAP, };