forked from Ivasoft/mattermost-mobile
* Disable attempt to open User Profile screen * Fix loading state alignment when switching servers * Fix user is typing style and show in thread view * Add additional space at the bottom of post list when CRT is disabled * header back button position * add margin bottom to typing component
21 lines
677 B
TypeScript
21 lines
677 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const MAX_MESSAGE_LENGTH_FALLBACK = 4000;
|
|
export const DEFAULT_SERVER_MAX_FILE_SIZE = 50 * 1024 * 1024;// 50 Mb
|
|
export const ICON_SIZE = 24;
|
|
export const TYPING_HEIGHT = 16;
|
|
export const ACCESSORIES_CONTAINER_NATIVE_ID = 'channelAccessoriesContainer';
|
|
export const THREAD_ACCESSORIES_CONTAINER_NATIVE_ID = 'threadAccessoriesContainer';
|
|
|
|
export const NOTIFY_ALL_MEMBERS = 5;
|
|
|
|
export default {
|
|
ACCESSORIES_CONTAINER_NATIVE_ID,
|
|
DEFAULT_SERVER_MAX_FILE_SIZE,
|
|
ICON_SIZE,
|
|
MAX_MESSAGE_LENGTH_FALLBACK,
|
|
NOTIFY_ALL_MEMBERS,
|
|
TYPING_HEIGHT,
|
|
};
|