@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
package/lib/chat/src/Chat.d.ts
CHANGED
|
@@ -903,6 +903,33 @@ export declare const chatProps: {
|
|
|
903
903
|
codeColor: string;
|
|
904
904
|
codeBorder: string;
|
|
905
905
|
}, any>;
|
|
906
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
907
|
+
messageBubbleBackgroundColorOwn: string;
|
|
908
|
+
messageBubbleBackgroundColorOther: string;
|
|
909
|
+
messageBubbleTextColorOwn: string;
|
|
910
|
+
messageBubbleTextColorOther: string;
|
|
911
|
+
messageTimeColor: string;
|
|
912
|
+
messageStatusReadColor: string;
|
|
913
|
+
messageStatusSuccessColor: string;
|
|
914
|
+
attachmentBackgroundColorOwn: string;
|
|
915
|
+
attachmentBackgroundColorOther: string;
|
|
916
|
+
messageErrorColor: string;
|
|
917
|
+
messageBorderRadius: string;
|
|
918
|
+
unreadNotificationBackgroundColor: string;
|
|
919
|
+
unreadNotificationTextColor: string;
|
|
920
|
+
serviceMessageTextColor: string;
|
|
921
|
+
serviceMessageBackgroundColor: string;
|
|
922
|
+
messageTitleColor: string;
|
|
923
|
+
}, {
|
|
924
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
925
|
+
color: string;
|
|
926
|
+
opacity1Depth: string;
|
|
927
|
+
opacity2Depth: string;
|
|
928
|
+
opacity3Depth: string;
|
|
929
|
+
opacity4Depth: string;
|
|
930
|
+
opacity5Depth: string;
|
|
931
|
+
}, any>;
|
|
932
|
+
}>;
|
|
906
933
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
907
934
|
color: string;
|
|
908
935
|
opacity1Depth: string;
|
|
@@ -1608,6 +1635,33 @@ export declare const chatProps: {
|
|
|
1608
1635
|
codeColor: string;
|
|
1609
1636
|
codeBorder: string;
|
|
1610
1637
|
}, any>;
|
|
1638
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
1639
|
+
messageBubbleBackgroundColorOwn: string;
|
|
1640
|
+
messageBubbleBackgroundColorOther: string;
|
|
1641
|
+
messageBubbleTextColorOwn: string;
|
|
1642
|
+
messageBubbleTextColorOther: string;
|
|
1643
|
+
messageTimeColor: string;
|
|
1644
|
+
messageStatusReadColor: string;
|
|
1645
|
+
messageStatusSuccessColor: string;
|
|
1646
|
+
attachmentBackgroundColorOwn: string;
|
|
1647
|
+
attachmentBackgroundColorOther: string;
|
|
1648
|
+
messageErrorColor: string;
|
|
1649
|
+
messageBorderRadius: string;
|
|
1650
|
+
unreadNotificationBackgroundColor: string;
|
|
1651
|
+
unreadNotificationTextColor: string;
|
|
1652
|
+
serviceMessageTextColor: string;
|
|
1653
|
+
serviceMessageBackgroundColor: string;
|
|
1654
|
+
messageTitleColor: string;
|
|
1655
|
+
}, {
|
|
1656
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1657
|
+
color: string;
|
|
1658
|
+
opacity1Depth: string;
|
|
1659
|
+
opacity2Depth: string;
|
|
1660
|
+
opacity3Depth: string;
|
|
1661
|
+
opacity4Depth: string;
|
|
1662
|
+
opacity5Depth: string;
|
|
1663
|
+
}, any>;
|
|
1664
|
+
}>;
|
|
1611
1665
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1612
1666
|
color: string;
|
|
1613
1667
|
opacity1Depth: string;
|
|
@@ -2313,6 +2367,33 @@ export declare const chatProps: {
|
|
|
2313
2367
|
codeColor: string;
|
|
2314
2368
|
codeBorder: string;
|
|
2315
2369
|
}, any>;
|
|
2370
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
2371
|
+
messageBubbleBackgroundColorOwn: string;
|
|
2372
|
+
messageBubbleBackgroundColorOther: string;
|
|
2373
|
+
messageBubbleTextColorOwn: string;
|
|
2374
|
+
messageBubbleTextColorOther: string;
|
|
2375
|
+
messageTimeColor: string;
|
|
2376
|
+
messageStatusReadColor: string;
|
|
2377
|
+
messageStatusSuccessColor: string;
|
|
2378
|
+
attachmentBackgroundColorOwn: string;
|
|
2379
|
+
attachmentBackgroundColorOther: string;
|
|
2380
|
+
messageErrorColor: string;
|
|
2381
|
+
messageBorderRadius: string;
|
|
2382
|
+
unreadNotificationBackgroundColor: string;
|
|
2383
|
+
unreadNotificationTextColor: string;
|
|
2384
|
+
serviceMessageTextColor: string;
|
|
2385
|
+
serviceMessageBackgroundColor: string;
|
|
2386
|
+
messageTitleColor: string;
|
|
2387
|
+
}, {
|
|
2388
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2389
|
+
color: string;
|
|
2390
|
+
opacity1Depth: string;
|
|
2391
|
+
opacity2Depth: string;
|
|
2392
|
+
opacity3Depth: string;
|
|
2393
|
+
opacity4Depth: string;
|
|
2394
|
+
opacity5Depth: string;
|
|
2395
|
+
}, any>;
|
|
2396
|
+
}>;
|
|
2316
2397
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2317
2398
|
color: string;
|
|
2318
2399
|
opacity1Depth: string;
|
|
@@ -3257,6 +3338,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3257
3338
|
codeColor: string;
|
|
3258
3339
|
codeBorder: string;
|
|
3259
3340
|
}, any>;
|
|
3341
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
3342
|
+
messageBubbleBackgroundColorOwn: string;
|
|
3343
|
+
messageBubbleBackgroundColorOther: string;
|
|
3344
|
+
messageBubbleTextColorOwn: string;
|
|
3345
|
+
messageBubbleTextColorOther: string;
|
|
3346
|
+
messageTimeColor: string;
|
|
3347
|
+
messageStatusReadColor: string;
|
|
3348
|
+
messageStatusSuccessColor: string;
|
|
3349
|
+
attachmentBackgroundColorOwn: string;
|
|
3350
|
+
attachmentBackgroundColorOther: string;
|
|
3351
|
+
messageErrorColor: string;
|
|
3352
|
+
messageBorderRadius: string;
|
|
3353
|
+
unreadNotificationBackgroundColor: string;
|
|
3354
|
+
unreadNotificationTextColor: string;
|
|
3355
|
+
serviceMessageTextColor: string;
|
|
3356
|
+
serviceMessageBackgroundColor: string;
|
|
3357
|
+
messageTitleColor: string;
|
|
3358
|
+
}, {
|
|
3359
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3360
|
+
color: string;
|
|
3361
|
+
opacity1Depth: string;
|
|
3362
|
+
opacity2Depth: string;
|
|
3363
|
+
opacity3Depth: string;
|
|
3364
|
+
opacity4Depth: string;
|
|
3365
|
+
opacity5Depth: string;
|
|
3366
|
+
}, any>;
|
|
3367
|
+
}>;
|
|
3260
3368
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3261
3369
|
color: string;
|
|
3262
3370
|
opacity1Depth: string;
|
|
@@ -3962,6 +4070,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3962
4070
|
codeColor: string;
|
|
3963
4071
|
codeBorder: string;
|
|
3964
4072
|
}, any>;
|
|
4073
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
4074
|
+
messageBubbleBackgroundColorOwn: string;
|
|
4075
|
+
messageBubbleBackgroundColorOther: string;
|
|
4076
|
+
messageBubbleTextColorOwn: string;
|
|
4077
|
+
messageBubbleTextColorOther: string;
|
|
4078
|
+
messageTimeColor: string;
|
|
4079
|
+
messageStatusReadColor: string;
|
|
4080
|
+
messageStatusSuccessColor: string;
|
|
4081
|
+
attachmentBackgroundColorOwn: string;
|
|
4082
|
+
attachmentBackgroundColorOther: string;
|
|
4083
|
+
messageErrorColor: string;
|
|
4084
|
+
messageBorderRadius: string;
|
|
4085
|
+
unreadNotificationBackgroundColor: string;
|
|
4086
|
+
unreadNotificationTextColor: string;
|
|
4087
|
+
serviceMessageTextColor: string;
|
|
4088
|
+
serviceMessageBackgroundColor: string;
|
|
4089
|
+
messageTitleColor: string;
|
|
4090
|
+
}, {
|
|
4091
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
4092
|
+
color: string;
|
|
4093
|
+
opacity1Depth: string;
|
|
4094
|
+
opacity2Depth: string;
|
|
4095
|
+
opacity3Depth: string;
|
|
4096
|
+
opacity4Depth: string;
|
|
4097
|
+
opacity5Depth: string;
|
|
4098
|
+
}, any>;
|
|
4099
|
+
}>;
|
|
3965
4100
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3966
4101
|
color: string;
|
|
3967
4102
|
opacity1Depth: string;
|
|
@@ -4667,6 +4802,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4667
4802
|
codeColor: string;
|
|
4668
4803
|
codeBorder: string;
|
|
4669
4804
|
}, any>;
|
|
4805
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
4806
|
+
messageBubbleBackgroundColorOwn: string;
|
|
4807
|
+
messageBubbleBackgroundColorOther: string;
|
|
4808
|
+
messageBubbleTextColorOwn: string;
|
|
4809
|
+
messageBubbleTextColorOther: string;
|
|
4810
|
+
messageTimeColor: string;
|
|
4811
|
+
messageStatusReadColor: string;
|
|
4812
|
+
messageStatusSuccessColor: string;
|
|
4813
|
+
attachmentBackgroundColorOwn: string;
|
|
4814
|
+
attachmentBackgroundColorOther: string;
|
|
4815
|
+
messageErrorColor: string;
|
|
4816
|
+
messageBorderRadius: string;
|
|
4817
|
+
unreadNotificationBackgroundColor: string;
|
|
4818
|
+
unreadNotificationTextColor: string;
|
|
4819
|
+
serviceMessageTextColor: string;
|
|
4820
|
+
serviceMessageBackgroundColor: string;
|
|
4821
|
+
messageTitleColor: string;
|
|
4822
|
+
}, {
|
|
4823
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
4824
|
+
color: string;
|
|
4825
|
+
opacity1Depth: string;
|
|
4826
|
+
opacity2Depth: string;
|
|
4827
|
+
opacity3Depth: string;
|
|
4828
|
+
opacity4Depth: string;
|
|
4829
|
+
opacity5Depth: string;
|
|
4830
|
+
}, any>;
|
|
4831
|
+
}>;
|
|
4670
4832
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
4671
4833
|
color: string;
|
|
4672
4834
|
opacity1Depth: string;
|
|
@@ -5377,6 +5539,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5377
5539
|
codeColor: string;
|
|
5378
5540
|
codeBorder: string;
|
|
5379
5541
|
}, any>;
|
|
5542
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
5543
|
+
messageBubbleBackgroundColorOwn: string;
|
|
5544
|
+
messageBubbleBackgroundColorOther: string;
|
|
5545
|
+
messageBubbleTextColorOwn: string;
|
|
5546
|
+
messageBubbleTextColorOther: string;
|
|
5547
|
+
messageTimeColor: string;
|
|
5548
|
+
messageStatusReadColor: string;
|
|
5549
|
+
messageStatusSuccessColor: string;
|
|
5550
|
+
attachmentBackgroundColorOwn: string;
|
|
5551
|
+
attachmentBackgroundColorOther: string;
|
|
5552
|
+
messageErrorColor: string;
|
|
5553
|
+
messageBorderRadius: string;
|
|
5554
|
+
unreadNotificationBackgroundColor: string;
|
|
5555
|
+
unreadNotificationTextColor: string;
|
|
5556
|
+
serviceMessageTextColor: string;
|
|
5557
|
+
serviceMessageBackgroundColor: string;
|
|
5558
|
+
messageTitleColor: string;
|
|
5559
|
+
}, {
|
|
5560
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
5561
|
+
color: string;
|
|
5562
|
+
opacity1Depth: string;
|
|
5563
|
+
opacity2Depth: string;
|
|
5564
|
+
opacity3Depth: string;
|
|
5565
|
+
opacity4Depth: string;
|
|
5566
|
+
opacity5Depth: string;
|
|
5567
|
+
}, any>;
|
|
5568
|
+
}>;
|
|
5380
5569
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
5381
5570
|
color: string;
|
|
5382
5571
|
opacity1Depth: string;
|
|
@@ -5646,6 +5835,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5646
5835
|
[x: string]: any;
|
|
5647
5836
|
} | undefined;
|
|
5648
5837
|
} | undefined;
|
|
5838
|
+
MessageBubble?: {
|
|
5839
|
+
peers?: {
|
|
5840
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
5841
|
+
color: string;
|
|
5842
|
+
opacity1Depth: string;
|
|
5843
|
+
opacity2Depth: string;
|
|
5844
|
+
opacity3Depth: string;
|
|
5845
|
+
opacity4Depth: string;
|
|
5846
|
+
opacity5Depth: string;
|
|
5847
|
+
}, any>> | undefined;
|
|
5848
|
+
} | undefined;
|
|
5849
|
+
} | undefined;
|
|
5649
5850
|
StatusIcon?: {
|
|
5650
5851
|
peers?: {
|
|
5651
5852
|
[x: string]: any;
|
|
@@ -6526,6 +6727,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6526
6727
|
codeColor: string;
|
|
6527
6728
|
codeBorder: string;
|
|
6528
6729
|
}, any>;
|
|
6730
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
6731
|
+
messageBubbleBackgroundColorOwn: string;
|
|
6732
|
+
messageBubbleBackgroundColorOther: string;
|
|
6733
|
+
messageBubbleTextColorOwn: string;
|
|
6734
|
+
messageBubbleTextColorOther: string;
|
|
6735
|
+
messageTimeColor: string;
|
|
6736
|
+
messageStatusReadColor: string;
|
|
6737
|
+
messageStatusSuccessColor: string;
|
|
6738
|
+
attachmentBackgroundColorOwn: string;
|
|
6739
|
+
attachmentBackgroundColorOther: string;
|
|
6740
|
+
messageErrorColor: string;
|
|
6741
|
+
messageBorderRadius: string;
|
|
6742
|
+
unreadNotificationBackgroundColor: string;
|
|
6743
|
+
unreadNotificationTextColor: string;
|
|
6744
|
+
serviceMessageTextColor: string;
|
|
6745
|
+
serviceMessageBackgroundColor: string;
|
|
6746
|
+
messageTitleColor: string;
|
|
6747
|
+
}, {
|
|
6748
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
6749
|
+
color: string;
|
|
6750
|
+
opacity1Depth: string;
|
|
6751
|
+
opacity2Depth: string;
|
|
6752
|
+
opacity3Depth: string;
|
|
6753
|
+
opacity4Depth: string;
|
|
6754
|
+
opacity5Depth: string;
|
|
6755
|
+
}, any>;
|
|
6756
|
+
}>;
|
|
6529
6757
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
6530
6758
|
color: string;
|
|
6531
6759
|
opacity1Depth: string;
|
|
@@ -7231,6 +7459,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7231
7459
|
codeColor: string;
|
|
7232
7460
|
codeBorder: string;
|
|
7233
7461
|
}, any>;
|
|
7462
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
7463
|
+
messageBubbleBackgroundColorOwn: string;
|
|
7464
|
+
messageBubbleBackgroundColorOther: string;
|
|
7465
|
+
messageBubbleTextColorOwn: string;
|
|
7466
|
+
messageBubbleTextColorOther: string;
|
|
7467
|
+
messageTimeColor: string;
|
|
7468
|
+
messageStatusReadColor: string;
|
|
7469
|
+
messageStatusSuccessColor: string;
|
|
7470
|
+
attachmentBackgroundColorOwn: string;
|
|
7471
|
+
attachmentBackgroundColorOther: string;
|
|
7472
|
+
messageErrorColor: string;
|
|
7473
|
+
messageBorderRadius: string;
|
|
7474
|
+
unreadNotificationBackgroundColor: string;
|
|
7475
|
+
unreadNotificationTextColor: string;
|
|
7476
|
+
serviceMessageTextColor: string;
|
|
7477
|
+
serviceMessageBackgroundColor: string;
|
|
7478
|
+
messageTitleColor: string;
|
|
7479
|
+
}, {
|
|
7480
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
7481
|
+
color: string;
|
|
7482
|
+
opacity1Depth: string;
|
|
7483
|
+
opacity2Depth: string;
|
|
7484
|
+
opacity3Depth: string;
|
|
7485
|
+
opacity4Depth: string;
|
|
7486
|
+
opacity5Depth: string;
|
|
7487
|
+
}, any>;
|
|
7488
|
+
}>;
|
|
7234
7489
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
7235
7490
|
color: string;
|
|
7236
7491
|
opacity1Depth: string;
|
|
@@ -7936,6 +8191,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7936
8191
|
codeColor: string;
|
|
7937
8192
|
codeBorder: string;
|
|
7938
8193
|
}, any>;
|
|
8194
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
8195
|
+
messageBubbleBackgroundColorOwn: string;
|
|
8196
|
+
messageBubbleBackgroundColorOther: string;
|
|
8197
|
+
messageBubbleTextColorOwn: string;
|
|
8198
|
+
messageBubbleTextColorOther: string;
|
|
8199
|
+
messageTimeColor: string;
|
|
8200
|
+
messageStatusReadColor: string;
|
|
8201
|
+
messageStatusSuccessColor: string;
|
|
8202
|
+
attachmentBackgroundColorOwn: string;
|
|
8203
|
+
attachmentBackgroundColorOther: string;
|
|
8204
|
+
messageErrorColor: string;
|
|
8205
|
+
messageBorderRadius: string;
|
|
8206
|
+
unreadNotificationBackgroundColor: string;
|
|
8207
|
+
unreadNotificationTextColor: string;
|
|
8208
|
+
serviceMessageTextColor: string;
|
|
8209
|
+
serviceMessageBackgroundColor: string;
|
|
8210
|
+
messageTitleColor: string;
|
|
8211
|
+
}, {
|
|
8212
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8213
|
+
color: string;
|
|
8214
|
+
opacity1Depth: string;
|
|
8215
|
+
opacity2Depth: string;
|
|
8216
|
+
opacity3Depth: string;
|
|
8217
|
+
opacity4Depth: string;
|
|
8218
|
+
opacity5Depth: string;
|
|
8219
|
+
}, any>;
|
|
8220
|
+
}>;
|
|
7939
8221
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
7940
8222
|
color: string;
|
|
7941
8223
|
opacity1Depth: string;
|
|
@@ -8646,6 +8928,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8646
8928
|
codeColor: string;
|
|
8647
8929
|
codeBorder: string;
|
|
8648
8930
|
}, any>;
|
|
8931
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
8932
|
+
messageBubbleBackgroundColorOwn: string;
|
|
8933
|
+
messageBubbleBackgroundColorOther: string;
|
|
8934
|
+
messageBubbleTextColorOwn: string;
|
|
8935
|
+
messageBubbleTextColorOther: string;
|
|
8936
|
+
messageTimeColor: string;
|
|
8937
|
+
messageStatusReadColor: string;
|
|
8938
|
+
messageStatusSuccessColor: string;
|
|
8939
|
+
attachmentBackgroundColorOwn: string;
|
|
8940
|
+
attachmentBackgroundColorOther: string;
|
|
8941
|
+
messageErrorColor: string;
|
|
8942
|
+
messageBorderRadius: string;
|
|
8943
|
+
unreadNotificationBackgroundColor: string;
|
|
8944
|
+
unreadNotificationTextColor: string;
|
|
8945
|
+
serviceMessageTextColor: string;
|
|
8946
|
+
serviceMessageBackgroundColor: string;
|
|
8947
|
+
messageTitleColor: string;
|
|
8948
|
+
}, {
|
|
8949
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8950
|
+
color: string;
|
|
8951
|
+
opacity1Depth: string;
|
|
8952
|
+
opacity2Depth: string;
|
|
8953
|
+
opacity3Depth: string;
|
|
8954
|
+
opacity4Depth: string;
|
|
8955
|
+
opacity5Depth: string;
|
|
8956
|
+
}, any>;
|
|
8957
|
+
}>;
|
|
8649
8958
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8650
8959
|
color: string;
|
|
8651
8960
|
opacity1Depth: string;
|
|
@@ -8915,6 +9224,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8915
9224
|
[x: string]: any;
|
|
8916
9225
|
} | undefined;
|
|
8917
9226
|
} | undefined;
|
|
9227
|
+
MessageBubble?: {
|
|
9228
|
+
peers?: {
|
|
9229
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
9230
|
+
color: string;
|
|
9231
|
+
opacity1Depth: string;
|
|
9232
|
+
opacity2Depth: string;
|
|
9233
|
+
opacity3Depth: string;
|
|
9234
|
+
opacity4Depth: string;
|
|
9235
|
+
opacity5Depth: string;
|
|
9236
|
+
}, any>> | undefined;
|
|
9237
|
+
} | undefined;
|
|
9238
|
+
} | undefined;
|
|
8918
9239
|
StatusIcon?: {
|
|
8919
9240
|
peers?: {
|
|
8920
9241
|
[x: string]: any;
|
|
@@ -9608,6 +9929,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
9608
9929
|
codeColor: string;
|
|
9609
9930
|
codeBorder: string;
|
|
9610
9931
|
}, any>;
|
|
9932
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
9933
|
+
messageBubbleBackgroundColorOwn: string;
|
|
9934
|
+
messageBubbleBackgroundColorOther: string;
|
|
9935
|
+
messageBubbleTextColorOwn: string;
|
|
9936
|
+
messageBubbleTextColorOther: string;
|
|
9937
|
+
messageTimeColor: string;
|
|
9938
|
+
messageStatusReadColor: string;
|
|
9939
|
+
messageStatusSuccessColor: string;
|
|
9940
|
+
attachmentBackgroundColorOwn: string;
|
|
9941
|
+
attachmentBackgroundColorOther: string;
|
|
9942
|
+
messageErrorColor: string;
|
|
9943
|
+
messageBorderRadius: string;
|
|
9944
|
+
unreadNotificationBackgroundColor: string;
|
|
9945
|
+
unreadNotificationTextColor: string;
|
|
9946
|
+
serviceMessageTextColor: string;
|
|
9947
|
+
serviceMessageBackgroundColor: string;
|
|
9948
|
+
messageTitleColor: string;
|
|
9949
|
+
}, {
|
|
9950
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
9951
|
+
color: string;
|
|
9952
|
+
opacity1Depth: string;
|
|
9953
|
+
opacity2Depth: string;
|
|
9954
|
+
opacity3Depth: string;
|
|
9955
|
+
opacity4Depth: string;
|
|
9956
|
+
opacity5Depth: string;
|
|
9957
|
+
}, any>;
|
|
9958
|
+
}>;
|
|
9611
9959
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
9612
9960
|
color: string;
|
|
9613
9961
|
opacity1Depth: string;
|
|
@@ -9877,6 +10225,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
9877
10225
|
[x: string]: any;
|
|
9878
10226
|
} | undefined;
|
|
9879
10227
|
} | undefined;
|
|
10228
|
+
MessageBubble?: {
|
|
10229
|
+
peers?: {
|
|
10230
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
10231
|
+
color: string;
|
|
10232
|
+
opacity1Depth: string;
|
|
10233
|
+
opacity2Depth: string;
|
|
10234
|
+
opacity3Depth: string;
|
|
10235
|
+
opacity4Depth: string;
|
|
10236
|
+
opacity5Depth: string;
|
|
10237
|
+
}, any>> | undefined;
|
|
10238
|
+
} | undefined;
|
|
10239
|
+
} | undefined;
|
|
9880
10240
|
StatusIcon?: {
|
|
9881
10241
|
peers?: {
|
|
9882
10242
|
[x: string]: any;
|
|
@@ -10570,6 +10930,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10570
10930
|
codeColor: string;
|
|
10571
10931
|
codeBorder: string;
|
|
10572
10932
|
}, any>;
|
|
10933
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
10934
|
+
messageBubbleBackgroundColorOwn: string;
|
|
10935
|
+
messageBubbleBackgroundColorOther: string;
|
|
10936
|
+
messageBubbleTextColorOwn: string;
|
|
10937
|
+
messageBubbleTextColorOther: string;
|
|
10938
|
+
messageTimeColor: string;
|
|
10939
|
+
messageStatusReadColor: string;
|
|
10940
|
+
messageStatusSuccessColor: string;
|
|
10941
|
+
attachmentBackgroundColorOwn: string;
|
|
10942
|
+
attachmentBackgroundColorOther: string;
|
|
10943
|
+
messageErrorColor: string;
|
|
10944
|
+
messageBorderRadius: string;
|
|
10945
|
+
unreadNotificationBackgroundColor: string;
|
|
10946
|
+
unreadNotificationTextColor: string;
|
|
10947
|
+
serviceMessageTextColor: string;
|
|
10948
|
+
serviceMessageBackgroundColor: string;
|
|
10949
|
+
messageTitleColor: string;
|
|
10950
|
+
}, {
|
|
10951
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
10952
|
+
color: string;
|
|
10953
|
+
opacity1Depth: string;
|
|
10954
|
+
opacity2Depth: string;
|
|
10955
|
+
opacity3Depth: string;
|
|
10956
|
+
opacity4Depth: string;
|
|
10957
|
+
opacity5Depth: string;
|
|
10958
|
+
}, any>;
|
|
10959
|
+
}>;
|
|
10573
10960
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
10574
10961
|
color: string;
|
|
10575
10962
|
opacity1Depth: string;
|
|
@@ -10839,6 +11226,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10839
11226
|
[x: string]: any;
|
|
10840
11227
|
} | undefined;
|
|
10841
11228
|
} | undefined;
|
|
11229
|
+
MessageBubble?: {
|
|
11230
|
+
peers?: {
|
|
11231
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
11232
|
+
color: string;
|
|
11233
|
+
opacity1Depth: string;
|
|
11234
|
+
opacity2Depth: string;
|
|
11235
|
+
opacity3Depth: string;
|
|
11236
|
+
opacity4Depth: string;
|
|
11237
|
+
opacity5Depth: string;
|
|
11238
|
+
}, any>> | undefined;
|
|
11239
|
+
} | undefined;
|
|
11240
|
+
} | undefined;
|
|
10842
11241
|
StatusIcon?: {
|
|
10843
11242
|
peers?: {
|
|
10844
11243
|
[x: string]: any;
|
|
@@ -11743,6 +12142,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11743
12142
|
codeColor: string;
|
|
11744
12143
|
codeBorder: string;
|
|
11745
12144
|
}, any>;
|
|
12145
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
12146
|
+
messageBubbleBackgroundColorOwn: string;
|
|
12147
|
+
messageBubbleBackgroundColorOther: string;
|
|
12148
|
+
messageBubbleTextColorOwn: string;
|
|
12149
|
+
messageBubbleTextColorOther: string;
|
|
12150
|
+
messageTimeColor: string;
|
|
12151
|
+
messageStatusReadColor: string;
|
|
12152
|
+
messageStatusSuccessColor: string;
|
|
12153
|
+
attachmentBackgroundColorOwn: string;
|
|
12154
|
+
attachmentBackgroundColorOther: string;
|
|
12155
|
+
messageErrorColor: string;
|
|
12156
|
+
messageBorderRadius: string;
|
|
12157
|
+
unreadNotificationBackgroundColor: string;
|
|
12158
|
+
unreadNotificationTextColor: string;
|
|
12159
|
+
serviceMessageTextColor: string;
|
|
12160
|
+
serviceMessageBackgroundColor: string;
|
|
12161
|
+
messageTitleColor: string;
|
|
12162
|
+
}, {
|
|
12163
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
12164
|
+
color: string;
|
|
12165
|
+
opacity1Depth: string;
|
|
12166
|
+
opacity2Depth: string;
|
|
12167
|
+
opacity3Depth: string;
|
|
12168
|
+
opacity4Depth: string;
|
|
12169
|
+
opacity5Depth: string;
|
|
12170
|
+
}, any>;
|
|
12171
|
+
}>;
|
|
11746
12172
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
11747
12173
|
color: string;
|
|
11748
12174
|
opacity1Depth: string;
|
|
@@ -12448,6 +12874,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12448
12874
|
codeColor: string;
|
|
12449
12875
|
codeBorder: string;
|
|
12450
12876
|
}, any>;
|
|
12877
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
12878
|
+
messageBubbleBackgroundColorOwn: string;
|
|
12879
|
+
messageBubbleBackgroundColorOther: string;
|
|
12880
|
+
messageBubbleTextColorOwn: string;
|
|
12881
|
+
messageBubbleTextColorOther: string;
|
|
12882
|
+
messageTimeColor: string;
|
|
12883
|
+
messageStatusReadColor: string;
|
|
12884
|
+
messageStatusSuccessColor: string;
|
|
12885
|
+
attachmentBackgroundColorOwn: string;
|
|
12886
|
+
attachmentBackgroundColorOther: string;
|
|
12887
|
+
messageErrorColor: string;
|
|
12888
|
+
messageBorderRadius: string;
|
|
12889
|
+
unreadNotificationBackgroundColor: string;
|
|
12890
|
+
unreadNotificationTextColor: string;
|
|
12891
|
+
serviceMessageTextColor: string;
|
|
12892
|
+
serviceMessageBackgroundColor: string;
|
|
12893
|
+
messageTitleColor: string;
|
|
12894
|
+
}, {
|
|
12895
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
12896
|
+
color: string;
|
|
12897
|
+
opacity1Depth: string;
|
|
12898
|
+
opacity2Depth: string;
|
|
12899
|
+
opacity3Depth: string;
|
|
12900
|
+
opacity4Depth: string;
|
|
12901
|
+
opacity5Depth: string;
|
|
12902
|
+
}, any>;
|
|
12903
|
+
}>;
|
|
12451
12904
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
12452
12905
|
color: string;
|
|
12453
12906
|
opacity1Depth: string;
|
|
@@ -13153,6 +13606,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13153
13606
|
codeColor: string;
|
|
13154
13607
|
codeBorder: string;
|
|
13155
13608
|
}, any>;
|
|
13609
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
13610
|
+
messageBubbleBackgroundColorOwn: string;
|
|
13611
|
+
messageBubbleBackgroundColorOther: string;
|
|
13612
|
+
messageBubbleTextColorOwn: string;
|
|
13613
|
+
messageBubbleTextColorOther: string;
|
|
13614
|
+
messageTimeColor: string;
|
|
13615
|
+
messageStatusReadColor: string;
|
|
13616
|
+
messageStatusSuccessColor: string;
|
|
13617
|
+
attachmentBackgroundColorOwn: string;
|
|
13618
|
+
attachmentBackgroundColorOther: string;
|
|
13619
|
+
messageErrorColor: string;
|
|
13620
|
+
messageBorderRadius: string;
|
|
13621
|
+
unreadNotificationBackgroundColor: string;
|
|
13622
|
+
unreadNotificationTextColor: string;
|
|
13623
|
+
serviceMessageTextColor: string;
|
|
13624
|
+
serviceMessageBackgroundColor: string;
|
|
13625
|
+
messageTitleColor: string;
|
|
13626
|
+
}, {
|
|
13627
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
13628
|
+
color: string;
|
|
13629
|
+
opacity1Depth: string;
|
|
13630
|
+
opacity2Depth: string;
|
|
13631
|
+
opacity3Depth: string;
|
|
13632
|
+
opacity4Depth: string;
|
|
13633
|
+
opacity5Depth: string;
|
|
13634
|
+
}, any>;
|
|
13635
|
+
}>;
|
|
13156
13636
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
13157
13637
|
color: string;
|
|
13158
13638
|
opacity1Depth: string;
|
|
@@ -13863,6 +14343,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13863
14343
|
codeColor: string;
|
|
13864
14344
|
codeBorder: string;
|
|
13865
14345
|
}, any>;
|
|
14346
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
14347
|
+
messageBubbleBackgroundColorOwn: string;
|
|
14348
|
+
messageBubbleBackgroundColorOther: string;
|
|
14349
|
+
messageBubbleTextColorOwn: string;
|
|
14350
|
+
messageBubbleTextColorOther: string;
|
|
14351
|
+
messageTimeColor: string;
|
|
14352
|
+
messageStatusReadColor: string;
|
|
14353
|
+
messageStatusSuccessColor: string;
|
|
14354
|
+
attachmentBackgroundColorOwn: string;
|
|
14355
|
+
attachmentBackgroundColorOther: string;
|
|
14356
|
+
messageErrorColor: string;
|
|
14357
|
+
messageBorderRadius: string;
|
|
14358
|
+
unreadNotificationBackgroundColor: string;
|
|
14359
|
+
unreadNotificationTextColor: string;
|
|
14360
|
+
serviceMessageTextColor: string;
|
|
14361
|
+
serviceMessageBackgroundColor: string;
|
|
14362
|
+
messageTitleColor: string;
|
|
14363
|
+
}, {
|
|
14364
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
14365
|
+
color: string;
|
|
14366
|
+
opacity1Depth: string;
|
|
14367
|
+
opacity2Depth: string;
|
|
14368
|
+
opacity3Depth: string;
|
|
14369
|
+
opacity4Depth: string;
|
|
14370
|
+
opacity5Depth: string;
|
|
14371
|
+
}, any>;
|
|
14372
|
+
}>;
|
|
13866
14373
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
13867
14374
|
color: string;
|
|
13868
14375
|
opacity1Depth: string;
|
|
@@ -14132,6 +14639,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14132
14639
|
[x: string]: any;
|
|
14133
14640
|
} | undefined;
|
|
14134
14641
|
} | undefined;
|
|
14642
|
+
MessageBubble?: {
|
|
14643
|
+
peers?: {
|
|
14644
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
14645
|
+
color: string;
|
|
14646
|
+
opacity1Depth: string;
|
|
14647
|
+
opacity2Depth: string;
|
|
14648
|
+
opacity3Depth: string;
|
|
14649
|
+
opacity4Depth: string;
|
|
14650
|
+
opacity5Depth: string;
|
|
14651
|
+
}, any>> | undefined;
|
|
14652
|
+
} | undefined;
|
|
14653
|
+
} | undefined;
|
|
14135
14654
|
StatusIcon?: {
|
|
14136
14655
|
peers?: {
|
|
14137
14656
|
[x: string]: any;
|
|
@@ -14825,6 +15344,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14825
15344
|
codeColor: string;
|
|
14826
15345
|
codeBorder: string;
|
|
14827
15346
|
}, any>;
|
|
15347
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
15348
|
+
messageBubbleBackgroundColorOwn: string;
|
|
15349
|
+
messageBubbleBackgroundColorOther: string;
|
|
15350
|
+
messageBubbleTextColorOwn: string;
|
|
15351
|
+
messageBubbleTextColorOther: string;
|
|
15352
|
+
messageTimeColor: string;
|
|
15353
|
+
messageStatusReadColor: string;
|
|
15354
|
+
messageStatusSuccessColor: string;
|
|
15355
|
+
attachmentBackgroundColorOwn: string;
|
|
15356
|
+
attachmentBackgroundColorOther: string;
|
|
15357
|
+
messageErrorColor: string;
|
|
15358
|
+
messageBorderRadius: string;
|
|
15359
|
+
unreadNotificationBackgroundColor: string;
|
|
15360
|
+
unreadNotificationTextColor: string;
|
|
15361
|
+
serviceMessageTextColor: string;
|
|
15362
|
+
serviceMessageBackgroundColor: string;
|
|
15363
|
+
messageTitleColor: string;
|
|
15364
|
+
}, {
|
|
15365
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
15366
|
+
color: string;
|
|
15367
|
+
opacity1Depth: string;
|
|
15368
|
+
opacity2Depth: string;
|
|
15369
|
+
opacity3Depth: string;
|
|
15370
|
+
opacity4Depth: string;
|
|
15371
|
+
opacity5Depth: string;
|
|
15372
|
+
}, any>;
|
|
15373
|
+
}>;
|
|
14828
15374
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
14829
15375
|
color: string;
|
|
14830
15376
|
opacity1Depth: string;
|
|
@@ -15094,6 +15640,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
15094
15640
|
[x: string]: any;
|
|
15095
15641
|
} | undefined;
|
|
15096
15642
|
} | undefined;
|
|
15643
|
+
MessageBubble?: {
|
|
15644
|
+
peers?: {
|
|
15645
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
15646
|
+
color: string;
|
|
15647
|
+
opacity1Depth: string;
|
|
15648
|
+
opacity2Depth: string;
|
|
15649
|
+
opacity3Depth: string;
|
|
15650
|
+
opacity4Depth: string;
|
|
15651
|
+
opacity5Depth: string;
|
|
15652
|
+
}, any>> | undefined;
|
|
15653
|
+
} | undefined;
|
|
15654
|
+
} | undefined;
|
|
15097
15655
|
StatusIcon?: {
|
|
15098
15656
|
peers?: {
|
|
15099
15657
|
[x: string]: any;
|
|
@@ -15787,6 +16345,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
15787
16345
|
codeColor: string;
|
|
15788
16346
|
codeBorder: string;
|
|
15789
16347
|
}, any>;
|
|
16348
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
16349
|
+
messageBubbleBackgroundColorOwn: string;
|
|
16350
|
+
messageBubbleBackgroundColorOther: string;
|
|
16351
|
+
messageBubbleTextColorOwn: string;
|
|
16352
|
+
messageBubbleTextColorOther: string;
|
|
16353
|
+
messageTimeColor: string;
|
|
16354
|
+
messageStatusReadColor: string;
|
|
16355
|
+
messageStatusSuccessColor: string;
|
|
16356
|
+
attachmentBackgroundColorOwn: string;
|
|
16357
|
+
attachmentBackgroundColorOther: string;
|
|
16358
|
+
messageErrorColor: string;
|
|
16359
|
+
messageBorderRadius: string;
|
|
16360
|
+
unreadNotificationBackgroundColor: string;
|
|
16361
|
+
unreadNotificationTextColor: string;
|
|
16362
|
+
serviceMessageTextColor: string;
|
|
16363
|
+
serviceMessageBackgroundColor: string;
|
|
16364
|
+
messageTitleColor: string;
|
|
16365
|
+
}, {
|
|
16366
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
16367
|
+
color: string;
|
|
16368
|
+
opacity1Depth: string;
|
|
16369
|
+
opacity2Depth: string;
|
|
16370
|
+
opacity3Depth: string;
|
|
16371
|
+
opacity4Depth: string;
|
|
16372
|
+
opacity5Depth: string;
|
|
16373
|
+
}, any>;
|
|
16374
|
+
}>;
|
|
15790
16375
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
15791
16376
|
color: string;
|
|
15792
16377
|
opacity1Depth: string;
|
|
@@ -16056,6 +16641,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
16056
16641
|
[x: string]: any;
|
|
16057
16642
|
} | undefined;
|
|
16058
16643
|
} | undefined;
|
|
16644
|
+
MessageBubble?: {
|
|
16645
|
+
peers?: {
|
|
16646
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
16647
|
+
color: string;
|
|
16648
|
+
opacity1Depth: string;
|
|
16649
|
+
opacity2Depth: string;
|
|
16650
|
+
opacity3Depth: string;
|
|
16651
|
+
opacity4Depth: string;
|
|
16652
|
+
opacity5Depth: string;
|
|
16653
|
+
}, any>> | undefined;
|
|
16654
|
+
} | undefined;
|
|
16655
|
+
} | undefined;
|
|
16059
16656
|
StatusIcon?: {
|
|
16060
16657
|
peers?: {
|
|
16061
16658
|
[x: string]: any;
|
|
@@ -16953,6 +17550,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
16953
17550
|
codeColor: string;
|
|
16954
17551
|
codeBorder: string;
|
|
16955
17552
|
}, any>;
|
|
17553
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
17554
|
+
messageBubbleBackgroundColorOwn: string;
|
|
17555
|
+
messageBubbleBackgroundColorOther: string;
|
|
17556
|
+
messageBubbleTextColorOwn: string;
|
|
17557
|
+
messageBubbleTextColorOther: string;
|
|
17558
|
+
messageTimeColor: string;
|
|
17559
|
+
messageStatusReadColor: string;
|
|
17560
|
+
messageStatusSuccessColor: string;
|
|
17561
|
+
attachmentBackgroundColorOwn: string;
|
|
17562
|
+
attachmentBackgroundColorOther: string;
|
|
17563
|
+
messageErrorColor: string;
|
|
17564
|
+
messageBorderRadius: string;
|
|
17565
|
+
unreadNotificationBackgroundColor: string;
|
|
17566
|
+
unreadNotificationTextColor: string;
|
|
17567
|
+
serviceMessageTextColor: string;
|
|
17568
|
+
serviceMessageBackgroundColor: string;
|
|
17569
|
+
messageTitleColor: string;
|
|
17570
|
+
}, {
|
|
17571
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
17572
|
+
color: string;
|
|
17573
|
+
opacity1Depth: string;
|
|
17574
|
+
opacity2Depth: string;
|
|
17575
|
+
opacity3Depth: string;
|
|
17576
|
+
opacity4Depth: string;
|
|
17577
|
+
opacity5Depth: string;
|
|
17578
|
+
}, any>;
|
|
17579
|
+
}>;
|
|
16956
17580
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
16957
17581
|
color: string;
|
|
16958
17582
|
opacity1Depth: string;
|
|
@@ -17658,6 +18282,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
17658
18282
|
codeColor: string;
|
|
17659
18283
|
codeBorder: string;
|
|
17660
18284
|
}, any>;
|
|
18285
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
18286
|
+
messageBubbleBackgroundColorOwn: string;
|
|
18287
|
+
messageBubbleBackgroundColorOther: string;
|
|
18288
|
+
messageBubbleTextColorOwn: string;
|
|
18289
|
+
messageBubbleTextColorOther: string;
|
|
18290
|
+
messageTimeColor: string;
|
|
18291
|
+
messageStatusReadColor: string;
|
|
18292
|
+
messageStatusSuccessColor: string;
|
|
18293
|
+
attachmentBackgroundColorOwn: string;
|
|
18294
|
+
attachmentBackgroundColorOther: string;
|
|
18295
|
+
messageErrorColor: string;
|
|
18296
|
+
messageBorderRadius: string;
|
|
18297
|
+
unreadNotificationBackgroundColor: string;
|
|
18298
|
+
unreadNotificationTextColor: string;
|
|
18299
|
+
serviceMessageTextColor: string;
|
|
18300
|
+
serviceMessageBackgroundColor: string;
|
|
18301
|
+
messageTitleColor: string;
|
|
18302
|
+
}, {
|
|
18303
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
18304
|
+
color: string;
|
|
18305
|
+
opacity1Depth: string;
|
|
18306
|
+
opacity2Depth: string;
|
|
18307
|
+
opacity3Depth: string;
|
|
18308
|
+
opacity4Depth: string;
|
|
18309
|
+
opacity5Depth: string;
|
|
18310
|
+
}, any>;
|
|
18311
|
+
}>;
|
|
17661
18312
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
17662
18313
|
color: string;
|
|
17663
18314
|
opacity1Depth: string;
|
|
@@ -18363,6 +19014,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
18363
19014
|
codeColor: string;
|
|
18364
19015
|
codeBorder: string;
|
|
18365
19016
|
}, any>;
|
|
19017
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
19018
|
+
messageBubbleBackgroundColorOwn: string;
|
|
19019
|
+
messageBubbleBackgroundColorOther: string;
|
|
19020
|
+
messageBubbleTextColorOwn: string;
|
|
19021
|
+
messageBubbleTextColorOther: string;
|
|
19022
|
+
messageTimeColor: string;
|
|
19023
|
+
messageStatusReadColor: string;
|
|
19024
|
+
messageStatusSuccessColor: string;
|
|
19025
|
+
attachmentBackgroundColorOwn: string;
|
|
19026
|
+
attachmentBackgroundColorOther: string;
|
|
19027
|
+
messageErrorColor: string;
|
|
19028
|
+
messageBorderRadius: string;
|
|
19029
|
+
unreadNotificationBackgroundColor: string;
|
|
19030
|
+
unreadNotificationTextColor: string;
|
|
19031
|
+
serviceMessageTextColor: string;
|
|
19032
|
+
serviceMessageBackgroundColor: string;
|
|
19033
|
+
messageTitleColor: string;
|
|
19034
|
+
}, {
|
|
19035
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
19036
|
+
color: string;
|
|
19037
|
+
opacity1Depth: string;
|
|
19038
|
+
opacity2Depth: string;
|
|
19039
|
+
opacity3Depth: string;
|
|
19040
|
+
opacity4Depth: string;
|
|
19041
|
+
opacity5Depth: string;
|
|
19042
|
+
}, any>;
|
|
19043
|
+
}>;
|
|
18366
19044
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
18367
19045
|
color: string;
|
|
18368
19046
|
opacity1Depth: string;
|
|
@@ -19073,6 +19751,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
19073
19751
|
codeColor: string;
|
|
19074
19752
|
codeBorder: string;
|
|
19075
19753
|
}, any>;
|
|
19754
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
19755
|
+
messageBubbleBackgroundColorOwn: string;
|
|
19756
|
+
messageBubbleBackgroundColorOther: string;
|
|
19757
|
+
messageBubbleTextColorOwn: string;
|
|
19758
|
+
messageBubbleTextColorOther: string;
|
|
19759
|
+
messageTimeColor: string;
|
|
19760
|
+
messageStatusReadColor: string;
|
|
19761
|
+
messageStatusSuccessColor: string;
|
|
19762
|
+
attachmentBackgroundColorOwn: string;
|
|
19763
|
+
attachmentBackgroundColorOther: string;
|
|
19764
|
+
messageErrorColor: string;
|
|
19765
|
+
messageBorderRadius: string;
|
|
19766
|
+
unreadNotificationBackgroundColor: string;
|
|
19767
|
+
unreadNotificationTextColor: string;
|
|
19768
|
+
serviceMessageTextColor: string;
|
|
19769
|
+
serviceMessageBackgroundColor: string;
|
|
19770
|
+
messageTitleColor: string;
|
|
19771
|
+
}, {
|
|
19772
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
19773
|
+
color: string;
|
|
19774
|
+
opacity1Depth: string;
|
|
19775
|
+
opacity2Depth: string;
|
|
19776
|
+
opacity3Depth: string;
|
|
19777
|
+
opacity4Depth: string;
|
|
19778
|
+
opacity5Depth: string;
|
|
19779
|
+
}, any>;
|
|
19780
|
+
}>;
|
|
19076
19781
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
19077
19782
|
color: string;
|
|
19078
19783
|
opacity1Depth: string;
|
|
@@ -19342,6 +20047,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
19342
20047
|
[x: string]: any;
|
|
19343
20048
|
} | undefined;
|
|
19344
20049
|
} | undefined;
|
|
20050
|
+
MessageBubble?: {
|
|
20051
|
+
peers?: {
|
|
20052
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
20053
|
+
color: string;
|
|
20054
|
+
opacity1Depth: string;
|
|
20055
|
+
opacity2Depth: string;
|
|
20056
|
+
opacity3Depth: string;
|
|
20057
|
+
opacity4Depth: string;
|
|
20058
|
+
opacity5Depth: string;
|
|
20059
|
+
}, any>> | undefined;
|
|
20060
|
+
} | undefined;
|
|
20061
|
+
} | undefined;
|
|
19345
20062
|
StatusIcon?: {
|
|
19346
20063
|
peers?: {
|
|
19347
20064
|
[x: string]: any;
|
|
@@ -20035,6 +20752,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
20035
20752
|
codeColor: string;
|
|
20036
20753
|
codeBorder: string;
|
|
20037
20754
|
}, any>;
|
|
20755
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
20756
|
+
messageBubbleBackgroundColorOwn: string;
|
|
20757
|
+
messageBubbleBackgroundColorOther: string;
|
|
20758
|
+
messageBubbleTextColorOwn: string;
|
|
20759
|
+
messageBubbleTextColorOther: string;
|
|
20760
|
+
messageTimeColor: string;
|
|
20761
|
+
messageStatusReadColor: string;
|
|
20762
|
+
messageStatusSuccessColor: string;
|
|
20763
|
+
attachmentBackgroundColorOwn: string;
|
|
20764
|
+
attachmentBackgroundColorOther: string;
|
|
20765
|
+
messageErrorColor: string;
|
|
20766
|
+
messageBorderRadius: string;
|
|
20767
|
+
unreadNotificationBackgroundColor: string;
|
|
20768
|
+
unreadNotificationTextColor: string;
|
|
20769
|
+
serviceMessageTextColor: string;
|
|
20770
|
+
serviceMessageBackgroundColor: string;
|
|
20771
|
+
messageTitleColor: string;
|
|
20772
|
+
}, {
|
|
20773
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
20774
|
+
color: string;
|
|
20775
|
+
opacity1Depth: string;
|
|
20776
|
+
opacity2Depth: string;
|
|
20777
|
+
opacity3Depth: string;
|
|
20778
|
+
opacity4Depth: string;
|
|
20779
|
+
opacity5Depth: string;
|
|
20780
|
+
}, any>;
|
|
20781
|
+
}>;
|
|
20038
20782
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
20039
20783
|
color: string;
|
|
20040
20784
|
opacity1Depth: string;
|
|
@@ -20304,6 +21048,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
20304
21048
|
[x: string]: any;
|
|
20305
21049
|
} | undefined;
|
|
20306
21050
|
} | undefined;
|
|
21051
|
+
MessageBubble?: {
|
|
21052
|
+
peers?: {
|
|
21053
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
21054
|
+
color: string;
|
|
21055
|
+
opacity1Depth: string;
|
|
21056
|
+
opacity2Depth: string;
|
|
21057
|
+
opacity3Depth: string;
|
|
21058
|
+
opacity4Depth: string;
|
|
21059
|
+
opacity5Depth: string;
|
|
21060
|
+
}, any>> | undefined;
|
|
21061
|
+
} | undefined;
|
|
21062
|
+
} | undefined;
|
|
20307
21063
|
StatusIcon?: {
|
|
20308
21064
|
peers?: {
|
|
20309
21065
|
[x: string]: any;
|
|
@@ -20997,6 +21753,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
20997
21753
|
codeColor: string;
|
|
20998
21754
|
codeBorder: string;
|
|
20999
21755
|
}, any>;
|
|
21756
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
21757
|
+
messageBubbleBackgroundColorOwn: string;
|
|
21758
|
+
messageBubbleBackgroundColorOther: string;
|
|
21759
|
+
messageBubbleTextColorOwn: string;
|
|
21760
|
+
messageBubbleTextColorOther: string;
|
|
21761
|
+
messageTimeColor: string;
|
|
21762
|
+
messageStatusReadColor: string;
|
|
21763
|
+
messageStatusSuccessColor: string;
|
|
21764
|
+
attachmentBackgroundColorOwn: string;
|
|
21765
|
+
attachmentBackgroundColorOther: string;
|
|
21766
|
+
messageErrorColor: string;
|
|
21767
|
+
messageBorderRadius: string;
|
|
21768
|
+
unreadNotificationBackgroundColor: string;
|
|
21769
|
+
unreadNotificationTextColor: string;
|
|
21770
|
+
serviceMessageTextColor: string;
|
|
21771
|
+
serviceMessageBackgroundColor: string;
|
|
21772
|
+
messageTitleColor: string;
|
|
21773
|
+
}, {
|
|
21774
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
21775
|
+
color: string;
|
|
21776
|
+
opacity1Depth: string;
|
|
21777
|
+
opacity2Depth: string;
|
|
21778
|
+
opacity3Depth: string;
|
|
21779
|
+
opacity4Depth: string;
|
|
21780
|
+
opacity5Depth: string;
|
|
21781
|
+
}, any>;
|
|
21782
|
+
}>;
|
|
21000
21783
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
21001
21784
|
color: string;
|
|
21002
21785
|
opacity1Depth: string;
|
|
@@ -21266,6 +22049,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
21266
22049
|
[x: string]: any;
|
|
21267
22050
|
} | undefined;
|
|
21268
22051
|
} | undefined;
|
|
22052
|
+
MessageBubble?: {
|
|
22053
|
+
peers?: {
|
|
22054
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
22055
|
+
color: string;
|
|
22056
|
+
opacity1Depth: string;
|
|
22057
|
+
opacity2Depth: string;
|
|
22058
|
+
opacity3Depth: string;
|
|
22059
|
+
opacity4Depth: string;
|
|
22060
|
+
opacity5Depth: string;
|
|
22061
|
+
}, any>> | undefined;
|
|
22062
|
+
} | undefined;
|
|
22063
|
+
} | undefined;
|
|
21269
22064
|
StatusIcon?: {
|
|
21270
22065
|
peers?: {
|
|
21271
22066
|
[x: string]: any;
|
|
@@ -22170,6 +22965,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
22170
22965
|
codeColor: string;
|
|
22171
22966
|
codeBorder: string;
|
|
22172
22967
|
}, any>;
|
|
22968
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
22969
|
+
messageBubbleBackgroundColorOwn: string;
|
|
22970
|
+
messageBubbleBackgroundColorOther: string;
|
|
22971
|
+
messageBubbleTextColorOwn: string;
|
|
22972
|
+
messageBubbleTextColorOther: string;
|
|
22973
|
+
messageTimeColor: string;
|
|
22974
|
+
messageStatusReadColor: string;
|
|
22975
|
+
messageStatusSuccessColor: string;
|
|
22976
|
+
attachmentBackgroundColorOwn: string;
|
|
22977
|
+
attachmentBackgroundColorOther: string;
|
|
22978
|
+
messageErrorColor: string;
|
|
22979
|
+
messageBorderRadius: string;
|
|
22980
|
+
unreadNotificationBackgroundColor: string;
|
|
22981
|
+
unreadNotificationTextColor: string;
|
|
22982
|
+
serviceMessageTextColor: string;
|
|
22983
|
+
serviceMessageBackgroundColor: string;
|
|
22984
|
+
messageTitleColor: string;
|
|
22985
|
+
}, {
|
|
22986
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
22987
|
+
color: string;
|
|
22988
|
+
opacity1Depth: string;
|
|
22989
|
+
opacity2Depth: string;
|
|
22990
|
+
opacity3Depth: string;
|
|
22991
|
+
opacity4Depth: string;
|
|
22992
|
+
opacity5Depth: string;
|
|
22993
|
+
}, any>;
|
|
22994
|
+
}>;
|
|
22173
22995
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
22174
22996
|
color: string;
|
|
22175
22997
|
opacity1Depth: string;
|
|
@@ -22875,6 +23697,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
22875
23697
|
codeColor: string;
|
|
22876
23698
|
codeBorder: string;
|
|
22877
23699
|
}, any>;
|
|
23700
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
23701
|
+
messageBubbleBackgroundColorOwn: string;
|
|
23702
|
+
messageBubbleBackgroundColorOther: string;
|
|
23703
|
+
messageBubbleTextColorOwn: string;
|
|
23704
|
+
messageBubbleTextColorOther: string;
|
|
23705
|
+
messageTimeColor: string;
|
|
23706
|
+
messageStatusReadColor: string;
|
|
23707
|
+
messageStatusSuccessColor: string;
|
|
23708
|
+
attachmentBackgroundColorOwn: string;
|
|
23709
|
+
attachmentBackgroundColorOther: string;
|
|
23710
|
+
messageErrorColor: string;
|
|
23711
|
+
messageBorderRadius: string;
|
|
23712
|
+
unreadNotificationBackgroundColor: string;
|
|
23713
|
+
unreadNotificationTextColor: string;
|
|
23714
|
+
serviceMessageTextColor: string;
|
|
23715
|
+
serviceMessageBackgroundColor: string;
|
|
23716
|
+
messageTitleColor: string;
|
|
23717
|
+
}, {
|
|
23718
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
23719
|
+
color: string;
|
|
23720
|
+
opacity1Depth: string;
|
|
23721
|
+
opacity2Depth: string;
|
|
23722
|
+
opacity3Depth: string;
|
|
23723
|
+
opacity4Depth: string;
|
|
23724
|
+
opacity5Depth: string;
|
|
23725
|
+
}, any>;
|
|
23726
|
+
}>;
|
|
22878
23727
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
22879
23728
|
color: string;
|
|
22880
23729
|
opacity1Depth: string;
|
|
@@ -23580,6 +24429,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
23580
24429
|
codeColor: string;
|
|
23581
24430
|
codeBorder: string;
|
|
23582
24431
|
}, any>;
|
|
24432
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
24433
|
+
messageBubbleBackgroundColorOwn: string;
|
|
24434
|
+
messageBubbleBackgroundColorOther: string;
|
|
24435
|
+
messageBubbleTextColorOwn: string;
|
|
24436
|
+
messageBubbleTextColorOther: string;
|
|
24437
|
+
messageTimeColor: string;
|
|
24438
|
+
messageStatusReadColor: string;
|
|
24439
|
+
messageStatusSuccessColor: string;
|
|
24440
|
+
attachmentBackgroundColorOwn: string;
|
|
24441
|
+
attachmentBackgroundColorOther: string;
|
|
24442
|
+
messageErrorColor: string;
|
|
24443
|
+
messageBorderRadius: string;
|
|
24444
|
+
unreadNotificationBackgroundColor: string;
|
|
24445
|
+
unreadNotificationTextColor: string;
|
|
24446
|
+
serviceMessageTextColor: string;
|
|
24447
|
+
serviceMessageBackgroundColor: string;
|
|
24448
|
+
messageTitleColor: string;
|
|
24449
|
+
}, {
|
|
24450
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
24451
|
+
color: string;
|
|
24452
|
+
opacity1Depth: string;
|
|
24453
|
+
opacity2Depth: string;
|
|
24454
|
+
opacity3Depth: string;
|
|
24455
|
+
opacity4Depth: string;
|
|
24456
|
+
opacity5Depth: string;
|
|
24457
|
+
}, any>;
|
|
24458
|
+
}>;
|
|
23583
24459
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
23584
24460
|
color: string;
|
|
23585
24461
|
opacity1Depth: string;
|
|
@@ -24290,6 +25166,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
24290
25166
|
codeColor: string;
|
|
24291
25167
|
codeBorder: string;
|
|
24292
25168
|
}, any>;
|
|
25169
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
25170
|
+
messageBubbleBackgroundColorOwn: string;
|
|
25171
|
+
messageBubbleBackgroundColorOther: string;
|
|
25172
|
+
messageBubbleTextColorOwn: string;
|
|
25173
|
+
messageBubbleTextColorOther: string;
|
|
25174
|
+
messageTimeColor: string;
|
|
25175
|
+
messageStatusReadColor: string;
|
|
25176
|
+
messageStatusSuccessColor: string;
|
|
25177
|
+
attachmentBackgroundColorOwn: string;
|
|
25178
|
+
attachmentBackgroundColorOther: string;
|
|
25179
|
+
messageErrorColor: string;
|
|
25180
|
+
messageBorderRadius: string;
|
|
25181
|
+
unreadNotificationBackgroundColor: string;
|
|
25182
|
+
unreadNotificationTextColor: string;
|
|
25183
|
+
serviceMessageTextColor: string;
|
|
25184
|
+
serviceMessageBackgroundColor: string;
|
|
25185
|
+
messageTitleColor: string;
|
|
25186
|
+
}, {
|
|
25187
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
25188
|
+
color: string;
|
|
25189
|
+
opacity1Depth: string;
|
|
25190
|
+
opacity2Depth: string;
|
|
25191
|
+
opacity3Depth: string;
|
|
25192
|
+
opacity4Depth: string;
|
|
25193
|
+
opacity5Depth: string;
|
|
25194
|
+
}, any>;
|
|
25195
|
+
}>;
|
|
24293
25196
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
24294
25197
|
color: string;
|
|
24295
25198
|
opacity1Depth: string;
|
|
@@ -24559,6 +25462,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
24559
25462
|
[x: string]: any;
|
|
24560
25463
|
} | undefined;
|
|
24561
25464
|
} | undefined;
|
|
25465
|
+
MessageBubble?: {
|
|
25466
|
+
peers?: {
|
|
25467
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
25468
|
+
color: string;
|
|
25469
|
+
opacity1Depth: string;
|
|
25470
|
+
opacity2Depth: string;
|
|
25471
|
+
opacity3Depth: string;
|
|
25472
|
+
opacity4Depth: string;
|
|
25473
|
+
opacity5Depth: string;
|
|
25474
|
+
}, any>> | undefined;
|
|
25475
|
+
} | undefined;
|
|
25476
|
+
} | undefined;
|
|
24562
25477
|
StatusIcon?: {
|
|
24563
25478
|
peers?: {
|
|
24564
25479
|
[x: string]: any;
|
|
@@ -25252,6 +26167,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
25252
26167
|
codeColor: string;
|
|
25253
26168
|
codeBorder: string;
|
|
25254
26169
|
}, any>;
|
|
26170
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
26171
|
+
messageBubbleBackgroundColorOwn: string;
|
|
26172
|
+
messageBubbleBackgroundColorOther: string;
|
|
26173
|
+
messageBubbleTextColorOwn: string;
|
|
26174
|
+
messageBubbleTextColorOther: string;
|
|
26175
|
+
messageTimeColor: string;
|
|
26176
|
+
messageStatusReadColor: string;
|
|
26177
|
+
messageStatusSuccessColor: string;
|
|
26178
|
+
attachmentBackgroundColorOwn: string;
|
|
26179
|
+
attachmentBackgroundColorOther: string;
|
|
26180
|
+
messageErrorColor: string;
|
|
26181
|
+
messageBorderRadius: string;
|
|
26182
|
+
unreadNotificationBackgroundColor: string;
|
|
26183
|
+
unreadNotificationTextColor: string;
|
|
26184
|
+
serviceMessageTextColor: string;
|
|
26185
|
+
serviceMessageBackgroundColor: string;
|
|
26186
|
+
messageTitleColor: string;
|
|
26187
|
+
}, {
|
|
26188
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
26189
|
+
color: string;
|
|
26190
|
+
opacity1Depth: string;
|
|
26191
|
+
opacity2Depth: string;
|
|
26192
|
+
opacity3Depth: string;
|
|
26193
|
+
opacity4Depth: string;
|
|
26194
|
+
opacity5Depth: string;
|
|
26195
|
+
}, any>;
|
|
26196
|
+
}>;
|
|
25255
26197
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
25256
26198
|
color: string;
|
|
25257
26199
|
opacity1Depth: string;
|
|
@@ -25521,6 +26463,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
25521
26463
|
[x: string]: any;
|
|
25522
26464
|
} | undefined;
|
|
25523
26465
|
} | undefined;
|
|
26466
|
+
MessageBubble?: {
|
|
26467
|
+
peers?: {
|
|
26468
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
26469
|
+
color: string;
|
|
26470
|
+
opacity1Depth: string;
|
|
26471
|
+
opacity2Depth: string;
|
|
26472
|
+
opacity3Depth: string;
|
|
26473
|
+
opacity4Depth: string;
|
|
26474
|
+
opacity5Depth: string;
|
|
26475
|
+
}, any>> | undefined;
|
|
26476
|
+
} | undefined;
|
|
26477
|
+
} | undefined;
|
|
25524
26478
|
StatusIcon?: {
|
|
25525
26479
|
peers?: {
|
|
25526
26480
|
[x: string]: any;
|
|
@@ -26214,6 +27168,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
26214
27168
|
codeColor: string;
|
|
26215
27169
|
codeBorder: string;
|
|
26216
27170
|
}, any>;
|
|
27171
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
27172
|
+
messageBubbleBackgroundColorOwn: string;
|
|
27173
|
+
messageBubbleBackgroundColorOther: string;
|
|
27174
|
+
messageBubbleTextColorOwn: string;
|
|
27175
|
+
messageBubbleTextColorOther: string;
|
|
27176
|
+
messageTimeColor: string;
|
|
27177
|
+
messageStatusReadColor: string;
|
|
27178
|
+
messageStatusSuccessColor: string;
|
|
27179
|
+
attachmentBackgroundColorOwn: string;
|
|
27180
|
+
attachmentBackgroundColorOther: string;
|
|
27181
|
+
messageErrorColor: string;
|
|
27182
|
+
messageBorderRadius: string;
|
|
27183
|
+
unreadNotificationBackgroundColor: string;
|
|
27184
|
+
unreadNotificationTextColor: string;
|
|
27185
|
+
serviceMessageTextColor: string;
|
|
27186
|
+
serviceMessageBackgroundColor: string;
|
|
27187
|
+
messageTitleColor: string;
|
|
27188
|
+
}, {
|
|
27189
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
27190
|
+
color: string;
|
|
27191
|
+
opacity1Depth: string;
|
|
27192
|
+
opacity2Depth: string;
|
|
27193
|
+
opacity3Depth: string;
|
|
27194
|
+
opacity4Depth: string;
|
|
27195
|
+
opacity5Depth: string;
|
|
27196
|
+
}, any>;
|
|
27197
|
+
}>;
|
|
26217
27198
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
26218
27199
|
color: string;
|
|
26219
27200
|
opacity1Depth: string;
|
|
@@ -26483,6 +27464,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
26483
27464
|
[x: string]: any;
|
|
26484
27465
|
} | undefined;
|
|
26485
27466
|
} | undefined;
|
|
27467
|
+
MessageBubble?: {
|
|
27468
|
+
peers?: {
|
|
27469
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
27470
|
+
color: string;
|
|
27471
|
+
opacity1Depth: string;
|
|
27472
|
+
opacity2Depth: string;
|
|
27473
|
+
opacity3Depth: string;
|
|
27474
|
+
opacity4Depth: string;
|
|
27475
|
+
opacity5Depth: string;
|
|
27476
|
+
}, any>> | undefined;
|
|
27477
|
+
} | undefined;
|
|
27478
|
+
} | undefined;
|
|
26486
27479
|
StatusIcon?: {
|
|
26487
27480
|
peers?: {
|
|
26488
27481
|
[x: string]: any;
|
|
@@ -27469,6 +28462,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
27469
28462
|
codeColor: string;
|
|
27470
28463
|
codeBorder: string;
|
|
27471
28464
|
}, any>;
|
|
28465
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
28466
|
+
messageBubbleBackgroundColorOwn: string;
|
|
28467
|
+
messageBubbleBackgroundColorOther: string;
|
|
28468
|
+
messageBubbleTextColorOwn: string;
|
|
28469
|
+
messageBubbleTextColorOther: string;
|
|
28470
|
+
messageTimeColor: string;
|
|
28471
|
+
messageStatusReadColor: string;
|
|
28472
|
+
messageStatusSuccessColor: string;
|
|
28473
|
+
attachmentBackgroundColorOwn: string;
|
|
28474
|
+
attachmentBackgroundColorOther: string;
|
|
28475
|
+
messageErrorColor: string;
|
|
28476
|
+
messageBorderRadius: string;
|
|
28477
|
+
unreadNotificationBackgroundColor: string;
|
|
28478
|
+
unreadNotificationTextColor: string;
|
|
28479
|
+
serviceMessageTextColor: string;
|
|
28480
|
+
serviceMessageBackgroundColor: string;
|
|
28481
|
+
messageTitleColor: string;
|
|
28482
|
+
}, {
|
|
28483
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
28484
|
+
color: string;
|
|
28485
|
+
opacity1Depth: string;
|
|
28486
|
+
opacity2Depth: string;
|
|
28487
|
+
opacity3Depth: string;
|
|
28488
|
+
opacity4Depth: string;
|
|
28489
|
+
opacity5Depth: string;
|
|
28490
|
+
}, any>;
|
|
28491
|
+
}>;
|
|
27472
28492
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
27473
28493
|
color: string;
|
|
27474
28494
|
opacity1Depth: string;
|
|
@@ -28174,6 +29194,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
28174
29194
|
codeColor: string;
|
|
28175
29195
|
codeBorder: string;
|
|
28176
29196
|
}, any>;
|
|
29197
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
29198
|
+
messageBubbleBackgroundColorOwn: string;
|
|
29199
|
+
messageBubbleBackgroundColorOther: string;
|
|
29200
|
+
messageBubbleTextColorOwn: string;
|
|
29201
|
+
messageBubbleTextColorOther: string;
|
|
29202
|
+
messageTimeColor: string;
|
|
29203
|
+
messageStatusReadColor: string;
|
|
29204
|
+
messageStatusSuccessColor: string;
|
|
29205
|
+
attachmentBackgroundColorOwn: string;
|
|
29206
|
+
attachmentBackgroundColorOther: string;
|
|
29207
|
+
messageErrorColor: string;
|
|
29208
|
+
messageBorderRadius: string;
|
|
29209
|
+
unreadNotificationBackgroundColor: string;
|
|
29210
|
+
unreadNotificationTextColor: string;
|
|
29211
|
+
serviceMessageTextColor: string;
|
|
29212
|
+
serviceMessageBackgroundColor: string;
|
|
29213
|
+
messageTitleColor: string;
|
|
29214
|
+
}, {
|
|
29215
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
29216
|
+
color: string;
|
|
29217
|
+
opacity1Depth: string;
|
|
29218
|
+
opacity2Depth: string;
|
|
29219
|
+
opacity3Depth: string;
|
|
29220
|
+
opacity4Depth: string;
|
|
29221
|
+
opacity5Depth: string;
|
|
29222
|
+
}, any>;
|
|
29223
|
+
}>;
|
|
28177
29224
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
28178
29225
|
color: string;
|
|
28179
29226
|
opacity1Depth: string;
|
|
@@ -28879,6 +29926,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
28879
29926
|
codeColor: string;
|
|
28880
29927
|
codeBorder: string;
|
|
28881
29928
|
}, any>;
|
|
29929
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
29930
|
+
messageBubbleBackgroundColorOwn: string;
|
|
29931
|
+
messageBubbleBackgroundColorOther: string;
|
|
29932
|
+
messageBubbleTextColorOwn: string;
|
|
29933
|
+
messageBubbleTextColorOther: string;
|
|
29934
|
+
messageTimeColor: string;
|
|
29935
|
+
messageStatusReadColor: string;
|
|
29936
|
+
messageStatusSuccessColor: string;
|
|
29937
|
+
attachmentBackgroundColorOwn: string;
|
|
29938
|
+
attachmentBackgroundColorOther: string;
|
|
29939
|
+
messageErrorColor: string;
|
|
29940
|
+
messageBorderRadius: string;
|
|
29941
|
+
unreadNotificationBackgroundColor: string;
|
|
29942
|
+
unreadNotificationTextColor: string;
|
|
29943
|
+
serviceMessageTextColor: string;
|
|
29944
|
+
serviceMessageBackgroundColor: string;
|
|
29945
|
+
messageTitleColor: string;
|
|
29946
|
+
}, {
|
|
29947
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
29948
|
+
color: string;
|
|
29949
|
+
opacity1Depth: string;
|
|
29950
|
+
opacity2Depth: string;
|
|
29951
|
+
opacity3Depth: string;
|
|
29952
|
+
opacity4Depth: string;
|
|
29953
|
+
opacity5Depth: string;
|
|
29954
|
+
}, any>;
|
|
29955
|
+
}>;
|
|
28882
29956
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
28883
29957
|
color: string;
|
|
28884
29958
|
opacity1Depth: string;
|