devexpress-richedit 24.1.2-beta → 24.1.4-build-24183-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 (34) 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 -1
  10. package/dist/dx.richedit.js +277 -210
  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/public/ribbon/creator.js +1 -0
  16. package/lib/client/public/ribbon/items/select-box.d.ts +2 -0
  17. package/lib/client/public/ribbon/items/select-box.js +7 -0
  18. package/lib/client/public/utils.d.ts +4 -0
  19. package/lib/client/public/utils.js +15 -0
  20. package/lib/client/ribbon/i-toolbar-item-options.d.ts +1 -0
  21. package/lib/common/canvas/canvas-manager.js +1 -1
  22. package/lib/common/formats/html/export/html-builder.js +8 -4
  23. package/lib/common/formats/html/export/html-export.d.ts +12 -0
  24. package/lib/common/formats/html/export/html-export.js +113 -99
  25. package/lib/common/formats/html/import/html-importer.js +21 -8
  26. package/lib/common/layout-formatter/floating/position-calculators/base-calculator.d.ts +1 -0
  27. package/lib/common/layout-formatter/floating/position-calculators/base-calculator.js +1 -0
  28. package/lib/common/layout-formatter/floating/position-calculators/vertical.js +6 -4
  29. package/lib/common/model/fonts/loader.js +11 -6
  30. package/lib/common/ui/ruler/controls/divisions.js +2 -1
  31. package/lib/common/ui/ruler/controls/indent/first-line.js +4 -3
  32. package/lib/common/ui/ruler/controls/indent/left.js +5 -4
  33. package/lib/common/ui/ruler/ruler.js +2 -1
  34. package/package.json +4 -4
package/bin/gulpfile.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (gulpfile.js)
3
- * Version: 24.1.2
3
+ * Version: 24.1.4
4
4
  * Copyright (c) 2012 - 2024 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: 24.1.2
3
+ * Version: 24.1.4
4
4
  * Copyright (c) 2012 - 2024 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: 24.1.2
3
+ * Version: 24.1.4
4
4
  * Copyright (c) 2012 - 2024 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: 24.1.2
3
+ * Version: 24.1.4
4
4
  * Copyright (c) 2012 - 2024 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: 24.1.2
3
+ * Version: 24.1.4
4
4
  * Copyright (c) 2012 - 2024 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: 24.1.2
3
+ * Version: 24.1.4
4
4
  * Copyright (c) 2012 - 2024 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: 24.1.2
3
+ * Version: 24.1.4
4
4
  * Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs
6
6
  */
@@ -1933,7 +1933,7 @@
1933
1933
  }
1934
1934
 
1935
1935
  .dxreInputTarget {
1936
- position: fixed;
1936
+ position: absolute;
1937
1937
  overflow: hidden;
1938
1938
  left: -1px;
1939
1939
  top: -1px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (dx.richedit.d.ts)
3
- * Version: 24.1.2
3
+ * Version: 24.1.4
4
4
  * Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs
6
6
  */