@ckeditor/ckeditor5-table
Advanced tools
Comparing version 37.0.0-alpha.2 to 37.0.0-alpha.3
{ | ||
"name": "@ckeditor/ckeditor5-table", | ||
"version": "37.0.0-alpha.2", | ||
"version": "37.0.0-alpha.3", | ||
"description": "Table feature for CKEditor 5.", | ||
@@ -15,30 +15,30 @@ "keywords": [ | ||
"dependencies": { | ||
"ckeditor5": "^37.0.0-alpha.2", | ||
"ckeditor5": "^37.0.0-alpha.3", | ||
"lodash-es": "^4.17.15" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-alignment": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-alignment": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-dev-utils": "^35.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-highlight": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-horizontal-line": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-html-support": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-indent": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-link": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-list": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-media-embed": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-widget": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-source-editing": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-highlight": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-horizontal-line": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-html-support": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-indent": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-link": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-list": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-media-embed": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-widget": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-source-editing": "^37.0.0-alpha.3", | ||
"json-diff": "^0.5.4", | ||
@@ -45,0 +45,0 @@ "typescript": "^4.8.4", |
@@ -8,3 +8,4 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import Table from './table'; | ||
/** | ||
@@ -21,3 +22,3 @@ * The plain table output feature. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof Table]; | ||
/** | ||
@@ -24,0 +25,0 @@ * @inheritDoc |
@@ -8,3 +8,10 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import { Widget } from 'ckeditor5/src/widget'; | ||
import TableEditing from './tableediting'; | ||
import TableUI from './tableui'; | ||
import TableSelection from './tableselection'; | ||
import TableClipboard from './tableclipboard'; | ||
import TableKeyboard from './tablekeyboard'; | ||
import TableMouse from './tablemouse'; | ||
import '../theme/table.css'; | ||
@@ -29,3 +36,3 @@ /** | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableEditing, typeof TableUI, typeof TableSelection, typeof TableMouse, typeof TableKeyboard, typeof TableClipboard, typeof Widget]; | ||
/** | ||
@@ -32,0 +39,0 @@ * @inheritDoc |
@@ -8,3 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import TableCaptionEditing from './tablecaption/tablecaptionediting'; | ||
import TableCaptionUI from './tablecaption/tablecaptionui'; | ||
import '../theme/tablecaption.css'; | ||
@@ -22,3 +24,3 @@ /** | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableCaptionEditing, typeof TableCaptionUI]; | ||
} |
@@ -8,3 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import TableCellPropertiesUI from './tablecellproperties/tablecellpropertiesui'; | ||
import TableCellPropertiesEditing from './tablecellproperties/tablecellpropertiesediting'; | ||
/** | ||
@@ -28,3 +30,3 @@ * The table cell properties feature. Enables support for setting properties of table cells (size, border, background, etc.). | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableCellPropertiesEditing, typeof TableCellPropertiesUI]; | ||
} |
@@ -8,3 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import TableEditing from './../tableediting'; | ||
import TableCellWidthEditing from '../tablecellwidth/tablecellwidthediting'; | ||
/** | ||
@@ -37,3 +39,3 @@ * The table cell properties editing feature. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableEditing, typeof TableCellWidthEditing]; | ||
/** | ||
@@ -40,0 +42,0 @@ * @inheritDoc |
@@ -8,3 +8,4 @@ /** | ||
*/ | ||
import { Plugin, type Editor, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin, type Editor } from 'ckeditor5/src/core'; | ||
import { ContextualBalloon } from 'ckeditor5/src/ui'; | ||
import TableCellPropertiesView from './ui/tablecellpropertiesview'; | ||
@@ -43,3 +44,3 @@ /** | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof ContextualBalloon]; | ||
/** | ||
@@ -46,0 +47,0 @@ * @inheritDoc |
@@ -8,3 +8,4 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import TableEditing from './../tableediting'; | ||
/** | ||
@@ -24,3 +25,3 @@ * The table cell width editing feature. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableEditing]; | ||
/** | ||
@@ -27,0 +28,0 @@ * @inheritDoc |
@@ -5,5 +5,7 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import type { DocumentFragment, Element, Item, Model, Position, Writer } from 'ckeditor5/src/engine'; | ||
import TableSelection from './tableselection'; | ||
import { type TableSlot } from './tablewalker'; | ||
import TableUtils from './tableutils'; | ||
/** | ||
@@ -21,3 +23,3 @@ * This plugin adds support for copying/cutting/pasting fragments of tables. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableSelection, typeof TableUtils]; | ||
/** | ||
@@ -24,0 +26,0 @@ * @inheritDoc |
@@ -8,3 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import TableColumnResizeEditing from './tablecolumnresize/tablecolumnresizeediting'; | ||
import TableCellWidthEditing from './tablecellwidth/tablecellwidthediting'; | ||
import '../theme/tablecolumnresize.css'; | ||
@@ -20,3 +22,3 @@ /** | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableColumnResizeEditing, typeof TableCellWidthEditing]; | ||
/** | ||
@@ -23,0 +25,0 @@ * @inheritDoc |
@@ -5,4 +5,6 @@ /** | ||
*/ | ||
import { Plugin, type Editor, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin, type Editor } from 'ckeditor5/src/core'; | ||
import type { Element } from 'ckeditor5/src/engine'; | ||
import TableEditing from '../tableediting'; | ||
import TableUtils from '../tableutils'; | ||
/** | ||
@@ -40,3 +42,3 @@ * The table column resize editing plugin. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableEditing, typeof TableUtils]; | ||
/** | ||
@@ -43,0 +45,0 @@ * @inheritDoc |
@@ -8,4 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type Editor, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin, type Editor } from 'ckeditor5/src/core'; | ||
import type { PositionOffset, SlotFilter } from 'ckeditor5/src/engine'; | ||
import TableUtils from '../src/tableutils'; | ||
import '../theme/tableediting.css'; | ||
@@ -27,3 +28,3 @@ /** | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableUtils]; | ||
/** | ||
@@ -30,0 +31,0 @@ * @inheritDoc |
@@ -5,3 +5,8 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
/** | ||
* @module table/tablekeyboard | ||
*/ | ||
import TableSelection from './tableselection'; | ||
import TableUtils from './tableutils'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import { type ArrowKeyCodeDirection } from 'ckeditor5/src/utils'; | ||
@@ -21,3 +26,3 @@ import type { Element } from 'ckeditor5/src/engine'; | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableSelection, typeof TableUtils]; | ||
/** | ||
@@ -24,0 +29,0 @@ * @inheritDoc |
@@ -8,3 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import TableSelection from './tableselection'; | ||
import TableUtils from './tableutils'; | ||
/** | ||
@@ -22,3 +24,3 @@ * This plugin enables a table cells' selection with the mouse. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableSelection, typeof TableUtils]; | ||
/** | ||
@@ -25,0 +27,0 @@ * @inheritDoc |
@@ -8,3 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import TablePropertiesEditing from './tableproperties/tablepropertiesediting'; | ||
import TablePropertiesUI from './tableproperties/tablepropertiesui'; | ||
/** | ||
@@ -28,3 +30,3 @@ * The table properties feature. Enables support for setting properties of tables (size, border, background, etc.). | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TablePropertiesEditing, typeof TablePropertiesUI]; | ||
} |
@@ -8,3 +8,4 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import TableEditing from '../tableediting'; | ||
/** | ||
@@ -35,3 +36,3 @@ * The table properties editing feature. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableEditing]; | ||
/** | ||
@@ -38,0 +39,0 @@ * @inheritDoc |
@@ -8,3 +8,4 @@ /** | ||
*/ | ||
import { type Editor, Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { type Editor, Plugin } from 'ckeditor5/src/core'; | ||
import { ContextualBalloon } from 'ckeditor5/src/ui'; | ||
import TablePropertiesView from './ui/tablepropertiesview'; | ||
@@ -43,3 +44,3 @@ /** | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof ContextualBalloon]; | ||
/** | ||
@@ -46,0 +47,0 @@ * @inheritDoc |
@@ -8,4 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import type { Element, DocumentFragment } from 'ckeditor5/src/engine'; | ||
import TableUtils from './tableutils'; | ||
import '../theme/tableselection.css'; | ||
@@ -24,3 +25,3 @@ /** | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof TableUtils, typeof TableUtils]; | ||
/** | ||
@@ -27,0 +28,0 @@ * @inheritDoc |
@@ -8,3 +8,4 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import { WidgetToolbarRepository } from 'ckeditor5/src/widget'; | ||
/** | ||
@@ -23,3 +24,3 @@ * The table toolbar class. It creates toolbars for the table feature and its content (for now only for the table cell content). | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof WidgetToolbarRepository]; | ||
/** | ||
@@ -26,0 +27,0 @@ * @inheritDoc |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1598461
18135
Updatedckeditor5@^37.0.0-alpha.3