Socket
Socket
Sign inDemoInstall

@ag-grid-community/csv-export

Package Overview
Dependencies
Maintainers
3
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ag-grid-community/csv-export - npm Package Compare versions

Comparing version 23.1.1 to 23.2.0

4

dist/cjs/csvExport/gridSerializer.d.ts

@@ -1,2 +0,2 @@

import { Column, ColumnController, ColumnGroupChild, ExportParams, GridOptionsWrapper, ProcessCellForExportParams, ProcessGroupHeaderForExportParams, ProcessRowGroupForExportParams, ProcessHeaderForExportParams, RowNode, ValueService } from "@ag-grid-community/core";
import { Column, ColumnController, ColumnGroupChild, ExportParams, GridOptionsWrapper, ProcessCellForExportParams, ProcessGroupHeaderForExportParams, ProcessRowGroupForExportParams, ProcessHeaderForExportParams, RowNode, ValueService, BeanStub } from "@ag-grid-community/core";
/**

@@ -55,3 +55,3 @@ * This interface works in conjunction with the GridSerializer. When serializing a grid, an instance that implements this interface

}
export declare class GridSerializer {
export declare class GridSerializer extends BeanStub {
private displayedGroupCreator;

@@ -58,0 +58,0 @@ private columnController;

"use strict";
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {

@@ -96,4 +109,6 @@ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;

exports.BaseGridSerializingSession = BaseGridSerializingSession;
var GridSerializer = /** @class */ (function () {
var GridSerializer = /** @class */ (function (_super) {
__extends(GridSerializer, _super);
function GridSerializer() {
return _super !== null && _super.apply(this, arguments) || this;
}

@@ -282,3 +297,3 @@ GridSerializer.prototype.serialize = function (gridSerializingSession, params) {

return GridSerializer;
}());
}(core_1.BeanStub));
exports.GridSerializer = GridSerializer;

@@ -285,0 +300,0 @@ var RowType;

@@ -1,3 +0,3 @@

import { HeaderElement, XmlElement } from "@ag-grid-community/core";
export declare class XmlFactory {
import { BeanStub, HeaderElement, XmlElement } from "@ag-grid-community/core";
export declare class XmlFactory extends BeanStub {
createHeader(headerElement?: HeaderElement): string;

@@ -4,0 +4,0 @@ createXml(xmlElement: XmlElement, booleanTransformer?: (currentValue: boolean) => string): string;

"use strict";
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {

@@ -11,4 +24,6 @@ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;

var LINE_SEPARATOR = '\r\n';
var XmlFactory = /** @class */ (function () {
var XmlFactory = /** @class */ (function (_super) {
__extends(XmlFactory, _super);
function XmlFactory() {
return _super !== null && _super.apply(this, arguments) || this;
}

@@ -80,4 +95,4 @@ XmlFactory.prototype.createHeader = function (headerElement) {

return XmlFactory;
}());
}(core_1.BeanStub));
exports.XmlFactory = XmlFactory;
//# sourceMappingURL=xmlFactory.js.map

@@ -0,1 +1,2 @@

import { BeanStub } from "@ag-grid-community/core";
export interface ZipFolder {

@@ -8,3 +9,3 @@ path: string;

}
export declare class ZipContainer {
export declare class ZipContainer extends BeanStub {
private folders;

@@ -11,0 +12,0 @@ private files;

"use strict";
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {

@@ -46,8 +59,9 @@ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;

];
var ZipContainer = /** @class */ (function () {
var ZipContainer = /** @class */ (function (_super) {
__extends(ZipContainer, _super);
function ZipContainer() {
var _this = this;
this.folders = [];
this.files = [];
this.addFolder = function (path) {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.folders = [];
_this.files = [];
_this.addFolder = function (path) {
_this.folders.push({

@@ -58,2 +72,3 @@ path: path,

};
return _this;
}

@@ -189,4 +204,4 @@ ZipContainer.prototype.addFolders = function (paths) {

return ZipContainer;
}());
}(core_1.BeanStub));
exports.ZipContainer = ZipContainer;
//# sourceMappingURL=zipContainer.js.map

@@ -1,2 +0,2 @@

import { Column, ColumnController, ColumnGroupChild, ExportParams, GridOptionsWrapper, ProcessCellForExportParams, ProcessGroupHeaderForExportParams, ProcessRowGroupForExportParams, ProcessHeaderForExportParams, RowNode, ValueService } from "@ag-grid-community/core";
import { Column, ColumnController, ColumnGroupChild, ExportParams, GridOptionsWrapper, ProcessCellForExportParams, ProcessGroupHeaderForExportParams, ProcessRowGroupForExportParams, ProcessHeaderForExportParams, RowNode, ValueService, BeanStub } from "@ag-grid-community/core";
/**

@@ -55,3 +55,3 @@ * This interface works in conjunction with the GridSerializer. When serializing a grid, an instance that implements this interface

}
export declare class GridSerializer {
export declare class GridSerializer extends BeanStub {
private displayedGroupCreator;

@@ -58,0 +58,0 @@ private columnController;

@@ -0,1 +1,14 @@

var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {

@@ -7,3 +20,3 @@ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;

};
import { _, Autowired, Bean, ColumnGroup, Constants, GroupInstanceIdCreator } from "@ag-grid-community/core";
import { _, Autowired, Bean, ColumnGroup, Constants, GroupInstanceIdCreator, BeanStub } from "@ag-grid-community/core";
var BaseGridSerializingSession = /** @class */ (function () {

@@ -95,4 +108,6 @@ function BaseGridSerializingSession(config) {

export { BaseGridSerializingSession };
var GridSerializer = /** @class */ (function () {
var GridSerializer = /** @class */ (function (_super) {
__extends(GridSerializer, _super);
function GridSerializer() {
return _super !== null && _super.apply(this, arguments) || this;
}

@@ -281,3 +296,3 @@ GridSerializer.prototype.serialize = function (gridSerializingSession, params) {

return GridSerializer;
}());
}(BeanStub));
export { GridSerializer };

@@ -284,0 +299,0 @@ export var RowType;

@@ -1,3 +0,3 @@

import { HeaderElement, XmlElement } from "@ag-grid-community/core";
export declare class XmlFactory {
import { BeanStub, HeaderElement, XmlElement } from "@ag-grid-community/core";
export declare class XmlFactory extends BeanStub {
createHeader(headerElement?: HeaderElement): string;

@@ -4,0 +4,0 @@ createXml(xmlElement: XmlElement, booleanTransformer?: (currentValue: boolean) => string): string;

@@ -0,1 +1,14 @@

var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {

@@ -7,6 +20,8 @@ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;

};
import { Bean } from "@ag-grid-community/core";
import { Bean, BeanStub } from "@ag-grid-community/core";
var LINE_SEPARATOR = '\r\n';
var XmlFactory = /** @class */ (function () {
var XmlFactory = /** @class */ (function (_super) {
__extends(XmlFactory, _super);
function XmlFactory() {
return _super !== null && _super.apply(this, arguments) || this;
}

@@ -78,3 +93,3 @@ XmlFactory.prototype.createHeader = function (headerElement) {

return XmlFactory;
}());
}(BeanStub));
export { XmlFactory };

@@ -0,1 +1,2 @@

import { BeanStub } from "@ag-grid-community/core";
export interface ZipFolder {

@@ -8,3 +9,3 @@ path: string;

}
export declare class ZipContainer {
export declare class ZipContainer extends BeanStub {
private folders;

@@ -11,0 +12,0 @@ private files;

@@ -0,1 +1,14 @@

var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {

@@ -7,3 +20,3 @@ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;

};
import { Bean, _ } from "@ag-grid-community/core";
import { Bean, BeanStub, _ } from "@ag-grid-community/core";
// table for crc calculation

@@ -45,8 +58,9 @@ // from: https://referencesource.microsoft.com/#System/sys/System/IO/compression/Crc32Helper.cs,3b31978c7d7f7246,references

];
var ZipContainer = /** @class */ (function () {
var ZipContainer = /** @class */ (function (_super) {
__extends(ZipContainer, _super);
function ZipContainer() {
var _this = this;
this.folders = [];
this.files = [];
this.addFolder = function (path) {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.folders = [];
_this.files = [];
_this.addFolder = function (path) {
_this.folders.push({

@@ -57,2 +71,3 @@ path: path,

};
return _this;
}

@@ -188,3 +203,3 @@ ZipContainer.prototype.addFolders = function (paths) {

return ZipContainer;
}());
}(BeanStub));
export { ZipContainer };
{
"name": "@ag-grid-community/csv-export",
"version": "23.1.1",
"version": "23.2.0",
"description": "Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components",

@@ -45,3 +45,3 @@ "main": "./dist/cjs/main.js",

"dependencies": {
"@ag-grid-community/core": "~23.1.0"
"@ag-grid-community/core": "~23.2.0"
},

@@ -48,0 +48,0 @@ "devDependencies": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc