UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

21 lines (16 loc) 426 B
/** * MSKCC 2021, 2024 */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); /** * We currently support the following sorting states for DataTable headers, * namely: `NONE` for no sorting being applied, and then `DESC` and `ASC` for * the corresponding direction of the sorting order. */ const sortStates = { NONE: 'NONE', DESC: 'DESC', ASC: 'ASC' }; exports.sortStates = sortStates;