-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHORE (update packages + tests): update packages and add more tests
- Loading branch information
Showing
19 changed files
with
1,853 additions
and
713 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,45 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`<Dropdown/> renders correctly 1`] = ` | ||
.emotion-2 { | ||
position: absolute; | ||
top: NaNpx; | ||
left: -1px; | ||
border: 1px solid #ccc; | ||
width: px; | ||
padding: 0; | ||
display: -webkit-box; | ||
display: -webkit-flex; | ||
display: -ms-flexbox; | ||
display: flex; | ||
-webkit-flex-direction: column; | ||
-ms-flex-direction: column; | ||
flex-direction: column; | ||
background: #fff; | ||
border-radius: 2px; | ||
box-shadow: 0 0 10px 0 rgba(0,0,0,0.2); | ||
max-height: 300px; | ||
overflow: auto; | ||
z-index: 9; | ||
} | ||
.emotion-2:focus { | ||
outline: none; | ||
} | ||
.emotion-0 { | ||
padding: 10px; | ||
text-align: center; | ||
} | ||
<div | ||
aria-expanded="true" | ||
className="react-dropdown-select-dropdown react-dropdown-select-dropdown-position-undefined css-16z139g-DropDown e1qjn9k90" | ||
className="react-dropdown-select-dropdown react-dropdown-select-dropdown-position-undefined emotion-2 emotion-3" | ||
role="list" | ||
tabIndex="-1" | ||
> | ||
<div | ||
className="react-dropdown-select-no-data css-1lli8k7-NoDataComponent e1l5ho1t0" | ||
className="react-dropdown-select-no-data emotion-0 emotion-1" | ||
/> | ||
</div> | ||
`; |
20 changes: 19 additions & 1 deletion
20
__tests__/components/__snapshots__/DropdownHandle.spec.js.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,28 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`<Loading/> renders correctly 1`] = ` | ||
.emotion-0 { | ||
padding: 0 5px; | ||
display: block; | ||
width: auto; | ||
height: auto; | ||
} | ||
.emotion-0:after { | ||
content: ' '; | ||
display: block; | ||
width: 16px; | ||
height: 16px; | ||
border-radius: 50%; | ||
border-width: 1px; | ||
border-style: solid; | ||
border-color: transparent; | ||
-webkit-animation: dual-ring-spin 0.7s ease-in-out infinite; | ||
animation: dual-ring-spin 0.7s ease-in-out infinite; | ||
margin: 0 0 0 -10px; | ||
} | ||
<div | ||
className="react-dropdown-select-loading css-k8dcp9-LoadingComponent e1l5cpc30" | ||
className="react-dropdown-select-loading emotion-0 emotion-1" | ||
/> | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`<NoData/> renders correctly 1`] = ` | ||
.emotion-0 { | ||
padding: 10px; | ||
text-align: center; | ||
} | ||
<div | ||
className="react-dropdown-select-no-data css-1lli8k7-NoDataComponent e1l5ho1t0" | ||
className="react-dropdown-select-no-data emotion-0 emotion-1" | ||
/> | ||
`; |
Oops, something went wrong.