1.0.2-metadata • Published 2 years ago

svelte-printpdf v1.0.2-metadata

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Svelte PrintPDF

Minimalistic Print PDF wrapped into svelte component, using window.print() and css print to support flexbox and grid layout.

Contributing

We open to any contribution you could to support this project, you could help us on page numbering feature or you could propose new features to include.

Features

= Full support on Flexbox, Grid Layout (Browser Support)

  • Could translate various CSS
  • Print specific element.only, read more on PrintPdf.svelte

Installation

// Yarn Installation
yarn install --dev svelte-printpdf

// or if you prefer NPM Installation
npm install --save-dev svelte-printpdf

Usage Sample

See demo

<script>
  import {PrintPdf, Page} from "svelte-printpdf"

  let print = false
</script>
<button on:click={() => { print = true }}>PRINT</button>
<PrintPdf bind:print={ print }>
  <Page>
      <h1 class="heading">Page One</h1>
  </Page>
  <Page>
      <h1 style="color: text-red">Page Two</h1>
  </Page>
</PrintPdf>

<style>
  .heading {
      color: text-blue;
  }
</style>