@carbon/ibm-security
Version:
Carbon for Cloud & Cognitive IBM Security UI components
20 lines (16 loc) • 837 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.tableWrapperNamespace = exports.overflowCellNamespace = exports.namespace = void 0;
var _namespace = require("../../globals/namespace");
/**
* @file Set of constant values used in Data Table related components.
* @copyright IBM Security 2019
*/
/** @type {string} Namespace string for class naming of data tables */
var namespace = exports.namespace = (0, _namespace.getComponentNamespace)('data-table');
/** @type {string} Class name given to table wrapper element. */
var tableWrapperNamespace = exports.tableWrapperNamespace = "".concat(namespace, "__table-wrapper");
/** @type {string} Class name given to the overflow menu table cell. */
var overflowCellNamespace = exports.overflowCellNamespace = "".concat(namespace, "__overflow-cell");