From 40467a6c48dea01c768f257decef9e0dead8ea80 Mon Sep 17 00:00:00 2001 From: cicdguy Date: Mon, 29 Apr 2024 15:59:03 +0000 Subject: [PATCH] deploy: 1fe87681f8e29c91ce5cadb89abd373d7f69b6fe --- main/coverage-report/index.html | 7 ++++--- .../datatables.js | 3 +++ .../lib/htmltools-fill-0.5.8.1/fill.css | 21 +++++++++++++++++++ 3 files changed, 28 insertions(+), 3 deletions(-) rename main/coverage-report/lib/{datatables-binding-0.32 => datatables-binding-0.33}/datatables.js (99%) create mode 100644 main/coverage-report/lib/htmltools-fill-0.5.8.1/fill.css diff --git a/main/coverage-report/index.html b/main/coverage-report/index.html index f9ad7df4..2c39b5bd 100644 --- a/main/coverage-report/index.html +++ b/main/coverage-report/index.html @@ -3,9 +3,10 @@ + - + @@ -106,8 +107,8 @@

hermes coverage - 88.85%

-
- +
+
diff --git a/main/coverage-report/lib/datatables-binding-0.32/datatables.js b/main/coverage-report/lib/datatables-binding-0.33/datatables.js similarity index 99% rename from main/coverage-report/lib/datatables-binding-0.32/datatables.js rename to main/coverage-report/lib/datatables-binding-0.33/datatables.js index 6a3c3d5c..765b53cb 100644 --- a/main/coverage-report/lib/datatables-binding-0.32/datatables.js +++ b/main/coverage-report/lib/datatables-binding-0.33/datatables.js @@ -1032,6 +1032,9 @@ HTMLWidgets.widget({ updateColsSelected(); updateCellsSelected(); }) + updateRowsSelected(); + updateColsSelected(); + updateCellsSelected(); } var selMode = data.selection.mode, selTarget = data.selection.target; diff --git a/main/coverage-report/lib/htmltools-fill-0.5.8.1/fill.css b/main/coverage-report/lib/htmltools-fill-0.5.8.1/fill.css new file mode 100644 index 00000000..841ea9d5 --- /dev/null +++ b/main/coverage-report/lib/htmltools-fill-0.5.8.1/fill.css @@ -0,0 +1,21 @@ +@layer htmltools { + .html-fill-container { + display: flex; + flex-direction: column; + /* Prevent the container from expanding vertically or horizontally beyond its + parent's constraints. */ + min-height: 0; + min-width: 0; + } + .html-fill-container > .html-fill-item { + /* Fill items can grow and shrink freely within + available vertical space in fillable container */ + flex: 1 1 auto; + min-height: 0; + min-width: 0; + } + .html-fill-container > :not(.html-fill-item) { + /* Prevent shrinking or growing of non-fill items */ + flex: 0 0 auto; + } +}