@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.
Files changed (91) hide show
  1. package/dist/index.js +1359 -625
  2. package/dist/index.mjs +1352 -626
  3. package/dist/index.prod.js +2 -2
  4. package/dist/index.prod.mjs +2 -2
  5. package/es/chat/index.d.ts +2 -0
  6. package/es/chat/index.mjs +1 -0
  7. package/es/chat/src/Chat.d.ts +22008 -158
  8. package/es/chat/src/Chat.mjs +1 -1
  9. package/es/chat/src/ChatListItems.d.ts +360 -0
  10. package/es/chat/src/ChatMainArea.d.ts +10109 -0
  11. package/es/chat/src/{ChatParts/MainArea.mjs → ChatMainArea.mjs} +410 -75
  12. package/es/chat/src/ChatMessages.d.ts +361 -33
  13. package/es/chat/src/ChatMessages.mjs +106 -167
  14. package/es/chat/src/ChatParts/Sidebar.d.ts +78 -0
  15. package/es/chat/src/interface.d.ts +17 -12
  16. package/es/chat/src/interface.mjs +7 -1
  17. package/es/chat/src/styles/index.cssr.mjs +4 -1
  18. package/es/chat/styles/dark.d.ts +27 -0
  19. package/es/chat/styles/dark.mjs +2 -0
  20. package/es/chat/styles/light.d.ts +27 -0
  21. package/es/chat/styles/light.mjs +2 -0
  22. package/es/components.d.ts +30865 -513
  23. package/es/components.mjs +6 -1
  24. package/es/config-provider/src/internal-interface.d.ts +4 -0
  25. package/es/message-bubble/index.d.ts +3 -0
  26. package/es/message-bubble/index.mjs +2 -0
  27. package/es/message-bubble/src/MessageBubble.d.ts +304 -0
  28. package/es/message-bubble/src/MessageBubble.mjs +340 -0
  29. package/es/message-bubble/src/interface.d.ts +206 -0
  30. package/es/message-bubble/src/interface.mjs +92 -0
  31. package/es/message-bubble/src/styles/index.cssr.d.ts +2 -0
  32. package/es/message-bubble/src/styles/index.cssr.mjs +131 -0
  33. package/es/message-bubble/styles/dark.d.ts +29 -0
  34. package/es/message-bubble/styles/dark.mjs +13 -0
  35. package/es/message-bubble/styles/index.d.ts +3 -0
  36. package/es/message-bubble/styles/index.mjs +2 -0
  37. package/es/message-bubble/styles/light.d.ts +49 -0
  38. package/es/message-bubble/styles/light.mjs +44 -0
  39. package/es/styles.d.ts +1 -0
  40. package/es/styles.mjs +1 -0
  41. package/es/themes/dark.mjs +2 -0
  42. package/es/themes/light.mjs +2 -0
  43. package/es/upload/src/Upload.d.ts +1 -1
  44. package/es/version.d.ts +1 -1
  45. package/es/version.mjs +1 -1
  46. package/lib/chat/index.d.ts +2 -0
  47. package/lib/chat/index.js +3 -1
  48. package/lib/chat/src/Chat.d.ts +22008 -158
  49. package/lib/chat/src/Chat.js +2 -2
  50. package/lib/chat/src/ChatListItems.d.ts +360 -0
  51. package/lib/chat/src/ChatMainArea.d.ts +10109 -0
  52. package/lib/chat/src/{ChatParts/MainArea.js → ChatMainArea.js} +300 -30
  53. package/lib/chat/src/ChatMessages.d.ts +361 -33
  54. package/lib/chat/src/ChatMessages.js +68 -158
  55. package/lib/chat/src/ChatParts/Sidebar.d.ts +78 -0
  56. package/lib/chat/src/interface.d.ts +17 -12
  57. package/lib/chat/src/interface.js +7 -1
  58. package/lib/chat/src/styles/index.cssr.js +4 -1
  59. package/lib/chat/styles/dark.d.ts +27 -0
  60. package/lib/chat/styles/dark.js +6 -4
  61. package/lib/chat/styles/light.d.ts +27 -0
  62. package/lib/chat/styles/light.js +6 -4
  63. package/lib/components.d.ts +30865 -513
  64. package/lib/components.js +18 -8
  65. package/lib/config-provider/src/internal-interface.d.ts +4 -0
  66. package/lib/message-bubble/index.d.ts +3 -0
  67. package/lib/message-bubble/index.js +14 -0
  68. package/lib/message-bubble/src/MessageBubble.d.ts +304 -0
  69. package/lib/message-bubble/src/MessageBubble.js +280 -0
  70. package/lib/message-bubble/src/interface.d.ts +206 -0
  71. package/lib/message-bubble/src/interface.js +80 -0
  72. package/lib/message-bubble/src/styles/index.cssr.d.ts +2 -0
  73. package/lib/message-bubble/src/styles/index.cssr.js +136 -0
  74. package/lib/message-bubble/styles/dark.d.ts +29 -0
  75. package/lib/message-bubble/styles/dark.js +15 -0
  76. package/lib/message-bubble/styles/index.d.ts +3 -0
  77. package/lib/message-bubble/styles/index.js +10 -0
  78. package/lib/message-bubble/styles/light.d.ts +49 -0
  79. package/lib/message-bubble/styles/light.js +36 -0
  80. package/lib/styles.d.ts +1 -0
  81. package/lib/styles.js +84 -82
  82. package/lib/themes/dark.js +78 -76
  83. package/lib/themes/light.js +76 -74
  84. package/lib/upload/src/Upload.d.ts +1 -1
  85. package/lib/version.d.ts +1 -1
  86. package/lib/version.js +1 -1
  87. package/package.json +2 -2
  88. package/volar.d.ts +2 -0
  89. package/web-types.json +177 -14
  90. package/es/chat/src/ChatParts/MainArea.d.ts +0 -20
  91. package/lib/chat/src/ChatParts/MainArea.d.ts +0 -20
@@ -3,7 +3,7 @@ import { useConfig, useLocale, useTheme, useThemeClass } from "../../_mixins/ind
3
3
  import { resolveSlot } from "../../_utils/index.mjs";
4
4
  import { UFlex } from "../../flex/index.mjs";
5
5
  import { chatLight } from "../styles/index.mjs";
6
- import ChatMainArea from "./ChatParts/MainArea.mjs";
6
+ import ChatMainArea from "./ChatMainArea.mjs";
7
7
  import ChatSidebar from "./ChatParts/Sidebar.mjs";
8
8
  import { chatInjectionKey } from "./interface.mjs";
9
9
  import style from "./styles/index.cssr.mjs";
@@ -713,6 +713,33 @@ export declare const chatListItemsProps: {
713
713
  codeColor: string;
714
714
  codeBorder: string;
715
715
  }, any>;
716
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
717
+ messageBubbleBackgroundColorOwn: string;
718
+ messageBubbleBackgroundColorOther: string;
719
+ messageBubbleTextColorOwn: string;
720
+ messageBubbleTextColorOther: string;
721
+ messageTimeColor: string;
722
+ messageStatusReadColor: string;
723
+ messageStatusSuccessColor: string;
724
+ attachmentBackgroundColorOwn: string;
725
+ attachmentBackgroundColorOther: string;
726
+ messageErrorColor: string;
727
+ messageBorderRadius: string;
728
+ unreadNotificationBackgroundColor: string;
729
+ unreadNotificationTextColor: string;
730
+ serviceMessageTextColor: string;
731
+ serviceMessageBackgroundColor: string;
732
+ messageTitleColor: string;
733
+ }, {
734
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
735
+ color: string;
736
+ opacity1Depth: string;
737
+ opacity2Depth: string;
738
+ opacity3Depth: string;
739
+ opacity4Depth: string;
740
+ opacity5Depth: string;
741
+ }, any>;
742
+ }>;
716
743
  StatusIcon: import("../../_mixins").Theme<"Icon", {
717
744
  color: string;
718
745
  opacity1Depth: string;
@@ -1418,6 +1445,33 @@ export declare const chatListItemsProps: {
1418
1445
  codeColor: string;
1419
1446
  codeBorder: string;
1420
1447
  }, any>;
1448
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
1449
+ messageBubbleBackgroundColorOwn: string;
1450
+ messageBubbleBackgroundColorOther: string;
1451
+ messageBubbleTextColorOwn: string;
1452
+ messageBubbleTextColorOther: string;
1453
+ messageTimeColor: string;
1454
+ messageStatusReadColor: string;
1455
+ messageStatusSuccessColor: string;
1456
+ attachmentBackgroundColorOwn: string;
1457
+ attachmentBackgroundColorOther: string;
1458
+ messageErrorColor: string;
1459
+ messageBorderRadius: string;
1460
+ unreadNotificationBackgroundColor: string;
1461
+ unreadNotificationTextColor: string;
1462
+ serviceMessageTextColor: string;
1463
+ serviceMessageBackgroundColor: string;
1464
+ messageTitleColor: string;
1465
+ }, {
1466
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
1467
+ color: string;
1468
+ opacity1Depth: string;
1469
+ opacity2Depth: string;
1470
+ opacity3Depth: string;
1471
+ opacity4Depth: string;
1472
+ opacity5Depth: string;
1473
+ }, any>;
1474
+ }>;
1421
1475
  StatusIcon: import("../../_mixins").Theme<"Icon", {
1422
1476
  color: string;
1423
1477
  opacity1Depth: string;
@@ -2123,6 +2177,33 @@ export declare const chatListItemsProps: {
2123
2177
  codeColor: string;
2124
2178
  codeBorder: string;
2125
2179
  }, any>;
2180
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
2181
+ messageBubbleBackgroundColorOwn: string;
2182
+ messageBubbleBackgroundColorOther: string;
2183
+ messageBubbleTextColorOwn: string;
2184
+ messageBubbleTextColorOther: string;
2185
+ messageTimeColor: string;
2186
+ messageStatusReadColor: string;
2187
+ messageStatusSuccessColor: string;
2188
+ attachmentBackgroundColorOwn: string;
2189
+ attachmentBackgroundColorOther: string;
2190
+ messageErrorColor: string;
2191
+ messageBorderRadius: string;
2192
+ unreadNotificationBackgroundColor: string;
2193
+ unreadNotificationTextColor: string;
2194
+ serviceMessageTextColor: string;
2195
+ serviceMessageBackgroundColor: string;
2196
+ messageTitleColor: string;
2197
+ }, {
2198
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
2199
+ color: string;
2200
+ opacity1Depth: string;
2201
+ opacity2Depth: string;
2202
+ opacity3Depth: string;
2203
+ opacity4Depth: string;
2204
+ opacity5Depth: string;
2205
+ }, any>;
2206
+ }>;
2126
2207
  StatusIcon: import("../../_mixins").Theme<"Icon", {
2127
2208
  color: string;
2128
2209
  opacity1Depth: string;
@@ -2875,6 +2956,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2875
2956
  codeColor: string;
2876
2957
  codeBorder: string;
2877
2958
  }, any>;
2959
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
2960
+ messageBubbleBackgroundColorOwn: string;
2961
+ messageBubbleBackgroundColorOther: string;
2962
+ messageBubbleTextColorOwn: string;
2963
+ messageBubbleTextColorOther: string;
2964
+ messageTimeColor: string;
2965
+ messageStatusReadColor: string;
2966
+ messageStatusSuccessColor: string;
2967
+ attachmentBackgroundColorOwn: string;
2968
+ attachmentBackgroundColorOther: string;
2969
+ messageErrorColor: string;
2970
+ messageBorderRadius: string;
2971
+ unreadNotificationBackgroundColor: string;
2972
+ unreadNotificationTextColor: string;
2973
+ serviceMessageTextColor: string;
2974
+ serviceMessageBackgroundColor: string;
2975
+ messageTitleColor: string;
2976
+ }, {
2977
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
2978
+ color: string;
2979
+ opacity1Depth: string;
2980
+ opacity2Depth: string;
2981
+ opacity3Depth: string;
2982
+ opacity4Depth: string;
2983
+ opacity5Depth: string;
2984
+ }, any>;
2985
+ }>;
2878
2986
  StatusIcon: import("../../_mixins").Theme<"Icon", {
2879
2987
  color: string;
2880
2988
  opacity1Depth: string;
@@ -3580,6 +3688,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3580
3688
  codeColor: string;
3581
3689
  codeBorder: string;
3582
3690
  }, any>;
3691
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
3692
+ messageBubbleBackgroundColorOwn: string;
3693
+ messageBubbleBackgroundColorOther: string;
3694
+ messageBubbleTextColorOwn: string;
3695
+ messageBubbleTextColorOther: string;
3696
+ messageTimeColor: string;
3697
+ messageStatusReadColor: string;
3698
+ messageStatusSuccessColor: string;
3699
+ attachmentBackgroundColorOwn: string;
3700
+ attachmentBackgroundColorOther: string;
3701
+ messageErrorColor: string;
3702
+ messageBorderRadius: string;
3703
+ unreadNotificationBackgroundColor: string;
3704
+ unreadNotificationTextColor: string;
3705
+ serviceMessageTextColor: string;
3706
+ serviceMessageBackgroundColor: string;
3707
+ messageTitleColor: string;
3708
+ }, {
3709
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
3710
+ color: string;
3711
+ opacity1Depth: string;
3712
+ opacity2Depth: string;
3713
+ opacity3Depth: string;
3714
+ opacity4Depth: string;
3715
+ opacity5Depth: string;
3716
+ }, any>;
3717
+ }>;
3583
3718
  StatusIcon: import("../../_mixins").Theme<"Icon", {
3584
3719
  color: string;
3585
3720
  opacity1Depth: string;
@@ -4285,6 +4420,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4285
4420
  codeColor: string;
4286
4421
  codeBorder: string;
4287
4422
  }, any>;
4423
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
4424
+ messageBubbleBackgroundColorOwn: string;
4425
+ messageBubbleBackgroundColorOther: string;
4426
+ messageBubbleTextColorOwn: string;
4427
+ messageBubbleTextColorOther: string;
4428
+ messageTimeColor: string;
4429
+ messageStatusReadColor: string;
4430
+ messageStatusSuccessColor: string;
4431
+ attachmentBackgroundColorOwn: string;
4432
+ attachmentBackgroundColorOther: string;
4433
+ messageErrorColor: string;
4434
+ messageBorderRadius: string;
4435
+ unreadNotificationBackgroundColor: string;
4436
+ unreadNotificationTextColor: string;
4437
+ serviceMessageTextColor: string;
4438
+ serviceMessageBackgroundColor: string;
4439
+ messageTitleColor: string;
4440
+ }, {
4441
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
4442
+ color: string;
4443
+ opacity1Depth: string;
4444
+ opacity2Depth: string;
4445
+ opacity3Depth: string;
4446
+ opacity4Depth: string;
4447
+ opacity5Depth: string;
4448
+ }, any>;
4449
+ }>;
4288
4450
  StatusIcon: import("../../_mixins").Theme<"Icon", {
4289
4451
  color: string;
4290
4452
  opacity1Depth: string;
@@ -4995,6 +5157,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4995
5157
  codeColor: string;
4996
5158
  codeBorder: string;
4997
5159
  }, any>;
5160
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
5161
+ messageBubbleBackgroundColorOwn: string;
5162
+ messageBubbleBackgroundColorOther: string;
5163
+ messageBubbleTextColorOwn: string;
5164
+ messageBubbleTextColorOther: string;
5165
+ messageTimeColor: string;
5166
+ messageStatusReadColor: string;
5167
+ messageStatusSuccessColor: string;
5168
+ attachmentBackgroundColorOwn: string;
5169
+ attachmentBackgroundColorOther: string;
5170
+ messageErrorColor: string;
5171
+ messageBorderRadius: string;
5172
+ unreadNotificationBackgroundColor: string;
5173
+ unreadNotificationTextColor: string;
5174
+ serviceMessageTextColor: string;
5175
+ serviceMessageBackgroundColor: string;
5176
+ messageTitleColor: string;
5177
+ }, {
5178
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
5179
+ color: string;
5180
+ opacity1Depth: string;
5181
+ opacity2Depth: string;
5182
+ opacity3Depth: string;
5183
+ opacity4Depth: string;
5184
+ opacity5Depth: string;
5185
+ }, any>;
5186
+ }>;
4998
5187
  StatusIcon: import("../../_mixins").Theme<"Icon", {
4999
5188
  color: string;
5000
5189
  opacity1Depth: string;
@@ -5264,6 +5453,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5264
5453
  [x: string]: any;
5265
5454
  } | undefined;
5266
5455
  } | undefined;
5456
+ MessageBubble?: {
5457
+ peers?: {
5458
+ StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
5459
+ color: string;
5460
+ opacity1Depth: string;
5461
+ opacity2Depth: string;
5462
+ opacity3Depth: string;
5463
+ opacity4Depth: string;
5464
+ opacity5Depth: string;
5465
+ }, any>> | undefined;
5466
+ } | undefined;
5467
+ } | undefined;
5267
5468
  StatusIcon?: {
5268
5469
  peers?: {
5269
5470
  [x: string]: any;
@@ -5957,6 +6158,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5957
6158
  codeColor: string;
5958
6159
  codeBorder: string;
5959
6160
  }, any>;
6161
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
6162
+ messageBubbleBackgroundColorOwn: string;
6163
+ messageBubbleBackgroundColorOther: string;
6164
+ messageBubbleTextColorOwn: string;
6165
+ messageBubbleTextColorOther: string;
6166
+ messageTimeColor: string;
6167
+ messageStatusReadColor: string;
6168
+ messageStatusSuccessColor: string;
6169
+ attachmentBackgroundColorOwn: string;
6170
+ attachmentBackgroundColorOther: string;
6171
+ messageErrorColor: string;
6172
+ messageBorderRadius: string;
6173
+ unreadNotificationBackgroundColor: string;
6174
+ unreadNotificationTextColor: string;
6175
+ serviceMessageTextColor: string;
6176
+ serviceMessageBackgroundColor: string;
6177
+ messageTitleColor: string;
6178
+ }, {
6179
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
6180
+ color: string;
6181
+ opacity1Depth: string;
6182
+ opacity2Depth: string;
6183
+ opacity3Depth: string;
6184
+ opacity4Depth: string;
6185
+ opacity5Depth: string;
6186
+ }, any>;
6187
+ }>;
5960
6188
  StatusIcon: import("../../_mixins").Theme<"Icon", {
5961
6189
  color: string;
5962
6190
  opacity1Depth: string;
@@ -6226,6 +6454,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6226
6454
  [x: string]: any;
6227
6455
  } | undefined;
6228
6456
  } | undefined;
6457
+ MessageBubble?: {
6458
+ peers?: {
6459
+ StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
6460
+ color: string;
6461
+ opacity1Depth: string;
6462
+ opacity2Depth: string;
6463
+ opacity3Depth: string;
6464
+ opacity4Depth: string;
6465
+ opacity5Depth: string;
6466
+ }, any>> | undefined;
6467
+ } | undefined;
6468
+ } | undefined;
6229
6469
  StatusIcon?: {
6230
6470
  peers?: {
6231
6471
  [x: string]: any;
@@ -6919,6 +7159,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6919
7159
  codeColor: string;
6920
7160
  codeBorder: string;
6921
7161
  }, any>;
7162
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
7163
+ messageBubbleBackgroundColorOwn: string;
7164
+ messageBubbleBackgroundColorOther: string;
7165
+ messageBubbleTextColorOwn: string;
7166
+ messageBubbleTextColorOther: string;
7167
+ messageTimeColor: string;
7168
+ messageStatusReadColor: string;
7169
+ messageStatusSuccessColor: string;
7170
+ attachmentBackgroundColorOwn: string;
7171
+ attachmentBackgroundColorOther: string;
7172
+ messageErrorColor: string;
7173
+ messageBorderRadius: string;
7174
+ unreadNotificationBackgroundColor: string;
7175
+ unreadNotificationTextColor: string;
7176
+ serviceMessageTextColor: string;
7177
+ serviceMessageBackgroundColor: string;
7178
+ messageTitleColor: string;
7179
+ }, {
7180
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
7181
+ color: string;
7182
+ opacity1Depth: string;
7183
+ opacity2Depth: string;
7184
+ opacity3Depth: string;
7185
+ opacity4Depth: string;
7186
+ opacity5Depth: string;
7187
+ }, any>;
7188
+ }>;
6922
7189
  StatusIcon: import("../../_mixins").Theme<"Icon", {
6923
7190
  color: string;
6924
7191
  opacity1Depth: string;
@@ -7188,6 +7455,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
7188
7455
  [x: string]: any;
7189
7456
  } | undefined;
7190
7457
  } | undefined;
7458
+ MessageBubble?: {
7459
+ peers?: {
7460
+ StatusIcon?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
7461
+ color: string;
7462
+ opacity1Depth: string;
7463
+ opacity2Depth: string;
7464
+ opacity3Depth: string;
7465
+ opacity4Depth: string;
7466
+ opacity5Depth: string;
7467
+ }, any>> | undefined;
7468
+ } | undefined;
7469
+ } | undefined;
7191
7470
  StatusIcon?: {
7192
7471
  peers?: {
7193
7472
  [x: string]: any;
@@ -7949,6 +8228,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
7949
8228
  codeColor: string;
7950
8229
  codeBorder: string;
7951
8230
  }, any>;
8231
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
8232
+ messageBubbleBackgroundColorOwn: string;
8233
+ messageBubbleBackgroundColorOther: string;
8234
+ messageBubbleTextColorOwn: string;
8235
+ messageBubbleTextColorOther: string;
8236
+ messageTimeColor: string;
8237
+ messageStatusReadColor: string;
8238
+ messageStatusSuccessColor: string;
8239
+ attachmentBackgroundColorOwn: string;
8240
+ attachmentBackgroundColorOther: string;
8241
+ messageErrorColor: string;
8242
+ messageBorderRadius: string;
8243
+ unreadNotificationBackgroundColor: string;
8244
+ unreadNotificationTextColor: string;
8245
+ serviceMessageTextColor: string;
8246
+ serviceMessageBackgroundColor: string;
8247
+ messageTitleColor: string;
8248
+ }, {
8249
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
8250
+ color: string;
8251
+ opacity1Depth: string;
8252
+ opacity2Depth: string;
8253
+ opacity3Depth: string;
8254
+ opacity4Depth: string;
8255
+ opacity5Depth: string;
8256
+ }, any>;
8257
+ }>;
7952
8258
  StatusIcon: import("../../_mixins").Theme<"Icon", {
7953
8259
  color: string;
7954
8260
  opacity1Depth: string;
@@ -8654,6 +8960,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
8654
8960
  codeColor: string;
8655
8961
  codeBorder: string;
8656
8962
  }, any>;
8963
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
8964
+ messageBubbleBackgroundColorOwn: string;
8965
+ messageBubbleBackgroundColorOther: string;
8966
+ messageBubbleTextColorOwn: string;
8967
+ messageBubbleTextColorOther: string;
8968
+ messageTimeColor: string;
8969
+ messageStatusReadColor: string;
8970
+ messageStatusSuccessColor: string;
8971
+ attachmentBackgroundColorOwn: string;
8972
+ attachmentBackgroundColorOther: string;
8973
+ messageErrorColor: string;
8974
+ messageBorderRadius: string;
8975
+ unreadNotificationBackgroundColor: string;
8976
+ unreadNotificationTextColor: string;
8977
+ serviceMessageTextColor: string;
8978
+ serviceMessageBackgroundColor: string;
8979
+ messageTitleColor: string;
8980
+ }, {
8981
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
8982
+ color: string;
8983
+ opacity1Depth: string;
8984
+ opacity2Depth: string;
8985
+ opacity3Depth: string;
8986
+ opacity4Depth: string;
8987
+ opacity5Depth: string;
8988
+ }, any>;
8989
+ }>;
8657
8990
  StatusIcon: import("../../_mixins").Theme<"Icon", {
8658
8991
  color: string;
8659
8992
  opacity1Depth: string;
@@ -9359,6 +9692,33 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
9359
9692
  codeColor: string;
9360
9693
  codeBorder: string;
9361
9694
  }, any>;
9695
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
9696
+ messageBubbleBackgroundColorOwn: string;
9697
+ messageBubbleBackgroundColorOther: string;
9698
+ messageBubbleTextColorOwn: string;
9699
+ messageBubbleTextColorOther: string;
9700
+ messageTimeColor: string;
9701
+ messageStatusReadColor: string;
9702
+ messageStatusSuccessColor: string;
9703
+ attachmentBackgroundColorOwn: string;
9704
+ attachmentBackgroundColorOther: string;
9705
+ messageErrorColor: string;
9706
+ messageBorderRadius: string;
9707
+ unreadNotificationBackgroundColor: string;
9708
+ unreadNotificationTextColor: string;
9709
+ serviceMessageTextColor: string;
9710
+ serviceMessageBackgroundColor: string;
9711
+ messageTitleColor: string;
9712
+ }, {
9713
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
9714
+ color: string;
9715
+ opacity1Depth: string;
9716
+ opacity2Depth: string;
9717
+ opacity3Depth: string;
9718
+ opacity4Depth: string;
9719
+ opacity5Depth: string;
9720
+ }, any>;
9721
+ }>;
9362
9722
  StatusIcon: import("../../_mixins").Theme<"Icon", {
9363
9723
  color: string;
9364
9724
  opacity1Depth: string;