All Projects → Teradata → Covalent Text Editor Nightly

Teradata / Covalent Text Editor Nightly

Licence: mit
Nightly builds of https://github.com/teradata/covalent text-editor module

Labels

Projects that are alternatives of or similar to Covalent Text Editor Nightly

Short
URL shortening service written in Go and React
Stars: ✭ 777 (+3137.5%)
Mutual labels:  scss
Vue Chat
👥Vue全家桶+Socket.io+Express/Koa2打造一个智能聊天室。
Stars: ✭ 887 (+3595.83%)
Mutual labels:  scss
Yaru
Ubuntu community theme "yaru". Better than a 🌯.
Stars: ✭ 906 (+3675%)
Mutual labels:  scss
Primitive
⛏️ ‎ A front-end design toolkit for developing web apps.
Stars: ✭ 783 (+3162.5%)
Mutual labels:  scss
Vue Bootstrap With Material Design
Vue Bootstrap with Material Design - Powerful and free UI KIT
Stars: ✭ 803 (+3245.83%)
Mutual labels:  scss
Bs4 Nodejs Static
A basic template to develop a website based on Bootstrap 4
Stars: ✭ 17 (-29.17%)
Mutual labels:  scss
Sublimetext Codeformatter
Code Formatter plugin for ST2/ST3
Stars: ✭ 765 (+3087.5%)
Mutual labels:  scss
Essays
Stars: ✭ 921 (+3737.5%)
Mutual labels:  scss
Material Dashboard Angular2
Material Dashboard Angular
Stars: ✭ 814 (+3291.67%)
Mutual labels:  scss
Uicookbook
A few recipes and build workflows for UI dev
Stars: ✭ 19 (-20.83%)
Mutual labels:  scss
Ghchat
📱A chat application for GitHub. React + PWA + Node(koa2) + Typescripts + Mysql + Socket.io
Stars: ✭ 791 (+3195.83%)
Mutual labels:  scss
Sassmagic
Collection best of Sass mixins and function
Stars: ✭ 795 (+3212.5%)
Mutual labels:  scss
Stagy
Stagy is a tool for quick deployment of staging environments.
Stars: ✭ 19 (-20.83%)
Mutual labels:  scss
Jekyll Theme Chirpy
A minimal, sidebar, responsive web design Jekyll theme that focuses on text presentation.
Stars: ✭ 773 (+3120.83%)
Mutual labels:  scss
Gwsl
THIS IS THE GWSL WEBSITE SOURCE. Please see https://github.com/Opticos/GWSL-Source
Stars: ✭ 23 (-4.17%)
Mutual labels:  scss
Artsy.github.io
The Artsy Engineering Open-Source Developers Blog
Stars: ✭ 770 (+3108.33%)
Mutual labels:  scss
Dropify
Override your input files with style — Demo here : http://jeremyfagis.github.io/dropify
Stars: ✭ 892 (+3616.67%)
Mutual labels:  scss
Sass A11ycolor
🌈 Generate the nearest accessible color with Sass.
Stars: ✭ 24 (+0%)
Mutual labels:  scss
Macadmininfo.github.io
Resources for both beginning and experienced administrators of Mac/Apple technology.
Stars: ✭ 23 (-4.17%)
Mutual labels:  scss
Espass.github.io
Website http://espass.it
Stars: ✭ 19 (-20.83%)
Mutual labels:  scss

TdTextEditorComponent: td-text-editor

<td-text-editor> element generates an easymde markdown editor.

API Summary

Inputs

Properties

  • isPreviewActive?: function()
    • is the Preview Active. Returns boolean
  • isSideBySideActive?: function()
    • is the Side By Side Active. Returns boolean
  • isFullscreenActive?: function()
    • is Full Screen Active. Returns boolean
  • clearAutosavedValue?: function()
    • clears Auto Saved Value. Returns void
  • toTextArea?: function()
    • reverts to the Initial textarea. Returns void
  • easyMDE?: function()
    • getter function for the underlying easyMDE Object. Returns EasyMDE

Installation

This component can be installed as npm package.

npm install @covalent/text-editor

Setup

Import the CovalentTextEditorModule in your NgModule:

import { CovalentTextEditorModule } from '@covalent/text-editor';
@NgModule({
  imports: [
    CovalentTextEditorModule,
    ...
  ],
  ...
})
export class MyModule {}

Usage

<td-text-editor [value]="Some Text" [options]="options"></td-text-editor>
class MyComponent {
  options: any = {
    lineWrapping: true,
    toolbar: false,
    ...
  };
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].