2025-10-14 11:04:23 +01:00
|
|
|
/*
|
|
|
|
|
* 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 "./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 "./utils/Box";
|
|
|
|
|
export * from "./utils/Flex";
|
|
|
|
|
|
|
|
|
|
// Utils
|
2025-11-03 16:26:47 +00:00
|
|
|
export * from "./utils/i18n";
|
2025-10-14 11:04:23 +01:00
|
|
|
export * from "./utils/humanize";
|
|
|
|
|
export * from "./utils/DateUtils";
|
|
|
|
|
export * from "./utils/numbers";
|
2025-11-03 16:26:47 +00:00
|
|
|
export * from "./utils/FormattingUtils";
|
2025-10-14 11:04:23 +01:00
|
|
|
|
|
|
|
|
// MVVM
|
2025-10-15 19:19:12 +05:30
|
|
|
export * from "./viewmodel";
|
2025-10-23 10:06:06 +02:00
|
|
|
export * from "./useMockedViewModel";
|
2025-10-14 11:04:23 +01:00
|
|
|
export * from "./useViewModel";
|
2025-11-03 16:26:47 +00:00
|
|
|
|
|
|
|
|
// 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";
|