@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
29 lines (27 loc) • 1.43 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.tableCellBackgroundStyleOverride = void 0;
var _react = require("@emotion/react");
var _adfSchema = require("@atlaskit/adf-schema");
var _editorPalette = require("@atlaskit/editor-palette");
/* eslint-disable @atlaskit/design-system/ensure-design-token-usage */
// This is used in order to support usage of DS tokens. Table cell background-color
// is set inline in '@atlaskit/adf-schema' and the color value is stored in ADF so
// it is not possible to use tokens there without polluting ADF.
// As table cell backgrounds are set inline, this should not break mobile as
// hexToEditorBackgroundPaletteColor() outputs a css variable with fallback hex.
var mapBackgroundColors = function mapBackgroundColors() {
var cssString = '';
_adfSchema.tableBackgroundColorNames.forEach(function (value, key) {
var paletteColorValue = (0, _editorPalette.hexToEditorBackgroundPaletteColor)(value);
if (paletteColorValue) {
cssString += "\n td[colorname='".concat(key, "' i],\n th[colorname='").concat(key, "' i] {\n background-color: ").concat(paletteColorValue, " !important;\n }\n ");
}
});
return cssString;
};
var tableCellBackgroundStyleOverride = exports.tableCellBackgroundStyleOverride = function tableCellBackgroundStyleOverride() {
return (0, _react.css)(mapBackgroundColors());
};