* 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
13 lines
343 B
JavaScript
13 lines
343 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
const VISIBILITY_CONFIG_DEFAULTS = {
|
|
itemVisiblePercentThreshold: 100,
|
|
waitForInteraction: false,
|
|
};
|
|
|
|
export default {
|
|
VISIBILITY_CONFIG_DEFAULTS,
|
|
VISIBILITY_SCROLL_DOWN: 'down',
|
|
VISIBILITY_SCROLL_UP: 'up',
|
|
};
|