@acorex/components 22.0.0-next.35 → 22.0.0-next.37
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.
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "22.0.0-next.
|
|
3
|
+
"version": "22.0.0-next.37",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "22.0.0-next.
|
|
6
|
-
"@acorex/cdk": "22.0.0-next.
|
|
5
|
+
"@acorex/core": "22.0.0-next.37",
|
|
6
|
+
"@acorex/cdk": "22.0.0-next.37",
|
|
7
7
|
"polytype": ">=0.17.0",
|
|
8
8
|
"angular-imask": ">=7.6.1",
|
|
9
9
|
"imask": ">=7.6.1",
|
|
@@ -37,9 +37,11 @@ declare class AXConversationComposerPopupComponent implements OnDestroy {
|
|
|
37
37
|
/** Close event for popup service */
|
|
38
38
|
readonly onClosed: _angular_core.OutputEmitterRef<AXComponentCloseEvent>;
|
|
39
39
|
/** Active tab ID */
|
|
40
|
-
|
|
40
|
+
readonly activeTabId: _angular_core.WritableSignal<string>;
|
|
41
41
|
/** Enabled tabs from registry */
|
|
42
42
|
readonly enabledTabs: _angular_core.Signal<_acorex_components_conversation.AXConversationComposerTab[]>;
|
|
43
|
+
/** Whether more than one tab is available */
|
|
44
|
+
readonly hasMultipleTabs: _angular_core.Signal<boolean>;
|
|
43
45
|
getTabTitle(tabId: string): string;
|
|
44
46
|
constructor();
|
|
45
47
|
/** Handle tab change */
|
|
@@ -451,15 +453,27 @@ interface AXConversationSettings {
|
|
|
451
453
|
/** Custom settings */
|
|
452
454
|
custom?: Record<string, unknown>;
|
|
453
455
|
}
|
|
456
|
+
/** Theme-specific CSS `background` values for the message list area. */
|
|
457
|
+
interface AXConversationMessageListThemeBackground {
|
|
458
|
+
light: string;
|
|
459
|
+
dark: string;
|
|
460
|
+
}
|
|
461
|
+
/** Single CSS value (both themes) or per-theme `{ light, dark }` backgrounds. */
|
|
462
|
+
type AXConversationMessageListBackground = string | AXConversationMessageListThemeBackground;
|
|
454
463
|
/**
|
|
455
464
|
* Conversation metadata
|
|
456
465
|
* Extensible map for app-specific conversation data.
|
|
457
466
|
*/
|
|
458
467
|
interface AXConversationMetadata extends Record<string, unknown> {
|
|
459
|
-
/** Optional custom background CSS for message list */
|
|
460
|
-
messageListBackground?:
|
|
468
|
+
/** Optional custom background CSS for message list (per light/dark theme). */
|
|
469
|
+
messageListBackground?: AXConversationMessageListBackground;
|
|
461
470
|
/** Optional custom empty-state component for the message list. */
|
|
462
471
|
messageListEmptyComponent?: Type<AXConversationMessageListEmptyComponent>;
|
|
472
|
+
/**
|
|
473
|
+
* When `false`, hides reaction UI (add button, bubbles, picker) for this conversation.
|
|
474
|
+
* Defaults to `true` when omitted.
|
|
475
|
+
*/
|
|
476
|
+
reactionsEnabled?: boolean;
|
|
463
477
|
}
|
|
464
478
|
/** Contract for custom empty-state components rendered by message list. */
|
|
465
479
|
interface AXConversationMessageListEmptyComponent {
|
|
@@ -851,7 +865,7 @@ declare class AXConversationComposerActionRegistry {
|
|
|
851
865
|
private readonly _actions;
|
|
852
866
|
private readonly translation;
|
|
853
867
|
private readonly injector;
|
|
854
|
-
private readonly
|
|
868
|
+
private readonly composerTabRegistry;
|
|
855
869
|
constructor();
|
|
856
870
|
/** All registered actions */
|
|
857
871
|
readonly actions: _angular_core.Signal<AXConversationComposerAction[]>;
|
|
@@ -871,6 +885,8 @@ declare class AXConversationComposerActionRegistry {
|
|
|
871
885
|
* Register a composer action
|
|
872
886
|
*/
|
|
873
887
|
register(action: AXConversationComposerAction): void;
|
|
888
|
+
/** Resolved lazily to avoid a DI cycle with {@link AXConversationComposerFileTypesProvider}. */
|
|
889
|
+
private fileTypeRegistry;
|
|
874
890
|
private ensureFileTypeExists;
|
|
875
891
|
/**
|
|
876
892
|
* Unregister a composer action
|
|
@@ -945,6 +961,8 @@ declare class AXConversationComposerTabRegistry {
|
|
|
945
961
|
readonly tabs: _angular_core.Signal<AXConversationComposerTab[]>;
|
|
946
962
|
/** Enabled tabs sorted by priority */
|
|
947
963
|
readonly enabledTabs: _angular_core.Signal<AXConversationComposerTab[]>;
|
|
964
|
+
/** Whether the composer popup has any tabs to show. */
|
|
965
|
+
readonly hasEnabledTabs: _angular_core.Signal<boolean>;
|
|
948
966
|
/**
|
|
949
967
|
* Register a composer tab
|
|
950
968
|
*/
|
|
@@ -1937,6 +1955,11 @@ interface AXConversationCreateData {
|
|
|
1937
1955
|
icon?: string;
|
|
1938
1956
|
/** Custom metadata */
|
|
1939
1957
|
metadata?: Record<string, unknown>;
|
|
1958
|
+
/**
|
|
1959
|
+
* When `true`, create a new private chat even if one already exists with the same participants.
|
|
1960
|
+
* Defaults to `false` for private conversations.
|
|
1961
|
+
*/
|
|
1962
|
+
forceCreate?: boolean;
|
|
1940
1963
|
}
|
|
1941
1964
|
/**
|
|
1942
1965
|
* Conversation update data
|
|
@@ -3228,6 +3251,8 @@ declare class AXConversationService {
|
|
|
3228
3251
|
private initPromise;
|
|
3229
3252
|
/** Generation counter — stale page-0 loads are ignored after conversation switches. */
|
|
3230
3253
|
private messageLoadGeneration;
|
|
3254
|
+
/** Bumps when a conversation is created while a list load is in flight. */
|
|
3255
|
+
private conversationListLoadGeneration;
|
|
3231
3256
|
/** Batched read-receipt queue keyed by conversation ID. */
|
|
3232
3257
|
private readonly readQueue;
|
|
3233
3258
|
private readFlushHandle;
|
|
@@ -3376,6 +3401,11 @@ declare class AXConversationService {
|
|
|
3376
3401
|
* Updates conversation metadata including unread count, last message, etc.
|
|
3377
3402
|
*/
|
|
3378
3403
|
private handleConversationUpdate;
|
|
3404
|
+
/**
|
|
3405
|
+
* Insert or refresh a conversation in the in-memory inbox.
|
|
3406
|
+
* @param promote When true, bumps activity so the chat sorts to the top (create / reopen).
|
|
3407
|
+
*/
|
|
3408
|
+
private syncConversationToInbox;
|
|
3379
3409
|
/**
|
|
3380
3410
|
* Update conversation's last message
|
|
3381
3411
|
*/
|
|
@@ -3415,9 +3445,12 @@ declare class AXConversationService {
|
|
|
3415
3445
|
* @param participantIds - Array of participant user IDs
|
|
3416
3446
|
* @param type - Conversation type (private, group, channel)
|
|
3417
3447
|
* @param metadata - Optional metadata (title, avatar, etc.)
|
|
3418
|
-
* @
|
|
3448
|
+
* @param options - Optional flags (`forceCreate` recreates private chats even when one exists)
|
|
3449
|
+
* @returns Created or existing conversation
|
|
3419
3450
|
*/
|
|
3420
|
-
createConversation(participantIds: string[], type: AXConversationType, metadata?: AXConversationMetadata
|
|
3451
|
+
createConversation(participantIds: string[], type: AXConversationType, metadata?: AXConversationMetadata, options?: {
|
|
3452
|
+
forceCreate?: boolean;
|
|
3453
|
+
}): Promise<AXConversation>;
|
|
3421
3454
|
/**
|
|
3422
3455
|
* Get available users for conversation creation
|
|
3423
3456
|
* @param filters - Optional search filters (e.g. `query`)
|
|
@@ -3766,12 +3799,14 @@ declare class AXConversationMessageListComponent implements OnDestroy {
|
|
|
3766
3799
|
private readonly infoBarService;
|
|
3767
3800
|
private readonly translation;
|
|
3768
3801
|
private readonly document;
|
|
3802
|
+
private readonly platform;
|
|
3769
3803
|
protected readonly config: Required<_acorex_components_conversation.AXConversationConfig>;
|
|
3770
3804
|
/**
|
|
3771
|
-
* Background for the message list scroll area from config, or the built-in soft
|
|
3805
|
+
* Background for the message list scroll area from config, or the built-in soft wash when unset/empty.
|
|
3772
3806
|
* Set `messageListBackground` to `transparent` or `none` for a flat look.
|
|
3807
|
+
* Supports `{ light, dark }` for theme-specific backgrounds.
|
|
3773
3808
|
*/
|
|
3774
|
-
messageListBackgroundStyle
|
|
3809
|
+
readonly messageListBackgroundStyle: _angular_core.Signal<string>;
|
|
3775
3810
|
resolvedEmptyStateComponent(): Type<AXConversationMessageListEmptyComponent>;
|
|
3776
3811
|
/** Fallback when no conversation is active and no `ax-conversation-message-list-no-active` content is projected. */
|
|
3777
3812
|
protected readonly noActiveFallbackComponent: typeof AXConversationMessageListNoActiveDefaultComponent;
|
|
@@ -3803,6 +3838,8 @@ declare class AXConversationMessageListComponent implements OnDestroy {
|
|
|
3803
3838
|
readonly showScrollButton: _angular_core.WritableSignal<boolean>;
|
|
3804
3839
|
/** Active conversation */
|
|
3805
3840
|
readonly activeConversation: _angular_core.Signal<_acorex_components_conversation.AXConversation>;
|
|
3841
|
+
/** Whether the active conversation allows message reactions. */
|
|
3842
|
+
readonly reactionsEnabled: _angular_core.Signal<boolean>;
|
|
3806
3843
|
/** Messages */
|
|
3807
3844
|
readonly messages: _angular_core.Signal<AXConversationMessage[]>;
|
|
3808
3845
|
/** Message action event */
|
|
@@ -3875,6 +3912,8 @@ declare class AXConversationMessageListComponent implements OnDestroy {
|
|
|
3875
3912
|
userIds: string[];
|
|
3876
3913
|
hasReacted: boolean;
|
|
3877
3914
|
}): string;
|
|
3915
|
+
/** Whether reactions can be shown or added for a message in the active conversation. */
|
|
3916
|
+
messageSupportsReactions(message: AXConversationMessage): boolean;
|
|
3878
3917
|
/** Toggle reaction picker */
|
|
3879
3918
|
toggleReactionPicker(message: AXConversationMessage, event: MouseEvent): void;
|
|
3880
3919
|
/** Close reaction picker */
|
|
@@ -4012,7 +4051,6 @@ declare class AXConversationMessageListService {
|
|
|
4012
4051
|
|
|
4013
4052
|
declare class AXConversationSidebarService {
|
|
4014
4053
|
private readonly conversationService;
|
|
4015
|
-
private readonly config;
|
|
4016
4054
|
constructor();
|
|
4017
4055
|
private get registry();
|
|
4018
4056
|
readonly searchQuery: _angular_core.WritableSignal<string>;
|
|
@@ -4022,7 +4060,6 @@ declare class AXConversationSidebarService {
|
|
|
4022
4060
|
readonly loading: _angular_core.Signal<boolean>;
|
|
4023
4061
|
readonly hasMoreConversations: _angular_core.Signal<boolean>;
|
|
4024
4062
|
readonly enabledTabs: _angular_core.Signal<_acorex_components_conversation.AXConversationTab[]>;
|
|
4025
|
-
private filterCache;
|
|
4026
4063
|
readonly filteredConversations: _angular_core.Signal<AXConversation[]>;
|
|
4027
4064
|
/**
|
|
4028
4065
|
* Filter and sort conversations
|
|
@@ -4054,6 +4091,8 @@ declare class AXConversationSidebarComponent implements OnDestroy {
|
|
|
4054
4091
|
private readonly conversationService;
|
|
4055
4092
|
private readonly popupService;
|
|
4056
4093
|
private readonly translation;
|
|
4094
|
+
private readonly ngZone;
|
|
4095
|
+
private readonly cdr;
|
|
4057
4096
|
/** Conversation selected event */
|
|
4058
4097
|
readonly conversationSelected: _angular_core.OutputEmitterRef<AXConversation>;
|
|
4059
4098
|
/** Search debouncing */
|
|
@@ -4124,6 +4163,7 @@ declare class AXConversationNewDialogComponent extends AXBasePageComponent {
|
|
|
4124
4163
|
private readonly _resetWizardWhenSingleEffect;
|
|
4125
4164
|
private readonly _syncPopupTitleEffect;
|
|
4126
4165
|
readonly usersListEmptyTpl: _angular_core.Signal<TemplateRef<unknown>>;
|
|
4166
|
+
readonly usersListLoadingTpl: _angular_core.Signal<TemplateRef<unknown>>;
|
|
4127
4167
|
readonly usersList: _angular_core.Signal<AXListComponent>;
|
|
4128
4168
|
readonly usersListDataSource: AXDataSource<unknown>;
|
|
4129
4169
|
onCancel(): void;
|
|
@@ -4167,19 +4207,12 @@ declare class AXConversationInfiniteScrollDirective {
|
|
|
4167
4207
|
/**
|
|
4168
4208
|
* Conversation feature flags for configurable bundle size.
|
|
4169
4209
|
*/
|
|
4170
|
-
type AXConversationMediaPickerFeature = 'image' | 'video' | 'audio' | 'file' | 'voice' | 'location';
|
|
4171
4210
|
type AXConversationComposerTabFeature = 'emoji' | 'sticker';
|
|
4172
4211
|
interface AXConversationFeatures {
|
|
4173
|
-
/** Enabled composer
|
|
4174
|
-
mediaPickers?: AXConversationMediaPickerFeature[];
|
|
4175
|
-
/** Enabled composer popup tabs; defaults to all when omitted. */
|
|
4212
|
+
/** Enabled built-in composer popup tabs (`emoji`, `sticker`). Defaults to none when omitted. */
|
|
4176
4213
|
composerTabs?: AXConversationComposerTabFeature[];
|
|
4177
4214
|
}
|
|
4178
|
-
declare const AX_ALL_CONVERSATION_MEDIA_PICKERS: readonly AXConversationMediaPickerFeature[];
|
|
4179
|
-
declare const AX_ALL_CONVERSATION_COMPOSER_TABS: readonly AXConversationComposerTabFeature[];
|
|
4180
|
-
declare function resolveConversationMediaPickers(features?: AXConversationFeatures): readonly AXConversationMediaPickerFeature[];
|
|
4181
4215
|
declare function resolveConversationComposerTabs(features?: AXConversationFeatures): readonly AXConversationComposerTabFeature[];
|
|
4182
|
-
declare function isMediaPickerEnabled(picker: AXConversationMediaPickerFeature, features?: AXConversationFeatures): boolean;
|
|
4183
4216
|
declare function isComposerTabEnabled(tab: AXConversationComposerTabFeature, features?: AXConversationFeatures): boolean;
|
|
4184
4217
|
|
|
4185
4218
|
/**
|
|
@@ -4239,9 +4272,10 @@ interface AXConversationConfig {
|
|
|
4239
4272
|
/**
|
|
4240
4273
|
* CSS `background` for the message list (`ax-conversation-message-list` area, all states: loading, empty, messages).
|
|
4241
4274
|
* Use full shorthand, or a bare `https://...` / `/path/to.png` (wrapped as `url(...)` with `center/cover`).
|
|
4242
|
-
*
|
|
4275
|
+
* Pass a string for the same value in both themes, or `{ light, dark }` for theme-specific backgrounds.
|
|
4276
|
+
* Empty string = library default. `transparent` or `none` = flat background.
|
|
4243
4277
|
*/
|
|
4244
|
-
messageListBackground?:
|
|
4278
|
+
messageListBackground?: AXConversationMessageListBackground;
|
|
4245
4279
|
/** Optional feature flags to reduce bundle size per app. */
|
|
4246
4280
|
features?: AXConversationFeatures;
|
|
4247
4281
|
/** Log API calls made by AXConversationService to the console (default: false). */
|
|
@@ -4249,20 +4283,31 @@ interface AXConversationConfig {
|
|
|
4249
4283
|
}
|
|
4250
4284
|
|
|
4251
4285
|
/**
|
|
4286
|
+
|
|
4252
4287
|
* Default Configuration Values
|
|
4288
|
+
|
|
4253
4289
|
* Centralized defaults to avoid magic numbers throughout the codebase
|
|
4290
|
+
|
|
4254
4291
|
*/
|
|
4255
4292
|
|
|
4256
4293
|
/**
|
|
4294
|
+
|
|
4257
4295
|
* Default conversation configuration
|
|
4296
|
+
|
|
4258
4297
|
* All values are explicitly defined here for easy maintenance and documentation
|
|
4298
|
+
|
|
4259
4299
|
*/
|
|
4260
4300
|
declare const AX_DEFAULT_CONVERSATION_CONFIG: Required<AXConversationConfig>;
|
|
4261
4301
|
/**
|
|
4302
|
+
|
|
4262
4303
|
* Helper function to merge user config with defaults
|
|
4304
|
+
|
|
4263
4305
|
* Properly handles array merging to avoid reference issues
|
|
4306
|
+
|
|
4264
4307
|
* @param userConfig - User-provided configuration
|
|
4308
|
+
|
|
4265
4309
|
* @returns Merged configuration with all required fields
|
|
4310
|
+
|
|
4266
4311
|
*/
|
|
4267
4312
|
declare function mergeWithDefaults(userConfig?: Partial<AXConversationConfig>): Required<AXConversationConfig>;
|
|
4268
4313
|
|
|
@@ -4477,6 +4522,8 @@ declare class AXConversationSharedStorage {
|
|
|
4477
4522
|
* Seed initial data if not already seeded
|
|
4478
4523
|
*/
|
|
4479
4524
|
seedIfEmpty(): Promise<void>;
|
|
4525
|
+
/** Wipe in-memory and persisted demo data (used when seed version changes). */
|
|
4526
|
+
private clearAllData;
|
|
4480
4527
|
/** @internal Used by demo seed module */
|
|
4481
4528
|
markSeeded(): void;
|
|
4482
4529
|
/** @internal Starts demo presence and message simulations */
|
|
@@ -4500,6 +4547,11 @@ declare class AXConversationSharedStorage {
|
|
|
4500
4547
|
}
|
|
4501
4548
|
declare const axConversationSharedStorage: AXConversationSharedStorage;
|
|
4502
4549
|
|
|
4550
|
+
declare const AX_CONVERSATION_DEMO_CONVERSATION_IDS: {
|
|
4551
|
+
readonly private: "conv-demo-private";
|
|
4552
|
+
readonly group: "conv-demo-group";
|
|
4553
|
+
readonly channel: "conv-demo-channel";
|
|
4554
|
+
};
|
|
4503
4555
|
declare function seedSharedStorageInitialData(storage: AXConversationSharedStorage): Promise<void>;
|
|
4504
4556
|
|
|
4505
4557
|
/**
|
|
@@ -4537,13 +4589,12 @@ declare function paginateChatOldestFirst<T extends {
|
|
|
4537
4589
|
}>(sortedOldestFirst: T[], pagination: AXConversationPagination): AXConversationPaginatedResult<T>;
|
|
4538
4590
|
|
|
4539
4591
|
/**
|
|
4540
|
-
*
|
|
4592
|
+
* Pagination demo data — disabled for the minimal 3-chat showcase seed.
|
|
4593
|
+
* Kept as a no-op so existing imports remain valid.
|
|
4541
4594
|
*/
|
|
4542
|
-
/**
|
|
4595
|
+
/** @deprecated Pagination demo chat removed from default seed. */
|
|
4543
4596
|
declare const AX_MESSAGE_PAGINATION_CONVERSATION_ID = "conv-pag-msgs";
|
|
4544
|
-
/**
|
|
4545
|
-
* Append demo chats/messages when the DB is too small for default page sizes (30 / 50).
|
|
4546
|
-
*/
|
|
4597
|
+
/** No-op: showcase uses a fixed 3-conversation seed (private, group, channel). */
|
|
4547
4598
|
declare function ensurePaginationDemoData(): Promise<void>;
|
|
4548
4599
|
|
|
4549
4600
|
/**
|
|
@@ -4566,6 +4617,7 @@ declare function getSortedConversationsForInbox(filters?: AXConversationFilters)
|
|
|
4566
4617
|
declare function normalizeAllConversationMessageIndexes(): void;
|
|
4567
4618
|
|
|
4568
4619
|
declare class AXConversationIndexedDbUserApi extends AXConversationUserApi {
|
|
4620
|
+
private readonly API_DELAY_MS;
|
|
4569
4621
|
getCurrentUser(): Promise<AXConversationParticipant>;
|
|
4570
4622
|
updateProfile(updates: AXConversationUserProfileUpdate): Promise<AXConversationParticipant>;
|
|
4571
4623
|
uploadAvatar(file: File): Promise<string>;
|
|
@@ -4581,6 +4633,9 @@ declare class AXConversationIndexedDbUserApi extends AXConversationUserApi {
|
|
|
4581
4633
|
reportUser(_userId: string, _reason: AXConversationBlockReportReason): Promise<void>;
|
|
4582
4634
|
getUserSettings(): Promise<Record<string, unknown>>;
|
|
4583
4635
|
updateUserSettings(_settings: Record<string, unknown>): Promise<void>;
|
|
4636
|
+
private getCurrentUserWithoutDelay;
|
|
4637
|
+
private fetchUsers;
|
|
4638
|
+
private delay;
|
|
4584
4639
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXConversationIndexedDbUserApi, never>;
|
|
4585
4640
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXConversationIndexedDbUserApi>;
|
|
4586
4641
|
}
|
|
@@ -4961,6 +5016,8 @@ declare class AXConversationAudioPickerComponent implements OnDestroy {
|
|
|
4961
5016
|
|
|
4962
5017
|
declare const AX_CONVERSATION_COMPOSER_EMOJI_TAB: AXConversationComposerTab;
|
|
4963
5018
|
declare const AX_CONVERSATION_COMPOSER_STICKER_TAB: AXConversationComposerTab;
|
|
5019
|
+
/** Built-in composer popup tabs keyed by {@link AXConversationComposerTabFeature}. */
|
|
5020
|
+
declare const AX_CONVERSATION_BUILTIN_COMPOSER_TABS: Record<AXConversationComposerTabFeature, AXConversationComposerTab>;
|
|
4964
5021
|
|
|
4965
5022
|
interface AXConversationEmoji {
|
|
4966
5023
|
char: string;
|
|
@@ -5412,13 +5469,15 @@ declare const AX_CONVERSATION_COMPOSER_LOCATION_ACTION: AXConversationComposerAc
|
|
|
5412
5469
|
|
|
5413
5470
|
/** Ensures built-in conversation catalogs exist on the root file-type registry. */
|
|
5414
5471
|
declare const AX_CONVERSATION_FILE_TYPES_READY: InjectionToken<boolean>;
|
|
5415
|
-
/** Registers validation rules and lazy conversation file-type catalogs for
|
|
5416
|
-
declare function provideConversationComposerFileTypes(
|
|
5472
|
+
/** Registers validation rules and lazy conversation file-type catalogs for composer actions. */
|
|
5473
|
+
declare function provideConversationComposerFileTypes(): Provider[];
|
|
5417
5474
|
|
|
5418
|
-
/**
|
|
5475
|
+
/**
|
|
5476
|
+
* Lazy-loads conversation file catalogs for the root file-type registry.
|
|
5477
|
+
* Must not inject {@link AXConversationComposerActionRegistry} — that registry
|
|
5478
|
+
* depends on {@link AXFileTypeRegistryService}, which would create a circular DI cycle.
|
|
5479
|
+
*/
|
|
5419
5480
|
declare class AXConversationComposerFileTypesProvider extends AXFileTypeInfoProvider {
|
|
5420
|
-
private readonly config;
|
|
5421
|
-
private cache;
|
|
5422
5481
|
items(): Promise<AXFileType[]>;
|
|
5423
5482
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXConversationComposerFileTypesProvider, never>;
|
|
5424
5483
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXConversationComposerFileTypesProvider>;
|
|
@@ -5490,6 +5549,7 @@ interface AXInfoPanelQuickAction {
|
|
|
5490
5549
|
declare class AXConversationInfoPanelComponent extends AXClosableComponent implements OnInit, OnDestroy {
|
|
5491
5550
|
private readonly toastService;
|
|
5492
5551
|
readonly translation: AXTranslationService;
|
|
5552
|
+
private readonly platform;
|
|
5493
5553
|
private readonly injectedConversationService;
|
|
5494
5554
|
readonly onClosed: _angular_core.OutputEmitterRef<AXComponentCloseEvent>;
|
|
5495
5555
|
conversation: AXConversation;
|
|
@@ -5513,11 +5573,11 @@ declare class AXConversationInfoPanelComponent extends AXClosableComponent imple
|
|
|
5513
5573
|
editAvatar: string;
|
|
5514
5574
|
private groupTitleSaveTimer;
|
|
5515
5575
|
private groupDetailsSaveInFlight;
|
|
5516
|
-
readonly backgroundPresets:
|
|
5517
|
-
id: string;
|
|
5576
|
+
readonly backgroundPresets: {
|
|
5518
5577
|
label: string;
|
|
5519
|
-
|
|
5520
|
-
|
|
5578
|
+
id: string;
|
|
5579
|
+
value: AXConversationMessageListThemeBackground;
|
|
5580
|
+
}[];
|
|
5521
5581
|
readonly heroSubtitle: _angular_core.Signal<string>;
|
|
5522
5582
|
readonly liveConversation: _angular_core.Signal<AXConversation>;
|
|
5523
5583
|
readonly isConversationMuted: _angular_core.Signal<boolean>;
|
|
@@ -5550,9 +5610,14 @@ declare class AXConversationInfoPanelComponent extends AXClosableComponent imple
|
|
|
5550
5610
|
onGroupTitleChange(value: string): void;
|
|
5551
5611
|
onGroupAvatarChange(value: string): void;
|
|
5552
5612
|
private persistGroupDetails;
|
|
5553
|
-
isBackgroundSelected(
|
|
5554
|
-
|
|
5613
|
+
isBackgroundSelected(preset: {
|
|
5614
|
+
id: string;
|
|
5615
|
+
value: AXConversationMessageListThemeBackground;
|
|
5616
|
+
}): boolean;
|
|
5617
|
+
presetBackgroundPreview(preset: AXConversationMessageListThemeBackground): string;
|
|
5618
|
+
applyMessageListBackground(value: AXConversationMessageListBackground): Promise<void>;
|
|
5555
5619
|
getBackgroundAriaLabel(label: string): string;
|
|
5620
|
+
private translateBackgroundPresetLabel;
|
|
5556
5621
|
ngOnDestroy(): void;
|
|
5557
5622
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXConversationInfoPanelComponent, never>;
|
|
5558
5623
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXConversationInfoPanelComponent, "ax-conversation-info-panel", never, {}, { "onClosed": "onClosed"; }, never, never, true, never>;
|
|
@@ -6256,8 +6321,35 @@ declare function shouldUseUserAvatarForConversation(conversation: AXConversation
|
|
|
6256
6321
|
declare function resolveUserAvatarDisplay(userId: string, conversation: AXConversation | undefined, message?: AXConversationMessage): AXConversationAvatarDisplay;
|
|
6257
6322
|
declare function resolveConversationAvatarDisplay(conversation: AXConversation, currentUserId?: string): AXConversationAvatarDisplay;
|
|
6258
6323
|
|
|
6324
|
+
interface AXConversationMessageListBackgroundPreset {
|
|
6325
|
+
id: string;
|
|
6326
|
+
value: AXConversationMessageListThemeBackground;
|
|
6327
|
+
}
|
|
6328
|
+
/** Library default when no per-conversation or global background is set. */
|
|
6329
|
+
declare const AX_CONVERSATION_DEFAULT_MESSAGE_LIST_THEME_BACKGROUND: AXConversationMessageListThemeBackground;
|
|
6330
|
+
/** Predefined chat-area backgrounds for the info panel (light + dark variants). */
|
|
6331
|
+
declare const AX_CONVERSATION_MESSAGE_LIST_BACKGROUND_PRESETS: AXConversationMessageListBackgroundPreset[];
|
|
6332
|
+
declare const AX_CONVERSATION_DEFAULT_MESSAGE_LIST_BACKGROUND_PRESET_ID = "solid-default";
|
|
6333
|
+
|
|
6334
|
+
/** Subtle chat-area wash when `messageListBackground` is not set (theme-aware). */
|
|
6335
|
+
declare const AX_CONVERSATION_DEFAULT_MESSAGE_LIST_BACKGROUND: string;
|
|
6336
|
+
declare function isMessageListThemeBackground(value: unknown): value is AXConversationMessageListThemeBackground;
|
|
6337
|
+
/** Pick the raw CSS string for the active theme; `undefined` when unset. */
|
|
6338
|
+
declare function resolveMessageListBackgroundRaw(value: AXConversationMessageListBackground | undefined, isDark: boolean): string | undefined;
|
|
6339
|
+
/** Turn bare `https://...` or `/path` into valid CSS `background` for images. */
|
|
6340
|
+
declare function normalizeMessageListBackgroundValue(raw: string): string;
|
|
6341
|
+
/** Resolve config/metadata background for the active theme, with library default fallback. */
|
|
6342
|
+
declare function resolveMessageListBackgroundStyle(value: AXConversationMessageListBackground | undefined, isDark: boolean): string;
|
|
6343
|
+
/** Whether two stored backgrounds represent the same preset (supports legacy string values). */
|
|
6344
|
+
declare function isSameMessageListBackground(a: AXConversationMessageListBackground | undefined, b: AXConversationMessageListThemeBackground, isDark: boolean): boolean;
|
|
6345
|
+
|
|
6259
6346
|
/** True when the stored title is a placeholder, not a user-defined name. */
|
|
6260
6347
|
declare function isGenericPrivateConversationTitle(title: string | undefined): boolean;
|
|
6348
|
+
/**
|
|
6349
|
+
* Find an existing private 1:1 conversation between the current user and a peer.
|
|
6350
|
+
* Matches conversations with exactly those two participants.
|
|
6351
|
+
*/
|
|
6352
|
+
declare function findExistingPrivateConversation(conversations: AXConversation[], currentUserId: string, peerUserId: string): AXConversation | undefined;
|
|
6261
6353
|
/** Other participant in a private 1v1 chat (excludes the current viewer). */
|
|
6262
6354
|
declare function resolvePrivatePeerParticipant(conversation: AXConversation, currentUserId?: string): AXConversationParticipant | undefined;
|
|
6263
6355
|
/**
|
|
@@ -6270,6 +6362,8 @@ declare function resolveConversationTitleForViewer(conversation: AXConversation,
|
|
|
6270
6362
|
* Does not mutate the source object.
|
|
6271
6363
|
*/
|
|
6272
6364
|
declare function resolveConversationForViewer(conversation: AXConversation, currentUserId?: string): AXConversation;
|
|
6365
|
+
/** Whether message reactions are enabled for a conversation. Defaults to `true` when omitted. */
|
|
6366
|
+
declare function isConversationReactionsEnabled(conversation?: AXConversation | null): boolean;
|
|
6273
6367
|
|
|
6274
6368
|
/** Resolves typed `profile`, falling back to legacy `metadata.profile`. */
|
|
6275
6369
|
declare function resolveParticipantProfile(participant?: AXConversationParticipant): AXConversationUserProfile;
|
|
@@ -6865,5 +6959,5 @@ declare function getErrorMessage(code: string, params?: Record<string, string |
|
|
|
6865
6959
|
*/
|
|
6866
6960
|
type AXConversationErrorCode = typeof AX_CONVERSATION_MESSAGE_ERRORS[keyof typeof AX_CONVERSATION_MESSAGE_ERRORS]['code'] | typeof AX_CONVERSATION_FILE_ERRORS[keyof typeof AX_CONVERSATION_FILE_ERRORS]['code'] | typeof AX_CONVERSATION_USER_ERRORS[keyof typeof AX_CONVERSATION_USER_ERRORS]['code'] | typeof AX_CONVERSATION_ERRORS[keyof typeof AX_CONVERSATION_ERRORS]['code'] | typeof AX_CONVERSATION_CONNECTION_ERRORS[keyof typeof AX_CONVERSATION_CONNECTION_ERRORS]['code'] | typeof AX_CONVERSATION_LOCATION_ERRORS[keyof typeof AX_CONVERSATION_LOCATION_ERRORS]['code'] | typeof AX_CONVERSATION_URL_ERRORS[keyof typeof AX_CONVERSATION_URL_ERRORS]['code'];
|
|
6867
6961
|
|
|
6868
|
-
export { AXConversationAiResponderService, AXConversationApi, AXConversationApiLoggerService, AXConversationAudioAttachmentComponent, AXConversationAudioFileTypeProvider, AXConversationAudioPickerComponent, AXConversationAudioRendererComponent, AXConversationBaseRegistry, AXConversationComposerActionRegistry, AXConversationComposerComponent, AXConversationComposerFileTypesProvider, AXConversationComposerPopupComponent, AXConversationComposerService, AXConversationComposerTabRegistry, AXConversationContainerComponent, AXConversationContainerDirective, AXConversationDateUtilsService, AXConversationEmojiTabComponent, AXConversationErrorHandlerService, AXConversationFallbackRendererComponent, AXConversationFileAttachmentComponent, AXConversationFileFileTypeProvider, AXConversationFilePickerComponent, AXConversationFileRendererComponent, AXConversationForwardMessageDialogComponent, AXConversationImageAttachmentComponent, AXConversationImageFileTypeProvider, AXConversationImagePickerComponent, AXConversationImageRendererComponent, AXConversationIndexedDbConversationApi, AXConversationIndexedDbMessageAiApi, AXConversationIndexedDbMessageApi, AXConversationIndexedDbRealtimeApi, AXConversationIndexedDbStorage, AXConversationIndexedDbStores, AXConversationIndexedDbUserApi, AXConversationInfiniteScrollDirective, AXConversationInfoBarActionRegistry, AXConversationInfoBarComponent, AXConversationInfoBarSearchComponent, AXConversationInfoBarService, AXConversationInfoMediaViewComponent, AXConversationInfoPanelComponent, AXConversationItemActionRegistry, AXConversationLocationPickerComponent, AXConversationLocationRendererComponent, AXConversationMediaPlaybackInfoBarBannerComponent, AXConversationMessageActionRegistry, AXConversationMessageApi, AXConversationMessageListComponent, AXConversationMessageListNoActiveDefaultComponent, AXConversationMessageListService, AXConversationMessageRendererCopyHostComponent, AXConversationMessageRendererRegistry, AXConversationMessageRendererStateComponent, AXConversationMessageUtilsService, AXConversationModule, AXConversationNewDialogComponent, AXConversationPickerCaptionComponent, AXConversationPickerEmptyComponent, AXConversationPickerFooterComponent, AXConversationPickerHeaderComponent, AXConversationPickerShellComponent, AXConversationPickerToolbarComponent, AXConversationRealtimeApi, AXConversationRegistryService, AXConversationService, AXConversationSharedStorage, AXConversationSidebarComponent, AXConversationSidebarService, AXConversationStickerRendererComponent, AXConversationStickerTabComponent, AXConversationSystemRendererComponent, AXConversationTabRegistry, AXConversationTextRendererComponent, AXConversationUserApi, AXConversationVideoAttachmentComponent, AXConversationVideoFileTypeProvider, AXConversationVideoPickerComponent, AXConversationVideoRendererComponent, AXConversationVoiceFileTypeProvider, AXConversationVoiceRecorderComponent, AXConversationVoiceRendererComponent,
|
|
6869
|
-
export type { AXConversation, AXConversationAiResponderConfig, AXConversationApiError, AXConversationApiLogEntry, AXConversationApiName, AXConversationAudioMediaItem, AXConversationAudioPayload, AXConversationAvatarComponents, AXConversationAvatarDisplay, AXConversationAvatarKind, AXConversationBlockReportReason, AXConversationCallEvent, AXConversationChatCursorKind, AXConversationCleanupPickerUploadsOptions, AXConversationComposerAction, AXConversationComposerActionComponent, AXConversationComposerActionContext, AXConversationComposerActiveComponent, AXConversationComposerPickerUploadItem, AXConversationComposerTab, AXConversationComposerTabFeature, AXConversationConfig, AXConversationConnectionEvent, AXConversationConnectionOptions, AXConversationConnectionStatus, AXConversationConversationAvatarComponent, AXConversationCreateData, AXConversationDeleteMessageCommand, AXConversationDropdownMenuItem, AXConversationEditMessageCommand, AXConversationError, AXConversationErrorCode, AXConversationErrorHandlerConfig, AXConversationErrorMessage, AXConversationErrorSeverity, AXConversationFeatures, AXConversationFileMediaItem, AXConversationFilePayload, AXConversationFilter, AXConversationFilters, AXConversationGroupedReaction, AXConversationImageMediaItem, AXConversationImagePayload, AXConversationIndexedDbMediaRecord, AXConversationInfoBarAction, AXConversationInfoBarActionComponent, AXConversationInfoBarActionContext, AXConversationInfoBarActiveBanner, AXConversationInfoBarActiveComponent, AXConversationInfoProfileField, AXConversationItemAction, AXConversationItemActionContext, AXConversationLink, AXConversationLinkPreview, AXConversationLoadMessagesResult, AXConversationLocationPayload, AXConversationMediaCategory, AXConversationMediaCategoryId, AXConversationMediaGalleryTile, AXConversationMediaItemFields, AXConversationMediaPageResult,
|
|
6962
|
+
export { AXConversationAiResponderService, AXConversationApi, AXConversationApiLoggerService, AXConversationAudioAttachmentComponent, AXConversationAudioFileTypeProvider, AXConversationAudioPickerComponent, AXConversationAudioRendererComponent, AXConversationBaseRegistry, AXConversationComposerActionRegistry, AXConversationComposerComponent, AXConversationComposerFileTypesProvider, AXConversationComposerPopupComponent, AXConversationComposerService, AXConversationComposerTabRegistry, AXConversationContainerComponent, AXConversationContainerDirective, AXConversationDateUtilsService, AXConversationEmojiTabComponent, AXConversationErrorHandlerService, AXConversationFallbackRendererComponent, AXConversationFileAttachmentComponent, AXConversationFileFileTypeProvider, AXConversationFilePickerComponent, AXConversationFileRendererComponent, AXConversationForwardMessageDialogComponent, AXConversationImageAttachmentComponent, AXConversationImageFileTypeProvider, AXConversationImagePickerComponent, AXConversationImageRendererComponent, AXConversationIndexedDbConversationApi, AXConversationIndexedDbMessageAiApi, AXConversationIndexedDbMessageApi, AXConversationIndexedDbRealtimeApi, AXConversationIndexedDbStorage, AXConversationIndexedDbStores, AXConversationIndexedDbUserApi, AXConversationInfiniteScrollDirective, AXConversationInfoBarActionRegistry, AXConversationInfoBarComponent, AXConversationInfoBarSearchComponent, AXConversationInfoBarService, AXConversationInfoMediaViewComponent, AXConversationInfoPanelComponent, AXConversationItemActionRegistry, AXConversationLocationPickerComponent, AXConversationLocationRendererComponent, AXConversationMediaPlaybackInfoBarBannerComponent, AXConversationMessageActionRegistry, AXConversationMessageApi, AXConversationMessageListComponent, AXConversationMessageListNoActiveDefaultComponent, AXConversationMessageListService, AXConversationMessageRendererCopyHostComponent, AXConversationMessageRendererRegistry, AXConversationMessageRendererStateComponent, AXConversationMessageUtilsService, AXConversationModule, AXConversationNewDialogComponent, AXConversationPickerCaptionComponent, AXConversationPickerEmptyComponent, AXConversationPickerFooterComponent, AXConversationPickerHeaderComponent, AXConversationPickerShellComponent, AXConversationPickerToolbarComponent, AXConversationRealtimeApi, AXConversationRegistryService, AXConversationService, AXConversationSharedStorage, AXConversationSidebarComponent, AXConversationSidebarService, AXConversationStickerRendererComponent, AXConversationStickerTabComponent, AXConversationSystemRendererComponent, AXConversationTabRegistry, AXConversationTextRendererComponent, AXConversationUserApi, AXConversationVideoAttachmentComponent, AXConversationVideoFileTypeProvider, AXConversationVideoPickerComponent, AXConversationVideoRendererComponent, AXConversationVoiceFileTypeProvider, AXConversationVoiceRecorderComponent, AXConversationVoiceRendererComponent, AX_CONVERSATION_AI_API_KEY, AX_CONVERSATION_AUDIO_CATALOG, AX_CONVERSATION_AUDIO_PRESENTATION, AX_CONVERSATION_AUDIO_RENDERER, AX_CONVERSATION_BUILTIN_COMPOSER_TABS, 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_CONFIG, AX_CONVERSATION_CONNECTION_ERRORS, AX_CONVERSATION_CONVERSATION_AVATAR_COMPONENT, AX_CONVERSATION_CURSOR_PREFIX, AX_CONVERSATION_DEFAULT_COMPOSER_ACTIONS, AX_CONVERSATION_DEFAULT_COMPOSER_TABS, AX_CONVERSATION_DEFAULT_CONVERSATION_ITEM_ACTIONS, AX_CONVERSATION_DEFAULT_CONVERSATION_TABS, AX_CONVERSATION_DEFAULT_INFO_BAR_ACTIONS, AX_CONVERSATION_DEFAULT_MESSAGE_ACTIONS, AX_CONVERSATION_DEFAULT_MESSAGE_LIST_BACKGROUND, AX_CONVERSATION_DEFAULT_MESSAGE_LIST_BACKGROUND_PRESET_ID, AX_CONVERSATION_DEFAULT_MESSAGE_LIST_THEME_BACKGROUND, AX_CONVERSATION_DEFAULT_MESSAGE_RENDERERS, AX_CONVERSATION_DEMO_CONVERSATION_IDS, AX_CONVERSATION_ERRORS, AX_CONVERSATION_ERROR_HANDLER_CONFIG, AX_CONVERSATION_ERROR_MESSAGES, AX_CONVERSATION_FALLBACK_RENDERER, AX_CONVERSATION_FILE_CATALOG, AX_CONVERSATION_FILE_ERRORS, AX_CONVERSATION_FILE_PRESENTATION, AX_CONVERSATION_FILE_RENDERER, AX_CONVERSATION_FILE_TYPES_READY, AX_CONVERSATION_IMAGE_CATALOG, AX_CONVERSATION_IMAGE_PRESENTATION, 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_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_ERRORS, AX_CONVERSATION_LOCATION_RENDERER, AX_CONVERSATION_MESSAGE_CURSOR_PREFIX, AX_CONVERSATION_MESSAGE_DELETE_ACTION, AX_CONVERSATION_MESSAGE_EDIT_ACTION, AX_CONVERSATION_MESSAGE_ERRORS, AX_CONVERSATION_MESSAGE_FORWARD_ACTION, AX_CONVERSATION_MESSAGE_LIST_BACKGROUND_PRESETS, AX_CONVERSATION_MESSAGE_REPLY_ACTION, AX_CONVERSATION_MESSAGE_TYPE_FILE_TYPE, AX_CONVERSATION_REGISTRY_CONFIG, AX_CONVERSATION_STICKER_API_KEY, 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_URL_ERRORS, AX_CONVERSATION_USER_AVATAR_COMPONENT, AX_CONVERSATION_USER_ERRORS, AX_CONVERSATION_VIDEO_CATALOG, AX_CONVERSATION_VIDEO_PRESENTATION, AX_CONVERSATION_VIDEO_RENDERER, AX_CONVERSATION_VOICE_CATALOG, AX_CONVERSATION_VOICE_PRESENTATION, AX_CONVERSATION_VOICE_RENDERER, AX_DEFAULT_CONVERSATION_CONFIG, AX_MESSAGE_PAGINATION_CONVERSATION_ID, abortPickerUploads, applyAudioLocalPreview, applyConversationFilters, applyFileLocalPreview, applyLocalPreview, applyVideoLocalPreview, applyVoiceLocalPreview, audioItemFromUpload, axConversationIndexedDbStorage, axConversationSharedStorage, bindMediaRendererContentState, buildMediaGalleryTiles, canShowRendererContentError, cleanupPickerUploads, conversationAudioUtilities, conversationFileUtilities, conversationImageUtilities, conversationVideoUtilities, conversationVoiceUtilities, copyWithFileTypeFallback, createConversationAudioFileType, createConversationFileFileType, createConversationImageFileType, createConversationVideoFileType, createConversationVoiceFileType, createLocalPreviewUrl, createObjectUrl, createPickerDragHandlers, createResolvedMediaUrlSignal, deleteUploadedPickerMedia, dismissComposerPickerHost, encodeConversationCursor, encodeMessageCursor, ensurePaginationDemoData, fetchConversationMediaMessages, fetchConversationMediaPage, fileItemFromUpload, filterMessagesByMediaCategory, filterSupplementalInfoPanelMessages, findExistingPrivateConversation, formatDuration, formatErrorMessage, formatFileByteSize, formatFileSize, formatMediaDuration, formatPickerValidationMessage, getConversationLastActivity, getConversationMediaCategories, getConversationMessagesNewestFirst, getConversationProfileFields, getErrorMessage, getMessageAudioItems, getMessageVideoItems, getPickerCancelUploadLabel, getPrivatePeerParticipant, getSortedConversationsForInbox, inferFileExtensionHintFromMessage, isAttachmentListCategory, isComposerTabEnabled, isConversationReactionsEnabled, isGenericPrivateConversationTitle, isGridMediaCategory, isMessageDeliveryPending, isMessageListThemeBackground, isNonPersistableMediaUrl, isPickerItemReadyToSend, isSameMessageListBackground, isUploadAborted, limitFilesToCapacity, mediaCopyText, mergeAudioUploadResult, mergeFileUploadResult, mergeInfoPanelMessages, mergeUploadResult, mergeVideoUploadResult, mergeVoiceUploadResult, mergeWithDefaults, messageContainsLink, normalizeAllConversationMessageIndexes, normalizeAudioPayload, normalizeFilePayload, normalizeImagePayload, normalizeMessageListBackgroundValue, normalizeMessagePayload, normalizeMessagePayloadAsync, normalizeVideoPayload, notifyMaxFilesCapacityExceeded, notifyPickerValidationErrors, openWithFileType, paginateChatNewestFirst, paginateChatOldestFirst, parseChatCursor, pickDisplayMediaUrl, pickerItemToMediaReference, pickerItemToUploadResult, provideConversation, provideConversationComposerFileTypes, provideConversationFileCatalog, registerChatMessage, reportMediaLoadError, resolveComposerMaxFiles, resolveConversationAvatarDisplay, resolveConversationComposerTabs, resolveConversationForViewer, resolveConversationMessageFileType, resolveConversationTitleForViewer, resolveGalleryImageUrl, resolveImageDisplayUrl, resolveMessageListBackgroundRaw, resolveMessageListBackgroundStyle, resolveParticipantProfile, resolvePersistableMediaUrl, resolvePersistedThumbnailUrl, resolvePrivatePeerParticipant, resolvePrivatePeerUserId, resolveUserAvatarDisplay, resolveVideoThumbnailUrl, revokeObjectUrl, revokePickerBlobPreviews, sanitizeInput, seedPickerInitialFiles, seedSharedStorageInitialData, shouldUseUserAvatarForConversation, sortConversationMessageIds, syncPlaybackInfoBarBanner, toUploaderReference as toMediaItemUploaderReference, toUploaderReference$1 as toUploaderReference, unregisterChatMessage, uploadPickerFile, validateConversationId, validateEmail, validateLatitude, validateLongitude, validateMessagePayload, validateMessageText, validateMessageType, validateUrl, validateUserId, validateUserIds, videoItemFromUpload };
|
|
6963
|
+
export type { AXConversation, AXConversationAiResponderConfig, AXConversationApiError, AXConversationApiLogEntry, AXConversationApiName, AXConversationAudioMediaItem, AXConversationAudioPayload, AXConversationAvatarComponents, AXConversationAvatarDisplay, AXConversationAvatarKind, AXConversationBlockReportReason, AXConversationCallEvent, AXConversationChatCursorKind, AXConversationCleanupPickerUploadsOptions, AXConversationComposerAction, AXConversationComposerActionComponent, AXConversationComposerActionContext, AXConversationComposerActiveComponent, AXConversationComposerPickerUploadItem, AXConversationComposerTab, AXConversationComposerTabFeature, AXConversationConfig, AXConversationConnectionEvent, AXConversationConnectionOptions, AXConversationConnectionStatus, AXConversationConversationAvatarComponent, AXConversationCreateData, AXConversationDeleteMessageCommand, AXConversationDropdownMenuItem, AXConversationEditMessageCommand, AXConversationError, AXConversationErrorCode, AXConversationErrorHandlerConfig, AXConversationErrorMessage, AXConversationErrorSeverity, AXConversationFeatures, AXConversationFileMediaItem, AXConversationFilePayload, AXConversationFilter, AXConversationFilters, AXConversationGroupedReaction, AXConversationImageMediaItem, AXConversationImagePayload, AXConversationIndexedDbMediaRecord, AXConversationInfoBarAction, AXConversationInfoBarActionComponent, AXConversationInfoBarActionContext, AXConversationInfoBarActiveBanner, AXConversationInfoBarActiveComponent, AXConversationInfoProfileField, AXConversationItemAction, AXConversationItemActionContext, AXConversationLink, AXConversationLinkPreview, AXConversationLoadMessagesResult, AXConversationLocationPayload, AXConversationMediaCategory, AXConversationMediaCategoryId, AXConversationMediaGalleryTile, AXConversationMediaItemFields, AXConversationMediaPageResult, AXConversationMention, AXConversationMessage, AXConversationMessageAction, AXConversationMessageActionContext, AXConversationMessageForwardData, AXConversationMessageInfoBarBannerComponent, AXConversationMessageListBackground, AXConversationMessageListBackgroundPreset, AXConversationMessageListEmptyComponent, AXConversationMessageListThemeBackground, AXConversationMessagePayload, AXConversationMessageRenderer, AXConversationMessageRendererCapabilities, AXConversationMessageRendererComponent, AXConversationMessageRendererContentState, AXConversationMessageRendererState, AXConversationMessageSearchFilters, AXConversationMessageStatus, AXConversationMessageType, AXConversationMetadata, AXConversationNotificationEvent, AXConversationOptions, AXConversationPaginatedResult, AXConversationPagination, AXConversationPaginationState, AXConversationParsedChatCursor, AXConversationParticipant, AXConversationParticipantRole, AXConversationParticipantStatus, AXConversationParticipantUpdate, AXConversationPinnedMessage, AXConversationPlaybackBannerInputs, AXConversationPollOption, AXConversationPollPayload, AXConversationPresenceStatus, AXConversationPresenceUpdate, AXConversationReaction, AXConversationReadReceipt, AXConversationRegistryConfiguration, AXConversationRegistryItem, AXConversationSendMessageCommand, AXConversationSendMessageOptions, AXConversationSendMessageUploadSource, AXConversationSettings, AXConversationSettingsUpdate, AXConversationSort, AXConversationStatus, AXConversationStickerPayload, AXConversationSystemPayload, AXConversationTab, AXConversationTextFormat, AXConversationTextPayload, AXConversationType, AXConversationTypingIndicator, AXConversationUpdateData, AXConversationUploadOptions, AXConversationUploaderFilePreview, AXConversationUploaderReference, AXConversationUploaderResult, AXConversationUserAvatarComponent, AXConversationUserProfile, AXConversationUserProfileUpdate, AXConversationUserRole, AXConversationUserSearchFilters, AXConversationValidationResult, AXConversationVideoMediaItem, AXConversationVideoPayload, AXConversationVoicePayload };
|