All files / src classes.ts

100% Statements 3/3
100% Branches 2/2
100% Functions 0/0
100% Lines 3/3

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      2x   2x         2x                      
/**
 * EASY EXPORT CLASSES TO USE ELSEWHERE
 */
import { Classes as BPClasses } from '@blueprintjs/core';
 
const NS = process.env.BLUEPRINT_NAMESPACE || 'bp3';
 
/**
 * EXPORTS
 */
export const Classes = {
  ...BPClasses,
  NS,
  CODE_EDITOR: `${NS}-code-editor`,
  SIMPLE_TAB: `${NS}-simple-tab`,
  SIMPLE_TAB_LIST: `${NS}-simple-tab-list`,
  SIMPLE_TAB_PANEL: `${NS}-simple-tab-panel`,
  SCROLL_TRACK: `${NS}-scroll-track`,
  SCROLL_THUMB: `${NS}-scroll-thumb`,
  SCROLL_CONTAINER: `${NS}-scroll-container`,
};