devexpress-richedit 22.2.3 → 22.2.4-build-22360-0101

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 (65) 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 +6 -3
  9. package/dist/dx.richedit.d.ts +1 -1
  10. package/dist/dx.richedit.js +1428 -1243
  11. package/dist/dx.richedit.min.js +4 -4
  12. package/index.d.ts +1 -1
  13. package/index.js +1 -1
  14. package/lib/base/clipboard-content-inserter.js +3 -3
  15. package/lib/base/commands/floating-objects/floating-object-drag-drop-change-position-command.d.ts +0 -1
  16. package/lib/base/commands/floating-objects/floating-object-drag-drop-change-position-command.js +2 -9
  17. package/lib/base/commands/sub-document/change-active-sub-document-command.js +1 -1
  18. package/lib/base/commands/text/backspace-command.d.ts +1 -0
  19. package/lib/base/commands/text/backspace-command.js +2 -0
  20. package/lib/base/commands/text/insert-paragraph-command.d.ts +1 -1
  21. package/lib/base/commands/text/insert-paragraph-command.js +2 -2
  22. package/lib/base/html-export.js +22 -6
  23. package/lib/base/input-controller.js +9 -3
  24. package/lib/base/scroll/model-states.d.ts +2 -1
  25. package/lib/base/scroll/model-states.js +9 -1
  26. package/lib/base/selection/selection.js +1 -1
  27. package/lib/client/bars/ribbon.d.ts +1 -0
  28. package/lib/client/bars/ribbon.js +4 -0
  29. package/lib/client/client-rich-edit.d.ts +1 -1
  30. package/lib/client/client-rich-edit.js +3 -1
  31. package/lib/client-ribbon/client-ribbon/ribbon.d.ts +1 -0
  32. package/lib/client-ribbon/client-ribbon/ribbon.js +4 -0
  33. package/lib/core/layout-formatter/row/size-engine/row-formatting-info.d.ts +1 -1
  34. package/lib/core/layout-formatter/row/size-engine/row-formatting-info.js +3 -3
  35. package/lib/core/layout-formatter/row/size-engine/row-sizes-manager.d.ts +6 -1
  36. package/lib/core/layout-formatter/row/size-engine/row-sizes-manager.js +11 -3
  37. package/lib/core/layout-formatter/row/word-holder.js +2 -2
  38. package/lib/core/model/document-model.d.ts +2 -2
  39. package/lib/core/model/document-model.js +9 -5
  40. package/lib/core/model/fonts/grabber.js +1 -1
  41. package/lib/core/model/history/base/history.d.ts +5 -4
  42. package/lib/core/model/history/base/history.js +24 -11
  43. package/lib/core/model/history/items/insert-sub-document-history-item.d.ts +1 -1
  44. package/lib/core/model/history/items/insert-sub-document-history-item.js +2 -2
  45. package/lib/core/model/history/items/switch-text-box-sub-documents-state-history-item.d.ts +14 -0
  46. package/lib/core/model/history/items/switch-text-box-sub-documents-state-history-item.js +32 -0
  47. package/lib/core/model/json/importers/server-model-inserter.js +2 -2
  48. package/lib/core/model/manipulators/picture-manipulator/loader/picture-loader.d.ts +1 -0
  49. package/lib/core/model/manipulators/picture-manipulator/loader/picture-loader.js +18 -0
  50. package/lib/core/model/manipulators/range/create-range-copy-operation.js +32 -21
  51. package/lib/core/model/manipulators/sub-document-manipulator.d.ts +6 -2
  52. package/lib/core/model/manipulators/sub-document-manipulator.js +4 -1
  53. package/lib/core/model/manipulators/text-manipulator/text-manipulator.js +1 -0
  54. package/lib/core/model/sub-document-collection.d.ts +2 -0
  55. package/lib/core/model/sub-document-collection.js +16 -3
  56. package/lib/core/model/sub-document.d.ts +3 -1
  57. package/lib/core/model/sub-document.js +7 -1
  58. package/lib/core/selection/input-position-base.d.ts +8 -0
  59. package/lib/core/selection/input-position-base.js +18 -1
  60. package/lib/core/selection/selected-special-run-info.d.ts +3 -1
  61. package/lib/core/selection/selected-special-run-info.js +8 -2
  62. package/lib/core/selection/selection-intervals-info.d.ts +3 -1
  63. package/lib/core/selection/selection-intervals-info.js +11 -0
  64. package/lib/model-api/formats/importer.js +3 -3
  65. package/package.json +2 -2
package/bin/gulpfile.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (gulpfile.js)
3
- * Version: 22.2.3
3
+ * Version: 22.2.4
4
4
  * Copyright (c) 2012 - 2022 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: 22.2.3
3
+ * Version: 22.2.4
4
4
  * Copyright (c) 2012 - 2022 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: 22.2.3
3
+ * Version: 22.2.4
4
4
  * Copyright (c) 2012 - 2022 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: 22.2.3
3
+ * Version: 22.2.4
4
4
  * Copyright (c) 2012 - 2022 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: 22.2.3
3
+ * Version: 22.2.4
4
4
  * Copyright (c) 2012 - 2022 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: 22.2.3
3
+ * Version: 22.2.4
4
4
  * Copyright (c) 2012 - 2022 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: 22.2.3
3
+ * Version: 22.2.4
4
4
  * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs
6
6
  */
@@ -279,13 +279,15 @@
279
279
  .dxreColumn {
280
280
  position: absolute;
281
281
  overflow: visible;
282
- cursor: text; }
282
+ cursor: text;
283
+ user-select: none; }
283
284
 
284
285
  .dxreRow {
285
286
  white-space: nowrap;
286
287
  overflow: hidden;
287
288
  position: absolute;
288
- font-size: 0; }
289
+ font-size: 0;
290
+ user-select: none; }
289
291
 
290
292
  .dxreBox {
291
293
  position: absolute;
@@ -1589,9 +1591,10 @@
1589
1591
  .dxTouchUI.dxMacOSMobilePlatform .dxreInputTarget {
1590
1592
  font-size: 16px;
1591
1593
  margin-top: 10px;
1592
- line-height: 0;
1593
1594
  transform: scale(0);
1594
1595
  -webkit-transform: scale(0); }
1596
+ .dxTouchUI.dxMacOSMobilePlatform .dxreInputTarget:not(.dxreiOS16) {
1597
+ line-height: 0; }
1595
1598
 
1596
1599
  .dxTouchUI .dxreControlSys .dxm-popupMain,
1597
1600
  .dxTouchUI .dxreView,
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (client.d.ts)
3
- * Version: 22.2.3
3
+ * Version: 22.2.4
4
4
  * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs
6
6
  */