npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@josipv/angular-editor-k2

v3.2.2

Published

A simple native WYSIWYG editor for Angular 8+, 12+. Rich Text editor component for Angular. @kolkov/angular-editor

Downloads

115

Readme

AngularEditor

npm version demo npm Donate

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

Nov-27-2019 17-26-29

Demo

demo | See the code in StackBlitz.

Getting Started

Installation

Install via npm package manager

npm install @josipv/angular-editor-k2 --save

Versions

3.2.1 and above - for Angular v14+

2.20.0 and above - for Angular v8-v14

Usage

Import angular-editor-k2 module

import { HttpClientModule} from '@angular/common/http';
import { AngularEditorModule } from '@josipv/angular-editor-k2';

@NgModule({
  imports: [ HttpClientModule, AngularEditorModule ]
})

Then in HTML

<angular-editor [placeholder]="'Enter text here...'" [(ngModel)]="htmlContent"></angular-editor>

or for usage with reactive forms

<angular-editor formControlName="htmlContent" [config]="editorConfig"></angular-editor>

if you using more than one editor on same page set id property

<angular-editor id="editor1" formControlName="htmlContent1" [config]="editorConfig"></angular-editor>
<angular-editor id="editor2" formControlName="htmlContent2" [config]="editorConfig"></angular-editor>

where

import { AngularEditorConfig } from '@josipv/angular-editor-k2';


editorConfig: AngularEditorConfig = {
    editable: true,
      spellcheck: true,
      height: 'auto',
      minHeight: '0',
      maxHeight: 'auto',
      width: 'auto',
      minWidth: '0',
      translate: 'yes',
      enableToolbar: true,
      showToolbar: true,
      placeholder: 'Enter text here...',
      defaultParagraphSeparator: '',
      defaultFontName: '',
      defaultFontSize: '',
      headers: [{

      }],
      fonts: [
        {class: 'arial', name: 'Arial'},
        {class: 'times-new-roman', name: 'Times New Roman'},
        {class: 'calibri', name: 'Calibri'},
        {class: 'comic-sans-ms', name: 'Comic Sans MS'}
      ],
      customClasses: [
      {
        name: 'quote',
        class: 'quote',
      },
      {
        name: 'redText',
        class: 'redText'
      },
      {
        name: 'titleText',
        class: 'titleText',
        tag: 'h1',
      },
    ],
    uploadUrl: 'v1/image',
    upload: (file: File) => { ... }
    uploadWithCredentials: false,
    sanitize: true,
    toolbarPosition: 'top',
    toolbarHiddenButtons: [
      ['bold', 'italic'],
      ['fontSize']
    ]
};

For ngModel to work, you must import FormsModule from @angular/forms, or for formControlName, you must import ReactiveFormsModule from @angular/forms

API

Inputs

| Input | Type | Default | Required | Description | | ------------- | ------------- | ------------- | ------------- | ------------- | | id | string | - | no | Id property when multiple editor used on same page | | [config] | AngularEditorConfig | default config | no | config for the editor | | placeholder | string | - | no | Set custom placeholder for input area | | tabIndex | number | - | no | Set Set tabindex on angular-editor-k2 |

Outputs

| Output | Description | | ------------- | ------------- | | (html) | Output html | | (viewMode) | Fired when switched visual and html source mode | | (blur) | Fired when editor blur | | (focus) | Fired when editor focus |

Methods

Name | Description | | ------------- | ------------- | | focus | Focuses the editor element |

Other

Name | Type | Description | | ------------- | ------------- | ------------- | | AngularEditorConfig | configuration | Configuration for the AngularEditor component.|

Configuration

| Input | Type | Default | Required | Description | | ------------- | ------------- | ------------- | ------------- | ------------- | | editable | bolean | true | no | Set editing enabled or not | | spellcheck | bolean | true | no | Set spellchecking enabled or not | | translate | sting | yes | no | Set translating enabled or not | | sanitize | bolean | true | no | Set DOM sanitizing enabled or not | | height | string | auto | no | Set height of the editor | | minHeight | string | 0 | no | Set minimum height of the editor | | maxHeight | string | auto | no | Set maximum height of the editor | | width | string | auto | no | Set width of the editor | | minWidth | string | 0 | no | Set minimum width of the editor | | enableToolbar | bolean | true | no | Set toolbar enabled or not | | showToolbar | bolean | true | no | Set toolbar visible or not | | toolbarPosition | string | top | no | Set toolbar position top or bottom | | placeholder | string | - | no | Set placeholder text | | defaultParagraphSeparator | string | - | no | Set default paragraph separator such as p | | defaultFontName | string | - | no | Set default font such as Comic Sans MS | | defaultFontSize | string | - | no | Set default font size such as 1 - 7 | | uploadUrl | string | - | no | Set image upload endpoint https://api.exapple.com/v1/image/upload and return response with imageUrl key. {"imageUrl" : } | | upload | function | - | no | Set image upload function | | uploadWithCredentials | bolean | false | no | Set passing or not credentials in the image upload call | | fonts | Font[] | - | no | Set array of available fonts [{name, class},...] | | customClasses | CustomClass[] | - | no | Set array of available fonts [{name, class, tag},...] | | outline | bolean | true | no | Set outline of the editor if in focus | | toolbarHiddenButtons | string[][] | - | no | Set of the array of button names or elements to hide |

toolbarHiddenButtons: [
  [
    'undo',
    'redo',
    'bold',
    'italic',
    'underline',
    'strikeThrough',
    'subscript',
    'superscript',
    'justifyLeft',
    'justifyCenter',
    'justifyRight',
    'justifyFull',
    'indent',
    'outdent',
    'insertUnorderedList',
    'insertOrderedList',
    'heading',
    'fontName'
  ],
  [
    'fontSize',
    'textColor',
    'backgroundColor',
    'customClasses',
    'link',
    'unlink',
    'insertImage',
    'insertVideo',
    'insertHorizontalRule',
    'removeFormat',
    'toggleEditorMode'
  ]
]

What's included

Within the download you'll find the following directories and files. You'll see something like this:

angular-editor-k2/
└── projects/
    ├── angular-editor/
    └── angular-editor-app/

angular-editor/ - library

angular-editor-app/ - demo application

Contributing

Please read through our contributing guidelines. Included are directions for opening issues, coding standards, and notes on development.

Editor preferences are available in the editor config for easy use in common text editors. Read more and download plugins at http://editorconfig.org.

Versioning

For a transparency into our release cycle and in striving to maintain backward compatibility, AngularEditor is maintained under the Semantic Versioning guidelines.

See the Releases section of our project for changelogs for each release version.

Creators

Josip Vinkovic

Donate

If you like my work and I save your time you can buy me a :beer: or :pizza: Donate