8
0

tablestyle.js 601 B

1234567891011121314151617181920212223242526
  1. /**
  2. * @license Copyright (c) 2003-2019, 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/tablestyle
  7. */
  8. import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
  9. import TableStyleEditing from './tablestyleediting';
  10. import TableStyleUI from './tablestyleui';
  11. /**
  12. * The table style feature.
  13. *
  14. * @extends module:core/plugin~Plugin
  15. */
  16. export default class TableStyle extends Plugin {
  17. /**
  18. * @inheritDoc
  19. */
  20. static get requires() {
  21. return [ TableStyleEditing, TableStyleUI ];
  22. }
  23. }