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
|
- create Apps - #599 by @AlicjaSzu
|
||||||
- Refactor authorization - #624 by @dominik-zeglen
|
- Refactor authorization - #624 by @dominik-zeglen
|
||||||
- Fix minor bugs - #628 by @dominik-zeglen
|
- Fix minor bugs - #628 by @dominik-zeglen
|
||||||
|
- Add navigator button - #635 by @dominik-zeglen
|
||||||
|
|
||||||
## 2.10.1
|
## 2.10.1
|
||||||
|
|
||||||
|
|
|
@ -1512,6 +1512,9 @@
|
||||||
"src_dot_components_dot_MultiSelectField_dot_4205644805": {
|
"src_dot_components_dot_MultiSelectField_dot_4205644805": {
|
||||||
"string": "No results found"
|
"string": "No results found"
|
||||||
},
|
},
|
||||||
|
"src_dot_components_dot_NavigatorButton_dot_154826674": {
|
||||||
|
"string": "Navigator"
|
||||||
|
},
|
||||||
"src_dot_components_dot_Navigator_dot_1116468870": {
|
"src_dot_components_dot_Navigator_dot_1116468870": {
|
||||||
"context": "navigator placeholder",
|
"context": "navigator placeholder",
|
||||||
"string": "Order Number"
|
"string": "Order Number"
|
||||||
|
|
|
@ -108,6 +108,7 @@ const NavigatorButton: React.FC<NavigatorButtonProps> = ({
|
||||||
<>
|
<>
|
||||||
<IconButton
|
<IconButton
|
||||||
className={classNames(className, classes.root)}
|
className={classNames(className, classes.root)}
|
||||||
|
data-test="navigator"
|
||||||
onMouseEnter={setHelper}
|
onMouseEnter={setHelper}
|
||||||
onMouseLeave={clearHelper}
|
onMouseLeave={clearHelper}
|
||||||
{...props}
|
{...props}
|
||||||
|
|
|
@ -4670,6 +4670,66 @@ exports[`Storyshots Generics / Multiple select with autocomplete no data 1`] = `
|
||||||
</div>
|
</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`] = `
|
exports[`Storyshots Generics / PageHeader with title 1`] = `
|
||||||
<div
|
<div
|
||||||
style="padding:24px"
|
style="padding:24px"
|
||||||
|
|
Loading…
Reference in a new issue