You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

@firestitch/html-editor

Package Overview
Dependencies
Maintainers
7
Versions
144
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@firestitch/html-editor - npm Package Compare versions

Comparing version

to
13.0.1

esm2020/app/modules/html-editor/classes/plugin.mjs

8

app/modules/html-editor/components/html-editor/html-editor.component.d.ts

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

private _defaultConfig;
private _document;
private _cdRef;

@@ -23,4 +24,5 @@ private _fr;

private _froalaReady$;
private _window;
private _destroy$;
constructor(_defaultConfig: any, _cdRef: ChangeDetectorRef, _fr: FsFroalaLoaderService);
constructor(_defaultConfig: any, _document: Document, _cdRef: ChangeDetectorRef, _fr: FsFroalaLoaderService);
onChange: (data: any) => void;

@@ -36,3 +38,2 @@ onTouched: () => void;

initialize(options?: any): void;
private _processImageUpload;
updateSize(): void;

@@ -51,2 +52,3 @@ validate(control: AbstractControl): ValidationErrors | null;

destroy(): void;
private _processImageUpload;
private _createConfig;

@@ -60,4 +62,4 @@ private _change;

private _setupFroala;
static ɵfac: i0.ɵɵFactoryDeclaration<FsHtmlEditorComponent, [{ optional: true; }, null, null]>;
static ɵfac: i0.ɵɵFactoryDeclaration<FsHtmlEditorComponent, [{ optional: true; }, null, null, null]>;
static ɵcmp: i0.ɵɵComponentDeclaration<FsHtmlEditorComponent, "fs-html-editor", never, { "config": "config"; "hint": "hint"; "disabled": "disabled"; }, {}, never, never>;
}
{
"name": "@firestitch/html-editor",
"version": "12.7.6",
"version": "13.0.1",
"repository": {

@@ -20,11 +20,24 @@ "type": "git",

"tributejs": "^5.1.3",
"tslib": "^2.2.0"
"tslib": "^2.3.0"
},
"sideEffects": false,
"main": "bundles/firestitch-html-editor.umd.js",
"module": "fesm2015/firestitch-html-editor.js",
"es2015": "fesm2015/firestitch-html-editor.js",
"esm2015": "esm2015/firestitch-html-editor.js",
"fesm2015": "fesm2015/firestitch-html-editor.js",
"typings": "firestitch-html-editor.d.ts"
"module": "fesm2015/firestitch-html-editor.mjs",
"es2020": "fesm2020/firestitch-html-editor.mjs",
"esm2020": "esm2020/firestitch-html-editor.mjs",
"fesm2020": "fesm2020/firestitch-html-editor.mjs",
"fesm2015": "fesm2015/firestitch-html-editor.mjs",
"typings": "firestitch-html-editor.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./firestitch-html-editor.d.ts",
"esm2020": "./esm2020/firestitch-html-editor.mjs",
"es2020": "./fesm2020/firestitch-html-editor.mjs",
"es2015": "./fesm2015/firestitch-html-editor.mjs",
"node": "./fesm2015/firestitch-html-editor.mjs",
"default": "./fesm2020/firestitch-html-editor.mjs"
}
}
}