* Babel TS and Eslint config * Channel is archived component * Move Typing component * Move Uploads component * Add PostInput component * QuickActions components * Add PostDraft component * Remove old PostTextbox component * Rename post_textbox constant * Fix Autocomplete * Rename blur post draft event * Fix references * Feedback review * Fix autocomplete for iOS
20 lines
582 B
JavaScript
20 lines
582 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import keyMirror from '@mm-redux/utils/key_mirror';
|
|
|
|
const NavigationTypes = keyMirror({
|
|
NAVIGATION_RESET: null,
|
|
NAVIGATION_CLOSE_MODAL: null,
|
|
NAVIGATION_NO_TEAMS: null,
|
|
RESTART_APP: null,
|
|
NAVIGATION_ERROR_TEAMS: null,
|
|
NAVIGATION_SHOW_OVERLAY: null,
|
|
CLOSE_MAIN_SIDEBAR: null,
|
|
MAIN_SIDEBAR_DID_CLOSE: null,
|
|
MAIN_SIDEBAR_DID_OPEN: null,
|
|
CLOSE_SETTINGS_SIDEBAR: null,
|
|
BLUR_POST_DRAFT: null,
|
|
});
|
|
|
|
export default NavigationTypes;
|