Skip to content

Commit 4af136b

Browse files
5.0.1
1 parent 1c9c0bc commit 4af136b

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

dist/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export type MarginPadding = {
66
bottom: number;
77
left: number;
88
};
9-
declare class HookData {
9+
export declare class HookData {
1010
table: Table;
1111
pageNumber: number;
1212
settings: Settings;

dist/jspdf.plugin.autotable.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
*
3-
* jsPDF AutoTable plugin v5.0.0
3+
* jsPDF AutoTable plugin v5.0.1
44
*
55
* Copyright (c) 2025 Simon Bengtsson, https://github.com/simonbengtsson/jsPDF-AutoTable
66
* Licensed under the MIT License.
@@ -2292,14 +2292,15 @@ var exports = __webpack_exports__;
22922292

22932293
var _a;
22942294
Object.defineProperty(exports, "__esModule", ({ value: true }));
2295-
exports.Table = exports.Row = exports.Column = exports.CellHookData = exports.Cell = exports.applyPlugin = void 0;
2295+
exports.Table = exports.Row = exports.HookData = exports.Column = exports.CellHookData = exports.Cell = exports.applyPlugin = void 0;
22962296
exports.autoTable = autoTable;
22972297
exports.__createTable = __createTable;
22982298
exports.__drawTable = __drawTable;
22992299
var applyPlugin_1 = __webpack_require__(639);
23002300
Object.defineProperty(exports, "applyPlugin", ({ enumerable: true, get: function () { return applyPlugin_1.applyPlugin; } }));
23012301
var HookData_1 = __webpack_require__(601);
23022302
Object.defineProperty(exports, "CellHookData", ({ enumerable: true, get: function () { return HookData_1.CellHookData; } }));
2303+
Object.defineProperty(exports, "HookData", ({ enumerable: true, get: function () { return HookData_1.HookData; } }));
23032304
var inputParser_1 = __webpack_require__(371);
23042305
var models_1 = __webpack_require__(524);
23052306
Object.defineProperty(exports, "Cell", ({ enumerable: true, get: function () { return models_1.Cell; } }));

dist/jspdf.plugin.autotable.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jspdf.plugin.autotable.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2078,4 +2078,4 @@ catch (error) {
20782078
console.error('Could not apply autoTable plugin', error);
20792079
}
20802080

2081-
export { Cell, CellHookData, Column, Row, Table, __createTable, __drawTable, applyPlugin, autoTable, autoTable as default };
2081+
export { Cell, CellHookData, Column, HookData, Row, Table, __createTable, __drawTable, applyPlugin, autoTable, autoTable as default };

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jspdf-autotable",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"description": "Generate pdf tables with javascript (jsPDF plugin)",
55
"main": "dist/jspdf.plugin.autotable.js",
66
"exports": {

0 commit comments

Comments
 (0)