0.0.4 • Published 1 year ago

table-export-copy v0.0.4

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

Table Export and Copy

This Angular package is to make a button in given element and creates an option to Copy or Export a table to Excel. Applying the directive and config is enough to make this package work. But It needs angular material and material icons package

 

Example

https://github.com/fairojm/table-export-copy-example

Getting Started

npm install --save table-export-copy xlsx

If angular material is not installed in your project. Install it.

ng add @angular/material

Add below Icon package in your index.html

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

After installing table-export-copy import MatTableExporterModule in your ngModule

import { TableExportCopyModule } from 'table-export-copy';
@NgModule({
  imports: [
    ...
    TableExportCopyModule
  ],
 ]})

 

Usage

tableExportCopy is the directive selector. Use this directive in parent div element of table

exportConfig is the config option to mention the table element and button element to identify where the package need place the button. This two options are required and both accepts string with value of unique element tag or id of the element or class of the tag

<div tableExportCopy [exportConfig]="{tableElementID:'table',buttonElementID:'.header'}">

API

tableExportCopyDirective

@Input exportConfig <Object>

KeyTypeDescriptionExample
tableElementIDString(Required) The Unique html table id or tag name or class name#my-table or table or .my-table
buttonElementIDString(Required) The Unique div tag id or tag name or class name#header or header or .header
fileNameString(Optional) File name of the excelmyexcelFile
menuItemsArray<String>(Optional) Options to perform. Two supported options onlycopy_table or export_table

@Output exportResult <EventEmitter> - Event that's fired when the Operation completed

  

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago