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 23 24 25 26 27 28 29 30 31 32 33 34 35 | 1x 1x 1x 1x 1x 1x 1x 1x 1x | export const BASE_CLASS = 'sui-MoleculeCoachmark' export const STEP_PLACEMENT_TYPES = { 'bottom-end': 'bottom-end', 'bottom-start': 'bottom-start', 'left-end': 'left-end', 'left-start': 'left-start', 'right-end': 'right-end', 'right-start': 'right-start', 'top-end': 'top-end', 'top-start': 'top-start', auto: 'auto', bottom: 'bottom', center: 'center', left: 'left', right: 'right', top: 'top' } export const STEP_BEACON_PLACEMENT_TYPES = { bottom: 'bottom', left: 'left', right: 'right', top: 'top' } export const DEFAULT_SCROLL_OFFSET = 20 export const DEFAULT_SCROLL_DURATION = 300 export const DEFAULT_SPOTLIGHT_PADDING = 10 export const DEFAULT_Z_INDEX = 9999 export const MINIMUM_COACHMARK_STEPS = 1 export const DEFAULT_TOOLTIP_ACTION_BUTTONS_IDS = { BACK: 'back', NEXT: 'next' } |