Update snapshots, messages and changelog
This commit is contained in:
parent
154899704d
commit
dbbe2d7287
4 changed files with 65 additions and 0 deletions
|
@ -15,6 +15,7 @@ All notable, unreleased changes to this project will be documented in this file.
|
|||
- create Apps - #599 by @AlicjaSzu
|
||||
- Refactor authorization - #624 by @dominik-zeglen
|
||||
- Fix minor bugs - #628 by @dominik-zeglen
|
||||
- Add navigator button - #635 by @dominik-zeglen
|
||||
|
||||
## 2.10.1
|
||||
|
||||
|
|
|
@ -1512,6 +1512,9 @@
|
|||
"src_dot_components_dot_MultiSelectField_dot_4205644805": {
|
||||
"string": "No results found"
|
||||
},
|
||||
"src_dot_components_dot_NavigatorButton_dot_154826674": {
|
||||
"string": "Navigator"
|
||||
},
|
||||
"src_dot_components_dot_Navigator_dot_1116468870": {
|
||||
"context": "navigator placeholder",
|
||||
"string": "Order Number"
|
||||
|
|
|
@ -108,6 +108,7 @@ const NavigatorButton: React.FC<NavigatorButtonProps> = ({
|
|||
<>
|
||||
<IconButton
|
||||
className={classNames(className, classes.root)}
|
||||
data-test="navigator"
|
||||
onMouseEnter={setHelper}
|
||||
onMouseLeave={clearHelper}
|
||||
{...props}
|
||||
|
|
|
@ -4670,6 +4670,66 @@ exports[`Storyshots Generics / Multiple select with autocomplete no data 1`] = `
|
|||
</div>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Generics / NavigatorButton mac 1`] = `
|
||||
<div
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id MuiPaper-rounded-id"
|
||||
style="margin:auto;overflow:visible;position:relative;width:400px"
|
||||
>
|
||||
<div
|
||||
class="MuiCardContent-root-id"
|
||||
>
|
||||
<div
|
||||
style="padding:24px"
|
||||
>
|
||||
<button
|
||||
class="MuiButtonBase-root-id MuiIconButton-root-id NavigatorButton-root-id"
|
||||
data-test="navigator"
|
||||
tabindex="0"
|
||||
type="button"
|
||||
>
|
||||
<span
|
||||
class="MuiIconButton-label-id"
|
||||
>
|
||||
<span
|
||||
class="isvg pending"
|
||||
/>
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Generics / NavigatorButton other 1`] = `
|
||||
<div
|
||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id MuiPaper-rounded-id"
|
||||
style="margin:auto;overflow:visible;position:relative;width:400px"
|
||||
>
|
||||
<div
|
||||
class="MuiCardContent-root-id"
|
||||
>
|
||||
<div
|
||||
style="padding:24px"
|
||||
>
|
||||
<button
|
||||
class="MuiButtonBase-root-id MuiIconButton-root-id NavigatorButton-root-id"
|
||||
data-test="navigator"
|
||||
tabindex="0"
|
||||
type="button"
|
||||
>
|
||||
<span
|
||||
class="MuiIconButton-label-id"
|
||||
>
|
||||
<span
|
||||
class="isvg pending"
|
||||
/>
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`Storyshots Generics / PageHeader with title 1`] = `
|
||||
<div
|
||||
style="padding:24px"
|
||||
|
|
Loading…
Reference in a new issue