mstr-viz
Version:
A new dev tool for creating custom visualizations
18 lines (15 loc) • 456 B
JavaScript
const FONT_ALIGN_VALUES = {
HORIZONTAL_ALIGN_OPTIONS: ['align-left', 'align-center', 'align-right'],
HORIZONTAL_ALIGN_STYLE: 'toggle-button-radio _3item'
};
const FONT_PROPS_SECTION = {
TITLE: 'title',
NAME_SELECT: 'nameSelect',
STYLE: 'style',
SIZE_AND_COLOR: 'sizeAndColor',
HORIZONTAL_ALIGN: 'horizontalAlign',
VERTICAL_ALIGN: 'verticalAlign',
ROTATION: 'rotation',
WRAP_TEXT: 'wrapText'
};
export { FONT_PROPS_SECTION, FONT_ALIGN_VALUES };