UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

25 lines 1.6 kB
/* eslint-disable @atlaskit/ui-styling-standard/use-compiled -- Pre-existing lint debt surfaced by this mechanical type-import-only PR. */ /* eslint-disable @atlaskit/design-system/ensure-design-token-usage */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766 import { css } from '@emotion/react'; import { tableBackgroundColorNames } from '@atlaskit/adf-schema'; import { hexToEditorBackgroundPaletteColor } from '@atlaskit/editor-palette'; // 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. export var mapBackgroundColors = function mapBackgroundColors() { var cssString = ''; tableBackgroundColorNames.forEach(function (value, key) { var paletteColorValue = 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; }; // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766 export var tableCellBackgroundStyleOverride = function tableCellBackgroundStyleOverride() { return css(mapBackgroundColors()); };