0.0.7 • Published 2 years ago

kebs-notes-tab v0.0.7

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

kebsNotesTab

The kebs-notes-tab is used to for basic notes operations such as create note, edit note, delete note and update note provided token and url.

Table of Contents

Installation

You can install the package using following command.

$ npm install kebs-notes-tab

Usage

app.module.ts

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { KebsNotesTabModule } from 'kebs-notes-tab'

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    CommonModule,
    KebsNotesTabModule
  ],
  providers: [],

})
export class AppModule { }

app.component.html

    <kebs-notes-tab 
      [itemId]="uniqueItemId" [token]="token" [url]="itemData">
    </kebs-notes-tab>

app.component.ts

  token = "eyJ0eXAiOiJKV1QiL";
  url ="/urlPath";
  itemId = 3421

Inputs

PropertyTypeDescription
urlstringUrl to be loaded
tokenstringBearer token
itemIdintunique item id in which notes are stored
0.0.5

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago