-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(react-widgets): snapshot test fix
- Loading branch information
1 parent
a08e644
commit 52101ee
Showing
15 changed files
with
1,289 additions
and
2,597 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
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ exports[`PeopleListItem component renders a local participant properly 1`] = ` | |
className="webex-people-list-item item" | ||
title="Dr Dre" | ||
> | ||
<ForwardRef(ContextTransform(ListItem)) | ||
<ForwardRef(render) | ||
onClick={[Function]} | ||
title="Dr Dre" | ||
type="small" | ||
|
@@ -38,7 +38,7 @@ exports[`PeopleListItem component renders a local participant properly 1`] = ` | |
className="" | ||
position="right" | ||
/> | ||
</ForwardRef(ContextTransform(ListItem))> | ||
</ForwardRef(render)> | ||
</div> | ||
`; | ||
|
||
|
@@ -47,7 +47,7 @@ exports[`PeopleListItem component renders a local participant with email properl | |
className="webex-people-list-item item" | ||
title="Dr Dre ([email protected])" | ||
> | ||
<ForwardRef(ContextTransform(ListItem)) | ||
<ForwardRef(render) | ||
onClick={[Function]} | ||
title="Dr Dre" | ||
type="small" | ||
|
@@ -80,7 +80,7 @@ exports[`PeopleListItem component renders a local participant with email properl | |
className="" | ||
position="right" | ||
/> | ||
</ForwardRef(ContextTransform(ListItem))> | ||
</ForwardRef(render)> | ||
</div> | ||
`; | ||
|
||
|
@@ -89,7 +89,7 @@ exports[`PeopleListItem component renders an editable participant properly 1`] = | |
className="webex-people-list-item item" | ||
title="Jimmy Iovine" | ||
> | ||
<ForwardRef(ContextTransform(ListItem)) | ||
<ForwardRef(render) | ||
onClick={[Function]} | ||
title="Jimmy Iovine" | ||
type="small" | ||
|
@@ -134,13 +134,13 @@ exports[`PeopleListItem component renders an editable participant properly 1`] = | |
<span | ||
className="webex-people-list-item-popover popover" | ||
> | ||
<ForwardRef(ContextTransform(Button)) | ||
<ForwardRef(render) | ||
ariaLabel="Remove from space" | ||
onClick={[Function]} | ||
removeStyle={true} | ||
> | ||
Remove from space | ||
</ForwardRef(ContextTransform(Button))> | ||
</ForwardRef(render)> | ||
</span> | ||
} | ||
delay={0} | ||
|
@@ -157,7 +157,7 @@ exports[`PeopleListItem component renders an editable participant properly 1`] = | |
showDelay={0} | ||
startOpen={false} | ||
> | ||
<ForwardRef(ContextTransform(Button)) | ||
<ForwardRef(render) | ||
ariaLabel="More Details" | ||
circle={true} | ||
> | ||
|
@@ -178,11 +178,11 @@ exports[`PeopleListItem component renders an editable participant properly 1`] = | |
title="" | ||
type="" | ||
/> | ||
</ForwardRef(ContextTransform(Button))> | ||
</ForwardRef(render)> | ||
</Popover> | ||
</div> | ||
</ListItemSection> | ||
</ForwardRef(ContextTransform(ListItem))> | ||
</ForwardRef(render)> | ||
</div> | ||
`; | ||
|
||
|
@@ -191,7 +191,7 @@ exports[`PeopleListItem component renders an external participant properly 1`] = | |
className="webex-people-list-item item external webex-people-list-item-external" | ||
title="Jimmy Iovine" | ||
> | ||
<ForwardRef(ContextTransform(ListItem)) | ||
<ForwardRef(render) | ||
onClick={[Function]} | ||
title="Jimmy Iovine" | ||
type="small" | ||
|
@@ -224,6 +224,6 @@ exports[`PeopleListItem component renders an external participant properly 1`] = | |
className="" | ||
position="right" | ||
/> | ||
</ForwardRef(ContextTransform(ListItem))> | ||
</ForwardRef(render)> | ||
</div> | ||
`; |
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
Oops, something went wrong.