devexpress-richedit 25.1.10 → 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.
Files changed (101) hide show
  1. package/bin/gulpfile.js +1 -1
  2. package/bin/index-custom.js +1 -1
  3. package/bin/localization-builder.js +1 -1
  4. package/bin/nspell-index.js +1 -1
  5. package/bin/nspell.webpack.config.js +1 -1
  6. package/bin/webpack-externals.js +1 -1
  7. package/bin/webpack.config.js +1 -1
  8. package/dist/dx.richedit.css +0 -1
  9. package/dist/dx.richedit.d.ts +1 -1
  10. package/dist/dx.richedit.js +8277 -7794
  11. package/dist/dx.richedit.min.js +3 -3
  12. package/index.d.ts +1 -1
  13. package/index.js +1 -1
  14. package/lib/client/api/selection-api.js +2 -2
  15. package/lib/client/client-rich-edit.js +3 -2
  16. package/lib/client/default-localization.js +7 -7
  17. package/lib/client/formats/docx/import/destination/table/cell/table-cell-destination.js +1 -1
  18. package/lib/client/formats/docx/import/importers/range-permission-importer.js +1 -1
  19. package/lib/client/public/nusa/custom-control-registrator.js +1 -1
  20. package/lib/client/public/utils.js +5 -1
  21. package/lib/common/auto-correct/auto-correct-providers.d.ts +1 -1
  22. package/lib/common/auto-correct/auto-correct-providers.js +26 -2
  23. package/lib/common/canvas/canvas-manager.js +23 -7
  24. package/lib/common/canvas/canvas-size-info.js +1 -2
  25. package/lib/common/canvas/renderes/common/document-renderer.js +7 -1
  26. package/lib/common/clipboard-content-inserter.js +2 -1
  27. package/lib/common/commands/border-command-options.d.ts +7 -0
  28. package/lib/common/commands/border-command-options.js +8 -0
  29. package/lib/common/commands/dialogs/dialog-border-shading-command.js +14 -7
  30. package/lib/common/commands/dialogs/dialog-table-properties-command.js +1 -1
  31. package/lib/common/commands/fields/create-field-command.js +1 -1
  32. package/lib/common/commands/ruler/ruler-table-commands.js +1 -1
  33. package/lib/common/commands/selection/go-to-line-above-command.js +6 -0
  34. package/lib/common/commands/selection/go-to-line-vertically-command-base.d.ts +5 -1
  35. package/lib/common/commands/selection/go-to-line-vertically-command-base.js +87 -25
  36. package/lib/common/commands/selection/go-to-next-character-command.d.ts +2 -0
  37. package/lib/common/commands/selection/go-to-next-character-command.js +34 -12
  38. package/lib/common/commands/selection/go-to-prev-character-command.d.ts +2 -0
  39. package/lib/common/commands/selection/go-to-prev-character-command.js +33 -12
  40. package/lib/common/commands/selection/select-table-command.d.ts +14 -5
  41. package/lib/common/commands/selection/select-table-command.js +42 -4
  42. package/lib/common/commands/selection/selection-command-base.d.ts +5 -0
  43. package/lib/common/commands/selection/selection-command-base.js +91 -0
  44. package/lib/common/commands/tables/insert-table-cells-with-shift-to-the-vertically-command.js +2 -2
  45. package/lib/common/commands/tables/insert-table-column-commands.js +3 -3
  46. package/lib/common/commands/tables/toggle-table-cells-border-command.d.ts +15 -21
  47. package/lib/common/commands/tables/toggle-table-cells-border-command.js +94 -153
  48. package/lib/common/commands/text/clipboard-commands.js +2 -2
  49. package/lib/common/event-manager.js +28 -15
  50. package/lib/common/formats/html/export/html-export.js +1 -1
  51. package/lib/common/formats/html/model/history/paste-html-data-history-item.js +1 -1
  52. package/lib/common/formats/rtf/export/exporters/rtf-content-exporter.js +3 -2
  53. package/lib/common/formats/rtf/export/exporters/table/rtf-table-model-grid.d.ts +3 -0
  54. package/lib/common/formats/rtf/export/exporters/table/rtf-table-model-grid.js +27 -0
  55. package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state-base.d.ts +4 -0
  56. package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state-base.js +54 -3
  57. package/lib/common/formats/rtf/import/destination/styles/style-sheet-destination.d.ts +1 -1
  58. package/lib/common/formats/rtf/import/destination/styles/style-sheet-destination.js +1 -1
  59. package/lib/common/formats/rtf/import/model/table/rtf-table-cell.js +2 -2
  60. package/lib/common/layout-engine/selection/selection-formatter.js +3 -3
  61. package/lib/common/layout-formatter/box/generator/box-infos-generator.js +1 -1
  62. package/lib/common/layout-formatter/formatter/base-formatter.d.ts +1 -0
  63. package/lib/common/layout-formatter/formatter/base-formatter.js +11 -0
  64. package/lib/common/layout-formatter/row/result.d.ts +1 -1
  65. package/lib/common/layout-formatter/row/result.js +12 -17
  66. package/lib/common/layout-formatter/row/size-engine/row-formatting-info.d.ts +2 -1
  67. package/lib/common/layout-formatter/row/size-engine/row-formatting-info.js +7 -4
  68. package/lib/common/layout-formatter/row/size-engine/row-sizes-manager.js +1 -3
  69. package/lib/common/layout-formatter/row/tab-info.js +2 -1
  70. package/lib/common/layout-formatter/table/formatter.js +2 -2
  71. package/lib/common/layout-formatter/table/grid-engine/calculators/grid-calculator.js +1 -1
  72. package/lib/common/layout-formatter/table/grid-engine/columns.d.ts +3 -1
  73. package/lib/common/layout-formatter/table/grid-engine/columns.js +15 -6
  74. package/lib/common/layout-formatter/table/info/cell-info.js +2 -2
  75. package/lib/common/model/fields/parsers/field-code-parser-toc.d.ts +1 -0
  76. package/lib/common/model/fields/parsers/field-code-parser-toc.js +9 -2
  77. package/lib/common/model/fields/tree-creator.js +4 -2
  78. package/lib/common/model/json/exporters/json-table-exporter.js +1 -1
  79. package/lib/common/model/json/importers/table/json-table-importer.js +1 -1
  80. package/lib/common/model/manipulators/range/create-range-copy-operation.js +5 -5
  81. package/lib/common/model/manipulators/range/remove-interval-operation.js +7 -7
  82. package/lib/common/model/manipulators/tables/insert-table-cell-operation.js +1 -1
  83. package/lib/common/model/manipulators/tables/merge-table-cells-operation.js +7 -7
  84. package/lib/common/model/manipulators/tables/tables-manipulator.js +15 -15
  85. package/lib/common/model/model-checks/position.js +1 -1
  86. package/lib/common/model/simple-sentence-model-builder.js +4 -44
  87. package/lib/common/model/tables/main-structures/table-cell.d.ts +1 -1
  88. package/lib/common/model/tables/main-structures/table-cell.js +4 -4
  89. package/lib/common/model/tables/main-structures/table-row.js +1 -1
  90. package/lib/common/mouse-handler/mouse-handler/mouse-handler-text-selection-states.js +2 -2
  91. package/lib/common/rich-utils/debug/chrome-dev-tools-custom-formatters/model/table/table-cell.js +1 -1
  92. package/lib/common/rich-utils/debug/logger/base-logger/log-obj-to-str.js +1 -1
  93. package/lib/common/rich-utils/debug/runtime-test-helper.js +5 -5
  94. package/lib/common/selection/selected-cells-engine.js +2 -2
  95. package/lib/common/selection/selection-state.d.ts +20 -3
  96. package/lib/common/selection/selection-state.js +60 -5
  97. package/lib/common/selection/selection.d.ts +31 -1
  98. package/lib/common/selection/selection.js +84 -2
  99. package/lib/common/selection/table-nav-direction.d.ts +7 -0
  100. package/lib/common/selection/table-nav-direction.js +8 -0
  101. package/package.json +10 -10
package/bin/gulpfile.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (gulpfile.js)
3
- * Version: 25.1.10
3
+ * Version: 25.1.12
4
4
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs",
6
6
  */
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (index-custom.js)
3
- * Version: 25.1.10
3
+ * Version: 25.1.12
4
4
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs",
6
6
  */
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (localization-builder.js)
3
- * Version: 25.1.10
3
+ * Version: 25.1.12
4
4
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs",
6
6
  */
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (nspell-index.js)
3
- * Version: 25.1.10
3
+ * Version: 25.1.12
4
4
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs",
6
6
  */
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (nspell.webpack.config.js)
3
- * Version: 25.1.10
3
+ * Version: 25.1.12
4
4
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs",
6
6
  */
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (webpack-externals.js)
3
- * Version: 25.1.10
3
+ * Version: 25.1.12
4
4
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs",
6
6
  */
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (webpack.config.js)
3
- * Version: 25.1.10
3
+ * Version: 25.1.12
4
4
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs",
6
6
  */
@@ -340,7 +340,6 @@
340
340
  box-shadow: none !important;
341
341
  border-width: 0 !important;
342
342
  margin: 0;
343
- width: 100% !important;
344
343
  }
345
344
 
346
345
  .dxrePageArea {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (dx.richedit.d.ts)
3
- * Version: 25.1.10
3
+ * Version: 25.1.12
4
4
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs",
6
6
  */