Skip to content

Commit

Permalink
shifted to xlsx.mini.min #104
Browse files Browse the repository at this point in the history
  • Loading branch information
HalitTalha committed Apr 11, 2021
1 parent d85c8db commit e755d78
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion projects/cdk-table-exporter/src/lib/options.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { WritingOptions } from 'xlsx';
import { WritingOptions } from 'xlsx/dist/xlsx.mini.min';

export interface Options {
fileName ?: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { COMMA, MIME_CSV, BOM } from './../../constants';
import { TxtOptions } from '../../options';
import { Injectable } from '@angular/core';
import * as XLSX from 'xlsx';
import * as XLSX from 'xlsx/dist/xlsx.mini.min';
import { WorksheetExporter } from './worksheet-exporter';
import { Mime } from '../../mime';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as XLSX from 'xlsx';
import * as XLSX from 'xlsx/dist/xlsx.mini.min';
import { Mime } from '../../mime';
import { FileExporter } from './file-exporter';
/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Injectable } from '@angular/core';
import * as XLSX from 'xlsx';
import * as XLSX from 'xlsx/dist/xlsx.mini.min';
import { MIME_EXCEL_XLS, TYPE_ARRAY, XLSX_COLS } from '../../constants';
import { Mime } from '../../mime';
import { ExcelOptions } from '../../options';
Expand Down

0 comments on commit e755d78

Please sign in to comment.