2021-01-07 04:10:22 -05:00
|
|
|
// We do not consider these nodes in the search index
|
|
|
|
export const EXCLUDED_NODES = ['OPTION'];
|
|
|
|
|
|
|
|
// Used to hide the sections that do not match * the search term
|
|
|
|
export const HIDE_CLASS = 'gl-display-none';
|
|
|
|
|
|
|
|
// used to highlight the text that matches the * search term
|
2021-03-22 11:09:31 -04:00
|
|
|
export const HIGHLIGHT_CLASS = 'gl-bg-orange-100';
|
2021-01-07 04:10:22 -05:00
|
|
|
|
2021-10-13 08:12:20 -04:00
|
|
|
// used to remove padding for text that matches the * search term
|
|
|
|
export const NONE_PADDING_CLASS = 'gl-p-0';
|
|
|
|
|
2021-01-07 04:10:22 -05:00
|
|
|
// How many seconds to wait until the user * stops typing
|
|
|
|
export const TYPING_DELAY = 400;
|