devexpress-richedit 25.1.12 → 25.1.13

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 (53) hide show
  1. package/bin/gulpfile.js +6 -9
  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.d.ts +1 -1
  9. package/dist/dx.richedit.js +392 -185
  10. package/dist/dx.richedit.min.js +3 -3
  11. package/index.d.ts +1 -1
  12. package/index.js +1 -1
  13. package/lib/client/client-rich-edit.js +2 -2
  14. package/lib/client/document-processor/processor.d.ts +1 -0
  15. package/lib/client/document-processor/processor.js +11 -0
  16. package/lib/common/canvas/canvas-manager.d.ts +1 -1
  17. package/lib/common/canvas/canvas-manager.js +7 -3
  18. package/lib/common/canvas/double-tap-detector.d.ts +10 -0
  19. package/lib/common/canvas/double-tap-detector.js +28 -0
  20. package/lib/common/canvas/renderes/common/document-renderer.js +1 -1
  21. package/lib/common/commands/floating-objects/floating-object-drag-drop-change-position-command.js +5 -1
  22. package/lib/common/commands/text/clipboard-commands.d.ts +0 -1
  23. package/lib/common/commands/text/clipboard-commands.js +1 -5
  24. package/lib/common/commands/text/drag-drop-commands.js +2 -0
  25. package/lib/common/layout/main-structures/layout-row.d.ts +2 -1
  26. package/lib/common/layout/main-structures/layout-row.js +1 -0
  27. package/lib/common/layout-formatter/row/formatter.js +4 -1
  28. package/lib/common/layout-formatter/row/result.js +12 -4
  29. package/lib/common/layout-formatter/row/size-engine/row-height-calculator.js +20 -11
  30. package/lib/common/layout-formatter/row/size-engine/row-height-state.d.ts +2 -1
  31. package/lib/common/layout-formatter/row/size-engine/row-height-state.js +7 -2
  32. package/lib/common/layout-formatter/row/utils/line-spacing-calculator.d.ts +4 -3
  33. package/lib/common/layout-formatter/row/utils/line-spacing-calculator.js +16 -14
  34. package/lib/common/layout-formatter/table/borders/border-helper.js +4 -4
  35. package/lib/common/mouse-handler/mouse-handler/mouse-handler-default-state.d.ts +1 -0
  36. package/lib/common/mouse-handler/mouse-handler/mouse-handler-default-state.js +6 -4
  37. package/lib/common/ui/ruler/controls/divisions.d.ts +1 -0
  38. package/lib/common/ui/ruler/controls/divisions.js +4 -0
  39. package/lib/common/ui/ruler/controls/indent/first-line.d.ts +4 -2
  40. package/lib/common/ui/ruler/controls/indent/first-line.js +8 -0
  41. package/lib/common/ui/ruler/controls/indent/left.d.ts +4 -3
  42. package/lib/common/ui/ruler/controls/indent/left.js +10 -8
  43. package/lib/common/ui/ruler/controls/indent/right.d.ts +3 -1
  44. package/lib/common/ui/ruler/controls/indent/right.js +8 -0
  45. package/lib/common/ui/ruler/controls/tab/tab.d.ts +3 -0
  46. package/lib/common/ui/ruler/controls/tab/tab.js +12 -1
  47. package/lib/common/ui/ruler/controls/table.d.ts +4 -1
  48. package/lib/common/ui/ruler/controls/table.js +12 -0
  49. package/lib/common/ui/ruler/layout-recalculation-guard.d.ts +12 -0
  50. package/lib/common/ui/ruler/layout-recalculation-guard.js +23 -0
  51. package/lib/common/ui/ruler/manager.d.ts +3 -0
  52. package/lib/common/ui/ruler/manager.js +29 -0
  53. package/package.json +6 -4
package/bin/gulpfile.js CHANGED
@@ -1,14 +1,13 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (gulpfile.js)
3
- * Version: 25.1.12
3
+ * Version: 25.1.13
4
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');
8
8
  const gulp = require('gulp');
9
- const postcss = require('gulp-postcss');
10
- const atImport = require('postcss-import');
11
- const clean = require('postcss-clean');
9
+ const concat = require('gulp-concat');
10
+ const cleanCSS = require('gulp-clean-css');
12
11
 
13
12
  const richEditDist = path.resolve(__dirname, '..', 'dist');
14
13
  const devextremeDist = path.resolve(__dirname, '..', '..', 'devextreme-dist');
@@ -21,10 +20,8 @@ gulp.task('build-css', function () {
21
20
  path.resolve(devextremeDist, 'css', 'dx.light.css'),
22
21
  path.resolve(richEditDist, 'dx.richedit.css'),
23
22
  ])
24
- .pipe(postcss([
25
- atImport(),
26
- clean()
27
- ]))
23
+ .pipe(concat('dx.richedit.css'))
24
+ .pipe(cleanCSS())
28
25
  .pipe(gulp.dest(customDist));
29
26
  });
30
27
 
@@ -32,7 +29,7 @@ gulp.task('copy-icons', () => {
32
29
  return gulp.src([
33
30
  path.join(richEditDist, 'icons/**/*'),
34
31
  path.join(devextremeDist, 'css', 'icons/**/*')])
35
- .pipe(gulp.dest(path.join(customDist, 'icons')));
32
+ .pipe(gulp.dest(path.join(customDist, 'icons')));
36
33
  });
37
34
 
38
35
  gulp.task('concatenate-css', gulp.series('build-css', 'copy-icons'));
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (index-custom.js)
3
- * Version: 25.1.12
3
+ * Version: 25.1.13
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.12
3
+ * Version: 25.1.13
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.12
3
+ * Version: 25.1.13
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.12
3
+ * Version: 25.1.13
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.12
3
+ * Version: 25.1.13
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.12
3
+ * Version: 25.1.13
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 (dx.richedit.d.ts)
3
- * Version: 25.1.12
3
+ * Version: 25.1.13
4
4
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs",
6
6
  */