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.19.1 to 6.20.0

1

dist/TextEditor/Interfaces/ITextEditor.d.ts

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

5

dist/TextEditor/NewTextEditor.js

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

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