@uzum-tech/ui 2.3.0 → 2.3.2
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/dist/index.js +564 -499
- package/dist/index.mjs +564 -499
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/chat/src/Chat.d.ts +1074 -0
- package/es/chat/src/ChatListItems.d.ts +360 -0
- package/es/chat/src/ChatMainArea.d.ts +360 -0
- package/es/chat/src/ChatMainArea.mjs +1 -0
- package/es/chat/src/ChatMessages.d.ts +360 -0
- package/es/chat/src/ChatMessages.mjs +30 -3
- package/es/chat/src/ChatParts/Sidebar.d.ts +78 -0
- package/es/chat/src/interface.d.ts +1 -0
- package/es/chat/styles/dark.d.ts +27 -0
- package/es/chat/styles/dark.mjs +2 -0
- package/es/chat/styles/light.d.ts +27 -0
- package/es/chat/styles/light.mjs +2 -0
- package/es/components.d.ts +1840 -7
- package/es/image/src/ImagePreview.d.ts +1 -0
- package/es/image/src/ImagePreview.mjs +7 -35
- package/es/image/src/public-types.d.ts +4 -4
- package/es/message-bubble/src/MessageBubble.mjs +16 -5
- package/es/message-bubble/src/interface.d.ts +2 -0
- package/es/message-bubble/src/styles/index.cssr.mjs +5 -7
- package/es/upload/index.d.ts +2 -1
- package/es/upload/index.mjs +2 -1
- package/es/upload/src/Upload.d.ts +73 -1007
- package/es/upload/src/Upload.mjs +43 -124
- package/es/upload/src/UploadFile.d.ts +1 -1
- package/es/upload/src/UploadFile.mjs +8 -2
- package/es/upload/src/UploadFileList.mjs +17 -2
- package/es/upload/src/UploadProgress.d.ts +3 -2
- package/es/upload/src/interface.d.ts +1086 -92
- package/es/upload/src/interface.mjs +117 -1
- package/es/upload/src/public-types.d.ts +17 -2
- package/es/upload/src/useUploadActionsRender.d.ts +2 -27
- package/es/upload/src/useUploadActionsRender.mjs +2 -2
- package/es/upload/src/useUploadInternals.d.ts +2 -25
- package/es/upload/src/utils.d.ts +2 -0
- package/es/upload/src/utils.mjs +7 -0
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/chat/src/Chat.d.ts +1074 -0
- package/lib/chat/src/ChatListItems.d.ts +360 -0
- package/lib/chat/src/ChatMainArea.d.ts +360 -0
- package/lib/chat/src/ChatMainArea.js +1 -0
- package/lib/chat/src/ChatMessages.d.ts +360 -0
- package/lib/chat/src/ChatMessages.js +10 -3
- package/lib/chat/src/ChatParts/Sidebar.d.ts +78 -0
- package/lib/chat/src/interface.d.ts +1 -0
- package/lib/chat/styles/dark.d.ts +27 -0
- package/lib/chat/styles/dark.js +6 -4
- package/lib/chat/styles/light.d.ts +27 -0
- package/lib/chat/styles/light.js +6 -4
- package/lib/components.d.ts +1840 -7
- package/lib/image/src/ImagePreview.d.ts +1 -0
- package/lib/image/src/ImagePreview.js +3 -19
- package/lib/image/src/public-types.d.ts +4 -4
- package/lib/message-bubble/src/MessageBubble.js +15 -5
- package/lib/message-bubble/src/interface.d.ts +2 -0
- package/lib/message-bubble/src/styles/index.cssr.js +5 -7
- package/lib/upload/index.d.ts +2 -1
- package/lib/upload/index.js +2 -1
- package/lib/upload/src/Upload.d.ts +73 -1007
- package/lib/upload/src/Upload.js +40 -68
- package/lib/upload/src/UploadFile.d.ts +1 -1
- package/lib/upload/src/UploadFile.js +12 -4
- package/lib/upload/src/UploadFileList.js +8 -1
- package/lib/upload/src/UploadProgress.d.ts +3 -2
- package/lib/upload/src/interface.d.ts +1086 -92
- package/lib/upload/src/interface.js +59 -1
- package/lib/upload/src/public-types.d.ts +17 -2
- package/lib/upload/src/useUploadActionsRender.d.ts +2 -27
- package/lib/upload/src/useUploadActionsRender.js +2 -2
- package/lib/upload/src/useUploadInternals.d.ts +2 -25
- package/lib/upload/src/utils.d.ts +2 -0
- package/lib/upload/src/utils.js +10 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +113 -36
|
@@ -818,6 +818,33 @@ export declare const chatMainAreaProps: {
|
|
|
818
818
|
codeColor: string;
|
|
819
819
|
codeBorder: string;
|
|
820
820
|
}, any>;
|
|
821
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
822
|
+
messageBubbleBackgroundColorOwn: string;
|
|
823
|
+
messageBubbleBackgroundColorOther: string;
|
|
824
|
+
messageBubbleTextColorOwn: string;
|
|
825
|
+
messageBubbleTextColorOther: string;
|
|
826
|
+
messageTimeColor: string;
|
|
827
|
+
messageStatusReadColor: string;
|
|
828
|
+
messageStatusSuccessColor: string;
|
|
829
|
+
attachmentBackgroundColorOwn: string;
|
|
830
|
+
attachmentBackgroundColorOther: string;
|
|
831
|
+
messageErrorColor: string;
|
|
832
|
+
messageBorderRadius: string;
|
|
833
|
+
unreadNotificationBackgroundColor: string;
|
|
834
|
+
unreadNotificationTextColor: string;
|
|
835
|
+
serviceMessageTextColor: string;
|
|
836
|
+
serviceMessageBackgroundColor: string;
|
|
837
|
+
messageTitleColor: string;
|
|
838
|
+
}, {
|
|
839
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
840
|
+
color: string;
|
|
841
|
+
opacity1Depth: string;
|
|
842
|
+
opacity2Depth: string;
|
|
843
|
+
opacity3Depth: string;
|
|
844
|
+
opacity4Depth: string;
|
|
845
|
+
opacity5Depth: string;
|
|
846
|
+
}, any>;
|
|
847
|
+
}>;
|
|
821
848
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
822
849
|
color: string;
|
|
823
850
|
opacity1Depth: string;
|
|
@@ -1523,6 +1550,33 @@ export declare const chatMainAreaProps: {
|
|
|
1523
1550
|
codeColor: string;
|
|
1524
1551
|
codeBorder: string;
|
|
1525
1552
|
}, any>;
|
|
1553
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
1554
|
+
messageBubbleBackgroundColorOwn: string;
|
|
1555
|
+
messageBubbleBackgroundColorOther: string;
|
|
1556
|
+
messageBubbleTextColorOwn: string;
|
|
1557
|
+
messageBubbleTextColorOther: string;
|
|
1558
|
+
messageTimeColor: string;
|
|
1559
|
+
messageStatusReadColor: string;
|
|
1560
|
+
messageStatusSuccessColor: string;
|
|
1561
|
+
attachmentBackgroundColorOwn: string;
|
|
1562
|
+
attachmentBackgroundColorOther: string;
|
|
1563
|
+
messageErrorColor: string;
|
|
1564
|
+
messageBorderRadius: string;
|
|
1565
|
+
unreadNotificationBackgroundColor: string;
|
|
1566
|
+
unreadNotificationTextColor: string;
|
|
1567
|
+
serviceMessageTextColor: string;
|
|
1568
|
+
serviceMessageBackgroundColor: string;
|
|
1569
|
+
messageTitleColor: string;
|
|
1570
|
+
}, {
|
|
1571
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1572
|
+
color: string;
|
|
1573
|
+
opacity1Depth: string;
|
|
1574
|
+
opacity2Depth: string;
|
|
1575
|
+
opacity3Depth: string;
|
|
1576
|
+
opacity4Depth: string;
|
|
1577
|
+
opacity5Depth: string;
|
|
1578
|
+
}, any>;
|
|
1579
|
+
}>;
|
|
1526
1580
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1527
1581
|
color: string;
|
|
1528
1582
|
opacity1Depth: string;
|
|
@@ -2228,6 +2282,33 @@ export declare const chatMainAreaProps: {
|
|
|
2228
2282
|
codeColor: string;
|
|
2229
2283
|
codeBorder: string;
|
|
2230
2284
|
}, any>;
|
|
2285
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
2286
|
+
messageBubbleBackgroundColorOwn: string;
|
|
2287
|
+
messageBubbleBackgroundColorOther: string;
|
|
2288
|
+
messageBubbleTextColorOwn: string;
|
|
2289
|
+
messageBubbleTextColorOther: string;
|
|
2290
|
+
messageTimeColor: string;
|
|
2291
|
+
messageStatusReadColor: string;
|
|
2292
|
+
messageStatusSuccessColor: string;
|
|
2293
|
+
attachmentBackgroundColorOwn: string;
|
|
2294
|
+
attachmentBackgroundColorOther: string;
|
|
2295
|
+
messageErrorColor: string;
|
|
2296
|
+
messageBorderRadius: string;
|
|
2297
|
+
unreadNotificationBackgroundColor: string;
|
|
2298
|
+
unreadNotificationTextColor: string;
|
|
2299
|
+
serviceMessageTextColor: string;
|
|
2300
|
+
serviceMessageBackgroundColor: string;
|
|
2301
|
+
messageTitleColor: string;
|
|
2302
|
+
}, {
|
|
2303
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2304
|
+
color: string;
|
|
2305
|
+
opacity1Depth: string;
|
|
2306
|
+
opacity2Depth: string;
|
|
2307
|
+
opacity3Depth: string;
|
|
2308
|
+
opacity4Depth: string;
|
|
2309
|
+
opacity5Depth: string;
|
|
2310
|
+
}, any>;
|
|
2311
|
+
}>;
|
|
2231
2312
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2232
2313
|
color: string;
|
|
2233
2314
|
opacity1Depth: string;
|
|
@@ -3084,6 +3165,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3084
3165
|
codeColor: string;
|
|
3085
3166
|
codeBorder: string;
|
|
3086
3167
|
}, any>;
|
|
3168
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
3169
|
+
messageBubbleBackgroundColorOwn: string;
|
|
3170
|
+
messageBubbleBackgroundColorOther: string;
|
|
3171
|
+
messageBubbleTextColorOwn: string;
|
|
3172
|
+
messageBubbleTextColorOther: string;
|
|
3173
|
+
messageTimeColor: string;
|
|
3174
|
+
messageStatusReadColor: string;
|
|
3175
|
+
messageStatusSuccessColor: string;
|
|
3176
|
+
attachmentBackgroundColorOwn: string;
|
|
3177
|
+
attachmentBackgroundColorOther: string;
|
|
3178
|
+
messageErrorColor: string;
|
|
3179
|
+
messageBorderRadius: string;
|
|
3180
|
+
unreadNotificationBackgroundColor: string;
|
|
3181
|
+
unreadNotificationTextColor: string;
|
|
3182
|
+
serviceMessageTextColor: string;
|
|
3183
|
+
serviceMessageBackgroundColor: string;
|
|
3184
|
+
messageTitleColor: string;
|
|
3185
|
+
}, {
|
|
3186
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3187
|
+
color: string;
|
|
3188
|
+
opacity1Depth: string;
|
|
3189
|
+
opacity2Depth: string;
|
|
3190
|
+
opacity3Depth: string;
|
|
3191
|
+
opacity4Depth: string;
|
|
3192
|
+
opacity5Depth: string;
|
|
3193
|
+
}, any>;
|
|
3194
|
+
}>;
|
|
3087
3195
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3088
3196
|
color: string;
|
|
3089
3197
|
opacity1Depth: string;
|
|
@@ -3789,6 +3897,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3789
3897
|
codeColor: string;
|
|
3790
3898
|
codeBorder: string;
|
|
3791
3899
|
}, any>;
|
|
3900
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
3901
|
+
messageBubbleBackgroundColorOwn: string;
|
|
3902
|
+
messageBubbleBackgroundColorOther: string;
|
|
3903
|
+
messageBubbleTextColorOwn: string;
|
|
3904
|
+
messageBubbleTextColorOther: string;
|
|
3905
|
+
messageTimeColor: string;
|
|
3906
|
+
messageStatusReadColor: string;
|
|
3907
|
+
messageStatusSuccessColor: string;
|
|
3908
|
+
attachmentBackgroundColorOwn: string;
|
|
3909
|
+
attachmentBackgroundColorOther: string;
|
|
3910
|
+
messageErrorColor: string;
|
|
3911
|
+
messageBorderRadius: string;
|
|
3912
|
+
unreadNotificationBackgroundColor: string;
|
|
3913
|
+
unreadNotificationTextColor: string;
|
|
3914
|
+
serviceMessageTextColor: string;
|
|
3915
|
+
serviceMessageBackgroundColor: string;
|
|
3916
|
+
messageTitleColor: string;
|
|
3917
|
+
}, {
|
|
3918
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3919
|
+
color: string;
|
|
3920
|
+
opacity1Depth: string;
|
|
3921
|
+
opacity2Depth: string;
|
|
3922
|
+
opacity3Depth: string;
|
|
3923
|
+
opacity4Depth: string;
|
|
3924
|
+
opacity5Depth: string;
|
|
3925
|
+
}, any>;
|
|
3926
|
+
}>;
|
|
3792
3927
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3793
3928
|
color: string;
|
|
3794
3929
|
opacity1Depth: string;
|
|
@@ -4494,6 +4629,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4494
4629
|
codeColor: string;
|
|
4495
4630
|
codeBorder: string;
|
|
4496
4631
|
}, any>;
|
|
4632
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
4633
|
+
messageBubbleBackgroundColorOwn: string;
|
|
4634
|
+
messageBubbleBackgroundColorOther: string;
|
|
4635
|
+
messageBubbleTextColorOwn: string;
|
|
4636
|
+
messageBubbleTextColorOther: string;
|
|
4637
|
+
messageTimeColor: string;
|
|
4638
|
+
messageStatusReadColor: string;
|
|
4639
|
+
messageStatusSuccessColor: string;
|
|
4640
|
+
attachmentBackgroundColorOwn: string;
|
|
4641
|
+
attachmentBackgroundColorOther: string;
|
|
4642
|
+
messageErrorColor: string;
|
|
4643
|
+
messageBorderRadius: string;
|
|
4644
|
+
unreadNotificationBackgroundColor: string;
|
|
4645
|
+
unreadNotificationTextColor: string;
|
|
4646
|
+
serviceMessageTextColor: string;
|
|
4647
|
+
serviceMessageBackgroundColor: string;
|
|
4648
|
+
messageTitleColor: string;
|
|
4649
|
+
}, {
|
|
4650
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
4651
|
+
color: string;
|
|
4652
|
+
opacity1Depth: string;
|
|
4653
|
+
opacity2Depth: string;
|
|
4654
|
+
opacity3Depth: string;
|
|
4655
|
+
opacity4Depth: string;
|
|
4656
|
+
opacity5Depth: string;
|
|
4657
|
+
}, any>;
|
|
4658
|
+
}>;
|
|
4497
4659
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
4498
4660
|
color: string;
|
|
4499
4661
|
opacity1Depth: string;
|
|
@@ -5204,6 +5366,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5204
5366
|
codeColor: string;
|
|
5205
5367
|
codeBorder: string;
|
|
5206
5368
|
}, any>;
|
|
5369
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
5370
|
+
messageBubbleBackgroundColorOwn: string;
|
|
5371
|
+
messageBubbleBackgroundColorOther: string;
|
|
5372
|
+
messageBubbleTextColorOwn: string;
|
|
5373
|
+
messageBubbleTextColorOther: string;
|
|
5374
|
+
messageTimeColor: string;
|
|
5375
|
+
messageStatusReadColor: string;
|
|
5376
|
+
messageStatusSuccessColor: string;
|
|
5377
|
+
attachmentBackgroundColorOwn: string;
|
|
5378
|
+
attachmentBackgroundColorOther: string;
|
|
5379
|
+
messageErrorColor: string;
|
|
5380
|
+
messageBorderRadius: string;
|
|
5381
|
+
unreadNotificationBackgroundColor: string;
|
|
5382
|
+
unreadNotificationTextColor: string;
|
|
5383
|
+
serviceMessageTextColor: string;
|
|
5384
|
+
serviceMessageBackgroundColor: string;
|
|
5385
|
+
messageTitleColor: string;
|
|
5386
|
+
}, {
|
|
5387
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
5388
|
+
color: string;
|
|
5389
|
+
opacity1Depth: string;
|
|
5390
|
+
opacity2Depth: string;
|
|
5391
|
+
opacity3Depth: string;
|
|
5392
|
+
opacity4Depth: string;
|
|
5393
|
+
opacity5Depth: string;
|
|
5394
|
+
}, any>;
|
|
5395
|
+
}>;
|
|
5207
5396
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
5208
5397
|
color: string;
|
|
5209
5398
|
opacity1Depth: string;
|
|
@@ -5473,6 +5662,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5473
5662
|
[x: string]: any;
|
|
5474
5663
|
} | undefined;
|
|
5475
5664
|
} | undefined;
|
|
5665
|
+
MessageBubble?: {
|
|
5666
|
+
peers?: {
|
|
5667
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
5668
|
+
color: string;
|
|
5669
|
+
opacity1Depth: string;
|
|
5670
|
+
opacity2Depth: string;
|
|
5671
|
+
opacity3Depth: string;
|
|
5672
|
+
opacity4Depth: string;
|
|
5673
|
+
opacity5Depth: string;
|
|
5674
|
+
}, any>> | undefined;
|
|
5675
|
+
} | undefined;
|
|
5676
|
+
} | undefined;
|
|
5476
5677
|
StatusIcon?: {
|
|
5477
5678
|
peers?: {
|
|
5478
5679
|
[x: string]: any;
|
|
@@ -6166,6 +6367,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6166
6367
|
codeColor: string;
|
|
6167
6368
|
codeBorder: string;
|
|
6168
6369
|
}, any>;
|
|
6370
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
6371
|
+
messageBubbleBackgroundColorOwn: string;
|
|
6372
|
+
messageBubbleBackgroundColorOther: string;
|
|
6373
|
+
messageBubbleTextColorOwn: string;
|
|
6374
|
+
messageBubbleTextColorOther: string;
|
|
6375
|
+
messageTimeColor: string;
|
|
6376
|
+
messageStatusReadColor: string;
|
|
6377
|
+
messageStatusSuccessColor: string;
|
|
6378
|
+
attachmentBackgroundColorOwn: string;
|
|
6379
|
+
attachmentBackgroundColorOther: string;
|
|
6380
|
+
messageErrorColor: string;
|
|
6381
|
+
messageBorderRadius: string;
|
|
6382
|
+
unreadNotificationBackgroundColor: string;
|
|
6383
|
+
unreadNotificationTextColor: string;
|
|
6384
|
+
serviceMessageTextColor: string;
|
|
6385
|
+
serviceMessageBackgroundColor: string;
|
|
6386
|
+
messageTitleColor: string;
|
|
6387
|
+
}, {
|
|
6388
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
6389
|
+
color: string;
|
|
6390
|
+
opacity1Depth: string;
|
|
6391
|
+
opacity2Depth: string;
|
|
6392
|
+
opacity3Depth: string;
|
|
6393
|
+
opacity4Depth: string;
|
|
6394
|
+
opacity5Depth: string;
|
|
6395
|
+
}, any>;
|
|
6396
|
+
}>;
|
|
6169
6397
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
6170
6398
|
color: string;
|
|
6171
6399
|
opacity1Depth: string;
|
|
@@ -6435,6 +6663,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6435
6663
|
[x: string]: any;
|
|
6436
6664
|
} | undefined;
|
|
6437
6665
|
} | undefined;
|
|
6666
|
+
MessageBubble?: {
|
|
6667
|
+
peers?: {
|
|
6668
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
6669
|
+
color: string;
|
|
6670
|
+
opacity1Depth: string;
|
|
6671
|
+
opacity2Depth: string;
|
|
6672
|
+
opacity3Depth: string;
|
|
6673
|
+
opacity4Depth: string;
|
|
6674
|
+
opacity5Depth: string;
|
|
6675
|
+
}, any>> | undefined;
|
|
6676
|
+
} | undefined;
|
|
6677
|
+
} | undefined;
|
|
6438
6678
|
StatusIcon?: {
|
|
6439
6679
|
peers?: {
|
|
6440
6680
|
[x: string]: any;
|
|
@@ -7128,6 +7368,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7128
7368
|
codeColor: string;
|
|
7129
7369
|
codeBorder: string;
|
|
7130
7370
|
}, any>;
|
|
7371
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
7372
|
+
messageBubbleBackgroundColorOwn: string;
|
|
7373
|
+
messageBubbleBackgroundColorOther: string;
|
|
7374
|
+
messageBubbleTextColorOwn: string;
|
|
7375
|
+
messageBubbleTextColorOther: string;
|
|
7376
|
+
messageTimeColor: string;
|
|
7377
|
+
messageStatusReadColor: string;
|
|
7378
|
+
messageStatusSuccessColor: string;
|
|
7379
|
+
attachmentBackgroundColorOwn: string;
|
|
7380
|
+
attachmentBackgroundColorOther: string;
|
|
7381
|
+
messageErrorColor: string;
|
|
7382
|
+
messageBorderRadius: string;
|
|
7383
|
+
unreadNotificationBackgroundColor: string;
|
|
7384
|
+
unreadNotificationTextColor: string;
|
|
7385
|
+
serviceMessageTextColor: string;
|
|
7386
|
+
serviceMessageBackgroundColor: string;
|
|
7387
|
+
messageTitleColor: string;
|
|
7388
|
+
}, {
|
|
7389
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
7390
|
+
color: string;
|
|
7391
|
+
opacity1Depth: string;
|
|
7392
|
+
opacity2Depth: string;
|
|
7393
|
+
opacity3Depth: string;
|
|
7394
|
+
opacity4Depth: string;
|
|
7395
|
+
opacity5Depth: string;
|
|
7396
|
+
}, any>;
|
|
7397
|
+
}>;
|
|
7131
7398
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
7132
7399
|
color: string;
|
|
7133
7400
|
opacity1Depth: string;
|
|
@@ -7397,6 +7664,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7397
7664
|
[x: string]: any;
|
|
7398
7665
|
} | undefined;
|
|
7399
7666
|
} | undefined;
|
|
7667
|
+
MessageBubble?: {
|
|
7668
|
+
peers?: {
|
|
7669
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
7670
|
+
color: string;
|
|
7671
|
+
opacity1Depth: string;
|
|
7672
|
+
opacity2Depth: string;
|
|
7673
|
+
opacity3Depth: string;
|
|
7674
|
+
opacity4Depth: string;
|
|
7675
|
+
opacity5Depth: string;
|
|
7676
|
+
}, any>> | undefined;
|
|
7677
|
+
} | undefined;
|
|
7678
|
+
} | undefined;
|
|
7400
7679
|
StatusIcon?: {
|
|
7401
7680
|
peers?: {
|
|
7402
7681
|
[x: string]: any;
|
|
@@ -8256,6 +8535,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8256
8535
|
codeColor: string;
|
|
8257
8536
|
codeBorder: string;
|
|
8258
8537
|
}, any>;
|
|
8538
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
8539
|
+
messageBubbleBackgroundColorOwn: string;
|
|
8540
|
+
messageBubbleBackgroundColorOther: string;
|
|
8541
|
+
messageBubbleTextColorOwn: string;
|
|
8542
|
+
messageBubbleTextColorOther: string;
|
|
8543
|
+
messageTimeColor: string;
|
|
8544
|
+
messageStatusReadColor: string;
|
|
8545
|
+
messageStatusSuccessColor: string;
|
|
8546
|
+
attachmentBackgroundColorOwn: string;
|
|
8547
|
+
attachmentBackgroundColorOther: string;
|
|
8548
|
+
messageErrorColor: string;
|
|
8549
|
+
messageBorderRadius: string;
|
|
8550
|
+
unreadNotificationBackgroundColor: string;
|
|
8551
|
+
unreadNotificationTextColor: string;
|
|
8552
|
+
serviceMessageTextColor: string;
|
|
8553
|
+
serviceMessageBackgroundColor: string;
|
|
8554
|
+
messageTitleColor: string;
|
|
8555
|
+
}, {
|
|
8556
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8557
|
+
color: string;
|
|
8558
|
+
opacity1Depth: string;
|
|
8559
|
+
opacity2Depth: string;
|
|
8560
|
+
opacity3Depth: string;
|
|
8561
|
+
opacity4Depth: string;
|
|
8562
|
+
opacity5Depth: string;
|
|
8563
|
+
}, any>;
|
|
8564
|
+
}>;
|
|
8259
8565
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8260
8566
|
color: string;
|
|
8261
8567
|
opacity1Depth: string;
|
|
@@ -8961,6 +9267,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8961
9267
|
codeColor: string;
|
|
8962
9268
|
codeBorder: string;
|
|
8963
9269
|
}, any>;
|
|
9270
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
9271
|
+
messageBubbleBackgroundColorOwn: string;
|
|
9272
|
+
messageBubbleBackgroundColorOther: string;
|
|
9273
|
+
messageBubbleTextColorOwn: string;
|
|
9274
|
+
messageBubbleTextColorOther: string;
|
|
9275
|
+
messageTimeColor: string;
|
|
9276
|
+
messageStatusReadColor: string;
|
|
9277
|
+
messageStatusSuccessColor: string;
|
|
9278
|
+
attachmentBackgroundColorOwn: string;
|
|
9279
|
+
attachmentBackgroundColorOther: string;
|
|
9280
|
+
messageErrorColor: string;
|
|
9281
|
+
messageBorderRadius: string;
|
|
9282
|
+
unreadNotificationBackgroundColor: string;
|
|
9283
|
+
unreadNotificationTextColor: string;
|
|
9284
|
+
serviceMessageTextColor: string;
|
|
9285
|
+
serviceMessageBackgroundColor: string;
|
|
9286
|
+
messageTitleColor: string;
|
|
9287
|
+
}, {
|
|
9288
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
9289
|
+
color: string;
|
|
9290
|
+
opacity1Depth: string;
|
|
9291
|
+
opacity2Depth: string;
|
|
9292
|
+
opacity3Depth: string;
|
|
9293
|
+
opacity4Depth: string;
|
|
9294
|
+
opacity5Depth: string;
|
|
9295
|
+
}, any>;
|
|
9296
|
+
}>;
|
|
8964
9297
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8965
9298
|
color: string;
|
|
8966
9299
|
opacity1Depth: string;
|
|
@@ -9666,6 +9999,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
9666
9999
|
codeColor: string;
|
|
9667
10000
|
codeBorder: string;
|
|
9668
10001
|
}, any>;
|
|
10002
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
10003
|
+
messageBubbleBackgroundColorOwn: string;
|
|
10004
|
+
messageBubbleBackgroundColorOther: string;
|
|
10005
|
+
messageBubbleTextColorOwn: string;
|
|
10006
|
+
messageBubbleTextColorOther: string;
|
|
10007
|
+
messageTimeColor: string;
|
|
10008
|
+
messageStatusReadColor: string;
|
|
10009
|
+
messageStatusSuccessColor: string;
|
|
10010
|
+
attachmentBackgroundColorOwn: string;
|
|
10011
|
+
attachmentBackgroundColorOther: string;
|
|
10012
|
+
messageErrorColor: string;
|
|
10013
|
+
messageBorderRadius: string;
|
|
10014
|
+
unreadNotificationBackgroundColor: string;
|
|
10015
|
+
unreadNotificationTextColor: string;
|
|
10016
|
+
serviceMessageTextColor: string;
|
|
10017
|
+
serviceMessageBackgroundColor: string;
|
|
10018
|
+
messageTitleColor: string;
|
|
10019
|
+
}, {
|
|
10020
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
10021
|
+
color: string;
|
|
10022
|
+
opacity1Depth: string;
|
|
10023
|
+
opacity2Depth: string;
|
|
10024
|
+
opacity3Depth: string;
|
|
10025
|
+
opacity4Depth: string;
|
|
10026
|
+
opacity5Depth: string;
|
|
10027
|
+
}, any>;
|
|
10028
|
+
}>;
|
|
9669
10029
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
9670
10030
|
color: string;
|
|
9671
10031
|
opacity1Depth: string;
|
|
@@ -640,6 +640,7 @@ export default defineComponent({
|
|
|
640
640
|
messageAttachmentTitle: slots.messageAttachmentTitle,
|
|
641
641
|
messageAttachmentSubtitle: slots.messageAttachmentSubtitle,
|
|
642
642
|
messageStatus: slots.messageStatus,
|
|
643
|
+
messageAfterContent: slots.messageAfterContent,
|
|
643
644
|
bubbleActions: slots.bubbleActions
|
|
644
645
|
});
|
|
645
646
|
};
|