chore: update cinny submodule to latest commit with mobile gesture enhancements and disable route animation on compact view
This commit is contained in:
15
overlay/src/app/components/mobile/mobileSwipeReplyBridge.ts
Normal file
15
overlay/src/app/components/mobile/mobileSwipeReplyBridge.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Room } from 'matrix-js-sdk';
|
||||
import { Editor } from 'slate';
|
||||
import { IReplyDraft } from '../../state/room/roomInputDrafts';
|
||||
|
||||
export type MobileSwipeReplyBridge = {
|
||||
room: Room;
|
||||
editor: Editor;
|
||||
setReplyDraft: (draft: IReplyDraft | undefined) => void;
|
||||
layerEl: HTMLElement | null;
|
||||
setIndicator: (top: number | null, active: boolean) => void;
|
||||
};
|
||||
|
||||
export const mobileSwipeReplyBridgeRef: { current: MobileSwipeReplyBridge | null } = {
|
||||
current: null,
|
||||
};
|
||||
Reference in New Issue
Block a user