@acorex/components 20.6.8 → 20.6.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -803,203 +803,6 @@ type AXPresenceStatus = 'online' | 'offline' | 'away' | 'busy' | 'invisible';
803
803
  */
804
804
  type AXUserRole = 'owner' | 'admin' | 'member' | 'guest';
805
805
 
806
- /**
807
- * Abstract User Management API
808
- * Handle user profile management and user operations for conversations
809
- */
810
-
811
- /**
812
- * User profile update data
813
- */
814
- interface AXUserProfileUpdate {
815
- /** Display name */
816
- name?: string;
817
- /** Avatar URL */
818
- avatar?: string;
819
- /** Short line under the name in lists (e.g. job title) */
820
- description?: string;
821
- /** Bio/status text */
822
- bio?: string;
823
- /** Phone number */
824
- phone?: string;
825
- /** Email */
826
- email?: string;
827
- /** Custom fields */
828
- custom?: Record<string, unknown>;
829
- }
830
- /**
831
- * User search filters
832
- */
833
- interface AXUserSearchFilters {
834
- /** Search query */
835
- query?: string;
836
- /** Filter by online status */
837
- onlineOnly?: boolean;
838
- /** Exclude blocked users */
839
- excludeBlocked?: boolean;
840
- /** Limit results */
841
- limit?: number;
842
- }
843
- /**
844
- * Block/Report reason
845
- */
846
- interface AXBlockReportReason {
847
- /** Reason code */
848
- code: string;
849
- /** Description */
850
- description?: string;
851
- }
852
- /**
853
- * Abstract User Management API
854
- *
855
- * Implement this abstract class to handle user management for conversations.
856
- *
857
- * @example
858
- * ```typescript
859
- * @Injectable()
860
- * export class MyUserApi extends AXUserApi {
861
- * constructor(private http: HttpClient) {
862
- * super();
863
- * }
864
- *
865
- * async getCurrentUser(): Promise<AXParticipant> {
866
- * const response = await this.http.get('/api/users/me').toPromise();
867
- * return response;
868
- * }
869
- *
870
- * // ... implement other methods
871
- * }
872
- * ```
873
- */
874
- declare abstract class AXUserApi {
875
- /**
876
- * Get current authenticated user
877
- *
878
- * @returns Current user information
879
- * @throws {AXApiError} If user is not authenticated
880
- */
881
- abstract getCurrentUser(): Promise<AXParticipant>;
882
- /**
883
- * Update current user profile
884
- *
885
- * @param updates - Profile updates
886
- * @returns Updated user information
887
- * @throws {AXApiError} If update fails
888
- */
889
- abstract updateProfile(updates: AXUserProfileUpdate): Promise<AXParticipant>;
890
- /**
891
- * Upload user avatar
892
- *
893
- * @param file - Avatar image file
894
- * @returns Avatar URL
895
- * @throws {AXApiError} If upload fails
896
- */
897
- abstract uploadAvatar(file: File): Promise<string>;
898
- /**
899
- * Get available users for conversation creation
900
- *
901
- * @param filters - Search filters
902
- * @returns List of users
903
- * @throws {AXApiError} If request fails
904
- */
905
- abstract getUsers(filters?: AXUserSearchFilters): Promise<AXParticipant[]>;
906
- /**
907
- * Search users by query
908
- *
909
- * @param query - Search query
910
- * @returns Matching users
911
- * @throws {AXApiError} If search fails
912
- */
913
- abstract searchUsers(query: string): Promise<AXParticipant[]>;
914
- /**
915
- * Get user by ID
916
- *
917
- * @param userId - User ID
918
- * @returns User information
919
- * @throws {AXApiError} If user not found
920
- */
921
- abstract getUserById(userId: string): Promise<AXParticipant>;
922
- /**
923
- * Get multiple users by IDs
924
- *
925
- * @param userIds - Array of user IDs
926
- * @returns Array of users
927
- * @throws {AXApiError} If request fails
928
- */
929
- abstract getUsersByIds(userIds: string[]): Promise<AXParticipant[]>;
930
- /**
931
- * Get user presence status
932
- *
933
- * @param userId - User ID
934
- * @returns Presence information
935
- * @throws {AXApiError} If request fails
936
- */
937
- abstract getUserPresence(userId: string): Promise<AXPresenceUpdate>;
938
- /**
939
- * Update current user presence
940
- *
941
- * @param status - Presence status
942
- * @param statusText - Optional status text
943
- * @throws {AXApiError} If update fails
944
- */
945
- abstract updatePresence(status: AXPresenceStatus, statusText?: string): Promise<void>;
946
- /**
947
- * Block a user
948
- *
949
- * @param userId - User ID to block
950
- * @param reason - Optional reason
951
- * @throws {AXApiError} If blocking fails
952
- */
953
- abstract blockUser(userId: string, reason?: AXBlockReportReason): Promise<void>;
954
- /**
955
- * Unblock a user
956
- *
957
- * @param userId - User ID to unblock
958
- * @throws {AXApiError} If unblocking fails
959
- */
960
- abstract unblockUser(userId: string): Promise<void>;
961
- /**
962
- * Get list of blocked users
963
- *
964
- * @returns Array of blocked user IDs
965
- * @throws {AXApiError} If request fails
966
- */
967
- abstract getBlockedUsers(): Promise<string[]>;
968
- /**
969
- * Report a user
970
- *
971
- * @param userId - User ID to report
972
- * @param reason - Report reason
973
- * @throws {AXApiError} If reporting fails
974
- */
975
- abstract reportUser(userId: string, reason: AXBlockReportReason): Promise<void>;
976
- /**
977
- * Get user settings
978
- *
979
- * @returns User settings
980
- * @throws {AXApiError} If request fails
981
- */
982
- abstract getUserSettings(): Promise<Record<string, unknown>>;
983
- /**
984
- * Update user settings
985
- *
986
- * @param settings - Settings to update
987
- * @throws {AXApiError} If update fails
988
- */
989
- abstract updateUserSettings(settings: Record<string, unknown>): Promise<void>;
990
- /**
991
- * Create an API error
992
- * Helper method for consistent error creation
993
- *
994
- * @param code - Error code
995
- * @param message - Error message
996
- * @param statusCode - HTTP status code
997
- * @param details - Additional details
998
- * @returns API error object
999
- */
1000
- protected createError(code: string, message: string, statusCode?: number, details?: unknown): AXApiError;
1001
- }
1002
-
1003
806
  /**
1004
807
  * Abstract Conversation Management API
1005
808
  * Handle conversation CRUD operations, participants, and settings
@@ -2028,6 +1831,203 @@ declare abstract class AXRealtimeApi {
2028
1831
  }>;
2029
1832
  }
2030
1833
 
1834
+ /**
1835
+ * Abstract User Management API
1836
+ * Handle user profile management and user operations for conversations
1837
+ */
1838
+
1839
+ /**
1840
+ * User profile update data
1841
+ */
1842
+ interface AXUserProfileUpdate {
1843
+ /** Display name */
1844
+ name?: string;
1845
+ /** Avatar URL */
1846
+ avatar?: string;
1847
+ /** Short line under the name in lists (e.g. job title) */
1848
+ description?: string;
1849
+ /** Bio/status text */
1850
+ bio?: string;
1851
+ /** Phone number */
1852
+ phone?: string;
1853
+ /** Email */
1854
+ email?: string;
1855
+ /** Custom fields */
1856
+ custom?: Record<string, unknown>;
1857
+ }
1858
+ /**
1859
+ * User search filters
1860
+ */
1861
+ interface AXUserSearchFilters {
1862
+ /** Search query */
1863
+ query?: string;
1864
+ /** Filter by online status */
1865
+ onlineOnly?: boolean;
1866
+ /** Exclude blocked users */
1867
+ excludeBlocked?: boolean;
1868
+ /** Limit results */
1869
+ limit?: number;
1870
+ }
1871
+ /**
1872
+ * Block/Report reason
1873
+ */
1874
+ interface AXBlockReportReason {
1875
+ /** Reason code */
1876
+ code: string;
1877
+ /** Description */
1878
+ description?: string;
1879
+ }
1880
+ /**
1881
+ * Abstract User Management API
1882
+ *
1883
+ * Implement this abstract class to handle user management for conversations.
1884
+ *
1885
+ * @example
1886
+ * ```typescript
1887
+ * @Injectable()
1888
+ * export class MyUserApi extends AXUserApi {
1889
+ * constructor(private http: HttpClient) {
1890
+ * super();
1891
+ * }
1892
+ *
1893
+ * async getCurrentUser(): Promise<AXParticipant> {
1894
+ * const response = await this.http.get('/api/users/me').toPromise();
1895
+ * return response;
1896
+ * }
1897
+ *
1898
+ * // ... implement other methods
1899
+ * }
1900
+ * ```
1901
+ */
1902
+ declare abstract class AXUserApi {
1903
+ /**
1904
+ * Get current authenticated user
1905
+ *
1906
+ * @returns Current user information
1907
+ * @throws {AXApiError} If user is not authenticated
1908
+ */
1909
+ abstract getCurrentUser(): Promise<AXParticipant>;
1910
+ /**
1911
+ * Update current user profile
1912
+ *
1913
+ * @param updates - Profile updates
1914
+ * @returns Updated user information
1915
+ * @throws {AXApiError} If update fails
1916
+ */
1917
+ abstract updateProfile(updates: AXUserProfileUpdate): Promise<AXParticipant>;
1918
+ /**
1919
+ * Upload user avatar
1920
+ *
1921
+ * @param file - Avatar image file
1922
+ * @returns Avatar URL
1923
+ * @throws {AXApiError} If upload fails
1924
+ */
1925
+ abstract uploadAvatar(file: File): Promise<string>;
1926
+ /**
1927
+ * Get available users for conversation creation
1928
+ *
1929
+ * @param filters - Search filters
1930
+ * @returns List of users
1931
+ * @throws {AXApiError} If request fails
1932
+ */
1933
+ abstract getUsers(filters?: AXUserSearchFilters): Promise<AXParticipant[]>;
1934
+ /**
1935
+ * Search users by query
1936
+ *
1937
+ * @param query - Search query
1938
+ * @returns Matching users
1939
+ * @throws {AXApiError} If search fails
1940
+ */
1941
+ abstract searchUsers(query: string): Promise<AXParticipant[]>;
1942
+ /**
1943
+ * Get user by ID
1944
+ *
1945
+ * @param userId - User ID
1946
+ * @returns User information
1947
+ * @throws {AXApiError} If user not found
1948
+ */
1949
+ abstract getUserById(userId: string): Promise<AXParticipant>;
1950
+ /**
1951
+ * Get multiple users by IDs
1952
+ *
1953
+ * @param userIds - Array of user IDs
1954
+ * @returns Array of users
1955
+ * @throws {AXApiError} If request fails
1956
+ */
1957
+ abstract getUsersByIds(userIds: string[]): Promise<AXParticipant[]>;
1958
+ /**
1959
+ * Get user presence status
1960
+ *
1961
+ * @param userId - User ID
1962
+ * @returns Presence information
1963
+ * @throws {AXApiError} If request fails
1964
+ */
1965
+ abstract getUserPresence(userId: string): Promise<AXPresenceUpdate>;
1966
+ /**
1967
+ * Update current user presence
1968
+ *
1969
+ * @param status - Presence status
1970
+ * @param statusText - Optional status text
1971
+ * @throws {AXApiError} If update fails
1972
+ */
1973
+ abstract updatePresence(status: AXPresenceStatus, statusText?: string): Promise<void>;
1974
+ /**
1975
+ * Block a user
1976
+ *
1977
+ * @param userId - User ID to block
1978
+ * @param reason - Optional reason
1979
+ * @throws {AXApiError} If blocking fails
1980
+ */
1981
+ abstract blockUser(userId: string, reason?: AXBlockReportReason): Promise<void>;
1982
+ /**
1983
+ * Unblock a user
1984
+ *
1985
+ * @param userId - User ID to unblock
1986
+ * @throws {AXApiError} If unblocking fails
1987
+ */
1988
+ abstract unblockUser(userId: string): Promise<void>;
1989
+ /**
1990
+ * Get list of blocked users
1991
+ *
1992
+ * @returns Array of blocked user IDs
1993
+ * @throws {AXApiError} If request fails
1994
+ */
1995
+ abstract getBlockedUsers(): Promise<string[]>;
1996
+ /**
1997
+ * Report a user
1998
+ *
1999
+ * @param userId - User ID to report
2000
+ * @param reason - Report reason
2001
+ * @throws {AXApiError} If reporting fails
2002
+ */
2003
+ abstract reportUser(userId: string, reason: AXBlockReportReason): Promise<void>;
2004
+ /**
2005
+ * Get user settings
2006
+ *
2007
+ * @returns User settings
2008
+ * @throws {AXApiError} If request fails
2009
+ */
2010
+ abstract getUserSettings(): Promise<Record<string, unknown>>;
2011
+ /**
2012
+ * Update user settings
2013
+ *
2014
+ * @param settings - Settings to update
2015
+ * @throws {AXApiError} If update fails
2016
+ */
2017
+ abstract updateUserSettings(settings: Record<string, unknown>): Promise<void>;
2018
+ /**
2019
+ * Create an API error
2020
+ * Helper method for consistent error creation
2021
+ *
2022
+ * @param code - Error code
2023
+ * @param message - Error message
2024
+ * @param statusCode - HTTP status code
2025
+ * @param details - Additional details
2026
+ * @returns API error object
2027
+ */
2028
+ protected createError(code: string, message: string, statusCode?: number, details?: unknown): AXApiError;
2029
+ }
2030
+
2031
2031
  /**
2032
2032
  * Error severity levels
2033
2033
  */
@@ -4083,6 +4083,12 @@ declare class AXForwardMessageDialogComponent implements OnInit {
4083
4083
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXForwardMessageDialogComponent, "ax-forward-message-dialog", never, { "__popup__": { "alias": "__popup__"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
4084
4084
  }
4085
4085
 
4086
+ /** Default message list surface when no conversation is selected and no `ax-conversation-message-list-no-active` content is projected. */
4087
+ declare class AXMessageListNoActiveDefaultComponent {
4088
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXMessageListNoActiveDefaultComponent, never>;
4089
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXMessageListNoActiveDefaultComponent, "ax-conversation-message-list-no-active-default", never, {}, {}, never, never, true, never>;
4090
+ }
4091
+
4086
4092
  declare class AXMessageListComponent implements OnDestroy {
4087
4093
  private readonly conversationService;
4088
4094
  private readonly messageListService;
@@ -4093,6 +4099,8 @@ declare class AXMessageListComponent implements OnDestroy {
4093
4099
  */
4094
4100
  messageListBackgroundStyle(): string;
4095
4101
  resolvedEmptyStateComponent(): Type<AXMessageListEmptyComponent>;
4102
+ /** Fallback when no conversation is active and no `ax-conversation-message-list-no-active` content is projected. */
4103
+ protected readonly noActiveFallbackComponent: typeof AXMessageListNoActiveDefaultComponent;
4096
4104
  /** Custom avatar template for message list items */
4097
4105
  readonly avatarTemplate: _angular_core.InputSignal<TemplateRef<AXMessageAvatarTemplateContext>>;
4098
4106
  private readonly timeouts;
@@ -4101,6 +4109,8 @@ declare class AXMessageListComponent implements OnDestroy {
4101
4109
  readonly reactionPickerTarget: _angular_core.WritableSignal<string>;
4102
4110
  readonly reactionPickerElement: _angular_core.WritableSignal<HTMLElement>;
4103
4111
  readonly reactionPopover: _angular_core.Signal<any>;
4112
+ /** Message id whose context menu is open (for active row styling). */
4113
+ readonly contextMenuMessageId: _angular_core.WritableSignal<string>;
4104
4114
  readonly availableReactions: _angular_core.WritableSignal<string[]>;
4105
4115
  private get registry();
4106
4116
  /** Message list element reference */
@@ -4218,6 +4228,11 @@ declare class AXMessageListComponent implements OnDestroy {
4218
4228
  private loadOlderMessages;
4219
4229
  /** Check if user is near bottom of scroll */
4220
4230
  private isUserNearBottom;
4231
+ /**
4232
+ * After switching chats, the template may still show loading (no #messagesContainer).
4233
+ * Poll with rAF until the feed exists, then scroll after double rAF so scrollHeight is stable.
4234
+ */
4235
+ private scrollToBottomWhenContainerReady;
4221
4236
  /** Scroll to bottom */
4222
4237
  scrollToBottom(smooth?: boolean): void;
4223
4238
  /** Scroll to specific message */
@@ -4259,7 +4274,7 @@ declare class AXMessageListComponent implements OnDestroy {
4259
4274
  */
4260
4275
  trackMessage(index: number, message: AXMessage): string;
4261
4276
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXMessageListComponent, never>;
4262
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXMessageListComponent, "ax-conversation-message-list", never, { "avatarTemplate": { "alias": "avatarTemplate"; "required": false; "isSignal": true; }; }, { "messageAction": "messageAction"; }, never, ["ax-conversation-message-list-empty, [ax-conversation-message-list-empty]"], true, never>;
4277
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXMessageListComponent, "ax-conversation-message-list", never, { "avatarTemplate": { "alias": "avatarTemplate"; "required": false; "isSignal": true; }; }, { "messageAction": "messageAction"; }, never, ["ax-conversation-message-list-empty, [ax-conversation-message-list-empty]", "ax-conversation-message-list-no-active, [ax-conversation-message-list-no-active]"], true, never>;
4263
4278
  }
4264
4279
  interface AXMessageAvatarTemplateContext {
4265
4280
  $implicit: AXMessage;
@@ -5657,6 +5672,7 @@ declare const AX_CONVERSATION_TAB_ALL: AXConversationTab;
5657
5672
  declare const AX_CONVERSATION_TAB_PRIVATE: AXConversationTab;
5658
5673
  declare const AX_CONVERSATION_TAB_GROUPS: AXConversationTab;
5659
5674
  declare const AX_CONVERSATION_TAB_CHANNELS: AXConversationTab;
5675
+ declare const AX_CONVERSATION_TAB_BOT: AXConversationTab;
5660
5676
  declare const AX_CONVERSATION_TAB_UNREAD: AXConversationTab;
5661
5677
  declare const AX_CONVERSATION_TAB_ARCHIVED: AXConversationTab;
5662
5678
 
@@ -6363,5 +6379,5 @@ declare function getErrorMessage(code: string, params?: Record<string, string |
6363
6379
  */
6364
6380
  type AXErrorCode = typeof MESSAGE_ERRORS[keyof typeof MESSAGE_ERRORS]['code'] | typeof FILE_ERRORS[keyof typeof FILE_ERRORS]['code'] | typeof USER_ERRORS[keyof typeof USER_ERRORS]['code'] | typeof CONVERSATION_ERRORS[keyof typeof CONVERSATION_ERRORS]['code'] | typeof CONNECTION_ERRORS[keyof typeof CONNECTION_ERRORS]['code'] | typeof LOCATION_ERRORS[keyof typeof LOCATION_ERRORS]['code'] | typeof URL_ERRORS[keyof typeof URL_ERRORS]['code'] | typeof PERMISSION_ERRORS[keyof typeof PERMISSION_ERRORS]['code'];
6365
6381
 
6366
- export { AXAudioInfoBarBannerComponent, AXAudioPickerComponent, AXAudioRendererComponent, AXBaseRegistry, AXComposerActionRegistry, AXComposerComponent, AXComposerPopupComponent, AXComposerService, AXComposerTabRegistry, AXConversation2Module, AXConversationAiApiKey, AXConversationAiResponderService, AXConversationApi, AXConversationContainerComponent, AXConversationContainerDirective, AXConversationDateUtilsService, AXConversationIndexedDbConversationApi, AXConversationIndexedDbMessageAiApi, AXConversationIndexedDbMessageApi, AXConversationIndexedDbRealtimeApi, AXConversationIndexedDbStorage, AXConversationIndexedDbStores, AXConversationIndexedDbUserApi, AXConversationInfoPanelComponent, AXConversationItemActionRegistry, AXConversationMessageRendererStateComponent, AXConversationMessageUtilsService, AXConversationService, AXConversationSharedStorage, AXConversationStoreService, AXConversationTabRegistry, AXEmojiTabComponent, AXErrorHandlerService, AXFallbackRendererComponent, AXFilePickerComponent, AXFileRendererComponent, AXFileUploadService, AXForwardMessageDialogComponent, AXImagePickerComponent, AXImageRendererComponent, AXInfiniteScrollDirective, AXInfoBarActionRegistry, AXInfoBarComponent, AXInfoBarSearchComponent, AXInfoBarService, AXLocationPickerComponent, AXLocationRendererComponent, AXMessageActionRegistry, AXMessageApi, AXMessageListComponent, AXMessageListService, AXMessageRendererRegistry, AXNewConversationDialogComponent, AXPickerFooterComponent, AXPickerHeaderComponent, AXRealtimeApi, AXRegistryService, AXSidebarComponent, AXSidebarService, AXStickerRendererComponent, AXStickerTabComponent, AXSystemRendererComponent, AXTextRendererComponent, AXUserApi, AXVideoInfoBarBannerComponent, AXVideoPickerComponent, AXVideoRendererComponent, AXVoiceInfoBarBannerComponent, AXVoiceRecorderComponent, AXVoiceRendererComponent, AX_CONVERSATION_AUDIO_RENDERER, AX_CONVERSATION_COMPOSER_AUDIO_ACTION, AX_CONVERSATION_COMPOSER_EMOJI_ACTION, AX_CONVERSATION_COMPOSER_EMOJI_TAB, AX_CONVERSATION_COMPOSER_FILE_ACTION, AX_CONVERSATION_COMPOSER_IMAGE_ACTION, AX_CONVERSATION_COMPOSER_LOCATION_ACTION, AX_CONVERSATION_COMPOSER_STICKER_TAB, AX_CONVERSATION_COMPOSER_VIDEO_ACTION, AX_CONVERSATION_COMPOSER_VOICE_RECORDING_ACTION, AX_CONVERSATION_FALLBACK_RENDERER, AX_CONVERSATION_FILE_RENDERER, AX_CONVERSATION_IMAGE_RENDERER, AX_CONVERSATION_INFO_BAR_ARCHIVE_ACTION, AX_CONVERSATION_INFO_BAR_BLOCK_ACTION, AX_CONVERSATION_INFO_BAR_DELETE_ACTION, AX_CONVERSATION_INFO_BAR_DIVIDER, AX_CONVERSATION_INFO_BAR_INFO_ACTION, AX_CONVERSATION_INFO_BAR_MUTE_ACTION, AX_CONVERSATION_INFO_BAR_SEARCH_ACTION, AX_CONVERSATION_ITEM_BLOCK_ACTION, AX_CONVERSATION_ITEM_DELETE_ACTION, AX_CONVERSATION_ITEM_DIVIDER, AX_CONVERSATION_ITEM_MARK_READ_ACTION, AX_CONVERSATION_ITEM_MUTE_ACTION, AX_CONVERSATION_ITEM_PIN_ACTION, AX_CONVERSATION_LOCATION_RENDERER, AX_CONVERSATION_MESSAGE_COPY_ACTION, AX_CONVERSATION_MESSAGE_DELETE_ACTION, AX_CONVERSATION_MESSAGE_EDIT_ACTION, AX_CONVERSATION_MESSAGE_FORWARD_ACTION, AX_CONVERSATION_MESSAGE_REPLY_ACTION, AX_CONVERSATION_STICKER_RENDERER, AX_CONVERSATION_SYSTEM_RENDERER, AX_CONVERSATION_TAB_ALL, AX_CONVERSATION_TAB_ARCHIVED, AX_CONVERSATION_TAB_CHANNELS, AX_CONVERSATION_TAB_GROUPS, AX_CONVERSATION_TAB_PRIVATE, AX_CONVERSATION_TAB_UNREAD, AX_CONVERSATION_TEXT_RENDERER, AX_CONVERSATION_VIDEO_RENDERER, AX_CONVERSATION_VOICE_RENDERER, AX_DEFAULT_CONVERSATION_CONFIG, AX_STICKER_API_KEY, CONNECTION_ERRORS, CONVERSATION_CONFIG, CONVERSATION_ERRORS, DEFAULT_COMPOSER_ACTIONS, DEFAULT_COMPOSER_TABS, DEFAULT_CONVERSATION_ITEM_ACTIONS, DEFAULT_CONVERSATION_TABS, DEFAULT_INFO_BAR_ACTIONS, DEFAULT_MESSAGE_ACTIONS, DEFAULT_MESSAGE_RENDERERS, ERROR_HANDLER_CONFIG, ERROR_MESSAGES, FILE_ERRORS, LOCATION_ERRORS, MESSAGE_ERRORS, PERMISSION_ERRORS, REGISTRY_CONFIG, URL_ERRORS, USER_ERRORS, axConversationIndexedDbStorage, conversationSharedStorage, formatErrorMessage, getDefaultConversationItemActions, getErrorMessage, mergeWithDefaults, provideConversation, sanitizeInput, validateConversationId, validateEmail, validateFile, validateLatitude, validateLongitude, validateMessagePayload, validateMessageText, validateMessageType, validateUrl, validateUserId, validateUserIds };
6382
+ export { AXAudioInfoBarBannerComponent, AXAudioPickerComponent, AXAudioRendererComponent, AXBaseRegistry, AXComposerActionRegistry, AXComposerComponent, AXComposerPopupComponent, AXComposerService, AXComposerTabRegistry, AXConversation2Module, AXConversationAiApiKey, AXConversationAiResponderService, AXConversationApi, AXConversationContainerComponent, AXConversationContainerDirective, AXConversationDateUtilsService, AXConversationIndexedDbConversationApi, AXConversationIndexedDbMessageAiApi, AXConversationIndexedDbMessageApi, AXConversationIndexedDbRealtimeApi, AXConversationIndexedDbStorage, AXConversationIndexedDbStores, AXConversationIndexedDbUserApi, AXConversationInfoPanelComponent, AXConversationItemActionRegistry, AXConversationMessageRendererStateComponent, AXConversationMessageUtilsService, AXConversationService, AXConversationSharedStorage, AXConversationStoreService, AXConversationTabRegistry, AXEmojiTabComponent, AXErrorHandlerService, AXFallbackRendererComponent, AXFilePickerComponent, AXFileRendererComponent, AXFileUploadService, AXForwardMessageDialogComponent, AXImagePickerComponent, AXImageRendererComponent, AXInfiniteScrollDirective, AXInfoBarActionRegistry, AXInfoBarComponent, AXInfoBarSearchComponent, AXInfoBarService, AXLocationPickerComponent, AXLocationRendererComponent, AXMessageActionRegistry, AXMessageApi, AXMessageListComponent, AXMessageListNoActiveDefaultComponent, AXMessageListService, AXMessageRendererRegistry, AXNewConversationDialogComponent, AXPickerFooterComponent, AXPickerHeaderComponent, AXRealtimeApi, AXRegistryService, AXSidebarComponent, AXSidebarService, AXStickerRendererComponent, AXStickerTabComponent, AXSystemRendererComponent, AXTextRendererComponent, AXUserApi, AXVideoInfoBarBannerComponent, AXVideoPickerComponent, AXVideoRendererComponent, AXVoiceInfoBarBannerComponent, AXVoiceRecorderComponent, AXVoiceRendererComponent, AX_CONVERSATION_AUDIO_RENDERER, AX_CONVERSATION_COMPOSER_AUDIO_ACTION, AX_CONVERSATION_COMPOSER_EMOJI_ACTION, AX_CONVERSATION_COMPOSER_EMOJI_TAB, AX_CONVERSATION_COMPOSER_FILE_ACTION, AX_CONVERSATION_COMPOSER_IMAGE_ACTION, AX_CONVERSATION_COMPOSER_LOCATION_ACTION, AX_CONVERSATION_COMPOSER_STICKER_TAB, AX_CONVERSATION_COMPOSER_VIDEO_ACTION, AX_CONVERSATION_COMPOSER_VOICE_RECORDING_ACTION, AX_CONVERSATION_FALLBACK_RENDERER, AX_CONVERSATION_FILE_RENDERER, AX_CONVERSATION_IMAGE_RENDERER, AX_CONVERSATION_INFO_BAR_ARCHIVE_ACTION, AX_CONVERSATION_INFO_BAR_BLOCK_ACTION, AX_CONVERSATION_INFO_BAR_DELETE_ACTION, AX_CONVERSATION_INFO_BAR_DIVIDER, AX_CONVERSATION_INFO_BAR_INFO_ACTION, AX_CONVERSATION_INFO_BAR_MUTE_ACTION, AX_CONVERSATION_INFO_BAR_SEARCH_ACTION, AX_CONVERSATION_ITEM_BLOCK_ACTION, AX_CONVERSATION_ITEM_DELETE_ACTION, AX_CONVERSATION_ITEM_DIVIDER, AX_CONVERSATION_ITEM_MARK_READ_ACTION, AX_CONVERSATION_ITEM_MUTE_ACTION, AX_CONVERSATION_ITEM_PIN_ACTION, AX_CONVERSATION_LOCATION_RENDERER, AX_CONVERSATION_MESSAGE_COPY_ACTION, AX_CONVERSATION_MESSAGE_DELETE_ACTION, AX_CONVERSATION_MESSAGE_EDIT_ACTION, AX_CONVERSATION_MESSAGE_FORWARD_ACTION, AX_CONVERSATION_MESSAGE_REPLY_ACTION, AX_CONVERSATION_STICKER_RENDERER, AX_CONVERSATION_SYSTEM_RENDERER, AX_CONVERSATION_TAB_ALL, AX_CONVERSATION_TAB_ARCHIVED, AX_CONVERSATION_TAB_BOT, AX_CONVERSATION_TAB_CHANNELS, AX_CONVERSATION_TAB_GROUPS, AX_CONVERSATION_TAB_PRIVATE, AX_CONVERSATION_TAB_UNREAD, AX_CONVERSATION_TEXT_RENDERER, AX_CONVERSATION_VIDEO_RENDERER, AX_CONVERSATION_VOICE_RENDERER, AX_DEFAULT_CONVERSATION_CONFIG, AX_STICKER_API_KEY, CONNECTION_ERRORS, CONVERSATION_CONFIG, CONVERSATION_ERRORS, DEFAULT_COMPOSER_ACTIONS, DEFAULT_COMPOSER_TABS, DEFAULT_CONVERSATION_ITEM_ACTIONS, DEFAULT_CONVERSATION_TABS, DEFAULT_INFO_BAR_ACTIONS, DEFAULT_MESSAGE_ACTIONS, DEFAULT_MESSAGE_RENDERERS, ERROR_HANDLER_CONFIG, ERROR_MESSAGES, FILE_ERRORS, LOCATION_ERRORS, MESSAGE_ERRORS, PERMISSION_ERRORS, REGISTRY_CONFIG, URL_ERRORS, USER_ERRORS, axConversationIndexedDbStorage, conversationSharedStorage, formatErrorMessage, getDefaultConversationItemActions, getErrorMessage, mergeWithDefaults, provideConversation, sanitizeInput, validateConversationId, validateEmail, validateFile, validateLatitude, validateLongitude, validateMessagePayload, validateMessageText, validateMessageType, validateUrl, validateUserId, validateUserIds };
6367
6383
  export type { AXApiError, AXAudioPayload, AXBlockReportReason, AXCallEvent, AXComposerAction, AXComposerActionComponent, AXComposerActionContext, AXComposerActiveComponent, AXComposerTab, AXConnectionEvent, AXConnectionOptions, AXConnectionStatus, AXConversation, AXConversationAiResponderConfig, AXConversationConfig, AXConversationCreateData, AXConversationError, AXConversationFilter, AXConversationFilters, AXConversationItemAction, AXConversationItemActionContext, AXConversationMetadata, AXConversationOptions, AXConversationPermissions, AXConversationSettings, AXConversationSettingsUpdate, AXConversationSort, AXConversationStatus, AXConversationTab, AXConversationType, AXConversationUpdateData, AXDeleteMessageCommand, AXEditMessageCommand, AXErrorCode, AXErrorHandlerConfig, AXErrorMessage, AXErrorSeverity, AXFilePayload, AXFileValidationResult, AXGroupedReaction, AXImagePayload, AXInfoBarAction, AXInfoBarActionComponent, AXInfoBarActionContext, AXInfoBarActiveBanner, AXInfoBarActiveComponent, AXLink, AXLinkPreview, AXLocationPayload, AXMention, AXMessage, AXMessageAction, AXMessageActionContext, AXMessageAvatarTemplateContext, AXMessageForwardData, AXMessageInfoBarBannerComponent, AXMessageListEmptyComponent, AXMessagePayload, AXMessageRenderer, AXMessageRendererCapabilities, AXMessageRendererComponent, AXMessageRendererContentState, AXMessageRendererState, AXMessageSearchFilters, AXMessageStatus, AXMessageType, AXNotificationEvent, AXPaginatedResult, AXPagination, AXParticipant, AXParticipantRole, AXParticipantStatus, AXParticipantUpdate, AXPinnedMessage, AXPollOption, AXPollPayload, AXPresenceStatus, AXPresenceUpdate, AXReaction, AXReadReceipt, AXRegistryConfiguration, AXRegistryItem, AXSendMessageCommand, AXStickerPayload, AXSystemPayload, AXTextFormat, AXTextPayload, AXTypingIndicator, AXUserProfileUpdate, AXUserRole, AXUserSearchFilters, AXValidationResult, AXVideoPayload, AXVoicePayload, DropdownMenuItem, FilePreview, FileUploadProgress };