@progress/kendo-react-pdf
Version:
React PDF Processing enables you to export single- and multi-page content in PDF. KendoReact PDF Processing package
25 lines (24 loc) • 950 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
"use client";
import { PDFExport as e } from "./PDFExport.mjs";
import { PDFMargin as p } from "./PDFMargin.mjs";
import { savePDF as a } from "./savePDF.mjs";
import { getPageMargin as m } from "./getPageMargin.mjs";
import { GridPDFExport as P } from "./grid/GridPDFExport.mjs";
import { TreeListPDFExport as i } from "./treelist/TreeListPDFExport.mjs";
import { default as d } from "./KendoDrawingAdapter.mjs";
export {
P as GridPDFExport,
d as KendoDrawingAdapter,
e as PDFExport,
p as PDFMargin,
i as TreeListPDFExport,
m as getPageMargin,
a as savePDF
};