devexpress-richedit 24.1.10-build-25037-0102 → 24.1.11-build-25044-1420

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (gulpfile.js)
3
- * Version: 24.1.10
3
+ * Version: 24.1.11
4
4
  * Copyright (c) 2012 - 2025 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.10
3
+ * Version: 24.1.11
4
4
  * Copyright (c) 2012 - 2025 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.10
3
+ * Version: 24.1.11
4
4
  * Copyright (c) 2012 - 2025 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.10
3
+ * Version: 24.1.11
4
4
  * Copyright (c) 2012 - 2025 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.10
3
+ * Version: 24.1.11
4
4
  * Copyright (c) 2012 - 2025 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.10
3
+ * Version: 24.1.11
4
4
  * Copyright (c) 2012 - 2025 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.10
3
+ * Version: 24.1.11
4
4
  * Copyright (c) 2012 - 2025 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: 24.1.10
3
+ * Version: 24.1.11
4
4
  * Copyright (c) 2012 - 2025 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.js)
3
- * Version: 24.1.10
3
+ * Version: 24.1.11
4
4
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs
6
6
  */
@@ -22672,8 +22672,6 @@ class HyperlinkInfo {
22672
22672
  return false;
22673
22673
  if (this.uri.startsWith("#"))
22674
22674
  return false;
22675
- if (this.isMail())
22676
- return false;
22677
22675
  return utils/* UrlUtils */.jE.isValid(this.uri);
22678
22676
  }
22679
22677
  isMail() {
@@ -109844,7 +109842,6 @@ class UpdateFieldCommand extends UpdateFieldCommandBase {
109844
109842
  }
109845
109843
 
109846
109844
  ;// CONCATENATED MODULE: ./src/common/focus-manager.ts
109847
-
109848
109845
  class FocusManager {
109849
109846
  constructor(canvasManager, owner, inputController, eventManager) {
109850
109847
  this.canvasManager = canvasManager;
@@ -109864,9 +109861,7 @@ class FocusManager {
109864
109861
  captureFocus() {
109865
109862
  if (this.owner.canCaptureFocus()) {
109866
109863
  this.owner.onCaptureFocus();
109867
- if (!browser.Browser.MacOSMobilePlatform || this.owner.isInitialized ||
109868
- browser.Browser.MacOSMobilePlatform && window.self !== window.top)
109869
- this.inputController.captureFocus();
109864
+ this.inputController.captureFocus();
109870
109865
  this.eventManager.onFocusIn();
109871
109866
  }
109872
109867
  }
@@ -110647,15 +110642,16 @@ class DivInputEditor extends InputEditorBase {
110647
110642
  this.cursorWasSetOnLastPosition = true;
110648
110643
  }
110649
110644
  setEditableDocumentContent(content) {
110645
+ if (!content) {
110646
+ this.clearInputElement();
110647
+ return;
110648
+ }
110650
110649
  if (typeof content === "string")
110651
110650
  this.inputElement.innerHTML = content;
110652
- else if (content) {
110651
+ else {
110653
110652
  this.inputElement.innerHTML = "";
110654
- for (let i = 0; i < content.length; i++)
110655
- this.inputElement.appendChild(content[i]);
110653
+ content.forEach((node) => this.inputElement.appendChild(node));
110656
110654
  }
110657
- else
110658
- this.clearInputElement();
110659
110655
  }
110660
110656
  setEditableDocumentCursorPosition(cursorPosition) {
110661
110657
  let textLength = this.getEditableDocumentFullText().length;
@@ -110824,8 +110820,9 @@ class IFrameInputEditor extends InputEditorBase {
110824
110820
  else
110825
110821
  dom.DomUtils.setFocus(this.control.readOnly == ReadOnlyMode.Persistent ? this.inputElement : this.editableDocument.body);
110826
110822
  }
110827
- setPosition(left, top) {
110828
- super.setPosition(left, top);
110823
+ setPosition(left, top, force = false) {
110824
+ if (this.IMEState === IMEState.None || force)
110825
+ super.setPosition(left, top);
110829
110826
  if (left && top)
110830
110827
  this.selectEditableDocumentContent();
110831
110828
  }
@@ -110960,11 +110957,12 @@ class IFrameInputEditor extends InputEditorBase {
110960
110957
  const layoutPoint = new LayoutPoint(layoutPosition.pageIndex, layoutX, layoutPosition.getLayoutY(DocumentLayoutDetailsLevel.Row));
110961
110958
  const pageElement = this.control.viewManager.cache[layoutPoint.pageIndex].page;
110962
110959
  layoutPoint.offset(pageElement.offsetLeft, pageElement.offsetTop);
110963
- this.setPosition(layoutPoint.x, layoutPoint.y);
110960
+ this.setPosition(layoutPoint.x, layoutPoint.y, true);
110964
110961
  this.editableDocument.body.style.textIndent = this.previousText.length ? currentTextIndent :
110965
110962
  layoutPosition.getLayoutX(this.control.measurer, DocumentLayoutDetailsLevel.Box) +
110966
110963
  layoutPosition.box.getCharOffsetXInPixels(this.control.measurer, layoutPosition.charOffset) - layoutX + "px";
110967
110964
  this.inputElement.style.width = layoutPosition.row.width + "px";
110965
+ this.inputElement.style.minWidth = layoutPosition.row.width + "px";
110968
110966
  if (browser.Browser.IE || browser.Browser.Edge) {
110969
110967
  this.editableDocument.body.style.width = this.inputElement.style.width;
110970
110968
  this.editableDocument.body.style.height = this.inputElement.style.height = layoutPosition.row.height + "px";
@@ -141543,7 +141541,7 @@ class ClientRichEdit {
141543
141541
  this.contextMenuSettings = settings.contextMenuSettings;
141544
141542
  this.fullScreenHelper = new FullScreenHelper(element);
141545
141543
  if (true)
141546
- external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVZGTlJNR05RV1ZObU1GTlBibVpUWlUxaFRtMDRVU0lLZlE9PS5UbVRVMXNoalpjd1hWVXg0b3R1dHNKVlMvazMxQWphYXlrTm83VjcyL1dMU09GQlYrNjJ3YzBJcVh0WW95dCthZWlLTCtkb3FDSlBHNytnS2djQzRSbFZvSWxHQ3k1ajJUVHVjeXFEaFJBaHRoWUcrcmgrV2ZtZUNFZDMzZndueVZEcUEyUT09In0=')));
141544
+ external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVZIWXphbFZEUnpoV1ZUSTRWMUZOYkVaUlJrVlRVU0lLZlE9PS5QMlRnaUloY2ZZcHl5Vi9KTjFoL3ptVWtUaGh5MW1Za0NpbUdzVHJ4alpTRlRGUENjQ3h6aS9nZXY0L3VhMU8wUDQyYlJKaGZFRnFPSTI1WE95YmZ1UW5FRTFMeGFrWDFuQkRMOVdPYTNTcVFDQ3dSQnJycnowcmZLTUtzS2Rma08xSlVWZz09In0=')));
141547
141545
  this.prepareElement(element, settings);
141548
141546
  this.initDefaultFontsAndStyles();
141549
141547
  this.initBars(settings.ribbon, settings.fonts);