@acorex/components 21.0.2-next.14 → 21.0.2-next.16

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.
@@ -506,27 +506,6 @@ interface AXConversationStatus {
506
506
  /** Last seen timestamp (for private chats when offline) */
507
507
  lastSeen?: Date;
508
508
  }
509
- /**
510
- * Conversation permissions
511
- */
512
- interface AXConversationPermissions {
513
- /** Can send messages */
514
- canSendMessages: boolean;
515
- /** Can send media */
516
- canSendMedia: boolean;
517
- /** Can add members (groups) */
518
- canAddMembers: boolean;
519
- /** Can remove members (groups) */
520
- canRemoveMembers: boolean;
521
- /** Can change conversation info */
522
- canEditInfo: boolean;
523
- /** Can pin messages */
524
- canPinMessages: boolean;
525
- /** Can delete messages */
526
- canDeleteMessages: boolean;
527
- /** Custom permissions */
528
- custom?: Record<string, boolean>;
529
- }
530
509
  /**
531
510
  * Conversation settings
532
511
  */
@@ -587,8 +566,6 @@ interface AXConversation {
587
566
  unreadMentions?: number;
588
567
  /** Current status (typing, presence, etc.) */
589
568
  status: AXConversationStatus;
590
- /** User permissions in this conversation */
591
- permissions: AXConversationPermissions;
592
569
  /** User-specific settings */
593
570
  settings: AXConversationSettings;
594
571
  /** Pinned messages IDs */
@@ -672,8 +649,8 @@ declare class AXComposerComponent implements OnDestroy {
672
649
  private readonly translation;
673
650
  /** Access registry through conversation service */
674
651
  private get registry();
675
- /** Input element reference */
676
- private readonly inputElementRef;
652
+ /** Composer text area reference */
653
+ private readonly textAreaRef;
677
654
  /** Draft text - use service */
678
655
  readonly draftText: _angular_core.WritableSignal<string>;
679
656
  /** Attachments - use service */
@@ -767,6 +744,8 @@ declare class AXComposerComponent implements OnDestroy {
767
744
  startEdit(message: any): void;
768
745
  /** Start replying to a message */
769
746
  startReply(message: AXMessage): void;
747
+ /** Focus the native textarea inside ax-text-area */
748
+ private focusTextArea;
770
749
  /** Handle action click */
771
750
  onActionClick(actionId: string, event?: MouseEvent): Promise<void>;
772
751
  /** Check if action is enabled */
@@ -1548,6 +1527,9 @@ declare class AXComposerService {
1548
1527
  readonly attachments: _angular_core.WritableSignal<File[]>;
1549
1528
  /** Show typing indicator */
1550
1529
  readonly showTypingIndicator: _angular_core.WritableSignal<boolean>;
1530
+ /** Incremented to request focus on the composer text area (handled by AXComposerComponent). */
1531
+ private readonly _focusRequest;
1532
+ readonly focusRequest: _angular_core.Signal<number>;
1551
1533
  /** Input placeholder */
1552
1534
  readonly placeholder: _angular_core.Signal<string>;
1553
1535
  /** Number of input rows */
@@ -1570,6 +1552,8 @@ declare class AXComposerService {
1570
1552
  readonly rightMenuActions: _angular_core.Signal<AXComposerAction[]>;
1571
1553
  startReply(message: AXMessage): void;
1572
1554
  startEdit(message: AXMessage): void;
1555
+ /** Focus the composer text area when the composer component is mounted. */
1556
+ focusComposer(): void;
1573
1557
  clear(): void;
1574
1558
  sendTypingIndicator(conversationId: string): Promise<void>;
1575
1559
  sendMessage(command: AXSendMessageCommand): Promise<void>;
@@ -1970,8 +1954,6 @@ interface AXParticipantUpdate {
1970
1954
  userId: string;
1971
1955
  /** New role */
1972
1956
  role?: AXUserRole;
1973
- /** Custom permissions */
1974
- permissions?: Record<string, boolean>;
1975
1957
  }
1976
1958
  /**
1977
1959
  * Abstract Conversation Management API
@@ -2130,7 +2112,7 @@ declare abstract class AXConversationApi {
2130
2112
  */
2131
2113
  abstract leaveConversation(conversationId: string): Promise<void>;
2132
2114
  /**
2133
- * Update participant role/permissions
2115
+ * Update participant role
2134
2116
  *
2135
2117
  * @param conversationId - Conversation ID
2136
2118
  * @param update - Participant update data
@@ -2211,22 +2193,6 @@ declare abstract class AXConversationApi {
2211
2193
  * @throws {AXApiError} If request fails
2212
2194
  */
2213
2195
  abstract getConversationTags(conversationId: string): Promise<string[]>;
2214
- /**
2215
- * Get conversation permissions for current user
2216
- *
2217
- * @param conversationId - Conversation ID
2218
- * @returns User permissions
2219
- * @throws {AXApiError} If request fails
2220
- */
2221
- abstract getConversationPermissions(conversationId: string): Promise<Record<string, boolean>>;
2222
- /**
2223
- * Update conversation permissions
2224
- *
2225
- * @param conversationId - Conversation ID
2226
- * @param permissions - Permissions to update
2227
- * @throws {AXApiError} If update fails
2228
- */
2229
- abstract updateConversationPermissions(conversationId: string, permissions: Record<string, boolean>): Promise<void>;
2230
2196
  /**
2231
2197
  * Save draft message for conversation
2232
2198
  *
@@ -4437,8 +4403,6 @@ declare class AXConversationIndexedDbConversationApi extends AXConversationApi {
4437
4403
  addConversationTags(_conversationId: string, _tags: string[]): Promise<void>;
4438
4404
  removeConversationTags(_conversationId: string, _tags: string[]): Promise<void>;
4439
4405
  getConversationTags(_conversationId: string): Promise<string[]>;
4440
- getConversationPermissions(_conversationId: string): Promise<Record<string, boolean>>;
4441
- updateConversationPermissions(_conversationId: string, _permissions: Record<string, boolean>): Promise<void>;
4442
4406
  saveDraft(_conversationId: string, _draft: string): Promise<void>;
4443
4407
  getDraft(_conversationId: string): Promise<string | null>;
4444
4408
  clearDraft(_conversationId: string): Promise<void>;
@@ -5993,35 +5957,6 @@ declare const URL_ERRORS: {
5993
5957
  readonly message: "Invalid URL format";
5994
5958
  };
5995
5959
  };
5996
- /**
5997
- * Permission errors
5998
- */
5999
- declare const PERMISSION_ERRORS: {
6000
- readonly CANNOT_SEND_MESSAGES: {
6001
- readonly code: "PERMISSION.CANNOT_SEND_MESSAGES";
6002
- readonly message: "You do not have permission to send messages";
6003
- };
6004
- readonly CANNOT_SEND_MEDIA: {
6005
- readonly code: "PERMISSION.CANNOT_SEND_MEDIA";
6006
- readonly message: "You do not have permission to send media";
6007
- };
6008
- readonly CANNOT_ADD_MEMBERS: {
6009
- readonly code: "PERMISSION.CANNOT_ADD_MEMBERS";
6010
- readonly message: "You do not have permission to add members";
6011
- };
6012
- readonly CANNOT_REMOVE_MEMBERS: {
6013
- readonly code: "PERMISSION.CANNOT_REMOVE_MEMBERS";
6014
- readonly message: "You do not have permission to remove members";
6015
- };
6016
- readonly CANNOT_EDIT_INFO: {
6017
- readonly code: "PERMISSION.CANNOT_EDIT_INFO";
6018
- readonly message: "You do not have permission to edit conversation info";
6019
- };
6020
- readonly CANNOT_DELETE_MESSAGES: {
6021
- readonly code: "PERMISSION.CANNOT_DELETE_MESSAGES";
6022
- readonly message: "You do not have permission to delete messages";
6023
- };
6024
- };
6025
5960
  /**
6026
5961
  * All error messages combined
6027
5962
  */
@@ -6186,32 +6121,6 @@ declare const ERROR_MESSAGES: {
6186
6121
  readonly message: "Invalid URL format";
6187
6122
  };
6188
6123
  };
6189
- readonly PERMISSION: {
6190
- readonly CANNOT_SEND_MESSAGES: {
6191
- readonly code: "PERMISSION.CANNOT_SEND_MESSAGES";
6192
- readonly message: "You do not have permission to send messages";
6193
- };
6194
- readonly CANNOT_SEND_MEDIA: {
6195
- readonly code: "PERMISSION.CANNOT_SEND_MEDIA";
6196
- readonly message: "You do not have permission to send media";
6197
- };
6198
- readonly CANNOT_ADD_MEMBERS: {
6199
- readonly code: "PERMISSION.CANNOT_ADD_MEMBERS";
6200
- readonly message: "You do not have permission to add members";
6201
- };
6202
- readonly CANNOT_REMOVE_MEMBERS: {
6203
- readonly code: "PERMISSION.CANNOT_REMOVE_MEMBERS";
6204
- readonly message: "You do not have permission to remove members";
6205
- };
6206
- readonly CANNOT_EDIT_INFO: {
6207
- readonly code: "PERMISSION.CANNOT_EDIT_INFO";
6208
- readonly message: "You do not have permission to edit conversation info";
6209
- };
6210
- readonly CANNOT_DELETE_MESSAGES: {
6211
- readonly code: "PERMISSION.CANNOT_DELETE_MESSAGES";
6212
- readonly message: "You do not have permission to delete messages";
6213
- };
6214
- };
6215
6124
  };
6216
6125
  /**
6217
6126
  * Helper function to format error message with parameters
@@ -6238,7 +6147,7 @@ declare function getErrorMessage(code: string, params?: Record<string, string |
6238
6147
  * Type for error codes
6239
6148
  * Useful for type-safe error handling
6240
6149
  */
6241
- 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'];
6150
+ 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'];
6242
6151
 
6243
- 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, 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 };
6244
- 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 };
6152
+ 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, 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, 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 };
6153
+ 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, 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 };
@@ -75,6 +75,12 @@ declare class AXSideMenuComponent extends NXComponent {
75
75
  children: _angular_core.Signal<readonly AXSideMenuItemComponent[]>;
76
76
  private elementRef;
77
77
  private firstLevelItems;
78
+ private document;
79
+ private platformId;
80
+ private renderer;
81
+ hostElement: any;
82
+ private closeFirstLevelItems;
83
+ addFirstLevelClass(): void;
78
84
  /** @ignore */
79
85
  private get __hostClass();
80
86
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSideMenuComponent, never>;