devexpress-richedit 24.2.12 → 24.2.14

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 (55) hide show
  1. package/bin/gulpfile.js +2 -2
  2. package/bin/index-custom.js +2 -2
  3. package/bin/localization-builder.js +2 -2
  4. package/bin/nspell-index.js +2 -2
  5. package/bin/nspell.webpack.config.js +2 -2
  6. package/bin/webpack-externals.js +2 -2
  7. package/bin/webpack.config.js +2 -2
  8. package/dist/dx.richedit.css +4 -2
  9. package/dist/dx.richedit.d.ts +2 -2
  10. package/dist/dx.richedit.js +553 -409
  11. package/dist/dx.richedit.min.js +3 -3
  12. package/index.d.ts +2 -2
  13. package/index.js +2 -2
  14. package/lib/client/client-rich-edit.js +2 -2
  15. package/lib/client/dialogs/insert-merge-field-dialog.d.ts +1 -3
  16. package/lib/client/dialogs/insert-merge-field-dialog.js +14 -25
  17. package/lib/client/formats/docx/export/data.d.ts +1 -1
  18. package/lib/client/formats/docx/export/exporters/base/table/table.js +1 -1
  19. package/lib/client/model-api/table/table-cell.js +2 -2
  20. package/lib/common/commands/character-properties/change-font-name-command.js +8 -5
  21. package/lib/common/commands/shortcut-manager.js +1 -1
  22. package/lib/common/formats/i-document-exporter.d.ts +1 -1
  23. package/lib/common/formats/rtf/export/exporters/rtf-content-exporter.js +1 -1
  24. package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state-base.js +1 -1
  25. package/lib/common/formats/rtf/import/dx-decoding/decoder-base.d.ts +1 -0
  26. package/lib/common/formats/rtf/import/dx-decoding/decoder-base.js +18 -9
  27. package/lib/common/formats/rtf/import/dx-decoding/decoder-helper.js +22 -19
  28. package/lib/common/formats/rtf/import/dx-decoding/specified-symbols.js +116 -13
  29. package/lib/common/input-controller.d.ts +5 -3
  30. package/lib/common/input-controller.js +37 -26
  31. package/lib/common/layout/document-layout.d.ts +1 -1
  32. package/lib/common/layout/document-layout.js +1 -1
  33. package/lib/common/layout/main-structures/layout-page-area.d.ts +1 -2
  34. package/lib/common/layout/main-structures/layout-page-area.js +1 -1
  35. package/lib/common/layout/main-structures/layout-page.d.ts +1 -2
  36. package/lib/common/layout/main-structures/layout-page.js +2 -2
  37. package/lib/common/layout-engine/hit-test-manager/hit-test-manager.js +1 -1
  38. package/lib/common/model/fields/parsers/field-code-parser.js +10 -9
  39. package/lib/common/model/history/items/insert-sub-document-history-item.js +1 -1
  40. package/lib/common/model/json/command-request.d.ts +2 -1
  41. package/lib/common/model/json/command-request.js +2 -1
  42. package/lib/common/model/manipulators/document/sub-document-inserter.js +2 -3
  43. package/lib/common/model/manipulators/font-manipulator.d.ts +1 -1
  44. package/lib/common/model/manipulators/font-manipulator.js +3 -2
  45. package/lib/common/model/manipulators/range/create-range-copy-operation.js +1 -0
  46. package/lib/common/model/number-converters/number-converter-creator.d.ts +1 -1
  47. package/lib/common/model/number-converters/number-converter-creator.js +1 -1
  48. package/lib/common/model/tables/main-structures/table.d.ts +1 -0
  49. package/lib/common/model/tables/main-structures/table.js +2 -0
  50. package/lib/common/model/tables/table-utils.d.ts +3 -3
  51. package/lib/common/mouse-handler/mouse-handler/mouse-handler-default-state.js +4 -1
  52. package/lib/common/rich-edit-core.js +18 -17
  53. package/lib/common/selection/input-position.d.ts +3 -1
  54. package/lib/common/selection/input-position.js +3 -1
  55. package/package.json +3 -3
package/bin/gulpfile.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (gulpfile.js)
3
- * Version: 24.2.12
4
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
3
+ * Version: 24.2.14
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');
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (index-custom.js)
3
- * Version: 24.2.12
4
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
3
+ * Version: 24.2.14
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: 24.2.12
4
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
3
+ * Version: 24.2.14
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 =
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (nspell-index.js)
3
- * Version: 24.2.12
4
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
3
+ * Version: 24.2.14
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: 24.2.12
4
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
3
+ * Version: 24.2.14
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');
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (webpack-externals.js)
3
- * Version: 24.2.12
4
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
3
+ * Version: 24.2.14
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 = {
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (webpack.config.js)
3
- * Version: 24.2.12
4
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
3
+ * Version: 24.2.14
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');
@@ -1943,8 +1943,10 @@
1943
1943
  overflow: hidden;
1944
1944
  left: -1px;
1945
1945
  top: -1px;
1946
- height: 0;
1947
- width: 0;
1946
+ height: 1px;
1947
+ width: 1px;
1948
+ opacity: 0.01;
1949
+ white-space: nowrap;
1948
1950
  padding: 0;
1949
1951
  outline: none;
1950
1952
  border: none;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (dx.richedit.d.ts)
3
- * Version: 24.2.12
4
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
3
+ * Version: 24.2.14
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 {