forked from elastic/eui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
elastic#87 Converted
.euiHeader__notification
into `EuiHeaderNotifi…
…cation`
- Loading branch information
cchaos
committed
Mar 20, 2018
1 parent
8875169
commit 08bc2e3
Showing
8 changed files
with
64 additions
and
3 deletions.
There are no files selected for viewing
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
11 changes: 11 additions & 0 deletions
11
src/components/header/__snapshots__/header_notification.test.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`EuiHeaderNotification is rendered 1`] = ` | ||
<span | ||
aria-label="aria-label" | ||
class="euiHeaderNotification testClass1 testClass2" | ||
data-test-subj="test subject string" | ||
> | ||
Content | ||
</span> | ||
`; |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
.euiHeaderNotification { | ||
display: inline-block; | ||
border-radius: $euiBorderRadius; | ||
background: $euiHeaderNotificationBackgroundColor; | ||
color: $euiColorEmptyShade; | ||
font-size: $euiFontSizeXS; | ||
line-height: $euiSize; | ||
height: $euiSize; | ||
min-width: $euiSize; | ||
vertical-align: middle; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from 'react'; | ||
import classNames from 'classnames'; | ||
|
||
export const EuiHeaderNotification = ({ children, className, ...rest }) => { | ||
const classes = classNames('euiHeaderNotification', className); | ||
|
||
return ( | ||
<span | ||
className={classes} | ||
{...rest} | ||
> | ||
{children} | ||
</span> | ||
); | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from 'react'; | ||
import { render } from 'enzyme'; | ||
import { requiredProps } from '../../test/required_props'; | ||
|
||
import { EuiHeaderNotification } from './header_notification'; | ||
|
||
describe('EuiHeaderNotification', () => { | ||
test('is rendered', () => { | ||
const component = render( | ||
<EuiHeaderNotification {...requiredProps}> | ||
Content | ||
</EuiHeaderNotification> | ||
); | ||
|
||
expect(component) | ||
.toMatchSnapshot(); | ||
}); | ||
}); |
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