New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@kolkov/angular-editor

Package Overview
Dependencies
Maintainers
1
Versions
102
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kolkov/angular-editor - npm Package Compare versions

Comparing version 1.2.0 to 2.0.0

esm2020/kolkov-angular-editor.mjs

5

CHANGELOG.md

@@ -0,1 +1,5 @@

<a name="2.0.0"></a>
## [1.0.2](https://github.com/kolkov/angular-editor/compare/v1.2.0...v2.0.0) (2022-01-06) Majore release
* Update to Angular v.13 and new Ivy compatible package format
<a name="1.0.2"></a>

@@ -11,1 +15,2 @@ ## [1.0.2](https://github.com/kolkov/angular-editor/compare/v1.0.1...v1.0.2) (2019-11-28) Technical release

## [1.0.0](https://github.com/kolkov/angular-editor/compare/v1.0.0-rc.2...v1.0.0) (2019-11-27) Initial release

2

kolkov-angular-editor.d.ts
/**
* Generated bundle index. Do not edit.
*/
/// <amd-module name="@kolkov/angular-editor" />
export * from './public-api';
export { AeSelectComponent as ɵa } from './lib/ae-select/ae-select.component';
import { ElementRef, EventEmitter, OnInit, Renderer2 } from '@angular/core';
import { ControlValueAccessor } from '@angular/forms';
import * as i0 from "@angular/core";
export interface SelectOption {

@@ -43,2 +44,4 @@ label: string;

_handleBackspace(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<AeSelectComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AeSelectComponent, "ae-select", never, { "options": "options"; "isHidden": "hidden"; }, { "changeEvent": "change"; }, never, never>;
}

@@ -7,2 +7,3 @@ import { ElementRef, EventEmitter, Renderer2 } from '@angular/core';

import { Observable } from 'rxjs';
import * as i0 from "@angular/core";
export declare class AngularEditorToolbarComponent {

@@ -95,2 +96,4 @@ private r;

focus(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<AngularEditorToolbarComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AngularEditorToolbarComponent, "angular-editor-toolbar", never, { "id": "id"; "uploadUrl": "uploadUrl"; "upload": "upload"; "showToolbar": "showToolbar"; "fonts": "fonts"; "customClasses": "customClasses"; "defaultFontName": "defaultFontName"; "defaultFontSize": "defaultFontSize"; "hiddenButtons": "hiddenButtons"; }, { "execute": "execute"; }, never, never>;
}

@@ -7,2 +7,3 @@ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2 } from '@angular/core';

import { DomSanitizer } from '@angular/platform-browser';
import * as i0 from "@angular/core";
export declare class AngularEditorComponent implements OnInit, ControlValueAccessor, AfterViewInit, OnDestroy {

@@ -128,2 +129,4 @@ private r;

filterStyles(html: string): string;
static ɵfac: i0.ɵɵFactoryDeclaration<AngularEditorComponent, [null, null, null, null, null, { attribute: "tabindex"; }, { attribute: "autofocus"; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<AngularEditorComponent, "angular-editor", never, { "id": "id"; "config": "config"; "placeholder": "placeholder"; "tabIndex": "tabIndex"; }, { "html": "html"; "viewMode": "viewMode"; "blurEvent": "blur"; "focusEvent": "focus"; }, never, never>;
}

@@ -0,2 +1,11 @@

import * as i0 from "@angular/core";
import * as i1 from "./angular-editor.component";
import * as i2 from "./angular-editor-toolbar.component";
import * as i3 from "./ae-select/ae-select.component";
import * as i4 from "@angular/common";
import * as i5 from "@angular/forms";
export declare class AngularEditorModule {
static ɵfac: i0.ɵɵFactoryDeclaration<AngularEditorModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<AngularEditorModule, [typeof i1.AngularEditorComponent, typeof i2.AngularEditorToolbarComponent, typeof i3.AeSelectComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule], [typeof i1.AngularEditorComponent, typeof i2.AngularEditorToolbarComponent]>;
static ɵinj: i0.ɵɵInjectorDeclaration<AngularEditorModule>;
}
import { HttpClient, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
import { CustomClass } from './config';
import * as i0 from "@angular/core";
export interface UploadResponse {

@@ -83,2 +84,4 @@ imageUrl: string;

removeSelectedElements(tagNames: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<AngularEditorService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<AngularEditorService>;
}
{
"name": "@kolkov/angular-editor",
"version": "1.2.0",
"description": "A simple native WYSIWYG editor for Angular 8+, 12+. Rich Text editor component for Angular.",
"version": "2.0.0",
"description": "A simple native WYSIWYG editor for Angular 8+, 13+. Rich Text editor component for Angular.",
"author": "Andrey Kolkov <a.kolkov@gmail.com>",

@@ -13,10 +13,7 @@ "repository": "https://github.com/kolkov/angular-editor",

"peerDependencies": {
"@angular/common": ">=8.0.0 <13",
"@angular/core": ">=8.0.0 <13",
"@angular/forms": ">=8.0.0 <13",
"@angular/platform-browser": ">=8.0.0 <13",
"rxjs": "^6.x.x"
"@angular/common": ">=13 <14",
"@angular/core": ">=13 <14"
},
"dependencies": {
"tslib": "^2.0.0"
"tslib": "^2.3.0"
},

@@ -34,10 +31,22 @@ "keywords": [

],
"main": "bundles/kolkov-angular-editor.umd.js",
"module": "fesm2015/kolkov-angular-editor.js",
"es2015": "fesm2015/kolkov-angular-editor.js",
"esm2015": "esm2015/kolkov-angular-editor.js",
"fesm2015": "fesm2015/kolkov-angular-editor.js",
"module": "fesm2015/kolkov-angular-editor.mjs",
"es2020": "fesm2020/kolkov-angular-editor.mjs",
"esm2020": "esm2020/kolkov-angular-editor.mjs",
"fesm2020": "fesm2020/kolkov-angular-editor.mjs",
"fesm2015": "fesm2015/kolkov-angular-editor.mjs",
"typings": "kolkov-angular-editor.d.ts",
"metadata": "kolkov-angular-editor.metadata.json",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./kolkov-angular-editor.d.ts",
"esm2020": "./esm2020/kolkov-angular-editor.mjs",
"es2020": "./fesm2020/kolkov-angular-editor.mjs",
"es2015": "./fesm2015/kolkov-angular-editor.mjs",
"node": "./fesm2015/kolkov-angular-editor.mjs",
"default": "./fesm2020/kolkov-angular-editor.mjs"
}
},
"sideEffects": false
}

@@ -17,3 +17,3 @@ <p align="center">

A simple native WYSIWYG/Rich Text editor for Angular 6-12+
A simple native WYSIWYG/Rich Text editor for Angular 6-13+

@@ -37,2 +37,4 @@ ![Nov-27-2019 17-26-29](https://user-images.githubusercontent.com/216412/69763434-259cd800-113b-11ea-918f-0565ebce0e48.gif)

2.0.0 and above - for Angular v13.0.0 and above
1.0.0 and above - for Angular v8.x.x and above

@@ -165,3 +167,3 @@

| spellcheck | `bolean` | `true` | no | Set spellchecking enabled or not |
| translate | `sting` | `yes` | no | Set translating enabled or not |
| translate | `string` | `yes` | no | Set translating enabled or not |
| sanitize | `bolean` | `true` | no | Set DOM sanitizing enabled or not |

@@ -168,0 +170,0 @@ | height | `string` | `auto` | no | Set height of the editor |

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