forked from Ivasoft/mattermost-mobile
* Adds optimisation to sidebar category lists rendering * Test updated * Updates snapshot
14 lines
342 B
TypeScript
14 lines
342 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
const VISIBILITY_CONFIG_DEFAULTS = {
|
|
itemVisiblePercentThreshold: 100,
|
|
waitForInteraction: true,
|
|
};
|
|
|
|
export default {
|
|
VISIBILITY_CONFIG_DEFAULTS,
|
|
VISIBILITY_SCROLL_DOWN: 'down',
|
|
VISIBILITY_SCROLL_UP: 'up',
|
|
};
|