@aurigma/design-atoms-text
Advanced tools
Comparing version 6.21.2 to 6.21.3
@@ -135,2 +135,6 @@ import { EventObject } from "@aurigma/design-atoms-model/EventObject"; | ||
redraw(): void; | ||
/** | ||
* Disposes text editor when its no longer needed. | ||
*/ | ||
dispose(): void; | ||
} | ||
@@ -137,0 +141,0 @@ export declare type EditorInitData = { |
@@ -66,2 +66,3 @@ import { EventObject } from "@aurigma/design-atoms-model/EventObject"; | ||
redraw(): void; | ||
dispose(): void; | ||
private get _div(); | ||
@@ -68,0 +69,0 @@ private get _innerDiv(); |
@@ -262,3 +262,2 @@ import { Color, ColorFactory } from "@aurigma/design-atoms-model/Colors"; | ||
async processKeyEvent(e) { | ||
console.trace(`Mobile process key event [${e.key}]`); | ||
return true; | ||
@@ -271,2 +270,4 @@ } | ||
} | ||
dispose() { | ||
} | ||
get _div() { | ||
@@ -273,0 +274,0 @@ return this._elementHandler.textEditorDiv; |
@@ -144,2 +144,3 @@ import { EventObject } from "@aurigma/design-atoms-model/EventObject"; | ||
redo(): void; | ||
dispose(): void; | ||
private _onCursorChanged; | ||
@@ -146,0 +147,0 @@ private _onTextChanged; |
@@ -22,3 +22,2 @@ import { EventObject } from "@aurigma/design-atoms-model/EventObject"; | ||
this._renderer = _renderer; | ||
//#endregion - Undo/Redo - | ||
//#region - Private - Event handlers - | ||
@@ -312,2 +311,5 @@ this._onCursorChanged = () => { | ||
} | ||
//#endregion - Undo/Redo - | ||
dispose() { | ||
} | ||
_checkFrameChanged() { | ||
@@ -314,0 +316,0 @@ const initialRectangle = this._rectangle; |
{ | ||
"name": "@aurigma/design-atoms-text", | ||
"version": "6.21.2", | ||
"version": "6.21.3", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -194,2 +194,7 @@ import {EventObject} from "@aurigma/design-atoms-model/EventObject"; | ||
redraw(): void; | ||
/** | ||
* Disposes text editor when its no longer needed. | ||
*/ | ||
dispose(): void; | ||
} | ||
@@ -196,0 +201,0 @@ |
@@ -334,3 +334,2 @@ import { Color, ColorFactory } from "@aurigma/design-atoms-model/Colors"; | ||
async processKeyEvent(e: KeyboardEvent): Promise<boolean> { | ||
console.trace(`Mobile process key event [${e.key}]`); | ||
return true; | ||
@@ -346,2 +345,5 @@ } | ||
dispose(): void { | ||
} | ||
private get _div(): HTMLElement { | ||
@@ -348,0 +350,0 @@ return this._elementHandler.textEditorDiv; |
@@ -404,2 +404,5 @@ import {EventObject} from "@aurigma/design-atoms-model/EventObject"; | ||
dispose(): void { | ||
} | ||
//#region - Private - Event handlers - | ||
@@ -406,0 +409,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
1195039
28157