@syncfusion/ej2-documenteditor
Advanced tools
Comparing version 24.2.7 to 24.2.8
/*! | ||
* filename: index.d.ts | ||
* version : 24.2.7 | ||
* version : 24.2.8 | ||
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-documenteditor@*", | ||
"_id": "@syncfusion/ej2-documenteditor@24.2.5", | ||
"_id": "@syncfusion/ej2-documenteditor@24.2.7", | ||
"_inBundle": false, | ||
"_integrity": "sha512-8EhRkZkxLIeH2ChTt9zzXfG9lALNHwslm8xlz6pL8aOZfGxD5GC6mujxOe3ETV6s65o4BZ0PZu4MPqxCkFLaFQ==", | ||
"_integrity": "sha512-6SVwkQDtOJHUdxvxNKSJvTUBLHhT/jxPxVyBYdIltEBhAs7CEzOZ8Q6T9t97glrGvguHWwZRM3iERUYrWVLrrA==", | ||
"_location": "/@syncfusion/ej2-documenteditor", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-documenteditor/-/ej2-documenteditor-24.2.5.tgz", | ||
"_shasum": "ec551bf69a759329d0b436076ddfa67cc3afee93", | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-documenteditor/-/ej2-documenteditor-24.2.7.tgz", | ||
"_shasum": "136da5422430edb534f43ac4f6df897359912bed", | ||
"_spec": "@syncfusion/ej2-documenteditor@*", | ||
@@ -41,10 +41,10 @@ "_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included", | ||
"@syncfusion/ej2-buttons": "~24.2.7", | ||
"@syncfusion/ej2-calendars": "~24.2.5", | ||
"@syncfusion/ej2-calendars": "~24.2.8", | ||
"@syncfusion/ej2-compression": "~24.2.3", | ||
"@syncfusion/ej2-dropdowns": "~24.2.7", | ||
"@syncfusion/ej2-dropdowns": "~24.2.8", | ||
"@syncfusion/ej2-file-utils": "~24.2.3", | ||
"@syncfusion/ej2-inputs": "~24.2.7", | ||
"@syncfusion/ej2-navigations": "~24.2.4", | ||
"@syncfusion/ej2-navigations": "~24.2.8", | ||
"@syncfusion/ej2-office-chart": "~24.2.3", | ||
"@syncfusion/ej2-popups": "~24.2.5", | ||
"@syncfusion/ej2-popups": "~24.2.8", | ||
"@syncfusion/ej2-splitbuttons": "~24.2.7" | ||
@@ -74,4 +74,4 @@ }, | ||
"typings": "index.d.ts", | ||
"version": "24.2.7", | ||
"version": "24.2.8", | ||
"sideEffects": false | ||
} |
@@ -87,2 +87,3 @@ /* eslint-disable */ | ||
hideSpinner(_this.documentHelper.dialog.element); | ||
_this.selectedText = undefined; | ||
} | ||
@@ -121,2 +122,3 @@ }; | ||
hideSpinner(_this.documentHelper.dialog.element); | ||
_this.selectedText = undefined; | ||
} | ||
@@ -310,2 +312,3 @@ }; | ||
} | ||
this.selectedText = undefined; | ||
}; | ||
@@ -312,0 +315,0 @@ return SpellCheckDialog; |
@@ -64,2 +64,4 @@ import { Underline, HighlightColor, BaselineAlignment, Strikethrough, BiDirectionalOverride } from '../../base/types'; | ||
copyFormat(format: WCharacterFormat): void; | ||
isEqualTocFormat(format: WCharacterFormat): boolean; | ||
copyTocFormat(format: WCharacterFormat): void; | ||
updateUniqueCharacterFormat(format: WCharacterFormat): void; | ||
@@ -66,0 +68,0 @@ static clear(): void; |
@@ -597,2 +597,32 @@ import { TextElementBox, ParagraphWidget } from '../viewer/page'; | ||
}; | ||
WCharacterFormat.prototype.isEqualTocFormat = function (format) { | ||
return (this.fontFamily === format.fontFamily | ||
&& this.bold === format.bold | ||
&& this.italic === format.italic | ||
&& this.strikethrough === format.strikethrough | ||
&& this.highlightColor === format.highlightColor | ||
&& this.fontFamilyAscii === format.fontFamilyAscii | ||
&& this.fontFamilyFarEast === format.fontFamilyFarEast | ||
&& this.fontFamilyNonFarEast === format.fontFamilyNonFarEast); | ||
}; | ||
WCharacterFormat.prototype.copyTocFormat = function (format) { | ||
if (!isNullOrUndefined(format.bold)) { | ||
this.bold = format.bold; | ||
} | ||
if (!isNullOrUndefined(format.italic)) { | ||
this.italic = format.italic; | ||
} | ||
if (!isNullOrUndefined(format.strikethrough)) { | ||
this.strikethrough = format.strikethrough; | ||
} | ||
if (!isNullOrUndefined(format.highlightColor)) { | ||
this.highlightColor = format.highlightColor; | ||
} | ||
if (!isNullOrUndefined(format.fontFamily)) { | ||
this.fontFamily = format.fontFamily; | ||
this.fontFamilyAscii = format.fontFamily; | ||
this.fontFamilyFarEast = format.fontFamily; | ||
this.fontFamilyNonFarEast = format.fontFamily; | ||
} | ||
}; | ||
WCharacterFormat.prototype.updateUniqueCharacterFormat = function (format) { | ||
@@ -599,0 +629,0 @@ var hash = undefined; |
@@ -1017,3 +1017,3 @@ /* eslint-disable */ | ||
while (!isNullOrUndefined(matchObject = pattern.exec(text))) { | ||
if (spans.containsKey(errorElement)) { | ||
if (spans.containsKey(errorElement) && this.manageSpecialCharacters(errorElement.text, undefined, true) === errorElement.text) { | ||
matchObject.index = spans.get(errorElement); | ||
@@ -1020,0 +1020,0 @@ } |
@@ -221,2 +221,3 @@ import { ListLevelPattern, FootEndNoteNumberFormat } from '../../base/types'; | ||
adjustPosition(element: ElementBox, bodyWidget: BlockContainer): void; | ||
private getFirstElement; | ||
private updateWrapPosition; | ||
@@ -226,2 +227,3 @@ private isFirstitemInPage; | ||
private isNeedToWrapForSquareTightAndThrough; | ||
private isNeedToWrapForTopAndBottom; | ||
private isNeedToWrapForSquareTightAndThroughForTable; | ||
@@ -228,0 +230,0 @@ private isNeedToWrapLeafWidget; |
@@ -1248,4 +1248,7 @@ import { Dictionary } from '../../base/dictionary'; | ||
updateClientAreaLocation(widget: Widget, area: Rect): void; | ||
updateClientAreaForBlock(block: BlockWidget, beforeLayout: boolean, tableCollection?: TableWidget[], updateYPosition?: boolean): void; | ||
updateClientAreaForBlock(block: BlockWidget, beforeLayout: boolean, tableCollection?: TableWidget[], updateYPosition?: boolean, updateXPosition?: boolean): void; | ||
private updateParagraphYPositionBasedonTextWrap; | ||
private updateParagraphXPositionBasedOnTextWrap; | ||
private updateTableXPositionBasedOnTextWrap; | ||
private isFloatingItemIntersect; | ||
private getIntersectingItemBounds; | ||
@@ -1252,0 +1255,0 @@ private getMinBottomFloatingItem; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
79239919
372934
464