Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aurigma/design-atoms-text

Package Overview
Dependencies
Maintainers
5
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aurigma/design-atoms-text - npm Package Compare versions

Comparing version 6.21.2 to 6.21.3

4

dist/TextEditor/Interfaces/ITextEditor.d.ts

@@ -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();

3

dist/TextEditor/MobileTextEditor.js

@@ -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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc