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.
- package/bin/gulpfile.js +1 -1
- package/bin/index-custom.js +1 -1
- package/bin/localization-builder.js +1 -1
- package/bin/nspell-index.js +1 -1
- package/bin/nspell.webpack.config.js +1 -1
- package/bin/webpack-externals.js +1 -1
- package/bin/webpack.config.js +1 -1
- package/dist/dx.richedit.css +6 -3
- package/dist/dx.richedit.d.ts +1 -1
- package/dist/dx.richedit.js +1428 -1243
- package/dist/dx.richedit.min.js +4 -4
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/base/clipboard-content-inserter.js +3 -3
- package/lib/base/commands/floating-objects/floating-object-drag-drop-change-position-command.d.ts +0 -1
- package/lib/base/commands/floating-objects/floating-object-drag-drop-change-position-command.js +2 -9
- package/lib/base/commands/sub-document/change-active-sub-document-command.js +1 -1
- package/lib/base/commands/text/backspace-command.d.ts +1 -0
- package/lib/base/commands/text/backspace-command.js +2 -0
- package/lib/base/commands/text/insert-paragraph-command.d.ts +1 -1
- package/lib/base/commands/text/insert-paragraph-command.js +2 -2
- package/lib/base/html-export.js +22 -6
- package/lib/base/input-controller.js +9 -3
- package/lib/base/scroll/model-states.d.ts +2 -1
- package/lib/base/scroll/model-states.js +9 -1
- package/lib/base/selection/selection.js +1 -1
- package/lib/client/bars/ribbon.d.ts +1 -0
- package/lib/client/bars/ribbon.js +4 -0
- package/lib/client/client-rich-edit.d.ts +1 -1
- package/lib/client/client-rich-edit.js +3 -1
- package/lib/client-ribbon/client-ribbon/ribbon.d.ts +1 -0
- package/lib/client-ribbon/client-ribbon/ribbon.js +4 -0
- package/lib/core/layout-formatter/row/size-engine/row-formatting-info.d.ts +1 -1
- package/lib/core/layout-formatter/row/size-engine/row-formatting-info.js +3 -3
- package/lib/core/layout-formatter/row/size-engine/row-sizes-manager.d.ts +6 -1
- package/lib/core/layout-formatter/row/size-engine/row-sizes-manager.js +11 -3
- package/lib/core/layout-formatter/row/word-holder.js +2 -2
- package/lib/core/model/document-model.d.ts +2 -2
- package/lib/core/model/document-model.js +9 -5
- package/lib/core/model/fonts/grabber.js +1 -1
- package/lib/core/model/history/base/history.d.ts +5 -4
- package/lib/core/model/history/base/history.js +24 -11
- package/lib/core/model/history/items/insert-sub-document-history-item.d.ts +1 -1
- package/lib/core/model/history/items/insert-sub-document-history-item.js +2 -2
- package/lib/core/model/history/items/switch-text-box-sub-documents-state-history-item.d.ts +14 -0
- package/lib/core/model/history/items/switch-text-box-sub-documents-state-history-item.js +32 -0
- package/lib/core/model/json/importers/server-model-inserter.js +2 -2
- package/lib/core/model/manipulators/picture-manipulator/loader/picture-loader.d.ts +1 -0
- package/lib/core/model/manipulators/picture-manipulator/loader/picture-loader.js +18 -0
- package/lib/core/model/manipulators/range/create-range-copy-operation.js +32 -21
- package/lib/core/model/manipulators/sub-document-manipulator.d.ts +6 -2
- package/lib/core/model/manipulators/sub-document-manipulator.js +4 -1
- package/lib/core/model/manipulators/text-manipulator/text-manipulator.js +1 -0
- package/lib/core/model/sub-document-collection.d.ts +2 -0
- package/lib/core/model/sub-document-collection.js +16 -3
- package/lib/core/model/sub-document.d.ts +3 -1
- package/lib/core/model/sub-document.js +7 -1
- package/lib/core/selection/input-position-base.d.ts +8 -0
- package/lib/core/selection/input-position-base.js +18 -1
- package/lib/core/selection/selected-special-run-info.d.ts +3 -1
- package/lib/core/selection/selected-special-run-info.js +8 -2
- package/lib/core/selection/selection-intervals-info.d.ts +3 -1
- package/lib/core/selection/selection-intervals-info.js +11 -0
- package/lib/model-api/formats/importer.js +3 -3
- package/package.json +2 -2
package/bin/gulpfile.js
CHANGED
package/bin/index-custom.js
CHANGED
package/bin/nspell-index.js
CHANGED
package/bin/webpack-externals.js
CHANGED
package/bin/webpack.config.js
CHANGED
package/dist/dx.richedit.css
CHANGED
|
@@ -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,
|