devexpress-richedit 21.2.7 → 21.2.8-build-22151-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 (59) 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.d.ts +1 -1
  9. package/dist/dx.richedit.js +6009 -5627
  10. package/dist/dx.richedit.min.js +7 -7
  11. package/dist/pdfkit.js +816 -727
  12. package/dist/pdfkit.min.js +36 -36
  13. package/index.d.ts +1 -1
  14. package/index.js +1 -1
  15. package/lib/base/commands/document/print-document-on-client-command.js +1 -1
  16. package/lib/base/commands/floating-objects/floating-object-drag-drop-change-position-command.d.ts +3 -0
  17. package/lib/base/commands/floating-objects/floating-object-drag-drop-change-position-command.js +8 -1
  18. package/lib/base/commands/floating-objects/insert-anchored-text-box-command.js +1 -0
  19. package/lib/base/commands/paragraph-properties/change-paragraph-back-color-command.js +1 -1
  20. package/lib/base/commands/text/drag-drop-commands.js +7 -5
  21. package/lib/base/model/history/selection/selection-history-item.js +1 -2
  22. package/lib/client/_constants.js +1 -1
  23. package/lib/client/bars/rich-edit-ribbon/ribbon-items-data.js +1 -1
  24. package/lib/client/commands/mail-merge-command.js +2 -1
  25. package/lib/client/public/all.js +5 -0
  26. package/lib/client/public/commands/ui-changes-listener.js +1 -1
  27. package/lib/client/public/nusa/custom-control-registrator.js +3 -3
  28. package/lib/core/layout-formatter/box/generator/box-infos-generator.js +1 -1
  29. package/lib/core/layout-formatter/floating/anchored-objects-manager.d.ts +2 -1
  30. package/lib/core/layout-formatter/floating/anchored-objects-manager.js +3 -2
  31. package/lib/core/layout-formatter/row/formatter.js +1 -1
  32. package/lib/core/layout-formatter/row/states.d.ts +1 -0
  33. package/lib/core/layout-formatter/row/states.js +4 -0
  34. package/lib/core/layout-formatter/table/info/table-info.js +1 -1
  35. package/lib/core/model/document-model.d.ts +2 -0
  36. package/lib/core/model/document-model.js +5 -0
  37. package/lib/docx/export/exporters/base/character-properties.js +1 -1
  38. package/lib/docx/zip/zip-builder.js +19 -2
  39. package/lib/html/import/html-importer.js +1 -0
  40. package/lib/rtf/export/exporters/picture/rtf-picture-exporter.js +12 -10
  41. package/lib/rtf/export/exporters/rtf-anchored-picture-run-exporter.js +1 -1
  42. package/lib/rtf/export/exporters/rtf-anchored-run-exporter.d.ts +3 -1
  43. package/lib/rtf/export/exporters/rtf-anchored-run-exporter.js +6 -1
  44. package/lib/rtf/export/exporters/rtf-anchored-text-box-run-exporter.js +1 -1
  45. package/lib/rtf/export/rtf-builder.d.ts +2 -0
  46. package/lib/rtf/export/rtf-builder.js +13 -0
  47. package/lib/rtf/import/destination/shape/shape-property-value-destination.js +1 -1
  48. package/lib/rtf/import/dx-decoding/decoder-helper.js +3 -2
  49. package/lib/rtf/import/dx-decoding/hangul949-decoder-helper.d.ts +6 -0
  50. package/lib/rtf/import/dx-decoding/hangul949-decoder-helper.js +46 -0
  51. package/lib/rtf/import/dx-decoding/specified-symbols-949.d.ts +2 -0
  52. package/lib/rtf/import/dx-decoding/specified-symbols-949.js +274 -0
  53. package/lib/rtf/import/dx-decoding/specified-symbols.d.ts +0 -1
  54. package/lib/rtf/import/dx-decoding/specified-symbols.js +0 -1
  55. package/lib/rtf/import/encoding/code-pages.d.ts +1 -0
  56. package/lib/rtf/import/encoding/code-pages.js +1 -0
  57. package/lib/rtf/import/encoding/dx-encoding.js +1 -0
  58. package/lib/rtf/import/keyword-tables/character-properties.js +0 -1
  59. package/package.json +2 -2
package/bin/gulpfile.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (gulpfile.js)
3
- * Version: 21.2.7
3
+ * Version: 21.2.8
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: 21.2.7
3
+ * Version: 21.2.8
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: 21.2.7
3
+ * Version: 21.2.8
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: 21.2.7
3
+ * Version: 21.2.8
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: 21.2.7
3
+ * Version: 21.2.8
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: 21.2.7
3
+ * Version: 21.2.8
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: 21.2.7
3
+ * Version: 21.2.8
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 (client.d.ts)
3
- * Version: 21.2.7
3
+ * Version: 21.2.8
4
4
  * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs
6
6
  */