Compare commits

...

3 Commits

Author SHA1 Message Date
a04bbdd97b fix alias for filesaver 2022-03-14 11:12:03 -07:00
45afbba8fb Release 2.0.0 2022-02-17 11:43:09 -08:00
5a1791473e Release 1.8.5 2022-02-14 09:55:37 -08:00
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "openmct", "name": "openmct",
"version": "1.8.5-SNAPSHOT", "version": "2.0.0",
"description": "The Open MCT core platform", "description": "The Open MCT core platform",
"devDependencies": { "devDependencies": {
"@braintree/sanitize-url": "5.0.2", "@braintree/sanitize-url": "5.0.2",

View File

@ -21,7 +21,7 @@
*****************************************************************************/ *****************************************************************************/
import CSV from 'comma-separated-values'; import CSV from 'comma-separated-values';
import {saveAs} from 'file-saver/FileSaver'; import {saveAs} from 'saveAs/FileSaver';
class CSVExporter { class CSVExporter {
export(rows, options) { export(rows, options) {

View File

@ -31,7 +31,7 @@ function replaceDotsWithUnderscores(filename) {
return filename.replace(regex, '_'); return filename.replace(regex, '_');
} }
import {saveAs} from 'file-saver/FileSaver'; import {saveAs} from 'saveAs/FileSaver';
import html2canvas from 'html2canvas'; import html2canvas from 'html2canvas';
import uuid from 'uuid'; import uuid from 'uuid';

View File

@ -20,7 +20,7 @@
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
import {saveAs} from 'file-saver/FileSaver'; import {saveAs} from 'saveAs/FileSaver';
class JSONExporter { class JSONExporter {
export(obj, options) { export(obj, options) {