Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency jspdf-autotable to v3.8.2 #461

Merged
merged 3 commits into from
Apr 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -154,22 +154,22 @@ <h2>MSBuild</h2>
<td>ClassLibrary1</td>
<td>src/ClassLibrary1</td>
<td>Class1.cs</td>
<td>21:21</td>
<td>11:21</td>
<td>
<a href="https://www.google.com/search?q="CA1822:"+site:learn.microsoft.com" target="_blank">CA1822</a>
</td>
<td>Member &#x27;Bar&#x27; does not access instance data and can be marked as static</td>
<td>Member &#x27;Foo&#x27; does not access instance data and can be marked as static</td>
</tr>
<tr>
<td>Warning</td>
<td>ClassLibrary1</td>
<td>src/ClassLibrary1</td>
<td>Class1.cs</td>
<td>11:21</td>
<td>21:21</td>
<td>
<a href="https://www.google.com/search?q="CA1822:"+site:learn.microsoft.com" target="_blank">CA1822</a>
</td>
<td>Member &#x27;Foo&#x27; does not access instance data and can be marked as static</td>
<td>Member &#x27;Bar&#x27; does not access instance data and can be marked as static</td>
</tr>
<tr>
<td>Warning</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,11 @@
<td>src/ClassLibrary1/ClassLibrary1.csproj</td>
<td>ClassLibrary1</td>
<td>src/ClassLibrary1/Class1.cs</td>
<td>21</td>
<td>11</td>
<td></td>
<td>21</td>
<td></td>
<td>Member &#x27;Bar&#x27; does not access instance data and can be marked as static</td>
<td>Member &#x27;Foo&#x27; does not access instance data and can be marked as static</td>
<td></td>
<td></td>
<td>300</td>
Expand All @@ -236,11 +236,11 @@
<td>src/ClassLibrary1/ClassLibrary1.csproj</td>
<td>ClassLibrary1</td>
<td>src/ClassLibrary1/Class1.cs</td>
<td>11</td>
<td>21</td>
<td></td>
<td>21</td>
<td></td>
<td>Member &#x27;Foo&#x27; does not access instance data and can be marked as static</td>
<td>Member &#x27;Bar&#x27; does not access instance data and can be marked as static</td>
<td></td>
<td></td>
<td>300</td>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ public enum HtmlDxDataGridOption
/// <summary>
/// Version of <see href="https://github.com/simonbengtsson/jsPDF-AutoTable">jsPDF-AutoTable plugin</see> which should be used.
/// This version needs to match the version required by the selected <see cref="DevExtremeVersion"/>.
/// Default value is <c>3.8.1</c>.
/// Default value is <c>3.8.2</c>.
/// </summary>
JsPdfAutotableVersion,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
string jsPdfVersion = ViewBagHelper.ValueOrDefault(ViewBag.FileSaverJsVersion, "2.5.1").Trim();
string jsPdfAutoTableLocation = ViewBagHelper.ValueOrDefault(ViewBag.FileSaverJsLocation, "https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/").Trim();
jsPdfAutoTableLocation = jsPdfAutoTableLocation.WithEnding("/");
string jsPdfAutoTableVersion = ViewBagHelper.ValueOrDefault(ViewBag.FileSaverJsVersion, "3.8.1").Trim();
string jsPdfAutoTableVersion = ViewBagHelper.ValueOrDefault(ViewBag.FileSaverJsVersion, "3.8.2").Trim();
string devExtremeLocation = ViewBagHelper.ValueOrDefault(ViewBag.DevExtremeLocation, "https://cdn3.devexpress.com/jslib/").Trim();
devExtremeLocation = devExtremeLocation.WithEnding("/");
string devExtremeVersion = ViewBagHelper.ValueOrDefault(ViewBag.DevExtremeVersion, "23.1.6").Trim();
Expand Down
Loading