* refactor: move room list search to shared components * refactor: add view model * refactor: use view and vm in room list search component * refactor: use room list id instead of class for landmark navigation * refactor: remove old room list search css * test: add screenshots test for room list search view * test: fix e2e test using class as selector...
43 lines
1.4 KiB
TypeScript
43 lines
1.4 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 "./composer/HistoryVisibleBannerView";
|
|
export * from "./event-tiles/TextualEventView";
|
|
export * from "./message-body/MediaBody";
|
|
export * from "./pill-input/Pill";
|
|
export * from "./pill-input/PillInput";
|
|
export * from "./rich-list/RichItem";
|
|
export * from "./rich-list/RichList";
|
|
export * from "./room-list/RoomListSearchView";
|
|
export * from "./utils/Box";
|
|
export * from "./utils/Flex";
|
|
|
|
// 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";
|
|
|
|
// MVVM
|
|
export * from "./viewmodel";
|
|
export * from "./useMockedViewModel";
|
|
export * from "./useViewModel";
|
|
|
|
// i18n (we must export this directly in order to not confuse the type bundler, it seems,
|
|
// otherwise it will leave it as a relative import rather than bundling it)
|
|
export type * from "./i18nKeys.d.ts";
|