Skip to content

Commit

Permalink
fix snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
dlcaldeira committed Nov 23, 2023
1 parent 13e8d8c commit 5f38f74
Show file tree
Hide file tree
Showing 7 changed files with 79 additions and 67 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,20 +171,22 @@ exports[`Guided Tour Container should render 1`] = `
data-tour-elem="controls"
>
<button
class="sc-aXZVg cdorhc sc-eqUAAy jLJOIm"
class="sc-aXZVg cdorhc sc-eqUAAy cTnNMO"
data-tour-elem="left-arrow"
disabled=""
>
<span
class="sc-gEvEer fZNxWp"
<svg
viewBox="0 0 18.4 14.4"
>
<span
class="CoralButtonIcon"
icon="arrow-left"
>
Previous
</span>
</span>
<path
d="M1.4 7.2h16M7.6 1L1.4 7.2l6.2 6.2"
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-miterlimit="10"
stroke-width="2"
/>
</svg>
</button>
<nav
class="sc-kAyceB cIhnUi"
Expand All @@ -207,19 +209,21 @@ exports[`Guided Tour Container should render 1`] = `
/>
</nav>
<button
class="sc-aXZVg dbJwZj sc-eqUAAy gcKufz"
class="sc-aXZVg dbJwZj sc-eqUAAy eqHGdD"
data-tour-elem="right-arrow"
>
<span
class="sc-gEvEer fZNxWp"
<svg
viewBox="0 0 18.4 14.4"
>
<span
class="CoralButtonIcon"
icon="arrow-right"
>
Next
</span>
</span>
<path
d="M17 7.2H1M10.8 1L17 7.2l-6.2 6.2"
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-miterlimit="10"
stroke-width="2"
/>
</svg>
</button>
</div>
<button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ exports[`Horizontal bar chart should render 1`] = `
<div
class="recharts-wrapper theme-horizontal-bar-chart"
role="region"
style="position: relative; cursor: default; width: 400px; height: 300px;"
style="position: relative; cursor: default; width: 100%; height: 100%; max-height: 300px; max-width: 400px;"
>
<svg
class="recharts-surface"
height="300"
style="width: 100%; height: 100%;"
viewBox="0 0 400 300"
width="400"
>
Expand Down Expand Up @@ -382,7 +383,7 @@ exports[`Horizontal bar chart should render 1`] = `
<div
class="recharts-tooltip-wrapper"
role="dialog"
style="transform: translate(undefinedpx, undefinedpx); pointer-events: none; visibility: hidden; position: absolute; top: 0px; left: 0px;"
style="visibility: hidden; pointer-events: none; position: absolute; top: 0px; left: 0px;"
tabindex="-1"
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ exports[`Vertical bar chart Should render 1`] = `
<div
class="recharts-wrapper theme-vertical-bar-chart"
role="region"
style="position: relative; cursor: default; width: 300px; height: 300px;"
style="position: relative; cursor: default; width: 100%; height: 100%; max-height: 300px; max-width: 300px;"
>
<svg
class="recharts-surface"
height="300"
style="width: 100%; height: 100%;"
viewBox="0 0 300 300"
width="300"
>
Expand Down Expand Up @@ -269,7 +270,7 @@ exports[`Vertical bar chart Should render 1`] = `
<div
class="recharts-tooltip-wrapper"
role="dialog"
style="transform: translate(undefinedpx, undefinedpx); pointer-events: none; visibility: hidden; position: absolute; top: 0px; left: 0px;"
style="visibility: hidden; pointer-events: none; position: absolute; top: 0px; left: 0px;"
tabindex="-1"
/>
</div>
Expand Down
Loading

0 comments on commit 5f38f74

Please sign in to comment.