* Add support to use the keyboard area with a component * fix import * add missing providers to involved screens * Change the way we handle the keyboard to allow using custom components in that area * review feedback
17 lines
478 B
TypeScript
17 lines
478 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 NOTIFY_ALL_MEMBERS = 5;
|
|
|
|
export default {
|
|
DEFAULT_SERVER_MAX_FILE_SIZE,
|
|
ICON_SIZE,
|
|
MAX_MESSAGE_LENGTH_FALLBACK,
|
|
NOTIFY_ALL_MEMBERS,
|
|
TYPING_HEIGHT,
|
|
};
|