tablecellproperties.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. /**
  6. * @module table/tablecellproperties
  7. */
  8. import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
  9. import TableCellPropertiesUI from './tablecellproperties/tablecellpropertiesui';
  10. import TableCellPropertiesEditing from './tablecellproperties/tablecellpropertiesediting';
  11. /**
  12. * The table cell properties feature.
  13. *
  14. * This is a "glue" plugin which loads the
  15. * {@link module:table/tablecellproperties/tablecellpropertiesediting~TableCellPropertiesEditing table cell properties editing feature} and
  16. * the {@link module:table/tablecellproperties/tablecellpropertiesui~TableCellPropertiesUI table cell properties UI feature}.
  17. *
  18. * @extends module:core/plugin~Plugin
  19. */
  20. export default class TableCellProperties extends Plugin {
  21. /**
  22. * @inheritDoc
  23. */
  24. static get pluginName() {
  25. return 'TableCellProperties';
  26. }
  27. /**
  28. * @inheritDoc
  29. */
  30. static get requires() {
  31. return [ TableCellPropertiesEditing, TableCellPropertiesUI ];
  32. }
  33. }