@aurigma/design-atoms-text
Advanced tools
Comparing version 6.19.1 to 6.20.0
@@ -124,2 +124,3 @@ import { EventObject } from "@aurigma/design-atoms-model/EventObject"; | ||
highlightInEditingModeEnabled: boolean; | ||
redraw(): void; | ||
} |
@@ -92,2 +92,3 @@ import { EventObject } from "@aurigma/design-atoms-model/EventObject"; | ||
processZoomChangedEvent(): Promise<boolean>; | ||
redraw(): boolean; | ||
/** | ||
@@ -94,0 +95,0 @@ * Text frame change event. |
@@ -192,2 +192,6 @@ import { EventObject } from "@aurigma/design-atoms-model/EventObject"; | ||
async processZoomChangedEvent() { | ||
this.redraw(); | ||
return true; | ||
} | ||
redraw() { | ||
if (!this._isReady) | ||
@@ -198,3 +202,2 @@ return false; | ||
this._drawSelection(this._textManager.getSelectedTextRange()); | ||
return true; | ||
} | ||
@@ -201,0 +204,0 @@ //#endregion - Mouse & keyboard processor - |
{ | ||
"name": "@aurigma/design-atoms-text", | ||
"version": "6.19.1", | ||
"version": "6.20.0", | ||
"description": "", | ||
@@ -37,3 +37,3 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@aurigma/design-atoms-model": "6.5.28", | ||
"@aurigma/design-atoms-model": "6.5.29", | ||
"@aurigma/text-whizz": "1.5.56", | ||
@@ -40,0 +40,0 @@ "xmldom": "^0.6.0" |
@@ -179,2 +179,4 @@ import {EventObject} from "@aurigma/design-atoms-model/EventObject"; | ||
highlightInEditingModeEnabled: boolean; | ||
redraw(): void; | ||
} |
@@ -245,2 +245,9 @@ import {EventObject} from "@aurigma/design-atoms-model/EventObject"; | ||
async processZoomChangedEvent(): Promise<boolean> { | ||
this.redraw(); | ||
return true; | ||
} | ||
redraw(){ | ||
if (!this._isReady) | ||
@@ -252,4 +259,2 @@ return false; | ||
this._drawSelection(this._textManager.getSelectedTextRange()); | ||
return true; | ||
} | ||
@@ -256,0 +261,0 @@ |
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
847522
20878