devexpress-richedit 24.2.7 → 24.2.8-build-25135-0103

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 (43) 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 +228 -198
  10. package/dist/dx.richedit.min.js +2 -2
  11. package/index.d.ts +1 -1
  12. package/index.js +1 -1
  13. package/lib/client/formats/docx/export/exporters/base/sections.d.ts +0 -1
  14. package/lib/client/formats/docx/export/exporters/base/sections.js +2 -10
  15. package/lib/client/model-api/formats/exporter.js +1 -1
  16. package/lib/client/model-api/sub-document.js +1 -1
  17. package/lib/common/formats/rtf/export/exporter.d.ts +2 -3
  18. package/lib/common/formats/rtf/export/exporter.js +3 -3
  19. package/lib/common/formats/rtf/export/exporters/rtf-content-exporter.d.ts +4 -2
  20. package/lib/common/formats/rtf/export/exporters/rtf-content-exporter.js +13 -9
  21. package/lib/common/formats/rtf/export/exporters/table/rtf-table-exporter.d.ts +3 -2
  22. package/lib/common/formats/rtf/export/exporters/table/rtf-table-exporter.js +4 -4
  23. package/lib/common/formats/rtf/export/exporters/table/states/rtf-nested-table-exporter-state.d.ts +2 -1
  24. package/lib/common/formats/rtf/export/exporters/table/states/rtf-nested-table-exporter-state.js +2 -2
  25. package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state-base.d.ts +4 -2
  26. package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state-base.js +16 -9
  27. package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state.d.ts +2 -1
  28. package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state.js +2 -2
  29. package/lib/common/formats/rtf/importer-in-subdocument.d.ts +1 -2
  30. package/lib/common/formats/rtf/importer-in-subdocument.js +4 -3
  31. package/lib/common/layout/main-structures/layout-row.js +1 -2
  32. package/lib/common/layout-formatter/row/size-engine/row-formatting-info.d.ts +4 -1
  33. package/lib/common/layout-formatter/row/size-engine/row-formatting-info.js +36 -2
  34. package/lib/common/layout-formatter/row/tab-info.js +5 -4
  35. package/lib/common/layout-formatter/table/info/table-info.d.ts +0 -1
  36. package/lib/common/layout-formatter/table/info/table-info.js +2 -18
  37. package/lib/common/layout-formatter/table/size-compressor.js +9 -2
  38. package/lib/common/layout-formatter/table/table-alignment-applier.js +0 -2
  39. package/lib/common/model/paragraph/paragraph-style.d.ts +2 -1
  40. package/lib/common/model/paragraph/paragraph-style.js +5 -3
  41. package/lib/common/model/tables/secondary-structures/table-base-structures.d.ts +2 -1
  42. package/lib/common/model/tables/secondary-structures/table-base-structures.js +1 -0
  43. package/package.json +3 -3
@@ -94,5 +94,6 @@ export declare enum ConditionalTableStyleFormatting {
94
94
  TopRightCell = 8,
95
95
  TopLeftCell = 4,
96
96
  BottomRightCell = 2,
97
- BottomLeftCell = 1
97
+ BottomLeftCell = 1,
98
+ None = 0
98
99
  }
@@ -124,4 +124,5 @@ export var ConditionalTableStyleFormatting;
124
124
  ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["TopLeftCell"] = 4] = "TopLeftCell";
125
125
  ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["BottomRightCell"] = 2] = "BottomRightCell";
126
126
  ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["BottomLeftCell"] = 1] = "BottomLeftCell";
127
+ ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["None"] = 0] = "None";
127
128
  })(ConditionalTableStyleFormatting || (ConditionalTableStyleFormatting = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devexpress-richedit",
3
- "version": "24.2.7",
3
+ "version": "24.2.8-build-25135-0103",
4
4
  "homepage": "https://www.devexpress.com/",
5
5
  "bugs": "https://www.devexpress.com/support/",
6
6
  "author": "Developer Express Inc.",
@@ -14,8 +14,8 @@
14
14
  "build-nspell": "webpack --mode production --config=bin/nspell.webpack.config.js"
15
15
  },
16
16
  "peerDependencies": {
17
- "devextreme": "24.2.7",
18
- "devextreme-dist": "24.2.7"
17
+ "devextreme": "24.2.8-build-25133-1935",
18
+ "devextreme-dist": "24.2.8-build-25133-1935"
19
19
  },
20
20
  "dependencies": {
21
21
  "jszip": "~3.10.1",