Packages

Reusable PDF components — Avatar, Badge, Card, Chip, Divider, Progress, Builder, StyledTable.

Current section

4 Versions

Jump to

Compare versions

3 files changed
+3 additions
-5 deletions
  @@ -1,6 +1,6 @@
1 1 {<<"links">>,[{<<"GitHub">>,<<"https://github.com/MisaelMa/ExPDF">>}]}.
2 2 {<<"name">>,<<"ex_pdf_components">>}.
3 - {<<"version">>,<<"1.0.0">>}.
3 + {<<"version">>,<<"1.0.1">>}.
4 4 {<<"description">>,
5 5 <<82,101,117,115,97,98,108,101,32,80,68,70,32,99,111,109,112,111,110,101,110,
6 6 116,115,32,226,128,148,32,65,118,97,116,97,114,44,32,66,97,100,103,101,44,
  @@ -147,7 +147,6 @@ defmodule Pdf.Builder do
147 147 gap = Map.get(el, :gap, 0)
148 148
149 149 ca = Pdf.content_area(doc)
150 - available = y - (ca.y - ca.height)
151 150
152 151 if is_number(h) and h > ca.height do
153 152 render_multipage_row(doc, {x, y}, {width, h}, children, gap)
  @@ -695,7 +694,6 @@ defmodule Pdf.Builder do
695 694 {x, y, w} = resolve_cursor(doc, w_spec)
696 695
697 696 ca = Pdf.content_area(doc)
698 - available = y - (ca.y - ca.height)
699 697
700 698 if is_number(h) and h > ca.height do
701 699 render_multipage_row(doc, {x, y}, {w, h}, e.children, gap)
  @@ -1,7 +1,7 @@
1 1 defmodule ExPdfComponents.MixProject do
2 2 use Mix.Project
3 3
4 - @version "1.0.0"
4 + @version "1.0.1"
5 5 @github_url "https://github.com/MisaelMa/ExPDF"
6 6
7 7 def project do
  @@ -22,7 +22,7 @@ defmodule ExPdfComponents.MixProject do
22 22 ]
23 23 end
24 24
25 - defp elixirc_paths(:test), do: ["lib", "test/support"]
25 + defp elixirc_paths(:test), do: ["lib", "../../ex_pdf_core/test/support", "test/support"]
26 26 defp elixirc_paths(_), do: ["lib"]
27 27
28 28 def application do