| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /**
- * @module table/tablecellproperties
- */
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
- import TableCellPropertiesUI from './tablecellproperties/tablecellpropertiesui';
- import TableCellPropertiesEditing from './tablecellproperties/tablecellpropertiesediting';
- /**
- * The table cell properties feature. Enables support for setting properties of table cells (size, border, background, etc.).
- *
- * Read more in the {@glink features/table#table-and-cell-styling-tools Table and cell styling tools} section.
- * See also the {@link module:table/tableproperties~TableProperties} plugin.
- *
- * This is a "glue" plugin that loads the
- * {@link module:table/tablecellproperties/tablecellpropertiesediting~TableCellPropertiesEditing table cell properties editing feature} and
- * the {@link module:table/tablecellproperties/tablecellpropertiesui~TableCellPropertiesUI table cell properties UI feature}.
- *
- * @extends module:core/plugin~Plugin
- */
- export default class TableCellProperties extends Plugin {
- /**
- * @inheritDoc
- */
- static get pluginName() {
- return 'TableCellProperties';
- }
- /**
- * @inheritDoc
- */
- static get requires() {
- return [ TableCellPropertiesEditing, TableCellPropertiesUI ];
- }
- }
- /**
- * The configuration of the table cell properties user interface (balloon). It allows to define:
- *
- * * The color palette for the cell border color style field (`tableCellProperties.borderColors`),
- * * The color palette for the cell background style field (`tableCellProperties.backgroundColors`).
- *
- * const tableConfig = {
- * tableCellProperties: {
- * borderColors: [
- * {
- * color: 'hsl(0, 0%, 90%)',
- * label: 'Light grey'
- * },
- * // ...
- * ],
- * backgroundColors: [
- * {
- * color: 'hsl(120, 75%, 60%)',
- * label: 'Green'
- * },
- * // ...
- * ]
- * }
- * };
- *
- * **Note**: The configurations do not impact the data loaded into the editor,
- * i.e. they do not limit or filter the colors in the data. They are used only in the user interface
- * allowing users to pick colors in a more convenient way.
- *
- * The default color palettes for the cell background and the cell border are the same
- * ({@link module:table/ui/utils~defaultColors check out their content}).
- *
- * Both color palette configurations must follow the
- * {@link module:table/table~TableColorConfig table color configuration format}.
- *
- * Read more about configuring the table feature in {@link module:table/table~TableConfig}.
- *
- * @member {Object} module:table/table~TableConfig#tableCellProperties
- */
|