4f3a1a2cc6
* refactoring and creation of shared-components for reductedBodyView * move redacted message rendering to shared MVVM view * Update snapshots + fix lint errors * Remove MatrixClientPeg and use reguler react matrix client context * Stop resyncing redacted body view models with mxEvent * Fix redacted_because test fixtures for stricter event typing * Simplify redacted body client access * Watch timestamp setting in redacted body view model * Refactor redacted and decryption failure body factories into MBodyFactory * Prettier Fix * Refactor FileBody into same pattern for consitancy
66 lines
2.5 KiB
TypeScript
66 lines
2.5 KiB
TypeScript
/*
|
|
* Copyright 2025 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
// Components
|
|
export * from "./audio/AudioPlayerView";
|
|
export * from "./audio/Clock";
|
|
export * from "./audio/PlayPauseButton";
|
|
export * from "./audio/SeekBar";
|
|
export * from "./avatar/AvatarWithDetails";
|
|
export * from "./composer/Banner";
|
|
export * from "./crypto/SasEmoji";
|
|
export * from "./event-tiles/EncryptionEventView";
|
|
export * from "./event-tiles/EventTileBubble";
|
|
export * from "./event-tiles/TextualEventView";
|
|
export * from "./event-tiles/UrlPreviewGroupView";
|
|
export * from "./message-body/EventContentBody";
|
|
export * from "./message-body/MediaBody";
|
|
export * from "./message-body/MessageTimestampView";
|
|
export * from "./message-body/DecryptionFailureBodyView";
|
|
export * from "./message-body/RedactedBodyView";
|
|
export * from "./message-body/FileBodyView";
|
|
export * from "./message-body/PinnedMessageBadge";
|
|
export * from "./message-body/ReactionsRowButtonTooltip";
|
|
export * from "./message-body/ReactionsRowButton";
|
|
export * from "./message-body/ReactionsRow";
|
|
export * from "./message-body/TimelineSeparator/";
|
|
export * from "./pill-input/Pill";
|
|
export * from "./pill-input/PillInput";
|
|
export * from "./room/RoomStatusBar";
|
|
export * from "./room/WidgetPip";
|
|
export * from "./profile/DisambiguatedProfile";
|
|
export * from "./room/HistoryVisibilityBadge";
|
|
export * from "./rich-list/RichItem";
|
|
export * from "./rich-list/RichList";
|
|
export * from "./room-list/RoomListHeaderView";
|
|
export * from "./room-list/RoomListSearchView";
|
|
export * from "./room-list/RoomListSectionHeaderView";
|
|
export * from "./room-list/RoomListView";
|
|
export * from "./room-list/RoomListItemView";
|
|
export * from "./room-list/RoomListItemAccessibilityWrapper";
|
|
export * from "./room-list/RoomListPrimaryFilters";
|
|
export * from "./room-list/VirtualizedRoomListView";
|
|
export * from "./timeline/DateSeparatorView/";
|
|
export * from "./utils/Box";
|
|
export * from "./utils/Flex";
|
|
export * from "./utils/LinkedText";
|
|
export * from "./right-panel/WidgetContextMenu";
|
|
export * from "./utils/VirtualizedList";
|
|
export * from "./resize";
|
|
|
|
// Utils
|
|
export * from "./utils/i18n";
|
|
export * from "./utils/i18nContext";
|
|
export * from "./utils/humanize";
|
|
export * from "./utils/DateUtils";
|
|
export * from "./utils/numbers";
|
|
export * from "./utils/FormattingUtils";
|
|
export * from "./utils/I18nApi";
|
|
export * from "./utils/linkify";
|
|
// MVVM
|
|
export * from "./viewmodel";
|