devexpress-richedit 25.1.11 → 25.1.12
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.
- package/bin/gulpfile.js +1 -1
- package/bin/index-custom.js +1 -1
- package/bin/localization-builder.js +1 -1
- package/bin/nspell-index.js +1 -1
- package/bin/nspell.webpack.config.js +1 -1
- package/bin/webpack-externals.js +1 -1
- package/bin/webpack.config.js +1 -1
- package/dist/dx.richedit.css +0 -1
- package/dist/dx.richedit.d.ts +1 -1
- package/dist/dx.richedit.js +753 -309
- package/dist/dx.richedit.min.js +3 -3
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/client/api/selection-api.js +2 -2
- package/lib/client/client-rich-edit.js +2 -2
- package/lib/client/default-localization.js +7 -7
- package/lib/client/formats/docx/import/destination/table/cell/table-cell-destination.js +1 -1
- package/lib/client/formats/docx/import/importers/range-permission-importer.js +1 -1
- package/lib/client/public/nusa/custom-control-registrator.js +1 -1
- package/lib/client/public/utils.js +5 -1
- package/lib/common/canvas/renderes/common/document-renderer.js +7 -1
- package/lib/common/clipboard-content-inserter.js +2 -1
- package/lib/common/commands/border-command-options.d.ts +7 -0
- package/lib/common/commands/border-command-options.js +8 -0
- package/lib/common/commands/dialogs/dialog-border-shading-command.js +14 -7
- package/lib/common/commands/dialogs/dialog-table-properties-command.js +1 -1
- package/lib/common/commands/fields/create-field-command.js +1 -1
- package/lib/common/commands/ruler/ruler-table-commands.js +1 -1
- package/lib/common/commands/selection/go-to-line-above-command.js +6 -0
- package/lib/common/commands/selection/go-to-line-vertically-command-base.d.ts +5 -1
- package/lib/common/commands/selection/go-to-line-vertically-command-base.js +87 -25
- package/lib/common/commands/selection/go-to-next-character-command.d.ts +2 -0
- package/lib/common/commands/selection/go-to-next-character-command.js +34 -12
- package/lib/common/commands/selection/go-to-prev-character-command.d.ts +2 -0
- package/lib/common/commands/selection/go-to-prev-character-command.js +33 -12
- package/lib/common/commands/selection/select-table-command.d.ts +14 -5
- package/lib/common/commands/selection/select-table-command.js +42 -4
- package/lib/common/commands/selection/selection-command-base.d.ts +5 -0
- package/lib/common/commands/selection/selection-command-base.js +91 -0
- package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-vertically-command.js +2 -2
- package/lib/common/commands/tables/insert-table-column-commands.js +3 -3
- package/lib/common/commands/tables/toggle-table-cells-border-command.d.ts +1 -1
- package/lib/common/commands/tables/toggle-table-cells-border-command.js +10 -3
- package/lib/common/commands/text/clipboard-commands.js +2 -2
- package/lib/common/event-manager.js +14 -7
- package/lib/common/formats/html/export/html-export.js +1 -1
- package/lib/common/formats/html/model/history/paste-html-data-history-item.js +1 -1
- package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state-base.js +1 -1
- package/lib/common/formats/rtf/import/model/table/rtf-table-cell.js +2 -2
- package/lib/common/layout-engine/selection/selection-formatter.js +3 -3
- package/lib/common/layout-formatter/box/generator/box-infos-generator.js +1 -1
- package/lib/common/layout-formatter/formatter/base-formatter.d.ts +1 -0
- package/lib/common/layout-formatter/formatter/base-formatter.js +11 -0
- package/lib/common/layout-formatter/row/result.d.ts +1 -1
- package/lib/common/layout-formatter/row/result.js +12 -17
- package/lib/common/layout-formatter/row/size-engine/row-formatting-info.d.ts +2 -1
- package/lib/common/layout-formatter/row/size-engine/row-formatting-info.js +7 -4
- package/lib/common/layout-formatter/row/size-engine/row-sizes-manager.js +1 -3
- package/lib/common/layout-formatter/table/formatter.js +2 -2
- package/lib/common/layout-formatter/table/info/cell-info.js +2 -2
- package/lib/common/model/fields/tree-creator.js +4 -2
- package/lib/common/model/json/exporters/json-table-exporter.js +1 -1
- package/lib/common/model/json/importers/table/json-table-importer.js +1 -1
- package/lib/common/model/manipulators/range/create-range-copy-operation.js +5 -5
- package/lib/common/model/manipulators/range/remove-interval-operation.js +7 -7
- package/lib/common/model/manipulators/tables/insert-table-cell-operation.js +1 -1
- package/lib/common/model/manipulators/tables/merge-table-cells-operation.js +7 -7
- package/lib/common/model/manipulators/tables/tables-manipulator.js +15 -15
- package/lib/common/model/model-checks/position.js +1 -1
- package/lib/common/model/tables/main-structures/table-cell.d.ts +1 -1
- package/lib/common/model/tables/main-structures/table-cell.js +4 -4
- package/lib/common/model/tables/main-structures/table-row.js +1 -1
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-text-selection-states.js +2 -2
- package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table-cell.js +1 -1
- package/lib/common/rich-utils/debug/logger/base-logger/log-obj-to-str.js +1 -1
- package/lib/common/rich-utils/debug/runtime-test-helper.js +5 -5
- package/lib/common/selection/selected-cells-engine.js +2 -2
- package/lib/common/selection/selection-state.d.ts +20 -3
- package/lib/common/selection/selection-state.js +60 -5
- package/lib/common/selection/selection.d.ts +31 -1
- package/lib/common/selection/selection.js +84 -2
- package/lib/common/selection/table-nav-direction.d.ts +7 -0
- package/lib/common/selection/table-nav-direction.js +8 -0
- package/package.json +3 -3
package/bin/gulpfile.js
CHANGED
package/bin/index-custom.js
CHANGED
package/bin/nspell-index.js
CHANGED
package/bin/webpack-externals.js
CHANGED
package/bin/webpack.config.js
CHANGED
package/dist/dx.richedit.css
CHANGED