ng-diff-match-atlas
TypeScript icon, indicating that this package has built-in type declarations

0.1.3 • Public • Published

Ng-Diff-Match-Atlas

Build Status

angular-diff-match-patch 的基础上添加了add 和del.

Installation

npm install ng-diff-match-atlas --save-dev

Usage

In order to use these directives you'll first have to import them from the module like so:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AppComponent } from './app.component';
// import our necessary module and components here 
import { DiffMatchPatchModule } from 'ng-diff-match-atlas';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    HttpModule,
    DiffMatchPatchModule
  ],
  providers: [  ],
  bootstrap: [AppComponent]
})
export class AppModule { }

Remember to add DiffMatchPatchModule to your imports array in @NgModule

Basic Usage

<h1>{{left}}</h1>

<h1>{{right}}</h1>

<pre diff [left]="left" [right]="right"></pre>

<pre lineDiff [left]="left" [right]="right"></pre>

<pre semanticDiff [left]="left" [right]="right"></pre>

<pre processingDiff [left]="left" [right]="right"></pre>

<pre del [left]="left" [right]="right"></pre>

<pre add [left]="left" [right]="right"></pre>

This should produce something like so:

CSS Styles:

ins{
  color: black;
  background: #bbffbb;
}

del{
  color: black;
  background: #ffbbbb;
}

Pull Requests

Got any improvements you'd like to make to this module? Submit a pull request and I will review and merge.

Package Sidebar

Install

npm i ng-diff-match-atlas

Weekly Downloads

0

Version

0.1.3

License

MIT

Unpacked Size

2.66 MB

Total Files

52

Last publish

Collaborators

  • jy