Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | export const BASE_CLASS = 'sui-MoleculeDropdownOption'
export const CLASS_CHECKBOX = `${BASE_CLASS}-checkbox`
export const MODIFIER_TWO_LINES = `twoLines`
export const MODIFIER_THREE_LINES = `threeLines`
export const MODIFIER_NO_WRAP = 'noWrap'
export const MODIFIER_LINE_WRAP = 'lineWrap'
export const CLASS_TEXT = `${BASE_CLASS}-text`
export const CLASS_DESCRIPTION = `${BASE_CLASS}-description`
export const CLASS_DISABLED = `${BASE_CLASS}--disabled`
export const CLASS_WITH_DESCRIPTION = `${BASE_CLASS}--withDescription`
export const CLASS_WITH_DESCRIPTION_AND_ADDON = `${BASE_CLASS}--withDescriptionAndAddon`
export const CLASS_HIGHLIGHTED = `is-highlighted`
export const CLASS_HIGHLIGHTED_MARK = `${BASE_CLASS}-mark`
export const CLASS_LEFT_ADDON = `${BASE_CLASS}-leftAddon`
export const TEXT_WRAP_STYLES = {
NO_WRAP: 'noWrap',
TWO_LINES: 'twoLines',
THREE_LINES: 'threeLines',
LINE_WRAP: 'lineWrap'
}
|