{"version":3,"sources":["components/data-table/table-cell-skeleton.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,OAAO,WAAW,MAAM,cAAc,CAAC;AAIvC;;;GAGG;AACH,cACM,mBAAoB,SAAQ,WAAW;IAC3C,MAAM;CAGP;AAED,eAAe,mBAAmB,CAAC","file":"table-cell-skeleton.d.ts","sourcesContent":["/**\n * @license\n *\n * Copyright IBM Corp. 2019, 2021\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nimport { html, customElement } from 'lit-element';\nimport settings from 'carbon-components/es/globals/js/settings';\nimport BXTableCell from './table-cell';\n\nconst { prefix } = settings;\n\n/**\n * Data table cell with skeleton content.\n * @element bx-table-cell-skeleton\n */\n@customElement(`${prefix}-table-cell-skeleton`)\nclass BXTableCellSkeleton extends BXTableCell {\n  render() {\n    return html` <span></span> `;\n  }\n}\n\nexport default BXTableCellSkeleton;\n"]}