@uzum-tech/ui 2.2.1 → 2.3.1
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 +1359 -625
- package/dist/index.mjs +1352 -626
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/chat/index.d.ts +2 -0
- package/es/chat/index.mjs +1 -0
- package/es/chat/src/Chat.d.ts +22008 -158
- package/es/chat/src/Chat.mjs +1 -1
- package/es/chat/src/ChatListItems.d.ts +360 -0
- package/es/chat/src/ChatMainArea.d.ts +10109 -0
- package/es/chat/src/{ChatParts/MainArea.mjs → ChatMainArea.mjs} +410 -75
- package/es/chat/src/ChatMessages.d.ts +361 -33
- package/es/chat/src/ChatMessages.mjs +106 -167
- package/es/chat/src/ChatParts/Sidebar.d.ts +78 -0
- package/es/chat/src/interface.d.ts +17 -12
- package/es/chat/src/interface.mjs +7 -1
- package/es/chat/src/styles/index.cssr.mjs +4 -1
- 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 +30865 -513
- package/es/components.mjs +6 -1
- package/es/config-provider/src/internal-interface.d.ts +4 -0
- package/es/message-bubble/index.d.ts +3 -0
- package/es/message-bubble/index.mjs +2 -0
- package/es/message-bubble/src/MessageBubble.d.ts +304 -0
- package/es/message-bubble/src/MessageBubble.mjs +340 -0
- package/es/message-bubble/src/interface.d.ts +206 -0
- package/es/message-bubble/src/interface.mjs +92 -0
- package/es/message-bubble/src/styles/index.cssr.d.ts +2 -0
- package/es/message-bubble/src/styles/index.cssr.mjs +131 -0
- package/es/message-bubble/styles/dark.d.ts +29 -0
- package/es/message-bubble/styles/dark.mjs +13 -0
- package/es/message-bubble/styles/index.d.ts +3 -0
- package/es/message-bubble/styles/index.mjs +2 -0
- package/es/message-bubble/styles/light.d.ts +49 -0
- package/es/message-bubble/styles/light.mjs +44 -0
- package/es/styles.d.ts +1 -0
- package/es/styles.mjs +1 -0
- package/es/themes/dark.mjs +2 -0
- package/es/themes/light.mjs +2 -0
- package/es/upload/src/Upload.d.ts +1 -1
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/chat/index.d.ts +2 -0
- package/lib/chat/index.js +3 -1
- package/lib/chat/src/Chat.d.ts +22008 -158
- package/lib/chat/src/Chat.js +2 -2
- package/lib/chat/src/ChatListItems.d.ts +360 -0
- package/lib/chat/src/ChatMainArea.d.ts +10109 -0
- package/lib/chat/src/{ChatParts/MainArea.js → ChatMainArea.js} +300 -30
- package/lib/chat/src/ChatMessages.d.ts +361 -33
- package/lib/chat/src/ChatMessages.js +68 -158
- package/lib/chat/src/ChatParts/Sidebar.d.ts +78 -0
- package/lib/chat/src/interface.d.ts +17 -12
- package/lib/chat/src/interface.js +7 -1
- package/lib/chat/src/styles/index.cssr.js +4 -1
- 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 +30865 -513
- package/lib/components.js +18 -8
- package/lib/config-provider/src/internal-interface.d.ts +4 -0
- package/lib/message-bubble/index.d.ts +3 -0
- package/lib/message-bubble/index.js +14 -0
- package/lib/message-bubble/src/MessageBubble.d.ts +304 -0
- package/lib/message-bubble/src/MessageBubble.js +280 -0
- package/lib/message-bubble/src/interface.d.ts +206 -0
- package/lib/message-bubble/src/interface.js +80 -0
- package/lib/message-bubble/src/styles/index.cssr.d.ts +2 -0
- package/lib/message-bubble/src/styles/index.cssr.js +136 -0
- package/lib/message-bubble/styles/dark.d.ts +29 -0
- package/lib/message-bubble/styles/dark.js +15 -0
- package/lib/message-bubble/styles/index.d.ts +3 -0
- package/lib/message-bubble/styles/index.js +10 -0
- package/lib/message-bubble/styles/light.d.ts +49 -0
- package/lib/message-bubble/styles/light.js +36 -0
- package/lib/styles.d.ts +1 -0
- package/lib/styles.js +84 -82
- package/lib/themes/dark.js +78 -76
- package/lib/themes/light.js +76 -74
- package/lib/upload/src/Upload.d.ts +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +2 -2
- package/volar.d.ts +2 -0
- package/web-types.json +177 -14
- package/es/chat/src/ChatParts/MainArea.d.ts +0 -20
- package/lib/chat/src/ChatParts/MainArea.d.ts +0 -20
|
@@ -715,6 +715,33 @@ export declare const chatMessagesProps: {
|
|
|
715
715
|
codeColor: string;
|
|
716
716
|
codeBorder: string;
|
|
717
717
|
}, any>;
|
|
718
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
719
|
+
messageBubbleBackgroundColorOwn: string;
|
|
720
|
+
messageBubbleBackgroundColorOther: string;
|
|
721
|
+
messageBubbleTextColorOwn: string;
|
|
722
|
+
messageBubbleTextColorOther: string;
|
|
723
|
+
messageTimeColor: string;
|
|
724
|
+
messageStatusReadColor: string;
|
|
725
|
+
messageStatusSuccessColor: string;
|
|
726
|
+
attachmentBackgroundColorOwn: string;
|
|
727
|
+
attachmentBackgroundColorOther: string;
|
|
728
|
+
messageErrorColor: string;
|
|
729
|
+
messageBorderRadius: string;
|
|
730
|
+
unreadNotificationBackgroundColor: string;
|
|
731
|
+
unreadNotificationTextColor: string;
|
|
732
|
+
serviceMessageTextColor: string;
|
|
733
|
+
serviceMessageBackgroundColor: string;
|
|
734
|
+
messageTitleColor: string;
|
|
735
|
+
}, {
|
|
736
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
737
|
+
color: string;
|
|
738
|
+
opacity1Depth: string;
|
|
739
|
+
opacity2Depth: string;
|
|
740
|
+
opacity3Depth: string;
|
|
741
|
+
opacity4Depth: string;
|
|
742
|
+
opacity5Depth: string;
|
|
743
|
+
}, any>;
|
|
744
|
+
}>;
|
|
718
745
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
719
746
|
color: string;
|
|
720
747
|
opacity1Depth: string;
|
|
@@ -1420,6 +1447,33 @@ export declare const chatMessagesProps: {
|
|
|
1420
1447
|
codeColor: string;
|
|
1421
1448
|
codeBorder: string;
|
|
1422
1449
|
}, any>;
|
|
1450
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
1451
|
+
messageBubbleBackgroundColorOwn: string;
|
|
1452
|
+
messageBubbleBackgroundColorOther: string;
|
|
1453
|
+
messageBubbleTextColorOwn: string;
|
|
1454
|
+
messageBubbleTextColorOther: string;
|
|
1455
|
+
messageTimeColor: string;
|
|
1456
|
+
messageStatusReadColor: string;
|
|
1457
|
+
messageStatusSuccessColor: string;
|
|
1458
|
+
attachmentBackgroundColorOwn: string;
|
|
1459
|
+
attachmentBackgroundColorOther: string;
|
|
1460
|
+
messageErrorColor: string;
|
|
1461
|
+
messageBorderRadius: string;
|
|
1462
|
+
unreadNotificationBackgroundColor: string;
|
|
1463
|
+
unreadNotificationTextColor: string;
|
|
1464
|
+
serviceMessageTextColor: string;
|
|
1465
|
+
serviceMessageBackgroundColor: string;
|
|
1466
|
+
messageTitleColor: string;
|
|
1467
|
+
}, {
|
|
1468
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1469
|
+
color: string;
|
|
1470
|
+
opacity1Depth: string;
|
|
1471
|
+
opacity2Depth: string;
|
|
1472
|
+
opacity3Depth: string;
|
|
1473
|
+
opacity4Depth: string;
|
|
1474
|
+
opacity5Depth: string;
|
|
1475
|
+
}, any>;
|
|
1476
|
+
}>;
|
|
1423
1477
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1424
1478
|
color: string;
|
|
1425
1479
|
opacity1Depth: string;
|
|
@@ -2125,6 +2179,33 @@ export declare const chatMessagesProps: {
|
|
|
2125
2179
|
codeColor: string;
|
|
2126
2180
|
codeBorder: string;
|
|
2127
2181
|
}, any>;
|
|
2182
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
2183
|
+
messageBubbleBackgroundColorOwn: string;
|
|
2184
|
+
messageBubbleBackgroundColorOther: string;
|
|
2185
|
+
messageBubbleTextColorOwn: string;
|
|
2186
|
+
messageBubbleTextColorOther: string;
|
|
2187
|
+
messageTimeColor: string;
|
|
2188
|
+
messageStatusReadColor: string;
|
|
2189
|
+
messageStatusSuccessColor: string;
|
|
2190
|
+
attachmentBackgroundColorOwn: string;
|
|
2191
|
+
attachmentBackgroundColorOther: string;
|
|
2192
|
+
messageErrorColor: string;
|
|
2193
|
+
messageBorderRadius: string;
|
|
2194
|
+
unreadNotificationBackgroundColor: string;
|
|
2195
|
+
unreadNotificationTextColor: string;
|
|
2196
|
+
serviceMessageTextColor: string;
|
|
2197
|
+
serviceMessageBackgroundColor: string;
|
|
2198
|
+
messageTitleColor: string;
|
|
2199
|
+
}, {
|
|
2200
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2201
|
+
color: string;
|
|
2202
|
+
opacity1Depth: string;
|
|
2203
|
+
opacity2Depth: string;
|
|
2204
|
+
opacity3Depth: string;
|
|
2205
|
+
opacity4Depth: string;
|
|
2206
|
+
opacity5Depth: string;
|
|
2207
|
+
}, any>;
|
|
2208
|
+
}>;
|
|
2128
2209
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2129
2210
|
color: string;
|
|
2130
2211
|
opacity1Depth: string;
|
|
@@ -2881,6 +2962,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2881
2962
|
codeColor: string;
|
|
2882
2963
|
codeBorder: string;
|
|
2883
2964
|
}, any>;
|
|
2965
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
2966
|
+
messageBubbleBackgroundColorOwn: string;
|
|
2967
|
+
messageBubbleBackgroundColorOther: string;
|
|
2968
|
+
messageBubbleTextColorOwn: string;
|
|
2969
|
+
messageBubbleTextColorOther: string;
|
|
2970
|
+
messageTimeColor: string;
|
|
2971
|
+
messageStatusReadColor: string;
|
|
2972
|
+
messageStatusSuccessColor: string;
|
|
2973
|
+
attachmentBackgroundColorOwn: string;
|
|
2974
|
+
attachmentBackgroundColorOther: string;
|
|
2975
|
+
messageErrorColor: string;
|
|
2976
|
+
messageBorderRadius: string;
|
|
2977
|
+
unreadNotificationBackgroundColor: string;
|
|
2978
|
+
unreadNotificationTextColor: string;
|
|
2979
|
+
serviceMessageTextColor: string;
|
|
2980
|
+
serviceMessageBackgroundColor: string;
|
|
2981
|
+
messageTitleColor: string;
|
|
2982
|
+
}, {
|
|
2983
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2984
|
+
color: string;
|
|
2985
|
+
opacity1Depth: string;
|
|
2986
|
+
opacity2Depth: string;
|
|
2987
|
+
opacity3Depth: string;
|
|
2988
|
+
opacity4Depth: string;
|
|
2989
|
+
opacity5Depth: string;
|
|
2990
|
+
}, any>;
|
|
2991
|
+
}>;
|
|
2884
2992
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2885
2993
|
color: string;
|
|
2886
2994
|
opacity1Depth: string;
|
|
@@ -3586,6 +3694,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3586
3694
|
codeColor: string;
|
|
3587
3695
|
codeBorder: string;
|
|
3588
3696
|
}, any>;
|
|
3697
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
3698
|
+
messageBubbleBackgroundColorOwn: string;
|
|
3699
|
+
messageBubbleBackgroundColorOther: string;
|
|
3700
|
+
messageBubbleTextColorOwn: string;
|
|
3701
|
+
messageBubbleTextColorOther: string;
|
|
3702
|
+
messageTimeColor: string;
|
|
3703
|
+
messageStatusReadColor: string;
|
|
3704
|
+
messageStatusSuccessColor: string;
|
|
3705
|
+
attachmentBackgroundColorOwn: string;
|
|
3706
|
+
attachmentBackgroundColorOther: string;
|
|
3707
|
+
messageErrorColor: string;
|
|
3708
|
+
messageBorderRadius: string;
|
|
3709
|
+
unreadNotificationBackgroundColor: string;
|
|
3710
|
+
unreadNotificationTextColor: string;
|
|
3711
|
+
serviceMessageTextColor: string;
|
|
3712
|
+
serviceMessageBackgroundColor: string;
|
|
3713
|
+
messageTitleColor: string;
|
|
3714
|
+
}, {
|
|
3715
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3716
|
+
color: string;
|
|
3717
|
+
opacity1Depth: string;
|
|
3718
|
+
opacity2Depth: string;
|
|
3719
|
+
opacity3Depth: string;
|
|
3720
|
+
opacity4Depth: string;
|
|
3721
|
+
opacity5Depth: string;
|
|
3722
|
+
}, any>;
|
|
3723
|
+
}>;
|
|
3589
3724
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3590
3725
|
color: string;
|
|
3591
3726
|
opacity1Depth: string;
|
|
@@ -4291,6 +4426,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4291
4426
|
codeColor: string;
|
|
4292
4427
|
codeBorder: string;
|
|
4293
4428
|
}, any>;
|
|
4429
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
4430
|
+
messageBubbleBackgroundColorOwn: string;
|
|
4431
|
+
messageBubbleBackgroundColorOther: string;
|
|
4432
|
+
messageBubbleTextColorOwn: string;
|
|
4433
|
+
messageBubbleTextColorOther: string;
|
|
4434
|
+
messageTimeColor: string;
|
|
4435
|
+
messageStatusReadColor: string;
|
|
4436
|
+
messageStatusSuccessColor: string;
|
|
4437
|
+
attachmentBackgroundColorOwn: string;
|
|
4438
|
+
attachmentBackgroundColorOther: string;
|
|
4439
|
+
messageErrorColor: string;
|
|
4440
|
+
messageBorderRadius: string;
|
|
4441
|
+
unreadNotificationBackgroundColor: string;
|
|
4442
|
+
unreadNotificationTextColor: string;
|
|
4443
|
+
serviceMessageTextColor: string;
|
|
4444
|
+
serviceMessageBackgroundColor: string;
|
|
4445
|
+
messageTitleColor: string;
|
|
4446
|
+
}, {
|
|
4447
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
4448
|
+
color: string;
|
|
4449
|
+
opacity1Depth: string;
|
|
4450
|
+
opacity2Depth: string;
|
|
4451
|
+
opacity3Depth: string;
|
|
4452
|
+
opacity4Depth: string;
|
|
4453
|
+
opacity5Depth: string;
|
|
4454
|
+
}, any>;
|
|
4455
|
+
}>;
|
|
4294
4456
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
4295
4457
|
color: string;
|
|
4296
4458
|
opacity1Depth: string;
|
|
@@ -5001,6 +5163,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5001
5163
|
codeColor: string;
|
|
5002
5164
|
codeBorder: string;
|
|
5003
5165
|
}, any>;
|
|
5166
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
5167
|
+
messageBubbleBackgroundColorOwn: string;
|
|
5168
|
+
messageBubbleBackgroundColorOther: string;
|
|
5169
|
+
messageBubbleTextColorOwn: string;
|
|
5170
|
+
messageBubbleTextColorOther: string;
|
|
5171
|
+
messageTimeColor: string;
|
|
5172
|
+
messageStatusReadColor: string;
|
|
5173
|
+
messageStatusSuccessColor: string;
|
|
5174
|
+
attachmentBackgroundColorOwn: string;
|
|
5175
|
+
attachmentBackgroundColorOther: string;
|
|
5176
|
+
messageErrorColor: string;
|
|
5177
|
+
messageBorderRadius: string;
|
|
5178
|
+
unreadNotificationBackgroundColor: string;
|
|
5179
|
+
unreadNotificationTextColor: string;
|
|
5180
|
+
serviceMessageTextColor: string;
|
|
5181
|
+
serviceMessageBackgroundColor: string;
|
|
5182
|
+
messageTitleColor: string;
|
|
5183
|
+
}, {
|
|
5184
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
5185
|
+
color: string;
|
|
5186
|
+
opacity1Depth: string;
|
|
5187
|
+
opacity2Depth: string;
|
|
5188
|
+
opacity3Depth: string;
|
|
5189
|
+
opacity4Depth: string;
|
|
5190
|
+
opacity5Depth: string;
|
|
5191
|
+
}, any>;
|
|
5192
|
+
}>;
|
|
5004
5193
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
5005
5194
|
color: string;
|
|
5006
5195
|
opacity1Depth: string;
|
|
@@ -5270,6 +5459,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5270
5459
|
[x: string]: any;
|
|
5271
5460
|
} | undefined;
|
|
5272
5461
|
} | undefined;
|
|
5462
|
+
MessageBubble?: {
|
|
5463
|
+
peers?: {
|
|
5464
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
5465
|
+
color: string;
|
|
5466
|
+
opacity1Depth: string;
|
|
5467
|
+
opacity2Depth: string;
|
|
5468
|
+
opacity3Depth: string;
|
|
5469
|
+
opacity4Depth: string;
|
|
5470
|
+
opacity5Depth: string;
|
|
5471
|
+
}, any>> | undefined;
|
|
5472
|
+
} | undefined;
|
|
5473
|
+
} | undefined;
|
|
5273
5474
|
StatusIcon?: {
|
|
5274
5475
|
peers?: {
|
|
5275
5476
|
[x: string]: any;
|
|
@@ -5963,6 +6164,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5963
6164
|
codeColor: string;
|
|
5964
6165
|
codeBorder: string;
|
|
5965
6166
|
}, any>;
|
|
6167
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
6168
|
+
messageBubbleBackgroundColorOwn: string;
|
|
6169
|
+
messageBubbleBackgroundColorOther: string;
|
|
6170
|
+
messageBubbleTextColorOwn: string;
|
|
6171
|
+
messageBubbleTextColorOther: string;
|
|
6172
|
+
messageTimeColor: string;
|
|
6173
|
+
messageStatusReadColor: string;
|
|
6174
|
+
messageStatusSuccessColor: string;
|
|
6175
|
+
attachmentBackgroundColorOwn: string;
|
|
6176
|
+
attachmentBackgroundColorOther: string;
|
|
6177
|
+
messageErrorColor: string;
|
|
6178
|
+
messageBorderRadius: string;
|
|
6179
|
+
unreadNotificationBackgroundColor: string;
|
|
6180
|
+
unreadNotificationTextColor: string;
|
|
6181
|
+
serviceMessageTextColor: string;
|
|
6182
|
+
serviceMessageBackgroundColor: string;
|
|
6183
|
+
messageTitleColor: string;
|
|
6184
|
+
}, {
|
|
6185
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
6186
|
+
color: string;
|
|
6187
|
+
opacity1Depth: string;
|
|
6188
|
+
opacity2Depth: string;
|
|
6189
|
+
opacity3Depth: string;
|
|
6190
|
+
opacity4Depth: string;
|
|
6191
|
+
opacity5Depth: string;
|
|
6192
|
+
}, any>;
|
|
6193
|
+
}>;
|
|
5966
6194
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
5967
6195
|
color: string;
|
|
5968
6196
|
opacity1Depth: string;
|
|
@@ -6232,6 +6460,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6232
6460
|
[x: string]: any;
|
|
6233
6461
|
} | undefined;
|
|
6234
6462
|
} | undefined;
|
|
6463
|
+
MessageBubble?: {
|
|
6464
|
+
peers?: {
|
|
6465
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
6466
|
+
color: string;
|
|
6467
|
+
opacity1Depth: string;
|
|
6468
|
+
opacity2Depth: string;
|
|
6469
|
+
opacity3Depth: string;
|
|
6470
|
+
opacity4Depth: string;
|
|
6471
|
+
opacity5Depth: string;
|
|
6472
|
+
}, any>> | undefined;
|
|
6473
|
+
} | undefined;
|
|
6474
|
+
} | undefined;
|
|
6235
6475
|
StatusIcon?: {
|
|
6236
6476
|
peers?: {
|
|
6237
6477
|
[x: string]: any;
|
|
@@ -6925,6 +7165,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6925
7165
|
codeColor: string;
|
|
6926
7166
|
codeBorder: string;
|
|
6927
7167
|
}, any>;
|
|
7168
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
7169
|
+
messageBubbleBackgroundColorOwn: string;
|
|
7170
|
+
messageBubbleBackgroundColorOther: string;
|
|
7171
|
+
messageBubbleTextColorOwn: string;
|
|
7172
|
+
messageBubbleTextColorOther: string;
|
|
7173
|
+
messageTimeColor: string;
|
|
7174
|
+
messageStatusReadColor: string;
|
|
7175
|
+
messageStatusSuccessColor: string;
|
|
7176
|
+
attachmentBackgroundColorOwn: string;
|
|
7177
|
+
attachmentBackgroundColorOther: string;
|
|
7178
|
+
messageErrorColor: string;
|
|
7179
|
+
messageBorderRadius: string;
|
|
7180
|
+
unreadNotificationBackgroundColor: string;
|
|
7181
|
+
unreadNotificationTextColor: string;
|
|
7182
|
+
serviceMessageTextColor: string;
|
|
7183
|
+
serviceMessageBackgroundColor: string;
|
|
7184
|
+
messageTitleColor: string;
|
|
7185
|
+
}, {
|
|
7186
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
7187
|
+
color: string;
|
|
7188
|
+
opacity1Depth: string;
|
|
7189
|
+
opacity2Depth: string;
|
|
7190
|
+
opacity3Depth: string;
|
|
7191
|
+
opacity4Depth: string;
|
|
7192
|
+
opacity5Depth: string;
|
|
7193
|
+
}, any>;
|
|
7194
|
+
}>;
|
|
6928
7195
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
6929
7196
|
color: string;
|
|
6930
7197
|
opacity1Depth: string;
|
|
@@ -7194,6 +7461,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7194
7461
|
[x: string]: any;
|
|
7195
7462
|
} | undefined;
|
|
7196
7463
|
} | undefined;
|
|
7464
|
+
MessageBubble?: {
|
|
7465
|
+
peers?: {
|
|
7466
|
+
StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
7467
|
+
color: string;
|
|
7468
|
+
opacity1Depth: string;
|
|
7469
|
+
opacity2Depth: string;
|
|
7470
|
+
opacity3Depth: string;
|
|
7471
|
+
opacity4Depth: string;
|
|
7472
|
+
opacity5Depth: string;
|
|
7473
|
+
}, any>> | undefined;
|
|
7474
|
+
} | undefined;
|
|
7475
|
+
} | undefined;
|
|
7197
7476
|
StatusIcon?: {
|
|
7198
7477
|
peers?: {
|
|
7199
7478
|
[x: string]: any;
|
|
@@ -7226,39 +7505,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7226
7505
|
renderSkeletonMessage: (isOwn: boolean, index: number) => JSX.Element;
|
|
7227
7506
|
renderDateSeparator: (date: string) => JSX.Element;
|
|
7228
7507
|
renderUnreadNotification: () => JSX.Element;
|
|
7229
|
-
|
|
7230
|
-
contextMenuMessage: import("vue").Ref<ChatMessageData | undefined, ChatMessageData | undefined>;
|
|
7231
|
-
messageContextMenuOptions: import("vue").ComputedRef<import("../..").MenuOption[] | undefined>;
|
|
7232
|
-
handleContextMenuSelect: (key: string) => void;
|
|
7233
|
-
cssVars: import("vue").ComputedRef<{
|
|
7234
|
-
'--u-bezier': string;
|
|
7235
|
-
'--u-color-primary': string;
|
|
7236
|
-
'--u-color-success': string;
|
|
7237
|
-
'--u-color-error': string;
|
|
7238
|
-
'--u-text-color-base': string;
|
|
7239
|
-
'--u-text-color-secondary': string;
|
|
7240
|
-
'--u-text-color-disabled': string;
|
|
7241
|
-
'--u-background-color': string;
|
|
7242
|
-
'--u-border-color': string;
|
|
7243
|
-
'--u-main-background-color': string;
|
|
7244
|
-
'--u-header-background-color': string;
|
|
7245
|
-
'--u-header-border-color': string;
|
|
7246
|
-
'--u-header-title-color': string;
|
|
7247
|
-
'--u-message-bubble-background-color-own': string;
|
|
7248
|
-
'--u-message-bubble-background-color-other': string;
|
|
7249
|
-
'--u-message-bubble-text-color-own': string;
|
|
7250
|
-
'--u-message-bubble-text-color-other': string;
|
|
7251
|
-
'--u-message-time-color': string;
|
|
7252
|
-
'--u-message-status-color': string;
|
|
7253
|
-
'--u-attachment-background-color-own': string;
|
|
7254
|
-
'--u-attachment-background-color-other': string;
|
|
7255
|
-
'--u-unread-notification-background-color': string;
|
|
7256
|
-
'--u-unread-notification-text-color': string;
|
|
7257
|
-
'--u-typing-indicator-color': string;
|
|
7258
|
-
'--u-date-separator-color': string;
|
|
7259
|
-
'--u-date-separator-background-color': string;
|
|
7260
|
-
'--u-border-radius': string;
|
|
7261
|
-
}>;
|
|
7508
|
+
cssVars: import("vue").ComputedRef<Record<string, string>>;
|
|
7262
7509
|
themeClass: import("vue").Ref<string, string>;
|
|
7263
7510
|
onRender: () => void;
|
|
7264
7511
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -7974,6 +8221,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7974
8221
|
codeColor: string;
|
|
7975
8222
|
codeBorder: string;
|
|
7976
8223
|
}, any>;
|
|
8224
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
8225
|
+
messageBubbleBackgroundColorOwn: string;
|
|
8226
|
+
messageBubbleBackgroundColorOther: string;
|
|
8227
|
+
messageBubbleTextColorOwn: string;
|
|
8228
|
+
messageBubbleTextColorOther: string;
|
|
8229
|
+
messageTimeColor: string;
|
|
8230
|
+
messageStatusReadColor: string;
|
|
8231
|
+
messageStatusSuccessColor: string;
|
|
8232
|
+
attachmentBackgroundColorOwn: string;
|
|
8233
|
+
attachmentBackgroundColorOther: string;
|
|
8234
|
+
messageErrorColor: string;
|
|
8235
|
+
messageBorderRadius: string;
|
|
8236
|
+
unreadNotificationBackgroundColor: string;
|
|
8237
|
+
unreadNotificationTextColor: string;
|
|
8238
|
+
serviceMessageTextColor: string;
|
|
8239
|
+
serviceMessageBackgroundColor: string;
|
|
8240
|
+
messageTitleColor: string;
|
|
8241
|
+
}, {
|
|
8242
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8243
|
+
color: string;
|
|
8244
|
+
opacity1Depth: string;
|
|
8245
|
+
opacity2Depth: string;
|
|
8246
|
+
opacity3Depth: string;
|
|
8247
|
+
opacity4Depth: string;
|
|
8248
|
+
opacity5Depth: string;
|
|
8249
|
+
}, any>;
|
|
8250
|
+
}>;
|
|
7977
8251
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
7978
8252
|
color: string;
|
|
7979
8253
|
opacity1Depth: string;
|
|
@@ -8679,6 +8953,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8679
8953
|
codeColor: string;
|
|
8680
8954
|
codeBorder: string;
|
|
8681
8955
|
}, any>;
|
|
8956
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
8957
|
+
messageBubbleBackgroundColorOwn: string;
|
|
8958
|
+
messageBubbleBackgroundColorOther: string;
|
|
8959
|
+
messageBubbleTextColorOwn: string;
|
|
8960
|
+
messageBubbleTextColorOther: string;
|
|
8961
|
+
messageTimeColor: string;
|
|
8962
|
+
messageStatusReadColor: string;
|
|
8963
|
+
messageStatusSuccessColor: string;
|
|
8964
|
+
attachmentBackgroundColorOwn: string;
|
|
8965
|
+
attachmentBackgroundColorOther: string;
|
|
8966
|
+
messageErrorColor: string;
|
|
8967
|
+
messageBorderRadius: string;
|
|
8968
|
+
unreadNotificationBackgroundColor: string;
|
|
8969
|
+
unreadNotificationTextColor: string;
|
|
8970
|
+
serviceMessageTextColor: string;
|
|
8971
|
+
serviceMessageBackgroundColor: string;
|
|
8972
|
+
messageTitleColor: string;
|
|
8973
|
+
}, {
|
|
8974
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8975
|
+
color: string;
|
|
8976
|
+
opacity1Depth: string;
|
|
8977
|
+
opacity2Depth: string;
|
|
8978
|
+
opacity3Depth: string;
|
|
8979
|
+
opacity4Depth: string;
|
|
8980
|
+
opacity5Depth: string;
|
|
8981
|
+
}, any>;
|
|
8982
|
+
}>;
|
|
8682
8983
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8683
8984
|
color: string;
|
|
8684
8985
|
opacity1Depth: string;
|
|
@@ -9384,6 +9685,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
9384
9685
|
codeColor: string;
|
|
9385
9686
|
codeBorder: string;
|
|
9386
9687
|
}, any>;
|
|
9688
|
+
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
9689
|
+
messageBubbleBackgroundColorOwn: string;
|
|
9690
|
+
messageBubbleBackgroundColorOther: string;
|
|
9691
|
+
messageBubbleTextColorOwn: string;
|
|
9692
|
+
messageBubbleTextColorOther: string;
|
|
9693
|
+
messageTimeColor: string;
|
|
9694
|
+
messageStatusReadColor: string;
|
|
9695
|
+
messageStatusSuccessColor: string;
|
|
9696
|
+
attachmentBackgroundColorOwn: string;
|
|
9697
|
+
attachmentBackgroundColorOther: string;
|
|
9698
|
+
messageErrorColor: string;
|
|
9699
|
+
messageBorderRadius: string;
|
|
9700
|
+
unreadNotificationBackgroundColor: string;
|
|
9701
|
+
unreadNotificationTextColor: string;
|
|
9702
|
+
serviceMessageTextColor: string;
|
|
9703
|
+
serviceMessageBackgroundColor: string;
|
|
9704
|
+
messageTitleColor: string;
|
|
9705
|
+
}, {
|
|
9706
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
9707
|
+
color: string;
|
|
9708
|
+
opacity1Depth: string;
|
|
9709
|
+
opacity2Depth: string;
|
|
9710
|
+
opacity3Depth: string;
|
|
9711
|
+
opacity4Depth: string;
|
|
9712
|
+
opacity5Depth: string;
|
|
9713
|
+
}, any>;
|
|
9714
|
+
}>;
|
|
9387
9715
|
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
9388
9716
|
color: string;
|
|
9389
9717
|
opacity1Depth: string;
|