Procházet zdrojové kódy

Merge pull request #174 from ckeditor/t/ckeditor5-table/1

Tests: Added table icons to the iconset manual test (see ckeditor/ckeditor5-table#1).
Aleksander Nowodzinski před 7 roky
rodič
revize
2fa4a22aca

+ 1 - 0
packages/ckeditor5-theme-lark/package.json

@@ -27,6 +27,7 @@
     "@ckeditor/ckeditor5-paragraph": "^10.0.0",
     "@ckeditor/ckeditor5-undo": "^10.0.0",
     "@ckeditor/ckeditor5-utils": "^10.0.0",
+    "@ckeditor/ckeditor5-table": "^0.0.1",
     "eslint": "^4.15.0",
     "eslint-config-ckeditor5": "^1.0.7",
     "husky": "^0.14.3",

+ 8 - 0
packages/ckeditor5-theme-lark/tests/manual/iconset.js

@@ -49,6 +49,11 @@ import numberedList from '@ckeditor/ckeditor5-list/theme/icons/numberedlist.svg'
 
 import paragraph from '@ckeditor/ckeditor5-paragraph/theme/icons/paragraph.svg';
 
+import table from '@ckeditor/ckeditor5-table/theme/icons/table.svg';
+import tableRow from '@ckeditor/ckeditor5-table/theme/icons/table-row.svg';
+import tableColumn from '@ckeditor/ckeditor5-table/theme/icons/table-column.svg';
+import tableMergeCell from '@ckeditor/ckeditor5-table/theme/icons/table-merge-cell.svg';
+
 import undo from '@ckeditor/ckeditor5-undo/theme/icons/undo.svg';
 import redo from '@ckeditor/ckeditor5-undo/theme/icons/redo.svg';
 
@@ -82,6 +87,9 @@ const icons = {
 	// paragraph
 	paragraph,
 
+	// table
+	table, tableRow, tableColumn, tableMergeCell,
+
 	// undo
 	undo, redo
 };