@ckeditor/ckeditor5-table 48.3.1 → 48.4.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/ckeditor5-metadata.json +12 -1
  2. package/dist/augmentation.d.ts +4 -1
  3. package/dist/commands/inserttablecommand.d.ts +5 -0
  4. package/dist/commands/inserttablelayoutcommand.d.ts +5 -0
  5. package/dist/commands/splitcellcommand.d.ts +2 -1
  6. package/dist/index-content.css +81 -82
  7. package/dist/index-content.css.map +1 -0
  8. package/dist/index-editor.css +537 -450
  9. package/dist/index-editor.css.map +1 -0
  10. package/dist/index.css +214 -125
  11. package/dist/index.css.map +1 -1
  12. package/dist/index.d.ts +6 -1
  13. package/dist/index.js +908 -60
  14. package/dist/index.js.map +1 -1
  15. package/dist/table.d.ts +0 -1
  16. package/dist/tablecaption.d.ts +0 -1
  17. package/dist/tablecellproperties/tablecellpropertiesui.d.ts +7 -0
  18. package/dist/tablecellproperties/ui/tablecellpropertiesview.d.ts +0 -3
  19. package/dist/tablecolumnresize/commands/tablecolumnwidthcommand.d.ts +56 -0
  20. package/dist/tablecolumnresize/constants.d.ts +15 -0
  21. package/dist/tablecolumnresize/tablecolumnresizeediting.d.ts +81 -2
  22. package/dist/tablecolumnresize/utils.d.ts +30 -0
  23. package/dist/tablecolumnresize.d.ts +0 -1
  24. package/dist/tableconfig.d.ts +38 -0
  25. package/dist/tableediting.d.ts +0 -1
  26. package/dist/tablelayout/tablelayoutediting.d.ts +0 -1
  27. package/dist/tableproperties/ui/tablepropertiesview.d.ts +0 -3
  28. package/dist/tablescroll/tablescrollediting.d.ts +82 -0
  29. package/dist/tablescroll/watchers.d.ts +23 -0
  30. package/dist/tablescroll.d.ts +23 -0
  31. package/dist/tableselection.d.ts +0 -1
  32. package/dist/ui/colorinputview.d.ts +0 -1
  33. package/dist/ui/inserttableview.d.ts +0 -1
  34. package/dist/utils/common.d.ts +6 -0
  35. package/package.json +10 -9
package/dist/index.d.ts CHANGED
@@ -30,10 +30,13 @@ export { TableClipboard } from "./tableclipboard.js";
30
30
  export { TableMouse } from "./tablemouse.js";
31
31
  export { TableKeyboard } from "./tablekeyboard.js";
32
32
  export { TableSelection } from "./tableselection.js";
33
+ export { TableScroll } from "./tablescroll.js";
34
+ export { TableScrollEditing } from "./tablescroll/tablescrollediting.js";
33
35
  export { TableUtils, type TableIndexesObject, type UpdateTableHeadingsOptions } from "./tableutils.js";
34
36
  export { TableColumnResize } from "./tablecolumnresize.js";
35
37
  export { TableColumnResizeEditing } from "./tablecolumnresize/tablecolumnresizeediting.js";
36
38
  export { TableWidthsCommand, type TableWidthsCommandOptions } from "./tablecolumnresize/tablewidthscommand.js";
39
+ export { TableColumnWidthCommand } from "./tablecolumnresize/commands/tablecolumnwidthcommand.js";
37
40
  export { InsertColumnCommand } from "./commands/insertcolumncommand.js";
38
41
  export { InsertRowCommand } from "./commands/insertrowcommand.js";
39
42
  export { InsertTableCommand } from "./commands/inserttablecommand.js";
@@ -71,7 +74,7 @@ export { TableCellTypeCommand } from "./tablecellproperties/commands/tablecellty
71
74
  export { isTableHeaderCellType, type TableCellType } from "./tablecellproperties/tablecellpropertiesutils.js";
72
75
  export { TableCellPropertyCommand, type TableCellPropertyCommandAfterExecuteEvent, type TableCellPropertyCommandAfterExecuteEventData } from "./tablecellproperties/commands/tablecellpropertycommand.js";
73
76
  export type { ViewDocumentTableMouseMoveEvent, ViewDocumentTableMouseLeaveEvent } from "./tablemouse/mouseeventsobserver.js";
74
- export type { TableConfig, TableAlignmentConfig, TablePropertiesConfig, TablePropertiesOptions, TableCellPropertiesConfig, TableColorConfig, TableCellPropertiesOptions, TableLayoutConfig, TableCaptionConfig, TableType } from "./tableconfig.js";
77
+ export type { TableConfig, TableScrollConfig, TableAlignmentConfig, TablePropertiesConfig, TablePropertiesOptions, TableCellPropertiesConfig, TableColorConfig, TableCellPropertiesOptions, TableLayoutConfig, TableCaptionConfig, TableType } from "./tableconfig.js";
75
78
  export { downcastTable as _downcastTable, downcastRow as _downcastTableRow, downcastCell as _downcastTableCell, convertParagraphInTableCell as _convertParagraphInTableCell, isSingleParagraphWithoutAttributes as _isSingleTableParagraphWithoutAttributes } from "./converters/downcast.js";
76
79
  export type { DowncastTableOptions as _DowncastTableOptions } from "./converters/downcast.js";
77
80
  export { injectTableCaptionPostFixer as _injectTableCaptionPostFixer } from "./converters/table-caption-post-fixer.js";
@@ -97,4 +100,6 @@ export type { NormalizedDefaultProperties as _NormalizedTableDefaultProperties,
97
100
  export { repositionContextualBalloon as _repositionTableContextualBalloon, getBalloonTablePositionData as _getBalloonTablePositionData, getBalloonCellPositionData as _getBalloonTableCellPositionData } from "./utils/ui/contextualballoon.js";
98
101
  export { getBorderStyleLabels as _getBorderTableStyleLabels, getLocalizedColorErrorText as _getLocalizedTableColorErrorText, getLocalizedLengthErrorText as _getLocalizedTableLengthErrorText, colorFieldValidator as _colorTableFieldValidator, lengthFieldValidator as _lengthTableFieldValidator, lineWidthFieldValidator as _lineWidthTableFieldValidator, getBorderStyleDefinitions as _getTableOrCellBorderStyleDefinitions, fillToolbar as _fillTableOrCellToolbar, defaultColors as _TABLE_DEFAULT_COLORS, getLabeledColorInputCreator as _getLabeledTableColorInputCreator } from "./utils/ui/table-properties.js";
99
102
  export { getSelectionAffectedTableWidget as _getSelectionAffectedTableWidget, getSelectedTableWidget as _getSelectedTableWidget, getTableWidgetAncestor as _getTableWidgetAncestor } from "./utils/ui/widget.js";
103
+ import "../theme/index-editor.css";
104
+ import "../theme/index-content.css";
100
105
  import "./augmentation.js";