devexpress-richedit 25.1.2-beta → 25.1.4-build-25191-0102

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 (108) 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 +1 -1
  9. package/dist/dx.richedit.d.ts +1 -2
  10. package/dist/dx.richedit.js +1374 -1304
  11. package/dist/dx.richedit.min.js +2 -2
  12. package/index.d.ts +1 -1
  13. package/index.js +1 -1
  14. package/lib/client/client-rich-edit.js +2 -2
  15. package/lib/client/commands/commands.js +0 -3
  16. package/lib/client/commands/mail-merge-command.js +3 -2
  17. package/lib/client/commands/open-document-command.js +4 -0
  18. package/lib/client/formats/docx/export/exporters/relations/base.js +2 -2
  19. package/lib/client/formats/docx/import/destination/numbering/numberings-destination.js +1 -1
  20. package/lib/client/formats/docx/import/destination/runs/text-destination.js +1 -1
  21. package/lib/client/model-api/character-properties.js +13 -17
  22. package/lib/client/model-api/document.js +2 -0
  23. package/lib/client/model-api/images/image-enums.js +1 -0
  24. package/lib/client/model-api/images/images.js +1 -1
  25. package/lib/client/model-api/table/enums.js +4 -0
  26. package/lib/client/public/commands/enum.d.ts +1 -2
  27. package/lib/client/public/commands/enum.js +1 -1
  28. package/lib/client/public/options.d.ts +1 -0
  29. package/lib/client/public/ribbon/item-ids.js +1 -0
  30. package/lib/client/public/rich-edit.d.ts +5 -5
  31. package/lib/client/ribbon/toolbar-items/index.d.ts +1 -1
  32. package/lib/client/ribbon/toolbar-items/toolbar-item-template-creators/index.d.ts +7 -7
  33. package/lib/client/utils/focus-helper.js +22 -5
  34. package/lib/common/canvas/canvas-manager.js +1 -1
  35. package/lib/common/canvas/canvas-scroll-manager.js +1 -1
  36. package/lib/common/canvas/canvas-size-info.d.ts +1 -0
  37. package/lib/common/canvas/canvas-size-info.js +2 -2
  38. package/lib/common/canvas/renderes/view-manager.js +4 -3
  39. package/lib/common/commands/client-command.d.ts +1 -2
  40. package/lib/common/commands/client-command.js +0 -1
  41. package/lib/common/commands/command-manager.js +0 -2
  42. package/lib/common/commands/dialogs/dialog-layout-options-command.js +0 -3
  43. package/lib/common/commands/document/print-document-on-client-command.d.ts +2 -0
  44. package/lib/common/commands/document/print-document-on-client-command.js +46 -18
  45. package/lib/common/commands/floating-objects/floating-object-drag-drop-change-position-command.js +0 -3
  46. package/lib/common/commands/layout/apply-style-command.d.ts +2 -2
  47. package/lib/common/commands/layout/apply-style-command.js +3 -4
  48. package/lib/common/commands/layout/toggle-show-hidden-symbols-command.js +0 -3
  49. package/lib/common/commands/toc/set-paragraph-level-command.js +1 -1
  50. package/lib/common/formats/html/export/html-export.d.ts +8 -0
  51. package/lib/common/formats/html/export/html-export.js +49 -26
  52. package/lib/common/formats/html/import/containers/runs.d.ts +2 -1
  53. package/lib/common/formats/html/import/containers/runs.js +2 -1
  54. package/lib/common/formats/html/import/html-importer.d.ts +0 -1
  55. package/lib/common/formats/html/import/html-importer.js +2 -3
  56. package/lib/common/formats/html/import/html-model-inserter.js +4 -0
  57. package/lib/common/formats/html/import/importers/list-base.js +2 -1
  58. package/lib/common/formats/rtf/utils/list-level-display-text-helper.js +2 -2
  59. package/lib/common/input-controller.js +2 -2
  60. package/lib/common/layout/document-layout.js +4 -1
  61. package/lib/common/layout/main-structures/layout-row.d.ts +1 -2
  62. package/lib/common/layout/main-structures/layout-row.js +0 -1
  63. package/lib/common/layout-formatter/row/result.js +1 -1
  64. package/lib/common/layout-formatter/row/size-engine/row-formatting-info.d.ts +1 -0
  65. package/lib/common/layout-formatter/row/size-engine/row-formatting-info.js +2 -2
  66. package/lib/common/layout-formatter/row/size-engine/row-sizes-manager.d.ts +2 -0
  67. package/lib/common/layout-formatter/row/size-engine/row-sizes-manager.js +2 -0
  68. package/lib/common/layout-formatter/row/states.js +1 -1
  69. package/lib/common/layout-formatter/row/tab-info.d.ts +2 -1
  70. package/lib/common/layout-formatter/row/tab-info.js +40 -40
  71. package/lib/common/layout-formatter/row/word-holder.js +1 -1
  72. package/lib/common/model/borders/border-info.js +1 -1
  73. package/lib/common/model/caches/images.d.ts +4 -1
  74. package/lib/common/model/caches/images.js +6 -2
  75. package/lib/common/model/character/character-properties.d.ts +1 -1
  76. package/lib/common/model/character/character-properties.js +14 -2
  77. package/lib/common/model/fields/field.d.ts +1 -1
  78. package/lib/common/model/fields/field.js +4 -3
  79. package/lib/common/model/fields/parsers/field-code-parser-doc-variable.d.ts +1 -1
  80. package/lib/common/model/fields/parsers/field-code-parser.d.ts +1 -1
  81. package/lib/common/model/fields/tree-creator.js +1 -1
  82. package/lib/common/model/history/items/character-properties-history-items.d.ts +2 -1
  83. package/lib/common/model/history/items/character-properties-history-items.js +3 -2
  84. package/lib/common/model/manipulators/character-properties-manipulator.js +2 -2
  85. package/lib/common/model/manipulators/i-properties-manipulator.d.ts +1 -1
  86. package/lib/common/model/manipulators/picture-manipulator/picture-manipulator.js +2 -2
  87. package/lib/common/model/options/fonts.d.ts +1 -1
  88. package/lib/common/model/paragraph/paragraph-style.d.ts +1 -0
  89. package/lib/common/model/paragraph/paragraph-style.js +3 -0
  90. package/lib/common/scroll/canvas-states.d.ts +4 -4
  91. package/lib/common/scroll/model-states.d.ts +5 -5
  92. package/lib/common/ui/ruler/controls/ruler.js +3 -7
  93. package/lib/common/ui/ruler/controls/vertical-line.js +2 -1
  94. package/package.json +3 -3
  95. package/lib/client/formats/docx/import/destination/field/field-data-destination.d.ts +0 -0
  96. package/lib/client/formats/docx/import/destination/field/field-data-destination.js +0 -0
  97. package/lib/client/formats/docx/import/destination/field/form-field-destination.d.ts +0 -0
  98. package/lib/client/formats/docx/import/destination/field/form-field-destination.js +0 -0
  99. package/lib/client/formats/docx/import/destination/paragraph-properties/paragraph-mark-run-properties-destination.d.ts +0 -0
  100. package/lib/client/formats/docx/import/destination/paragraph-properties/paragraph-mark-run-properties-destination.js +0 -0
  101. package/lib/common/commands/layout/toggle-allow-zoom-command.d.ts +0 -7
  102. package/lib/common/commands/layout/toggle-allow-zoom-command.js +0 -17
  103. package/lib/common/formats/rtf/import/properties-normalization/tmp.d.ts +0 -0
  104. package/lib/common/formats/rtf/import/properties-normalization/tmp.js +0 -0
  105. package/lib/common/layout-formatter/box/generator/multi-dimension-iterator.d.ts +0 -0
  106. package/lib/common/layout-formatter/box/generator/multi-dimension-iterator.js +0 -0
  107. package/lib/common/layout-formatter/table/layout-row-index-helper.d.ts +0 -0
  108. package/lib/common/layout-formatter/table/layout-row-index-helper.js +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.