mattermost-mobile/app/constants/index.ts
Avinash Lingaloo 83c2cfff97
MM-41532 Gekidou Snack Bars (#6181)
* styling mobile

wip

* styling tablet

wip

tablet portrait

* removed offSetY

* Update en.json

* corrections from reviews

* removed space

* changed location to sourceScreen in post.tsx

* adjust width

* update message to text

* adding PanGesture

adding PanGesture- wip

PanGesture- wip

* able to touch through on iOS

* using EphemeralStore and listeners to discard overlays

* snack positioning and touches

* PanGesture- wip

* PanGesture- fine tuning the animation

PanGesture- wip

* removed toast keyword

* checks for ongoing animation

* dismiss overlay on navigating away

* dismiss overlay on navigating away

* dismiss overlay on tabPress

* dismiss overlay on tabPress

* cancelled timers on panning start

* add entering layoutAnimation

* add exitingg layoutAnimation

* fix  layoutAnimation

* fix styling

* eslint fix

* style fix

* fix timer not stopping

* revert changes made to the ephemeral store

* bumping the toast vertically by 4px

Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
2022-05-05 10:00:32 -04:00

66 lines
1.6 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import ActionType from './action_type';
import Apps from './apps';
import Categories from './categories';
import Channel from './channel';
import Config from './config';
import {CustomStatusDuration} from './custom_status';
import Database from './database';
import DateTime from './datetime';
import DeepLink from './deep_linking';
import Device from './device';
import Emoji from './emoji';
import Events from './events';
import Files from './files';
import General from './general';
import Integrations from './integrations';
import List from './list';
import Navigation from './navigation';
import Network from './network';
import Permissions from './permissions';
import Post from './post';
import PostDraft from './post_draft';
import Preferences from './preferences';
import Profile from './profile';
import Screens from './screens';
import ServerErrors from './server_errors';
import SnackBar from './snack_bar';
import Sso from './sso';
import SupportedServer from './supported_server';
import View from './view';
import WebsocketEvents from './websocket';
export {
ActionType,
Apps,
Categories,
Channel,
Config,
CustomStatusDuration,
Database,
DateTime,
DeepLink,
Device,
Emoji,
Events,
Files,
General,
Integrations,
List,
Navigation,
Network,
Permissions,
Post,
PostDraft,
Preferences,
Profile,
Screens,
ServerErrors,
SnackBar,
Sso,
SupportedServer,
View,
WebsocketEvents,
};