devexpress-richedit 22.1.6 → 22.2.2-beta
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.d.ts +1 -1
- package/dist/dx.richedit.js +4696 -4575
- package/dist/dx.richedit.min.js +5 -5
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/base/canvas/renderes/common/document-renderer.js +7 -5
- package/lib/base/commands/floating-objects/floating-object-drag-drop-change-position-command.js +5 -5
- package/lib/base/commands/text/clipboard-commands.js +8 -11
- package/lib/base/global-event-dispatcher.js +1 -1
- package/lib/base/input-controller.d.ts +1 -0
- package/lib/base/input-controller.js +5 -3
- package/lib/base/mouse-handler/mouse-handler/mouse-handler-default-state.d.ts +3 -1
- package/lib/base/mouse-handler/mouse-handler/mouse-handler-default-state.js +22 -16
- package/lib/base/rich-utils/html-utils.d.ts +3 -0
- package/lib/base/rich-utils/html-utils.js +11 -0
- package/lib/core/layout-formatter/box/generator/box-infos-generator.d.ts +3 -0
- package/lib/core/layout-formatter/box/generator/box-infos-generator.js +4 -2
- package/lib/core/model/changes/model/header-created.d.ts +2 -2
- package/lib/core/model/changes/model/header-created.js +11 -6
- package/lib/core/model/document-model.d.ts +4 -1
- package/lib/core/model/document-model.js +15 -3
- package/lib/core/model/history/items/apply-field-hyperlink-style-history-item.js +1 -1
- package/lib/core/model/history/items/insert-sub-document-history-item.d.ts +2 -1
- package/lib/core/model/history/items/insert-sub-document-history-item.js +5 -0
- package/lib/core/model/manipulators/document/sub-document-inserter.d.ts +2 -1
- package/lib/core/model/manipulators/document/sub-document-inserter.js +2 -0
- package/lib/core/model/manipulators/document-properties-manipulator.js +1 -2
- package/lib/core/model/manipulators/picture-manipulator/loader/picture-loader.js +2 -2
- package/lib/core/model/manipulators/range/create-range-copy-operation.js +1 -0
- package/lib/core/model/manipulators/range/restore-removed-interval-operation.js +2 -4
- package/lib/core/model/manipulators/tables/insert-table-row-operation.js +3 -3
- package/lib/core/model/model-checks/comparer.d.ts +2 -1
- package/lib/core/model/model-checks/comparer.js +12 -5
- package/lib/core/model/position/position-manager.d.ts +6 -0
- package/lib/core/model/position/position-manager.js +40 -23
- package/lib/core/model/rich-utils.d.ts +4 -0
- package/lib/core/model/rich-utils.js +3 -0
- package/lib/core/model/sub-document-collection.d.ts +12 -0
- package/lib/core/model/sub-document-collection.js +42 -0
- package/lib/core/model/sub-document.d.ts +1 -0
- package/lib/core/model/sub-document.js +2 -1
- package/lib/docx/export/exporters/base/drawing.js +7 -8
- package/lib/docx/export/utils/inline-drawing-object.d.ts +0 -3
- package/lib/docx/export/utils/inline-drawing-object.js +0 -10
- package/lib/docx/import/destination/document/background-destination.js +2 -1
- package/lib/docx/import/destination/drawing/drawing-destination.d.ts +5 -4
- package/lib/docx/import/destination/drawing/drawing-destination.js +19 -15
- package/lib/docx/import/model/floating-object-import-info.js +1 -1
- package/lib/model-api/document.js +1 -0
- package/lib/rtf/import/destination/sub-document/default-destination.js +1 -1
- package/lib/rtf/import/model/shape/rtf-shape-helpers/rtf-container-properties-helper.js +2 -2
- package/package.json +2 -2
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