devexpress-richedit 25.1.7 → 25.1.9
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 +2 -2
- package/bin/index-custom.js +2 -2
- package/bin/localization-builder.js +2 -2
- package/bin/nspell-index.js +2 -2
- package/bin/nspell.webpack.config.js +2 -2
- package/bin/webpack-externals.js +2 -2
- package/bin/webpack.config.js +2 -2
- package/dist/dx.richedit.css +4 -2
- package/dist/dx.richedit.d.ts +2 -2
- package/dist/dx.richedit.js +4052 -3796
- package/dist/dx.richedit.min.js +3 -3
- package/index.d.ts +2 -2
- package/index.js +2 -2
- package/lib/client/_constants.js +1 -1
- package/lib/client/bars/rich-edit-ribbon/ribbon-items-data.js +231 -237
- package/lib/client/client-rich-edit.js +2 -2
- package/lib/client/default-localization.js +6 -6
- package/lib/client/dialogs/insert-merge-field-dialog.d.ts +1 -3
- package/lib/client/dialogs/insert-merge-field-dialog.js +14 -25
- package/lib/client/formats/docx/export/data.d.ts +1 -1
- package/lib/client/formats/docx/export/exporters/base/styles/table-style.js +3 -3
- package/lib/client/formats/docx/export/exporters/base/table/table-cell-properties.js +18 -15
- package/lib/client/formats/docx/export/exporters/base/table/table-properties.d.ts +2 -1
- package/lib/client/formats/docx/export/exporters/base/table/table-properties.js +10 -5
- package/lib/client/formats/docx/export/exporters/base/table/table.js +1 -1
- package/lib/client/formats/docx/import/destination/borders/table-cell-borders-destination.js +2 -2
- package/lib/client/formats/docx/import/importers/styles-importer.d.ts +1 -0
- package/lib/client/formats/docx/import/importers/styles-importer.js +4 -0
- package/lib/client/model-api/table/table-cell.js +2 -2
- package/lib/client/public/utils.d.ts +1 -0
- package/lib/client/public/utils.js +7 -0
- package/lib/client/ribbon/ribbon.js +8 -8
- package/lib/common/canvas/canvas-manager.js +1 -1
- package/lib/common/canvas/canvas-scroll-info.js +8 -5
- package/lib/common/canvas/canvas-size-info.js +2 -1
- package/lib/common/canvas/renderes/common/document-renderer.d.ts +7 -1
- package/lib/common/canvas/renderes/common/document-renderer.js +80 -53
- package/lib/common/commands/character-properties/change-font-name-command.js +8 -5
- package/lib/common/commands/selection/go-to-next-page-command.d.ts +5 -8
- package/lib/common/commands/selection/go-to-next-page-command.js +26 -50
- package/lib/common/commands/selection/go-to-page-command-base.d.ts +18 -0
- package/lib/common/commands/selection/go-to-page-command-base.js +91 -0
- package/lib/common/commands/selection/go-to-prev-page-command.d.ts +5 -9
- package/lib/common/commands/selection/go-to-prev-page-command.js +27 -48
- package/lib/common/commands/shortcut-manager.js +1 -1
- package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-horizontally-command.d.ts +1 -0
- package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-horizontally-command.js +16 -1
- package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-vertically-command.d.ts +1 -0
- package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-vertically-command.js +23 -1
- package/lib/common/commands/tables/insert-table-column-commands.d.ts +1 -0
- package/lib/common/commands/tables/insert-table-column-commands.js +8 -0
- package/lib/common/commands/tables/insert-table-core-command.js +9 -3
- package/lib/common/commands/tables/table-command-base.d.ts +2 -0
- package/lib/common/commands/tables/table-command-base.js +4 -1
- package/lib/common/commands/text/insert-paragraph-command.js +10 -8
- package/lib/common/commands/text/insert-tab-command.d.ts +3 -0
- package/lib/common/commands/text/insert-tab-command.js +7 -1
- package/lib/common/formats/html/export/html-export.js +4 -4
- package/lib/common/formats/i-document-exporter.d.ts +1 -1
- package/lib/common/formats/pdf/box-exporter.js +1 -1
- package/lib/common/formats/pdf/character-properties-exporter.d.ts +1 -1
- package/lib/common/formats/pdf/character-properties-exporter.js +1 -3
- package/lib/common/formats/rtf/export/exporters/rtf-content-exporter.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/dx-decoding/decoder-base.d.ts +1 -0
- package/lib/common/formats/rtf/import/dx-decoding/decoder-base.js +18 -9
- package/lib/common/formats/rtf/import/dx-decoding/decoder-helper.js +22 -19
- package/lib/common/formats/rtf/import/dx-decoding/specified-symbols.js +116 -13
- package/lib/common/input-controller.d.ts +5 -3
- package/lib/common/input-controller.js +37 -26
- package/lib/common/layout/document-layout.d.ts +1 -1
- package/lib/common/layout/document-layout.js +2 -3
- package/lib/common/layout/main-structures/layout-page-area.d.ts +1 -2
- package/lib/common/layout/main-structures/layout-page-area.js +1 -1
- package/lib/common/layout/main-structures/layout-page.d.ts +1 -2
- package/lib/common/layout/main-structures/layout-page.js +2 -2
- package/lib/common/layout-engine/hit-test-manager/hit-test-manager.js +1 -1
- package/lib/common/layout-formatter/table/formatter.d.ts +1 -1
- package/lib/common/layout-formatter/table/formatter.js +9 -6
- package/lib/common/model/borders/table-border-base.d.ts +2 -0
- package/lib/common/model/borders/table-border-base.js +8 -2
- package/lib/common/model/borders/table-borders.d.ts +0 -5
- package/lib/common/model/borders/table-borders.js +0 -16
- package/lib/common/model/borders/table-cell-borders.d.ts +2 -1
- package/lib/common/model/borders/table-cell-borders.js +13 -3
- package/lib/common/model/creator/creator.js +3 -0
- package/lib/common/model/fields/parsers/field-code-parser.js +10 -9
- package/lib/common/model/history/items/insert-sub-document-history-item.js +1 -1
- package/lib/common/model/json/command-request.d.ts +2 -1
- package/lib/common/model/json/command-request.js +2 -1
- package/lib/common/model/json/enums/table/json-table-structures-enums.d.ts +4 -2
- package/lib/common/model/json/enums/table/json-table-structures-enums.js +4 -2
- package/lib/common/model/json/importers/json-border-info-converter.js +2 -0
- package/lib/common/model/json/importers/table/json-table-cell-borders-converter.js +4 -0
- package/lib/common/model/manipulators/document/sub-document-inserter.js +2 -3
- package/lib/common/model/manipulators/font-manipulator.d.ts +1 -1
- package/lib/common/model/manipulators/font-manipulator.js +3 -2
- package/lib/common/model/manipulators/range/create-range-copy-operation.js +1 -0
- package/lib/common/model/number-converters/number-converter-creator.d.ts +1 -1
- package/lib/common/model/number-converters/number-converter-creator.js +1 -1
- package/lib/common/model/styles-manager.js +2 -0
- package/lib/common/model/tables/main-structures/table-cell.js +3 -1
- package/lib/common/model/tables/main-structures/table.d.ts +1 -0
- package/lib/common/model/tables/main-structures/table.js +2 -0
- package/lib/common/model/tables/properties/table-cell-descriptors.d.ts +10 -0
- package/lib/common/model/tables/properties/table-cell-descriptors.js +22 -0
- package/lib/common/model/tables/properties/table-cell-properties.d.ts +5 -1
- package/lib/common/model/tables/properties/table-cell-properties.js +6 -2
- package/lib/common/model/tables/styles/table-style.d.ts +1 -0
- package/lib/common/model/tables/styles/table-style.js +1 -0
- package/lib/common/model/tables/table-utils.d.ts +3 -3
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-default-state.js +4 -1
- package/lib/common/rich-edit-core.js +19 -18
- package/lib/common/rich-utils/html-converter.d.ts +9 -2
- package/lib/common/rich-utils/html-converter.js +9 -7
- package/lib/common/selection/input-position.d.ts +3 -1
- package/lib/common/selection/input-position.js +3 -1
- package/lib/common/utils/mixed-size.d.ts +6 -0
- package/lib/common/utils/mixed-size.js +22 -0
- package/package.json +3 -3
package/bin/gulpfile.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress WebRichEdit (gulpfile.js)
|
|
3
|
-
* Version: 25.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 25.1.9
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
6
6
|
*/
|
|
7
7
|
const path = require('path');
|
package/bin/index-custom.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress WebRichEdit (index-custom.js)
|
|
3
|
-
* Version: 25.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 25.1.9
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
6
6
|
*/
|
|
7
7
|
export * as RichEdit from '../index';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress WebRichEdit (localization-builder.js)
|
|
3
|
-
* Version: 25.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 25.1.9
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
6
6
|
*/
|
|
7
7
|
const jsHeader =
|
package/bin/nspell-index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress WebRichEdit (nspell-index.js)
|
|
3
|
-
* Version: 25.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 25.1.9
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
6
6
|
*/
|
|
7
7
|
import * as nspellImport from 'nspell';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress WebRichEdit (nspell.webpack.config.js)
|
|
3
|
-
* Version: 25.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 25.1.9
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
6
6
|
*/
|
|
7
7
|
const path = require('path');
|
package/bin/webpack-externals.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress WebRichEdit (webpack-externals.js)
|
|
3
|
-
* Version: 25.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 25.1.9
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
6
6
|
*/
|
|
7
7
|
const jsZipExternals = {
|
package/bin/webpack.config.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress WebRichEdit (webpack.config.js)
|
|
3
|
-
* Version: 25.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 25.1.9
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
6
6
|
*/
|
|
7
7
|
const path = require('path');
|
package/dist/dx.richedit.css
CHANGED
package/dist/dx.richedit.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress WebRichEdit (dx.richedit.d.ts)
|
|
3
|
-
* Version: 25.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 25.1.9
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
6
6
|
*/
|
|
7
7
|
declare module DevExpress.RichEdit {
|