UNPKG

@elastic/eui

Version:

Elastic UI Component Library

31 lines (29 loc) 1.07 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SortDirectionType = exports.SortDirection = void 0; var _propTypes = _interopRequireDefault(require("prop-types")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ var ASC = 'asc'; var DESC = 'desc'; var SortDirection = Object.freeze({ ASC: ASC, DESC: DESC, isAsc: function isAsc(direction) { return direction === ASC; }, reverse: function reverse(direction) { return this.isAsc(direction) ? DESC : ASC; } }); exports.SortDirection = SortDirection; var SortDirectionType = _propTypes.default.oneOf([ASC, DESC]); exports.SortDirectionType = SortDirectionType;