* sidebar lists displays past bottom safe area insets * Sidebar animation speed * Sidebar improvements * Add status icons and avatars to mattermost font * Bot icon the same size as other channel icons * improvements to the channel badge * Badge color and border * More precision when showing more unread above * Improve GM icon * Fix badge on team sidebar * Align channel sidebar badges * alignments * Fix tests * Remove unnecessary isLandscape in main sidebar connector
57 lines
916 B
Text
57 lines
916 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`UserStatus should match snapshot, away status 1`] = `
|
|
<VectorIcon
|
|
name="away"
|
|
size={14}
|
|
style={
|
|
Object {
|
|
"color": "#ffbc42",
|
|
"fontSize": 32,
|
|
}
|
|
}
|
|
type="mattermost"
|
|
/>
|
|
`;
|
|
|
|
exports[`UserStatus should match snapshot, dnd status 1`] = `
|
|
<VectorIcon
|
|
name="dnd"
|
|
size={14}
|
|
style={
|
|
Object {
|
|
"color": "#f74343",
|
|
"fontSize": 32,
|
|
}
|
|
}
|
|
type="mattermost"
|
|
/>
|
|
`;
|
|
|
|
exports[`UserStatus should match snapshot, online status 1`] = `
|
|
<VectorIcon
|
|
name="online"
|
|
size={14}
|
|
style={
|
|
Object {
|
|
"color": "#06d6a0",
|
|
"fontSize": 32,
|
|
}
|
|
}
|
|
type="mattermost"
|
|
/>
|
|
`;
|
|
|
|
exports[`UserStatus should match snapshot, should default to offline status 1`] = `
|
|
<VectorIcon
|
|
name="offline"
|
|
size={14}
|
|
style={
|
|
Object {
|
|
"color": "rgba(61,60,64,0.3)",
|
|
"fontSize": 32,
|
|
}
|
|
}
|
|
type="mattermost"
|
|
/>
|
|
`;
|