@uzum-tech/ui 1.8.0 → 1.8.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.
Files changed (188) hide show
  1. package/dist/index.js +378 -197
  2. package/dist/index.prod.js +3 -3
  3. package/es/_internal/scrollbar/src/Scrollbar.js +1 -1
  4. package/es/button/src/Button.d.ts +72 -0
  5. package/es/button/src/Button.js +13 -7
  6. package/es/button/src/styles/index.cssr.js +1 -2
  7. package/es/button/styles/light.d.ts +8 -0
  8. package/es/button/styles/light.js +7 -7
  9. package/es/calendar/src/Calendar.d.ts +80 -0
  10. package/es/calendar/styles/light.d.ts +8 -0
  11. package/es/chat/index.d.ts +2 -1
  12. package/es/chat/index.js +1 -0
  13. package/es/chat/src/Chat.d.ts +87 -7
  14. package/es/chat/src/Chat.js +12 -12
  15. package/es/chat/src/ChatListItems.d.ts +1847 -4
  16. package/es/chat/src/ChatListItems.js +16 -12
  17. package/es/chat/src/ChatMessages.d.ts +1848 -4
  18. package/es/chat/src/ChatMessages.js +27 -10
  19. package/es/chat/src/ChatParts/MainArea.js +10 -10
  20. package/es/chat/src/ChatParts/Sidebar.js +2 -2
  21. package/es/chat/src/interface.d.ts +4 -0
  22. package/es/chat/src/styles/index.cssr.js +14 -17
  23. package/es/chat/styles/dark.d.ts +8 -0
  24. package/es/chat/styles/light.d.ts +9 -1
  25. package/es/chat/styles/light.js +15 -3
  26. package/es/color-picker/src/ColorInputUnit.d.ts +8 -0
  27. package/es/color-picker/src/ColorPicker.d.ts +72 -0
  28. package/es/color-picker/styles/light.d.ts +8 -0
  29. package/es/data-table/src/DataTable.d.ts +56 -0
  30. package/es/data-table/src/HeaderButton/FilterButton.d.ts +8 -0
  31. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +8 -0
  32. package/es/data-table/src/TableParts/Body.d.ts +8 -0
  33. package/es/data-table/src/TableParts/Header.d.ts +8 -0
  34. package/es/data-table/src/interface.d.ts +24 -0
  35. package/es/data-table/styles/light.d.ts +8 -0
  36. package/es/date-picker/src/DatePicker.d.ts +168 -0
  37. package/es/date-picker/src/panel/date.d.ts +24 -0
  38. package/es/date-picker/src/panel/daterange.d.ts +24 -0
  39. package/es/date-picker/src/panel/datetime.d.ts +24 -0
  40. package/es/date-picker/src/panel/datetimerange.d.ts +24 -0
  41. package/es/date-picker/src/panel/panelMonth.d.ts +48 -0
  42. package/es/date-picker/src/panel/panelMonthContent.d.ts +24 -0
  43. package/es/date-picker/src/panel/panelYear.d.ts +48 -0
  44. package/es/date-picker/src/panel/panelYearContent.d.ts +24 -0
  45. package/es/date-picker/src/panel/use-calendar.d.ts +24 -0
  46. package/es/date-picker/src/panel/use-dual-calendar.d.ts +24 -0
  47. package/es/date-picker/src/panel/use-panel-common.d.ts +24 -0
  48. package/es/date-picker/styles/light.d.ts +16 -0
  49. package/es/dialog/src/Dialog.d.ts +56 -0
  50. package/es/dialog/src/DialogProvider.d.ts +16 -0
  51. package/es/dialog/styles/light.d.ts +8 -0
  52. package/es/dynamic-input/src/DynamicInput.d.ts +80 -0
  53. package/es/dynamic-input/src/InputPreset.d.ts +8 -0
  54. package/es/dynamic-input/src/PairPreset.d.ts +8 -0
  55. package/es/dynamic-input/styles/light.d.ts +8 -0
  56. package/es/dynamic-tags/src/DynamicTags.d.ts +80 -0
  57. package/es/dynamic-tags/styles/light.d.ts +8 -0
  58. package/es/input-number/src/InputNumber.d.ts +80 -0
  59. package/es/input-number/styles/light.d.ts +8 -0
  60. package/es/legacy-transfer/src/Transfer.d.ts +80 -0
  61. package/es/legacy-transfer/src/TransferFilter.d.ts +8 -0
  62. package/es/legacy-transfer/src/TransferList.d.ts +8 -0
  63. package/es/legacy-transfer/src/TransferListItem.d.ts +8 -0
  64. package/es/legacy-transfer/styles/light.d.ts +8 -0
  65. package/es/modal/src/BodyWrapper.d.ts +16 -0
  66. package/es/modal/src/Modal.d.ts +72 -0
  67. package/es/modal/styles/light.d.ts +8 -0
  68. package/es/notification/src/Notification.d.ts +5 -0
  69. package/es/notification/src/Notification.js +16 -6
  70. package/es/notification/src/NotificationContainer.d.ts +12 -0
  71. package/es/notification/src/NotificationProvider.d.ts +108 -0
  72. package/es/notification/src/styles/index.cssr.js +12 -8
  73. package/es/notification/styles/light.d.ts +24 -0
  74. package/es/notification/styles/light.js +9 -8
  75. package/es/popconfirm/src/Popconfirm.d.ts +80 -0
  76. package/es/popconfirm/styles/light.d.ts +8 -0
  77. package/es/time-picker/src/Panel.d.ts +8 -0
  78. package/es/time-picker/src/TimePicker.d.ts +80 -0
  79. package/es/time-picker/styles/light.d.ts +8 -0
  80. package/es/transfer/src/Transfer.d.ts +80 -0
  81. package/es/transfer/src/TransferFilter.d.ts +8 -0
  82. package/es/transfer/src/TransferList.d.ts +8 -0
  83. package/es/transfer/src/TransferListItem.d.ts +8 -0
  84. package/es/transfer/styles/light.d.ts +8 -0
  85. package/es/upload/src/Upload.d.ts +90 -0
  86. package/es/upload/src/Upload.js +2 -1
  87. package/es/upload/src/UploadFile.d.ts +9 -0
  88. package/es/upload/src/UploadProgress.d.ts +9 -0
  89. package/es/upload/src/styles/index.cssr.js +1 -0
  90. package/es/upload/src/useUploadActionsRender.js +5 -1
  91. package/es/upload/styles/light.d.ts +10 -0
  92. package/es/upload/styles/light.js +6 -5
  93. package/es/version.d.ts +1 -1
  94. package/es/version.js +1 -1
  95. package/lib/_internal/scrollbar/src/Scrollbar.js +1 -1
  96. package/lib/button/src/Button.d.ts +72 -0
  97. package/lib/button/src/Button.js +13 -7
  98. package/lib/button/src/styles/index.cssr.js +1 -2
  99. package/lib/button/styles/light.d.ts +8 -0
  100. package/lib/button/styles/light.js +7 -7
  101. package/lib/calendar/src/Calendar.d.ts +80 -0
  102. package/lib/calendar/styles/light.d.ts +8 -0
  103. package/lib/chat/index.d.ts +2 -1
  104. package/lib/chat/index.js +5 -1
  105. package/lib/chat/src/Chat.d.ts +87 -7
  106. package/lib/chat/src/Chat.js +12 -12
  107. package/lib/chat/src/ChatListItems.d.ts +1847 -4
  108. package/lib/chat/src/ChatListItems.js +14 -10
  109. package/lib/chat/src/ChatMessages.d.ts +1848 -4
  110. package/lib/chat/src/ChatMessages.js +25 -8
  111. package/lib/chat/src/ChatParts/MainArea.js +10 -10
  112. package/lib/chat/src/ChatParts/Sidebar.js +2 -2
  113. package/lib/chat/src/interface.d.ts +4 -0
  114. package/lib/chat/src/styles/index.cssr.js +14 -17
  115. package/lib/chat/styles/dark.d.ts +8 -0
  116. package/lib/chat/styles/light.d.ts +9 -1
  117. package/lib/chat/styles/light.js +15 -3
  118. package/lib/color-picker/src/ColorInputUnit.d.ts +8 -0
  119. package/lib/color-picker/src/ColorPicker.d.ts +72 -0
  120. package/lib/color-picker/styles/light.d.ts +8 -0
  121. package/lib/data-table/src/DataTable.d.ts +56 -0
  122. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +8 -0
  123. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +8 -0
  124. package/lib/data-table/src/TableParts/Body.d.ts +8 -0
  125. package/lib/data-table/src/TableParts/Header.d.ts +8 -0
  126. package/lib/data-table/src/interface.d.ts +24 -0
  127. package/lib/data-table/styles/light.d.ts +8 -0
  128. package/lib/date-picker/src/DatePicker.d.ts +168 -0
  129. package/lib/date-picker/src/panel/date.d.ts +24 -0
  130. package/lib/date-picker/src/panel/daterange.d.ts +24 -0
  131. package/lib/date-picker/src/panel/datetime.d.ts +24 -0
  132. package/lib/date-picker/src/panel/datetimerange.d.ts +24 -0
  133. package/lib/date-picker/src/panel/panelMonth.d.ts +48 -0
  134. package/lib/date-picker/src/panel/panelMonthContent.d.ts +24 -0
  135. package/lib/date-picker/src/panel/panelYear.d.ts +48 -0
  136. package/lib/date-picker/src/panel/panelYearContent.d.ts +24 -0
  137. package/lib/date-picker/src/panel/use-calendar.d.ts +24 -0
  138. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +24 -0
  139. package/lib/date-picker/src/panel/use-panel-common.d.ts +24 -0
  140. package/lib/date-picker/styles/light.d.ts +16 -0
  141. package/lib/dialog/src/Dialog.d.ts +56 -0
  142. package/lib/dialog/src/DialogProvider.d.ts +16 -0
  143. package/lib/dialog/styles/light.d.ts +8 -0
  144. package/lib/dynamic-input/src/DynamicInput.d.ts +80 -0
  145. package/lib/dynamic-input/src/InputPreset.d.ts +8 -0
  146. package/lib/dynamic-input/src/PairPreset.d.ts +8 -0
  147. package/lib/dynamic-input/styles/light.d.ts +8 -0
  148. package/lib/dynamic-tags/src/DynamicTags.d.ts +80 -0
  149. package/lib/dynamic-tags/styles/light.d.ts +8 -0
  150. package/lib/input-number/src/InputNumber.d.ts +80 -0
  151. package/lib/input-number/styles/light.d.ts +8 -0
  152. package/lib/legacy-transfer/src/Transfer.d.ts +80 -0
  153. package/lib/legacy-transfer/src/TransferFilter.d.ts +8 -0
  154. package/lib/legacy-transfer/src/TransferList.d.ts +8 -0
  155. package/lib/legacy-transfer/src/TransferListItem.d.ts +8 -0
  156. package/lib/legacy-transfer/styles/light.d.ts +8 -0
  157. package/lib/modal/src/BodyWrapper.d.ts +16 -0
  158. package/lib/modal/src/Modal.d.ts +72 -0
  159. package/lib/modal/styles/light.d.ts +8 -0
  160. package/lib/notification/src/Notification.d.ts +5 -0
  161. package/lib/notification/src/Notification.js +14 -4
  162. package/lib/notification/src/NotificationContainer.d.ts +12 -0
  163. package/lib/notification/src/NotificationProvider.d.ts +108 -0
  164. package/lib/notification/src/styles/index.cssr.js +12 -8
  165. package/lib/notification/styles/light.d.ts +24 -0
  166. package/lib/notification/styles/light.js +9 -8
  167. package/lib/popconfirm/src/Popconfirm.d.ts +80 -0
  168. package/lib/popconfirm/styles/light.d.ts +8 -0
  169. package/lib/time-picker/src/Panel.d.ts +8 -0
  170. package/lib/time-picker/src/TimePicker.d.ts +80 -0
  171. package/lib/time-picker/styles/light.d.ts +8 -0
  172. package/lib/transfer/src/Transfer.d.ts +80 -0
  173. package/lib/transfer/src/TransferFilter.d.ts +8 -0
  174. package/lib/transfer/src/TransferList.d.ts +8 -0
  175. package/lib/transfer/src/TransferListItem.d.ts +8 -0
  176. package/lib/transfer/styles/light.d.ts +8 -0
  177. package/lib/upload/src/Upload.d.ts +90 -0
  178. package/lib/upload/src/Upload.js +2 -1
  179. package/lib/upload/src/UploadFile.d.ts +9 -0
  180. package/lib/upload/src/UploadProgress.d.ts +9 -0
  181. package/lib/upload/src/styles/index.cssr.js +1 -0
  182. package/lib/upload/src/useUploadActionsRender.js +5 -1
  183. package/lib/upload/styles/light.d.ts +10 -0
  184. package/lib/upload/styles/light.js +6 -5
  185. package/lib/version.d.ts +1 -1
  186. package/lib/version.js +1 -1
  187. package/package.json +1 -1
  188. package/web-types.json +4 -4
@@ -406,16 +406,24 @@ export declare const chatMessagesProps: {
406
406
  colorSecondary: string;
407
407
  colorSecondaryHover: string;
408
408
  colorSecondaryPressed: string;
409
+ colorSecondaryFocus: string;
410
+ colorSecondaryDisabled: string;
411
+ textColorSecondaryDisabled: string;
409
412
  waveColorSecondary: string;
410
413
  colorTertiary: string;
411
414
  colorTertiaryHover: string;
412
415
  colorTertiaryPressed: string;
416
+ colorTertiaryFocus: string;
413
417
  colorTertiaryDisalbed: string;
414
418
  waveColorTertiary: string;
415
419
  textColorTextTertiary: string;
420
+ rippleColorTertiary: string;
416
421
  colorQuaternary: string;
417
422
  colorQuaternaryHover: string;
418
423
  colorQuaternaryPressed: string;
424
+ colorQuaternaryFocus: string;
425
+ rippleColorQuaternary: string;
426
+ waveColorQuaternary: string;
419
427
  color: string;
420
428
  colorHover: string;
421
429
  colorPressed: string;
@@ -1055,16 +1063,24 @@ export declare const chatMessagesProps: {
1055
1063
  colorSecondary: string;
1056
1064
  colorSecondaryHover: string;
1057
1065
  colorSecondaryPressed: string;
1066
+ colorSecondaryFocus: string;
1067
+ colorSecondaryDisabled: string;
1068
+ textColorSecondaryDisabled: string;
1058
1069
  waveColorSecondary: string;
1059
1070
  colorTertiary: string;
1060
1071
  colorTertiaryHover: string;
1061
1072
  colorTertiaryPressed: string;
1073
+ colorTertiaryFocus: string;
1062
1074
  colorTertiaryDisalbed: string;
1063
1075
  waveColorTertiary: string;
1064
1076
  textColorTextTertiary: string;
1077
+ rippleColorTertiary: string;
1065
1078
  colorQuaternary: string;
1066
1079
  colorQuaternaryHover: string;
1067
1080
  colorQuaternaryPressed: string;
1081
+ colorQuaternaryFocus: string;
1082
+ rippleColorQuaternary: string;
1083
+ waveColorQuaternary: string;
1068
1084
  color: string;
1069
1085
  colorHover: string;
1070
1086
  colorPressed: string;
@@ -1704,16 +1720,24 @@ export declare const chatMessagesProps: {
1704
1720
  colorSecondary: string;
1705
1721
  colorSecondaryHover: string;
1706
1722
  colorSecondaryPressed: string;
1723
+ colorSecondaryFocus: string;
1724
+ colorSecondaryDisabled: string;
1725
+ textColorSecondaryDisabled: string;
1707
1726
  waveColorSecondary: string;
1708
1727
  colorTertiary: string;
1709
1728
  colorTertiaryHover: string;
1710
1729
  colorTertiaryPressed: string;
1730
+ colorTertiaryFocus: string;
1711
1731
  colorTertiaryDisalbed: string;
1712
1732
  waveColorTertiary: string;
1713
1733
  textColorTextTertiary: string;
1734
+ rippleColorTertiary: string;
1714
1735
  colorQuaternary: string;
1715
1736
  colorQuaternaryHover: string;
1716
1737
  colorQuaternaryPressed: string;
1738
+ colorQuaternaryFocus: string;
1739
+ rippleColorQuaternary: string;
1740
+ waveColorQuaternary: string;
1717
1741
  color: string;
1718
1742
  colorHover: string;
1719
1743
  colorPressed: string;
@@ -2404,16 +2428,24 @@ declare const _default: import("vue").DefineComponent<{
2404
2428
  colorSecondary: string;
2405
2429
  colorSecondaryHover: string;
2406
2430
  colorSecondaryPressed: string;
2431
+ colorSecondaryFocus: string;
2432
+ colorSecondaryDisabled: string;
2433
+ textColorSecondaryDisabled: string;
2407
2434
  waveColorSecondary: string;
2408
2435
  colorTertiary: string;
2409
2436
  colorTertiaryHover: string;
2410
2437
  colorTertiaryPressed: string;
2438
+ colorTertiaryFocus: string;
2411
2439
  colorTertiaryDisalbed: string;
2412
2440
  waveColorTertiary: string;
2413
2441
  textColorTextTertiary: string;
2442
+ rippleColorTertiary: string;
2414
2443
  colorQuaternary: string;
2415
2444
  colorQuaternaryHover: string;
2416
2445
  colorQuaternaryPressed: string;
2446
+ colorQuaternaryFocus: string;
2447
+ rippleColorQuaternary: string;
2448
+ waveColorQuaternary: string;
2417
2449
  color: string;
2418
2450
  colorHover: string;
2419
2451
  colorPressed: string;
@@ -3053,16 +3085,24 @@ declare const _default: import("vue").DefineComponent<{
3053
3085
  colorSecondary: string;
3054
3086
  colorSecondaryHover: string;
3055
3087
  colorSecondaryPressed: string;
3088
+ colorSecondaryFocus: string;
3089
+ colorSecondaryDisabled: string;
3090
+ textColorSecondaryDisabled: string;
3056
3091
  waveColorSecondary: string;
3057
3092
  colorTertiary: string;
3058
3093
  colorTertiaryHover: string;
3059
3094
  colorTertiaryPressed: string;
3095
+ colorTertiaryFocus: string;
3060
3096
  colorTertiaryDisalbed: string;
3061
3097
  waveColorTertiary: string;
3062
3098
  textColorTextTertiary: string;
3099
+ rippleColorTertiary: string;
3063
3100
  colorQuaternary: string;
3064
3101
  colorQuaternaryHover: string;
3065
3102
  colorQuaternaryPressed: string;
3103
+ colorQuaternaryFocus: string;
3104
+ rippleColorQuaternary: string;
3105
+ waveColorQuaternary: string;
3066
3106
  color: string;
3067
3107
  colorHover: string;
3068
3108
  colorPressed: string;
@@ -3702,16 +3742,24 @@ declare const _default: import("vue").DefineComponent<{
3702
3742
  colorSecondary: string;
3703
3743
  colorSecondaryHover: string;
3704
3744
  colorSecondaryPressed: string;
3745
+ colorSecondaryFocus: string;
3746
+ colorSecondaryDisabled: string;
3747
+ textColorSecondaryDisabled: string;
3705
3748
  waveColorSecondary: string;
3706
3749
  colorTertiary: string;
3707
3750
  colorTertiaryHover: string;
3708
3751
  colorTertiaryPressed: string;
3752
+ colorTertiaryFocus: string;
3709
3753
  colorTertiaryDisalbed: string;
3710
3754
  waveColorTertiary: string;
3711
3755
  textColorTextTertiary: string;
3756
+ rippleColorTertiary: string;
3712
3757
  colorQuaternary: string;
3713
3758
  colorQuaternaryHover: string;
3714
3759
  colorQuaternaryPressed: string;
3760
+ colorQuaternaryFocus: string;
3761
+ rippleColorQuaternary: string;
3762
+ waveColorQuaternary: string;
3715
3763
  color: string;
3716
3764
  colorHover: string;
3717
3765
  colorPressed: string;
@@ -3998,7 +4046,1781 @@ declare const _default: import("vue").DefineComponent<{
3998
4046
  }>>>;
3999
4047
  }, {
4000
4048
  mergedClsPrefixRef: import("vue").Ref<string>;
4049
+ mergedTheme: import("vue").Ref<{
4050
+ common: import("../..").ThemeCommonVars;
4051
+ self: {
4052
+ backgroundColor: string;
4053
+ borderColor: string;
4054
+ sidebarBackgroundColor: string;
4055
+ sidebarBorderColor: string;
4056
+ sidebarItemBackgroundColor: string;
4057
+ sidebarItemBackgroundColorHover: string;
4058
+ sidebarItemBackgroundColorSelected: string;
4059
+ sidebarItemTextColor: string;
4060
+ sidebarItemTextColorSelected: string;
4061
+ sidebarItemSubtitleColor: string;
4062
+ sidebarItemTimeColor: string;
4063
+ mainBackgroundColor: string;
4064
+ headerBackgroundColor: string;
4065
+ headerBorderColor: string;
4066
+ headerTitleColor: string;
4067
+ messageBubbleBackgroundColorOwn: string;
4068
+ messageBubbleBackgroundColorOther: string;
4069
+ messageBubbleTextColorOwn: string;
4070
+ messageBubbleTextColorOther: string;
4071
+ messageTimeColor: string;
4072
+ messageStatusColor: string;
4073
+ attachmentBackgroundColorOwn: string;
4074
+ attachmentBackgroundColorOther: string;
4075
+ footerBackgroundColor: string;
4076
+ footerBorderColor: string;
4077
+ inputBackgroundColor: string;
4078
+ inputBorderColor: string;
4079
+ unreadNotificationBackgroundColor: string;
4080
+ unreadNotificationTextColor: string;
4081
+ typingIndicatorColor: string;
4082
+ dateSeparatorColor: string;
4083
+ dateSeparatorBackgroundColor: string;
4084
+ borderRadius: string;
4085
+ errorColor: string;
4086
+ };
4087
+ peers: {
4088
+ Input: import("../../_mixins").Theme<"Input", {
4089
+ paddingTiny: string;
4090
+ paddingSmall: string;
4091
+ paddingMedium: string;
4092
+ paddingLarge: string;
4093
+ paddingHuge: string;
4094
+ clearSize: string;
4095
+ countTextColorDisabled: string;
4096
+ countTextColor: string;
4097
+ heightTiny: string;
4098
+ heightSmall: string;
4099
+ heightMedium: string;
4100
+ heightLarge: string;
4101
+ heightHuge: string;
4102
+ fontSizeTiny: string;
4103
+ fontSizeSmall: string;
4104
+ fontSizeMedium: string;
4105
+ fontSizeLarge: string;
4106
+ fontSizeHuge: string;
4107
+ lineHeight: string;
4108
+ lineHeightTextarea: string;
4109
+ borderRadius: string;
4110
+ iconSize: string;
4111
+ groupLabelTextColor: string;
4112
+ textColor: string;
4113
+ textColorDisabled: string;
4114
+ textDecorationColor: string;
4115
+ caretColor: string;
4116
+ placeholderColor: string;
4117
+ placeholderColorDisabled: string;
4118
+ color: string;
4119
+ colorDisabled: string;
4120
+ colorFocus: string;
4121
+ groupLabelBorder: string;
4122
+ border: string;
4123
+ borderHover: string;
4124
+ borderDisabled: string;
4125
+ borderFocus: string;
4126
+ boxShadowFocus: string;
4127
+ loadingColor: string;
4128
+ loadingColorWarning: string;
4129
+ borderWarning: string;
4130
+ borderHoverWarning: string;
4131
+ colorFocusWarning: string;
4132
+ borderFocusWarning: string;
4133
+ boxShadowFocusWarning: string;
4134
+ caretColorWarning: string;
4135
+ loadingColorError: string;
4136
+ borderError: string;
4137
+ borderHoverError: string;
4138
+ colorFocusError: string;
4139
+ borderFocusError: string;
4140
+ boxShadowFocusError: string;
4141
+ caretColorError: string;
4142
+ clearColor: string;
4143
+ clearColorHover: string;
4144
+ clearColorPressed: string;
4145
+ iconColor: string;
4146
+ iconColorDisabled: string;
4147
+ iconColorHover: string;
4148
+ iconColorPressed: string;
4149
+ suffixTextColor: string;
4150
+ selectionColor: string;
4151
+ }, any>;
4152
+ Empty: import("../../_mixins").Theme<"Empty", {
4153
+ iconSizeSmall: string;
4154
+ iconSizeMedium: string;
4155
+ iconSizeLarge: string;
4156
+ iconSizeHuge: string;
4157
+ titleFontSizeSmall: string;
4158
+ titleFontSizeMedium: string;
4159
+ titleFontSizeLarge: string;
4160
+ titleFontSizeHuge: string;
4161
+ descriptionFontSizeSmall: string;
4162
+ descriptionFontSizeMedium: string;
4163
+ descriptionFontSizeLarge: string;
4164
+ descriptionFontSizeHuge: string;
4165
+ titleColor: string;
4166
+ descriptionColor: string;
4167
+ iconColor: string;
4168
+ iconBgColor: string;
4169
+ extraTextColor: string;
4170
+ }, any>;
4171
+ Select: import("../../_mixins").Theme<"Select", {
4172
+ menuBoxShadow: string;
4173
+ }, {
4174
+ InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
4175
+ paddingTiny: string;
4176
+ paddingSmall: string;
4177
+ paddingMedium: string;
4178
+ paddingLarge: string;
4179
+ paddingHuge: string;
4180
+ clearSizeTiny: string;
4181
+ clearSizeSmall: string;
4182
+ clearSizeMedium: string;
4183
+ clearSizeLarge: string;
4184
+ clearSizeHuge: string;
4185
+ arrowSizeTiny: string;
4186
+ arrowSizeSmall: string;
4187
+ arrowSizeMedium: string;
4188
+ arrowSizeLarge: string;
4189
+ arrowSizeHuge: string;
4190
+ fontSizeTiny: string;
4191
+ fontSizeSmall: string;
4192
+ fontSizeMedium: string;
4193
+ fontSizeLarge: string;
4194
+ fontSizeHuge: string;
4195
+ lineHeightTiny: string;
4196
+ lineHeightSmall: string;
4197
+ lineHeightMedium: string;
4198
+ lineHeightLarge: string;
4199
+ lineHeightHuge: string;
4200
+ heightTiny: string;
4201
+ heightSmall: string;
4202
+ heightMedium: string;
4203
+ heightLarge: string;
4204
+ heightHuge: string;
4205
+ borderRadiusTiny: string;
4206
+ borderRadiusSmall: string;
4207
+ borderRadiusMedium: string;
4208
+ borderRadiusLarge: string;
4209
+ borderRadiusHuge: string;
4210
+ textColor: string;
4211
+ textColorDisabled: string;
4212
+ placeholderColor: string;
4213
+ placeholderColorDisabled: string;
4214
+ color: string;
4215
+ colorFilled: string;
4216
+ colorDisabled: string;
4217
+ colorActive: string;
4218
+ border: string;
4219
+ borderFilled: string;
4220
+ borderHover: string;
4221
+ borderActive: string;
4222
+ borderFocus: string;
4223
+ borderDisabled: string;
4224
+ boxShadowHover: string;
4225
+ boxShadowActive: string;
4226
+ boxShadowFocus: string;
4227
+ caretColor: string;
4228
+ arrowColor: string;
4229
+ arrowColorHover: string;
4230
+ arrowColorDisabled: string;
4231
+ loadingColor: string;
4232
+ borderWarning: string;
4233
+ borderHoverWarning: string;
4234
+ borderActiveWarning: string;
4235
+ borderFocusWarning: string;
4236
+ boxShadowHoverWarning: string;
4237
+ boxShadowActiveWarning: string;
4238
+ boxShadowFocusWarning: string;
4239
+ colorActiveWarning: string;
4240
+ caretColorWarning: string;
4241
+ borderError: string;
4242
+ borderHoverError: string;
4243
+ borderActiveError: string;
4244
+ borderFocusError: string;
4245
+ boxShadowHoverError: string;
4246
+ boxShadowActiveError: string;
4247
+ boxShadowFocusError: string;
4248
+ colorActiveError: string;
4249
+ caretColorError: string;
4250
+ clearColor: string;
4251
+ clearColorHover: string;
4252
+ clearColorPressed: string;
4253
+ caretColorSecondary: string;
4254
+ filterCounterTextColor: string;
4255
+ filterCounterTextColorDisabled: string;
4256
+ arrowColorSecondary: string;
4257
+ clearColorSecondary: string;
4258
+ colorSecondary: string;
4259
+ textColorSecondary: string;
4260
+ borderSecondary: string;
4261
+ arrowColorDisabledSecondary: string;
4262
+ clearColorDisabledSecondary: string;
4263
+ colorDisabledSecondary: string;
4264
+ textColorDisabledSecondary: string;
4265
+ borderDisabledSecondary: string;
4266
+ arrowColorHoverSecondary: string;
4267
+ clearColorHoverSecondary: string;
4268
+ colorHoverSecondary: string;
4269
+ textColorHoverSecondary: string;
4270
+ borderHoverSecondary: string;
4271
+ arrowColorFocusSecondary: string;
4272
+ clearColorFocusSecondary: string;
4273
+ colorFocusSecondary: string;
4274
+ textColorFocusSecondary: string;
4275
+ borderFocusSecondary: string;
4276
+ arrowColorActiveSecondary: string;
4277
+ clearColorActiveSecondary: string;
4278
+ colorActiveSecondary: string;
4279
+ textColorActiveSecondary: string;
4280
+ borderActiveSecondary: string;
4281
+ }, {
4282
+ Popover: import("../../_mixins").Theme<"Popover", {
4283
+ space: string;
4284
+ spaceArrow: string;
4285
+ arrowOffset: string;
4286
+ arrowOffsetVertical: string;
4287
+ arrowHeight: string;
4288
+ padding: string;
4289
+ fontSize: string;
4290
+ borderRadius: string;
4291
+ color: string;
4292
+ dividerColor: string;
4293
+ textColor: string;
4294
+ boxShadow: string;
4295
+ }, any>;
4296
+ }>;
4297
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
4298
+ height: string;
4299
+ paddingSmall: string;
4300
+ paddingMedium: string;
4301
+ paddingLarge: string;
4302
+ optionPaddingSmall: string;
4303
+ optionPaddingMedium: string;
4304
+ optionPaddingLarge: string;
4305
+ loadingSize: string;
4306
+ optionFontSizeSmall: string;
4307
+ optionFontSizeMedium: string;
4308
+ optionFontSizeLarge: string;
4309
+ optionHeightSmall: string;
4310
+ optionHeightMedium: string;
4311
+ optionHeightLarge: string;
4312
+ optionBorderRadius: string;
4313
+ borderRadius: string;
4314
+ color: string;
4315
+ groupHeaderTextColor: string;
4316
+ actionDividerColor: string;
4317
+ optionTextColor: string;
4318
+ optionTextColorPressed: string;
4319
+ optionTextColorDisabled: string;
4320
+ optionTextColorActive: string;
4321
+ optionOpacityDisabled: string;
4322
+ optionCheckColor: string;
4323
+ optionColorPending: string;
4324
+ optionColorActive: string;
4325
+ optionGroupHeaderBorderColor: string;
4326
+ optionColorActivePending: string;
4327
+ actionTextColor: string;
4328
+ loadingColor: string;
4329
+ }, {
4330
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4331
+ color: string;
4332
+ colorHover: string;
4333
+ }, any>;
4334
+ Empty: import("../../_mixins").Theme<"Empty", {
4335
+ iconSizeSmall: string;
4336
+ iconSizeMedium: string;
4337
+ iconSizeLarge: string;
4338
+ iconSizeHuge: string;
4339
+ titleFontSizeSmall: string;
4340
+ titleFontSizeMedium: string;
4341
+ titleFontSizeLarge: string;
4342
+ titleFontSizeHuge: string;
4343
+ descriptionFontSizeSmall: string;
4344
+ descriptionFontSizeMedium: string;
4345
+ descriptionFontSizeLarge: string;
4346
+ descriptionFontSizeHuge: string;
4347
+ titleColor: string;
4348
+ descriptionColor: string;
4349
+ iconColor: string;
4350
+ iconBgColor: string;
4351
+ extraTextColor: string;
4352
+ }, any>;
4353
+ }>;
4354
+ }>;
4355
+ Avatar: import("../../_mixins").Theme<"Avatar", {
4356
+ borderRadius: string;
4357
+ fontSize: string;
4358
+ fontWeight: string;
4359
+ border: string;
4360
+ heightTiny: string;
4361
+ heightSmall: string;
4362
+ heightMedium: string;
4363
+ heightLarge: string;
4364
+ textColor: string;
4365
+ iconColor: string;
4366
+ color: string;
4367
+ iconSize: string;
4368
+ }, any>;
4369
+ Badge: import("../../_mixins").Theme<"Badge", {
4370
+ color: string;
4371
+ colorPrime: string;
4372
+ colorInfo: string;
4373
+ colorSuccess: string;
4374
+ colorError: string;
4375
+ colorWarning: string;
4376
+ fontSize: string;
4377
+ textColor: string;
4378
+ textColorPrime: string;
4379
+ textColorInfo: string;
4380
+ textColorSuccess: string;
4381
+ textColorError: string;
4382
+ textColorWarning: string;
4383
+ borderColor: string;
4384
+ dotSize: string;
4385
+ }, any>;
4386
+ Button: import("../../_mixins").Theme<"Button", {
4387
+ heightTiny: string;
4388
+ heightSmall: string;
4389
+ heightMedium: string;
4390
+ heightLarge: string;
4391
+ borderRadiusTiny: string;
4392
+ borderRadiusSmall: string;
4393
+ borderRadiusMedium: string;
4394
+ borderRadiusLarge: string;
4395
+ fontSizeTiny: string;
4396
+ fontSizeSmall: string;
4397
+ fontSizeMedium: string;
4398
+ fontSizeLarge: string;
4399
+ opacityDisabled: string;
4400
+ colorOpacitySecondary: string;
4401
+ colorOpacitySecondaryHover: string;
4402
+ colorOpacitySecondaryPressed: string;
4403
+ colorOpacitySecondaryFocus: string;
4404
+ colorSecondary: string;
4405
+ colorSecondaryHover: string;
4406
+ colorSecondaryPressed: string;
4407
+ colorSecondaryFocus: string;
4408
+ colorSecondaryDisabled: string;
4409
+ textColorSecondaryDisabled: string;
4410
+ waveColorSecondary: string;
4411
+ colorTertiary: string;
4412
+ colorTertiaryHover: string;
4413
+ colorTertiaryPressed: string;
4414
+ colorTertiaryFocus: string;
4415
+ colorTertiaryDisalbed: string;
4416
+ waveColorTertiary: string;
4417
+ textColorTextTertiary: string;
4418
+ rippleColorTertiary: string;
4419
+ colorQuaternary: string;
4420
+ colorQuaternaryHover: string;
4421
+ colorQuaternaryPressed: string;
4422
+ colorQuaternaryFocus: string;
4423
+ rippleColorQuaternary: string;
4424
+ waveColorQuaternary: string;
4425
+ color: string;
4426
+ colorHover: string;
4427
+ colorPressed: string;
4428
+ colorFocus: string;
4429
+ colorDisabled: string;
4430
+ textColor: string;
4431
+ textTertiary: string;
4432
+ textColorTertiary: string;
4433
+ textColorHover: string;
4434
+ textColorPressed: string;
4435
+ textColorFocus: string;
4436
+ textColorDisabled: string;
4437
+ textColorText: string;
4438
+ textColorTextHover: string;
4439
+ textColorTextPressed: string;
4440
+ textColorTextFocus: string;
4441
+ textColorTextDisabled: string;
4442
+ textColorGhost: string;
4443
+ textColorGhostHover: string;
4444
+ textColorGhostPressed: string;
4445
+ textColorGhostFocus: string;
4446
+ textColorGhostDisabled: string;
4447
+ border: string;
4448
+ borderHover: string;
4449
+ borderPressed: string;
4450
+ borderFocus: string;
4451
+ borderDisabled: string;
4452
+ rippleColor: string;
4453
+ colorPrimary: string;
4454
+ colorHoverPrimary: string;
4455
+ colorPressedPrimary: string;
4456
+ colorFocusPrimary: string;
4457
+ colorDisabledPrimary: string;
4458
+ waveColorPrimary: string;
4459
+ textColorPrimary: string;
4460
+ textColorHoverPrimary: string;
4461
+ textColorPressedPrimary: string;
4462
+ textColorFocusPrimary: string;
4463
+ textColorDisabledPrimary: string;
4464
+ textColorTextPrimary: string;
4465
+ textColorTextHoverPrimary: string;
4466
+ textColorTextPressedPrimary: string;
4467
+ textColorTextFocusPrimary: string;
4468
+ textColorTextDisabledPrimary: string;
4469
+ textColorGhostPrimary: string;
4470
+ textColorGhostHoverPrimary: string;
4471
+ textColorGhostPressedPrimary: string;
4472
+ textColorGhostFocusPrimary: string;
4473
+ textColorGhostDisabledPrimary: string;
4474
+ borderPrimary: string;
4475
+ borderHoverPrimary: string;
4476
+ borderPressedPrimary: string;
4477
+ borderFocusPrimary: string;
4478
+ borderDisabledPrimary: string;
4479
+ rippleColorPrimary: string;
4480
+ colorInfo: string;
4481
+ colorHoverInfo: string;
4482
+ colorPressedInfo: string;
4483
+ colorFocusInfo: string;
4484
+ colorDisabledInfo: string;
4485
+ textColorInfo: string;
4486
+ textColorHoverInfo: string;
4487
+ textColorPressedInfo: string;
4488
+ textColorFocusInfo: string;
4489
+ textColorDisabledInfo: string;
4490
+ textColorTextInfo: string;
4491
+ textColorTextHoverInfo: string;
4492
+ textColorTextPressedInfo: string;
4493
+ textColorTextFocusInfo: string;
4494
+ textColorTextDisabledInfo: string;
4495
+ textColorGhostInfo: string;
4496
+ textColorGhostHoverInfo: string;
4497
+ textColorGhostPressedInfo: string;
4498
+ textColorGhostFocusInfo: string;
4499
+ textColorGhostDisabledInfo: string;
4500
+ borderInfo: string;
4501
+ borderHoverInfo: string;
4502
+ borderPressedInfo: string;
4503
+ borderFocusInfo: string;
4504
+ borderDisabledInfo: string;
4505
+ rippleColorInfo: string;
4506
+ colorSuccess: string;
4507
+ colorHoverSuccess: string;
4508
+ colorPressedSuccess: string;
4509
+ colorFocusSuccess: string;
4510
+ colorDisabledSuccess: string;
4511
+ textColorSuccess: string;
4512
+ textColorHoverSuccess: string;
4513
+ textColorPressedSuccess: string;
4514
+ textColorFocusSuccess: string;
4515
+ textColorDisabledSuccess: string;
4516
+ textColorTextSuccess: string;
4517
+ textColorTextHoverSuccess: string;
4518
+ textColorTextPressedSuccess: string;
4519
+ textColorTextFocusSuccess: string;
4520
+ textColorTextDisabledSuccess: string;
4521
+ textColorGhostSuccess: string;
4522
+ textColorGhostHoverSuccess: string;
4523
+ textColorGhostPressedSuccess: string;
4524
+ textColorGhostFocusSuccess: string;
4525
+ textColorGhostDisabledSuccess: string;
4526
+ borderSuccess: string;
4527
+ borderHoverSuccess: string;
4528
+ borderPressedSuccess: string;
4529
+ borderFocusSuccess: string;
4530
+ borderDisabledSuccess: string;
4531
+ rippleColorSuccess: string;
4532
+ colorWarning: string;
4533
+ colorHoverWarning: string;
4534
+ colorPressedWarning: string;
4535
+ colorFocusWarning: string;
4536
+ colorDisabledWarning: string;
4537
+ textColorWarning: string;
4538
+ textColorHoverWarning: string;
4539
+ textColorPressedWarning: string;
4540
+ textColorFocusWarning: string;
4541
+ textColorDisabledWarning: string;
4542
+ textColorTextWarning: string;
4543
+ textColorTextHoverWarning: string;
4544
+ textColorTextPressedWarning: string;
4545
+ textColorTextFocusWarning: string;
4546
+ textColorTextDisabledWarning: string;
4547
+ textColorGhostWarning: string;
4548
+ textColorGhostHoverWarning: string;
4549
+ textColorGhostPressedWarning: string;
4550
+ textColorGhostFocusWarning: string;
4551
+ textColorGhostDisabledWarning: string;
4552
+ borderWarning: string;
4553
+ borderHoverWarning: string;
4554
+ borderPressedWarning: string;
4555
+ borderFocusWarning: string;
4556
+ borderDisabledWarning: string;
4557
+ rippleColorWarning: string;
4558
+ colorError: string;
4559
+ colorHoverError: string;
4560
+ colorPressedError: string;
4561
+ colorFocusError: string;
4562
+ colorDisabledError: string;
4563
+ textColorError: string;
4564
+ textColorHoverError: string;
4565
+ textColorPressedError: string;
4566
+ textColorFocusError: string;
4567
+ textColorDisabledError: string;
4568
+ textColorTextError: string;
4569
+ textColorTextHoverError: string;
4570
+ textColorTextPressedError: string;
4571
+ textColorTextFocusError: string;
4572
+ textColorTextDisabledError: string;
4573
+ textColorGhostError: string;
4574
+ textColorGhostHoverError: string;
4575
+ textColorGhostPressedError: string;
4576
+ textColorGhostFocusError: string;
4577
+ textColorGhostDisabledError: string;
4578
+ borderError: string;
4579
+ borderHoverError: string;
4580
+ borderPressedError: string;
4581
+ borderFocusError: string;
4582
+ borderDisabledError: string;
4583
+ rippleColorError: string;
4584
+ waveOpacity: string;
4585
+ fontWeight: string;
4586
+ fontWeightStrong: string;
4587
+ paddingTiny: string;
4588
+ paddingSmall: string;
4589
+ paddingMedium: string;
4590
+ paddingLarge: string;
4591
+ paddingRoundTiny: string;
4592
+ paddingRoundSmall: string;
4593
+ paddingRoundMedium: string;
4594
+ paddingRoundLarge: string;
4595
+ iconMarginTiny: string;
4596
+ iconMarginSmall: string;
4597
+ iconMarginMedium: string;
4598
+ iconMarginLarge: string;
4599
+ iconSizeTiny: string;
4600
+ iconSizeSmall: string;
4601
+ iconSizeMedium: string;
4602
+ iconSizeLarge: string;
4603
+ rippleDuration: string;
4604
+ }, any>;
4605
+ Icon: import("../../_mixins").Theme<"Icon", {
4606
+ color: string;
4607
+ opacity1Depth: string;
4608
+ opacity2Depth: string;
4609
+ opacity3Depth: string;
4610
+ opacity4Depth: string;
4611
+ opacity5Depth: string;
4612
+ }, any>;
4613
+ List: import("../../_mixins").Theme<"List", {
4614
+ iconSize: string;
4615
+ iconSpace: string;
4616
+ suffixSpace: string;
4617
+ prefixSpace: string;
4618
+ subtitleColor: string;
4619
+ avatarSpace: string;
4620
+ colorFocus: string;
4621
+ pressedScale: string;
4622
+ textColorDisabled: string;
4623
+ textColor: string;
4624
+ color: string;
4625
+ colorHover: string;
4626
+ colorModal: string;
4627
+ colorHoverModal: string;
4628
+ colorPopover: string;
4629
+ colorHoverPopover: string;
4630
+ borderColor: string;
4631
+ borderColorModal: string;
4632
+ borderColorPopover: string;
4633
+ borderRadiusLarge: string;
4634
+ borderRadiusMedium: string;
4635
+ borderRadiusSmall: string;
4636
+ padding: string;
4637
+ suffixSize: string;
4638
+ }, any>;
4639
+ Typography: import("../../_mixins").Theme<"Typography", {
4640
+ headerFontSize1: string;
4641
+ headerFontSize2: string;
4642
+ headerFontSize3: string;
4643
+ headerFontSize4: string;
4644
+ headerFontSize5: string;
4645
+ headerFontSize6: string;
4646
+ headerMargin1: string;
4647
+ headerMargin2: string;
4648
+ headerMargin3: string;
4649
+ headerMargin4: string;
4650
+ headerMargin5: string;
4651
+ headerMargin6: string;
4652
+ headerPrefixWidth1: string;
4653
+ headerPrefixWidth2: string;
4654
+ headerPrefixWidth3: string;
4655
+ headerPrefixWidth4: string;
4656
+ headerPrefixWidth5: string;
4657
+ headerPrefixWidth6: string;
4658
+ headerBarWidth1: string;
4659
+ headerBarWidth2: string;
4660
+ headerBarWidth3: string;
4661
+ headerBarWidth4: string;
4662
+ headerBarWidth5: string;
4663
+ headerBarWidth6: string;
4664
+ pMargin: string;
4665
+ margin: string;
4666
+ liMargin: string;
4667
+ olPadding: string;
4668
+ ulPadding: string;
4669
+ aTextColor: string;
4670
+ blockquoteTextColor: string;
4671
+ blockquotePrefixColor: string;
4672
+ blockquoteLineHeight: string;
4673
+ blockquoteFontSize: string;
4674
+ codeBorderRadius: string;
4675
+ liTextColor: string;
4676
+ liLineHeight: string;
4677
+ liFontSize: string;
4678
+ hrColor: string;
4679
+ headerFontWeight: string;
4680
+ headerTextColor: string;
4681
+ pTextColor: string;
4682
+ pTextColor1Depth: string;
4683
+ pTextColor2Depth: string;
4684
+ pTextColor3Depth: string;
4685
+ pLineHeight: string;
4686
+ pFontSize: string;
4687
+ fontSize: string;
4688
+ lineHeight: string;
4689
+ headerBarColor: string;
4690
+ headerBarColorPrimary: string;
4691
+ headerBarColorInfo: string;
4692
+ headerBarColorError: string;
4693
+ headerBarColorWarning: string;
4694
+ headerBarColorSuccess: string;
4695
+ textColor: string;
4696
+ textColor1Depth: string;
4697
+ textColor2Depth: string;
4698
+ textColor3Depth: string;
4699
+ textColorPrimary: string;
4700
+ textColorInfo: string;
4701
+ textColorSuccess: string;
4702
+ textColorWarning: string;
4703
+ textColorError: string;
4704
+ codeTextColor: string;
4705
+ codeColor: string;
4706
+ codeBorder: string;
4707
+ }, any>;
4708
+ };
4709
+ peerOverrides: {
4710
+ Input?: {
4711
+ peers?: {
4712
+ [x: string]: any;
4713
+ } | undefined;
4714
+ } | undefined;
4715
+ Empty?: {
4716
+ peers?: {
4717
+ [x: string]: any;
4718
+ } | undefined;
4719
+ } | undefined;
4720
+ Select?: {
4721
+ peers?: {
4722
+ InternalSelection?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InternalSelection", {
4723
+ paddingTiny: string;
4724
+ paddingSmall: string;
4725
+ paddingMedium: string;
4726
+ paddingLarge: string;
4727
+ paddingHuge: string;
4728
+ clearSizeTiny: string;
4729
+ clearSizeSmall: string;
4730
+ clearSizeMedium: string;
4731
+ clearSizeLarge: string;
4732
+ clearSizeHuge: string;
4733
+ arrowSizeTiny: string;
4734
+ arrowSizeSmall: string;
4735
+ arrowSizeMedium: string;
4736
+ arrowSizeLarge: string;
4737
+ arrowSizeHuge: string;
4738
+ fontSizeTiny: string;
4739
+ fontSizeSmall: string;
4740
+ fontSizeMedium: string;
4741
+ fontSizeLarge: string;
4742
+ fontSizeHuge: string;
4743
+ lineHeightTiny: string;
4744
+ lineHeightSmall: string;
4745
+ lineHeightMedium: string;
4746
+ lineHeightLarge: string;
4747
+ lineHeightHuge: string;
4748
+ heightTiny: string;
4749
+ heightSmall: string;
4750
+ heightMedium: string;
4751
+ heightLarge: string;
4752
+ heightHuge: string;
4753
+ borderRadiusTiny: string;
4754
+ borderRadiusSmall: string;
4755
+ borderRadiusMedium: string;
4756
+ borderRadiusLarge: string;
4757
+ borderRadiusHuge: string;
4758
+ textColor: string;
4759
+ textColorDisabled: string;
4760
+ placeholderColor: string;
4761
+ placeholderColorDisabled: string;
4762
+ color: string;
4763
+ colorFilled: string;
4764
+ colorDisabled: string;
4765
+ colorActive: string;
4766
+ border: string;
4767
+ borderFilled: string;
4768
+ borderHover: string;
4769
+ borderActive: string;
4770
+ borderFocus: string;
4771
+ borderDisabled: string;
4772
+ boxShadowHover: string;
4773
+ boxShadowActive: string;
4774
+ boxShadowFocus: string;
4775
+ caretColor: string;
4776
+ arrowColor: string;
4777
+ arrowColorHover: string;
4778
+ arrowColorDisabled: string;
4779
+ loadingColor: string;
4780
+ borderWarning: string;
4781
+ borderHoverWarning: string;
4782
+ borderActiveWarning: string;
4783
+ borderFocusWarning: string;
4784
+ boxShadowHoverWarning: string;
4785
+ boxShadowActiveWarning: string;
4786
+ boxShadowFocusWarning: string;
4787
+ colorActiveWarning: string;
4788
+ caretColorWarning: string;
4789
+ borderError: string;
4790
+ borderHoverError: string;
4791
+ borderActiveError: string;
4792
+ borderFocusError: string;
4793
+ boxShadowHoverError: string;
4794
+ boxShadowActiveError: string;
4795
+ boxShadowFocusError: string;
4796
+ colorActiveError: string;
4797
+ caretColorError: string;
4798
+ clearColor: string;
4799
+ clearColorHover: string;
4800
+ clearColorPressed: string;
4801
+ caretColorSecondary: string;
4802
+ filterCounterTextColor: string;
4803
+ filterCounterTextColorDisabled: string;
4804
+ arrowColorSecondary: string;
4805
+ clearColorSecondary: string;
4806
+ colorSecondary: string;
4807
+ textColorSecondary: string;
4808
+ borderSecondary: string;
4809
+ arrowColorDisabledSecondary: string;
4810
+ clearColorDisabledSecondary: string;
4811
+ colorDisabledSecondary: string;
4812
+ textColorDisabledSecondary: string;
4813
+ borderDisabledSecondary: string;
4814
+ arrowColorHoverSecondary: string;
4815
+ clearColorHoverSecondary: string;
4816
+ colorHoverSecondary: string;
4817
+ textColorHoverSecondary: string;
4818
+ borderHoverSecondary: string;
4819
+ arrowColorFocusSecondary: string;
4820
+ clearColorFocusSecondary: string;
4821
+ colorFocusSecondary: string;
4822
+ textColorFocusSecondary: string;
4823
+ borderFocusSecondary: string;
4824
+ arrowColorActiveSecondary: string;
4825
+ clearColorActiveSecondary: string;
4826
+ colorActiveSecondary: string;
4827
+ textColorActiveSecondary: string;
4828
+ borderActiveSecondary: string;
4829
+ }, {
4830
+ Popover: import("../../_mixins").Theme<"Popover", {
4831
+ space: string;
4832
+ spaceArrow: string;
4833
+ arrowOffset: string;
4834
+ arrowOffsetVertical: string;
4835
+ arrowHeight: string;
4836
+ padding: string;
4837
+ fontSize: string;
4838
+ borderRadius: string;
4839
+ color: string;
4840
+ dividerColor: string;
4841
+ textColor: string;
4842
+ boxShadow: string;
4843
+ }, any>;
4844
+ }>> | undefined;
4845
+ InternalSelectMenu?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InternalSelectMenu", {
4846
+ height: string;
4847
+ paddingSmall: string;
4848
+ paddingMedium: string;
4849
+ paddingLarge: string;
4850
+ optionPaddingSmall: string;
4851
+ optionPaddingMedium: string;
4852
+ optionPaddingLarge: string;
4853
+ loadingSize: string;
4854
+ optionFontSizeSmall: string;
4855
+ optionFontSizeMedium: string;
4856
+ optionFontSizeLarge: string;
4857
+ optionHeightSmall: string;
4858
+ optionHeightMedium: string;
4859
+ optionHeightLarge: string;
4860
+ optionBorderRadius: string;
4861
+ borderRadius: string;
4862
+ color: string;
4863
+ groupHeaderTextColor: string;
4864
+ actionDividerColor: string;
4865
+ optionTextColor: string;
4866
+ optionTextColorPressed: string;
4867
+ optionTextColorDisabled: string;
4868
+ optionTextColorActive: string;
4869
+ optionOpacityDisabled: string;
4870
+ optionCheckColor: string;
4871
+ optionColorPending: string;
4872
+ optionColorActive: string;
4873
+ optionGroupHeaderBorderColor: string;
4874
+ optionColorActivePending: string;
4875
+ actionTextColor: string;
4876
+ loadingColor: string;
4877
+ }, {
4878
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4879
+ color: string;
4880
+ colorHover: string;
4881
+ }, any>;
4882
+ Empty: import("../../_mixins").Theme<"Empty", {
4883
+ iconSizeSmall: string;
4884
+ iconSizeMedium: string;
4885
+ iconSizeLarge: string;
4886
+ iconSizeHuge: string;
4887
+ titleFontSizeSmall: string;
4888
+ titleFontSizeMedium: string;
4889
+ titleFontSizeLarge: string;
4890
+ titleFontSizeHuge: string;
4891
+ descriptionFontSizeSmall: string;
4892
+ descriptionFontSizeMedium: string;
4893
+ descriptionFontSizeLarge: string;
4894
+ descriptionFontSizeHuge: string;
4895
+ titleColor: string;
4896
+ descriptionColor: string;
4897
+ iconColor: string;
4898
+ iconBgColor: string;
4899
+ extraTextColor: string;
4900
+ }, any>;
4901
+ }>> | undefined;
4902
+ } | undefined;
4903
+ } | undefined;
4904
+ Avatar?: {
4905
+ peers?: {
4906
+ [x: string]: any;
4907
+ } | undefined;
4908
+ } | undefined;
4909
+ Badge?: {
4910
+ peers?: {
4911
+ [x: string]: any;
4912
+ } | undefined;
4913
+ } | undefined;
4914
+ Button?: {
4915
+ peers?: {
4916
+ [x: string]: any;
4917
+ } | undefined;
4918
+ } | undefined;
4919
+ Icon?: {
4920
+ peers?: {
4921
+ [x: string]: any;
4922
+ } | undefined;
4923
+ } | undefined;
4924
+ List?: {
4925
+ peers?: {
4926
+ [x: string]: any;
4927
+ } | undefined;
4928
+ } | undefined;
4929
+ Typography?: {
4930
+ peers?: {
4931
+ [x: string]: any;
4932
+ } | undefined;
4933
+ } | undefined;
4934
+ };
4935
+ }> | import("vue").ComputedRef<{
4936
+ common: import("../..").ThemeCommonVars;
4937
+ self: {
4938
+ backgroundColor: string;
4939
+ borderColor: string;
4940
+ sidebarBackgroundColor: string;
4941
+ sidebarBorderColor: string;
4942
+ sidebarItemBackgroundColor: string;
4943
+ sidebarItemBackgroundColorHover: string;
4944
+ sidebarItemBackgroundColorSelected: string;
4945
+ sidebarItemTextColor: string;
4946
+ sidebarItemTextColorSelected: string;
4947
+ sidebarItemSubtitleColor: string;
4948
+ sidebarItemTimeColor: string;
4949
+ mainBackgroundColor: string;
4950
+ headerBackgroundColor: string;
4951
+ headerBorderColor: string;
4952
+ headerTitleColor: string;
4953
+ messageBubbleBackgroundColorOwn: string;
4954
+ messageBubbleBackgroundColorOther: string;
4955
+ messageBubbleTextColorOwn: string;
4956
+ messageBubbleTextColorOther: string;
4957
+ messageTimeColor: string;
4958
+ messageStatusColor: string;
4959
+ attachmentBackgroundColorOwn: string;
4960
+ attachmentBackgroundColorOther: string;
4961
+ footerBackgroundColor: string;
4962
+ footerBorderColor: string;
4963
+ inputBackgroundColor: string;
4964
+ inputBorderColor: string;
4965
+ unreadNotificationBackgroundColor: string;
4966
+ unreadNotificationTextColor: string;
4967
+ typingIndicatorColor: string;
4968
+ dateSeparatorColor: string;
4969
+ dateSeparatorBackgroundColor: string;
4970
+ borderRadius: string;
4971
+ errorColor: string;
4972
+ };
4973
+ peers: {
4974
+ Input: import("../../_mixins").Theme<"Input", {
4975
+ paddingTiny: string;
4976
+ paddingSmall: string;
4977
+ paddingMedium: string;
4978
+ paddingLarge: string;
4979
+ paddingHuge: string;
4980
+ clearSize: string;
4981
+ countTextColorDisabled: string;
4982
+ countTextColor: string;
4983
+ heightTiny: string;
4984
+ heightSmall: string;
4985
+ heightMedium: string;
4986
+ heightLarge: string;
4987
+ heightHuge: string;
4988
+ fontSizeTiny: string;
4989
+ fontSizeSmall: string;
4990
+ fontSizeMedium: string;
4991
+ fontSizeLarge: string;
4992
+ fontSizeHuge: string;
4993
+ lineHeight: string;
4994
+ lineHeightTextarea: string;
4995
+ borderRadius: string;
4996
+ iconSize: string;
4997
+ groupLabelTextColor: string;
4998
+ textColor: string;
4999
+ textColorDisabled: string;
5000
+ textDecorationColor: string;
5001
+ caretColor: string;
5002
+ placeholderColor: string;
5003
+ placeholderColorDisabled: string;
5004
+ color: string;
5005
+ colorDisabled: string;
5006
+ colorFocus: string;
5007
+ groupLabelBorder: string;
5008
+ border: string;
5009
+ borderHover: string;
5010
+ borderDisabled: string;
5011
+ borderFocus: string;
5012
+ boxShadowFocus: string;
5013
+ loadingColor: string;
5014
+ loadingColorWarning: string;
5015
+ borderWarning: string;
5016
+ borderHoverWarning: string;
5017
+ colorFocusWarning: string;
5018
+ borderFocusWarning: string;
5019
+ boxShadowFocusWarning: string;
5020
+ caretColorWarning: string;
5021
+ loadingColorError: string;
5022
+ borderError: string;
5023
+ borderHoverError: string;
5024
+ colorFocusError: string;
5025
+ borderFocusError: string;
5026
+ boxShadowFocusError: string;
5027
+ caretColorError: string;
5028
+ clearColor: string;
5029
+ clearColorHover: string;
5030
+ clearColorPressed: string;
5031
+ iconColor: string;
5032
+ iconColorDisabled: string;
5033
+ iconColorHover: string;
5034
+ iconColorPressed: string;
5035
+ suffixTextColor: string;
5036
+ selectionColor: string;
5037
+ }, any>;
5038
+ Empty: import("../../_mixins").Theme<"Empty", {
5039
+ iconSizeSmall: string;
5040
+ iconSizeMedium: string;
5041
+ iconSizeLarge: string;
5042
+ iconSizeHuge: string;
5043
+ titleFontSizeSmall: string;
5044
+ titleFontSizeMedium: string;
5045
+ titleFontSizeLarge: string;
5046
+ titleFontSizeHuge: string;
5047
+ descriptionFontSizeSmall: string;
5048
+ descriptionFontSizeMedium: string;
5049
+ descriptionFontSizeLarge: string;
5050
+ descriptionFontSizeHuge: string;
5051
+ titleColor: string;
5052
+ descriptionColor: string;
5053
+ iconColor: string;
5054
+ iconBgColor: string;
5055
+ extraTextColor: string;
5056
+ }, any>;
5057
+ Select: import("../../_mixins").Theme<"Select", {
5058
+ menuBoxShadow: string;
5059
+ }, {
5060
+ InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
5061
+ paddingTiny: string;
5062
+ paddingSmall: string;
5063
+ paddingMedium: string;
5064
+ paddingLarge: string;
5065
+ paddingHuge: string;
5066
+ clearSizeTiny: string;
5067
+ clearSizeSmall: string;
5068
+ clearSizeMedium: string;
5069
+ clearSizeLarge: string;
5070
+ clearSizeHuge: string;
5071
+ arrowSizeTiny: string;
5072
+ arrowSizeSmall: string;
5073
+ arrowSizeMedium: string;
5074
+ arrowSizeLarge: string;
5075
+ arrowSizeHuge: string;
5076
+ fontSizeTiny: string;
5077
+ fontSizeSmall: string;
5078
+ fontSizeMedium: string;
5079
+ fontSizeLarge: string;
5080
+ fontSizeHuge: string;
5081
+ lineHeightTiny: string;
5082
+ lineHeightSmall: string;
5083
+ lineHeightMedium: string;
5084
+ lineHeightLarge: string;
5085
+ lineHeightHuge: string;
5086
+ heightTiny: string;
5087
+ heightSmall: string;
5088
+ heightMedium: string;
5089
+ heightLarge: string;
5090
+ heightHuge: string;
5091
+ borderRadiusTiny: string;
5092
+ borderRadiusSmall: string;
5093
+ borderRadiusMedium: string;
5094
+ borderRadiusLarge: string;
5095
+ borderRadiusHuge: string;
5096
+ textColor: string;
5097
+ textColorDisabled: string;
5098
+ placeholderColor: string;
5099
+ placeholderColorDisabled: string;
5100
+ color: string;
5101
+ colorFilled: string;
5102
+ colorDisabled: string;
5103
+ colorActive: string;
5104
+ border: string;
5105
+ borderFilled: string;
5106
+ borderHover: string;
5107
+ borderActive: string;
5108
+ borderFocus: string;
5109
+ borderDisabled: string;
5110
+ boxShadowHover: string;
5111
+ boxShadowActive: string;
5112
+ boxShadowFocus: string;
5113
+ caretColor: string;
5114
+ arrowColor: string;
5115
+ arrowColorHover: string;
5116
+ arrowColorDisabled: string;
5117
+ loadingColor: string;
5118
+ borderWarning: string;
5119
+ borderHoverWarning: string;
5120
+ borderActiveWarning: string;
5121
+ borderFocusWarning: string;
5122
+ boxShadowHoverWarning: string;
5123
+ boxShadowActiveWarning: string;
5124
+ boxShadowFocusWarning: string;
5125
+ colorActiveWarning: string;
5126
+ caretColorWarning: string;
5127
+ borderError: string;
5128
+ borderHoverError: string;
5129
+ borderActiveError: string;
5130
+ borderFocusError: string;
5131
+ boxShadowHoverError: string;
5132
+ boxShadowActiveError: string;
5133
+ boxShadowFocusError: string;
5134
+ colorActiveError: string;
5135
+ caretColorError: string;
5136
+ clearColor: string;
5137
+ clearColorHover: string;
5138
+ clearColorPressed: string;
5139
+ caretColorSecondary: string;
5140
+ filterCounterTextColor: string;
5141
+ filterCounterTextColorDisabled: string;
5142
+ arrowColorSecondary: string;
5143
+ clearColorSecondary: string;
5144
+ colorSecondary: string;
5145
+ textColorSecondary: string;
5146
+ borderSecondary: string;
5147
+ arrowColorDisabledSecondary: string;
5148
+ clearColorDisabledSecondary: string;
5149
+ colorDisabledSecondary: string;
5150
+ textColorDisabledSecondary: string;
5151
+ borderDisabledSecondary: string;
5152
+ arrowColorHoverSecondary: string;
5153
+ clearColorHoverSecondary: string;
5154
+ colorHoverSecondary: string;
5155
+ textColorHoverSecondary: string;
5156
+ borderHoverSecondary: string;
5157
+ arrowColorFocusSecondary: string;
5158
+ clearColorFocusSecondary: string;
5159
+ colorFocusSecondary: string;
5160
+ textColorFocusSecondary: string;
5161
+ borderFocusSecondary: string;
5162
+ arrowColorActiveSecondary: string;
5163
+ clearColorActiveSecondary: string;
5164
+ colorActiveSecondary: string;
5165
+ textColorActiveSecondary: string;
5166
+ borderActiveSecondary: string;
5167
+ }, {
5168
+ Popover: import("../../_mixins").Theme<"Popover", {
5169
+ space: string;
5170
+ spaceArrow: string;
5171
+ arrowOffset: string;
5172
+ arrowOffsetVertical: string;
5173
+ arrowHeight: string;
5174
+ padding: string;
5175
+ fontSize: string;
5176
+ borderRadius: string;
5177
+ color: string;
5178
+ dividerColor: string;
5179
+ textColor: string;
5180
+ boxShadow: string;
5181
+ }, any>;
5182
+ }>;
5183
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
5184
+ height: string;
5185
+ paddingSmall: string;
5186
+ paddingMedium: string;
5187
+ paddingLarge: string;
5188
+ optionPaddingSmall: string;
5189
+ optionPaddingMedium: string;
5190
+ optionPaddingLarge: string;
5191
+ loadingSize: string;
5192
+ optionFontSizeSmall: string;
5193
+ optionFontSizeMedium: string;
5194
+ optionFontSizeLarge: string;
5195
+ optionHeightSmall: string;
5196
+ optionHeightMedium: string;
5197
+ optionHeightLarge: string;
5198
+ optionBorderRadius: string;
5199
+ borderRadius: string;
5200
+ color: string;
5201
+ groupHeaderTextColor: string;
5202
+ actionDividerColor: string;
5203
+ optionTextColor: string;
5204
+ optionTextColorPressed: string;
5205
+ optionTextColorDisabled: string;
5206
+ optionTextColorActive: string;
5207
+ optionOpacityDisabled: string;
5208
+ optionCheckColor: string;
5209
+ optionColorPending: string;
5210
+ optionColorActive: string;
5211
+ optionGroupHeaderBorderColor: string;
5212
+ optionColorActivePending: string;
5213
+ actionTextColor: string;
5214
+ loadingColor: string;
5215
+ }, {
5216
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5217
+ color: string;
5218
+ colorHover: string;
5219
+ }, any>;
5220
+ Empty: import("../../_mixins").Theme<"Empty", {
5221
+ iconSizeSmall: string;
5222
+ iconSizeMedium: string;
5223
+ iconSizeLarge: string;
5224
+ iconSizeHuge: string;
5225
+ titleFontSizeSmall: string;
5226
+ titleFontSizeMedium: string;
5227
+ titleFontSizeLarge: string;
5228
+ titleFontSizeHuge: string;
5229
+ descriptionFontSizeSmall: string;
5230
+ descriptionFontSizeMedium: string;
5231
+ descriptionFontSizeLarge: string;
5232
+ descriptionFontSizeHuge: string;
5233
+ titleColor: string;
5234
+ descriptionColor: string;
5235
+ iconColor: string;
5236
+ iconBgColor: string;
5237
+ extraTextColor: string;
5238
+ }, any>;
5239
+ }>;
5240
+ }>;
5241
+ Avatar: import("../../_mixins").Theme<"Avatar", {
5242
+ borderRadius: string;
5243
+ fontSize: string;
5244
+ fontWeight: string;
5245
+ border: string;
5246
+ heightTiny: string;
5247
+ heightSmall: string;
5248
+ heightMedium: string;
5249
+ heightLarge: string;
5250
+ textColor: string;
5251
+ iconColor: string;
5252
+ color: string;
5253
+ iconSize: string;
5254
+ }, any>;
5255
+ Badge: import("../../_mixins").Theme<"Badge", {
5256
+ color: string;
5257
+ colorPrime: string;
5258
+ colorInfo: string;
5259
+ colorSuccess: string;
5260
+ colorError: string;
5261
+ colorWarning: string;
5262
+ fontSize: string;
5263
+ textColor: string;
5264
+ textColorPrime: string;
5265
+ textColorInfo: string;
5266
+ textColorSuccess: string;
5267
+ textColorError: string;
5268
+ textColorWarning: string;
5269
+ borderColor: string;
5270
+ dotSize: string;
5271
+ }, any>;
5272
+ Button: import("../../_mixins").Theme<"Button", {
5273
+ heightTiny: string;
5274
+ heightSmall: string;
5275
+ heightMedium: string;
5276
+ heightLarge: string;
5277
+ borderRadiusTiny: string;
5278
+ borderRadiusSmall: string;
5279
+ borderRadiusMedium: string;
5280
+ borderRadiusLarge: string;
5281
+ fontSizeTiny: string;
5282
+ fontSizeSmall: string;
5283
+ fontSizeMedium: string;
5284
+ fontSizeLarge: string;
5285
+ opacityDisabled: string;
5286
+ colorOpacitySecondary: string;
5287
+ colorOpacitySecondaryHover: string;
5288
+ colorOpacitySecondaryPressed: string;
5289
+ colorOpacitySecondaryFocus: string;
5290
+ colorSecondary: string;
5291
+ colorSecondaryHover: string;
5292
+ colorSecondaryPressed: string;
5293
+ colorSecondaryFocus: string;
5294
+ colorSecondaryDisabled: string;
5295
+ textColorSecondaryDisabled: string;
5296
+ waveColorSecondary: string;
5297
+ colorTertiary: string;
5298
+ colorTertiaryHover: string;
5299
+ colorTertiaryPressed: string;
5300
+ colorTertiaryFocus: string;
5301
+ colorTertiaryDisalbed: string;
5302
+ waveColorTertiary: string;
5303
+ textColorTextTertiary: string;
5304
+ rippleColorTertiary: string;
5305
+ colorQuaternary: string;
5306
+ colorQuaternaryHover: string;
5307
+ colorQuaternaryPressed: string;
5308
+ colorQuaternaryFocus: string;
5309
+ rippleColorQuaternary: string;
5310
+ waveColorQuaternary: string;
5311
+ color: string;
5312
+ colorHover: string;
5313
+ colorPressed: string;
5314
+ colorFocus: string;
5315
+ colorDisabled: string;
5316
+ textColor: string;
5317
+ textTertiary: string;
5318
+ textColorTertiary: string;
5319
+ textColorHover: string;
5320
+ textColorPressed: string;
5321
+ textColorFocus: string;
5322
+ textColorDisabled: string;
5323
+ textColorText: string;
5324
+ textColorTextHover: string;
5325
+ textColorTextPressed: string;
5326
+ textColorTextFocus: string;
5327
+ textColorTextDisabled: string;
5328
+ textColorGhost: string;
5329
+ textColorGhostHover: string;
5330
+ textColorGhostPressed: string;
5331
+ textColorGhostFocus: string;
5332
+ textColorGhostDisabled: string;
5333
+ border: string;
5334
+ borderHover: string;
5335
+ borderPressed: string;
5336
+ borderFocus: string;
5337
+ borderDisabled: string;
5338
+ rippleColor: string;
5339
+ colorPrimary: string;
5340
+ colorHoverPrimary: string;
5341
+ colorPressedPrimary: string;
5342
+ colorFocusPrimary: string;
5343
+ colorDisabledPrimary: string;
5344
+ waveColorPrimary: string;
5345
+ textColorPrimary: string;
5346
+ textColorHoverPrimary: string;
5347
+ textColorPressedPrimary: string;
5348
+ textColorFocusPrimary: string;
5349
+ textColorDisabledPrimary: string;
5350
+ textColorTextPrimary: string;
5351
+ textColorTextHoverPrimary: string;
5352
+ textColorTextPressedPrimary: string;
5353
+ textColorTextFocusPrimary: string;
5354
+ textColorTextDisabledPrimary: string;
5355
+ textColorGhostPrimary: string;
5356
+ textColorGhostHoverPrimary: string;
5357
+ textColorGhostPressedPrimary: string;
5358
+ textColorGhostFocusPrimary: string;
5359
+ textColorGhostDisabledPrimary: string;
5360
+ borderPrimary: string;
5361
+ borderHoverPrimary: string;
5362
+ borderPressedPrimary: string;
5363
+ borderFocusPrimary: string;
5364
+ borderDisabledPrimary: string;
5365
+ rippleColorPrimary: string;
5366
+ colorInfo: string;
5367
+ colorHoverInfo: string;
5368
+ colorPressedInfo: string;
5369
+ colorFocusInfo: string;
5370
+ colorDisabledInfo: string;
5371
+ textColorInfo: string;
5372
+ textColorHoverInfo: string;
5373
+ textColorPressedInfo: string;
5374
+ textColorFocusInfo: string;
5375
+ textColorDisabledInfo: string;
5376
+ textColorTextInfo: string;
5377
+ textColorTextHoverInfo: string;
5378
+ textColorTextPressedInfo: string;
5379
+ textColorTextFocusInfo: string;
5380
+ textColorTextDisabledInfo: string;
5381
+ textColorGhostInfo: string;
5382
+ textColorGhostHoverInfo: string;
5383
+ textColorGhostPressedInfo: string;
5384
+ textColorGhostFocusInfo: string;
5385
+ textColorGhostDisabledInfo: string;
5386
+ borderInfo: string;
5387
+ borderHoverInfo: string;
5388
+ borderPressedInfo: string;
5389
+ borderFocusInfo: string;
5390
+ borderDisabledInfo: string;
5391
+ rippleColorInfo: string;
5392
+ colorSuccess: string;
5393
+ colorHoverSuccess: string;
5394
+ colorPressedSuccess: string;
5395
+ colorFocusSuccess: string;
5396
+ colorDisabledSuccess: string;
5397
+ textColorSuccess: string;
5398
+ textColorHoverSuccess: string;
5399
+ textColorPressedSuccess: string;
5400
+ textColorFocusSuccess: string;
5401
+ textColorDisabledSuccess: string;
5402
+ textColorTextSuccess: string;
5403
+ textColorTextHoverSuccess: string;
5404
+ textColorTextPressedSuccess: string;
5405
+ textColorTextFocusSuccess: string;
5406
+ textColorTextDisabledSuccess: string;
5407
+ textColorGhostSuccess: string;
5408
+ textColorGhostHoverSuccess: string;
5409
+ textColorGhostPressedSuccess: string;
5410
+ textColorGhostFocusSuccess: string;
5411
+ textColorGhostDisabledSuccess: string;
5412
+ borderSuccess: string;
5413
+ borderHoverSuccess: string;
5414
+ borderPressedSuccess: string;
5415
+ borderFocusSuccess: string;
5416
+ borderDisabledSuccess: string;
5417
+ rippleColorSuccess: string;
5418
+ colorWarning: string;
5419
+ colorHoverWarning: string;
5420
+ colorPressedWarning: string;
5421
+ colorFocusWarning: string;
5422
+ colorDisabledWarning: string;
5423
+ textColorWarning: string;
5424
+ textColorHoverWarning: string;
5425
+ textColorPressedWarning: string;
5426
+ textColorFocusWarning: string;
5427
+ textColorDisabledWarning: string;
5428
+ textColorTextWarning: string;
5429
+ textColorTextHoverWarning: string;
5430
+ textColorTextPressedWarning: string;
5431
+ textColorTextFocusWarning: string;
5432
+ textColorTextDisabledWarning: string;
5433
+ textColorGhostWarning: string;
5434
+ textColorGhostHoverWarning: string;
5435
+ textColorGhostPressedWarning: string;
5436
+ textColorGhostFocusWarning: string;
5437
+ textColorGhostDisabledWarning: string;
5438
+ borderWarning: string;
5439
+ borderHoverWarning: string;
5440
+ borderPressedWarning: string;
5441
+ borderFocusWarning: string;
5442
+ borderDisabledWarning: string;
5443
+ rippleColorWarning: string;
5444
+ colorError: string;
5445
+ colorHoverError: string;
5446
+ colorPressedError: string;
5447
+ colorFocusError: string;
5448
+ colorDisabledError: string;
5449
+ textColorError: string;
5450
+ textColorHoverError: string;
5451
+ textColorPressedError: string;
5452
+ textColorFocusError: string;
5453
+ textColorDisabledError: string;
5454
+ textColorTextError: string;
5455
+ textColorTextHoverError: string;
5456
+ textColorTextPressedError: string;
5457
+ textColorTextFocusError: string;
5458
+ textColorTextDisabledError: string;
5459
+ textColorGhostError: string;
5460
+ textColorGhostHoverError: string;
5461
+ textColorGhostPressedError: string;
5462
+ textColorGhostFocusError: string;
5463
+ textColorGhostDisabledError: string;
5464
+ borderError: string;
5465
+ borderHoverError: string;
5466
+ borderPressedError: string;
5467
+ borderFocusError: string;
5468
+ borderDisabledError: string;
5469
+ rippleColorError: string;
5470
+ waveOpacity: string;
5471
+ fontWeight: string;
5472
+ fontWeightStrong: string;
5473
+ paddingTiny: string;
5474
+ paddingSmall: string;
5475
+ paddingMedium: string;
5476
+ paddingLarge: string;
5477
+ paddingRoundTiny: string;
5478
+ paddingRoundSmall: string;
5479
+ paddingRoundMedium: string;
5480
+ paddingRoundLarge: string;
5481
+ iconMarginTiny: string;
5482
+ iconMarginSmall: string;
5483
+ iconMarginMedium: string;
5484
+ iconMarginLarge: string;
5485
+ iconSizeTiny: string;
5486
+ iconSizeSmall: string;
5487
+ iconSizeMedium: string;
5488
+ iconSizeLarge: string;
5489
+ rippleDuration: string;
5490
+ }, any>;
5491
+ Icon: import("../../_mixins").Theme<"Icon", {
5492
+ color: string;
5493
+ opacity1Depth: string;
5494
+ opacity2Depth: string;
5495
+ opacity3Depth: string;
5496
+ opacity4Depth: string;
5497
+ opacity5Depth: string;
5498
+ }, any>;
5499
+ List: import("../../_mixins").Theme<"List", {
5500
+ iconSize: string;
5501
+ iconSpace: string;
5502
+ suffixSpace: string;
5503
+ prefixSpace: string;
5504
+ subtitleColor: string;
5505
+ avatarSpace: string;
5506
+ colorFocus: string;
5507
+ pressedScale: string;
5508
+ textColorDisabled: string;
5509
+ textColor: string;
5510
+ color: string;
5511
+ colorHover: string;
5512
+ colorModal: string;
5513
+ colorHoverModal: string;
5514
+ colorPopover: string;
5515
+ colorHoverPopover: string;
5516
+ borderColor: string;
5517
+ borderColorModal: string;
5518
+ borderColorPopover: string;
5519
+ borderRadiusLarge: string;
5520
+ borderRadiusMedium: string;
5521
+ borderRadiusSmall: string;
5522
+ padding: string;
5523
+ suffixSize: string;
5524
+ }, any>;
5525
+ Typography: import("../../_mixins").Theme<"Typography", {
5526
+ headerFontSize1: string;
5527
+ headerFontSize2: string;
5528
+ headerFontSize3: string;
5529
+ headerFontSize4: string;
5530
+ headerFontSize5: string;
5531
+ headerFontSize6: string;
5532
+ headerMargin1: string;
5533
+ headerMargin2: string;
5534
+ headerMargin3: string;
5535
+ headerMargin4: string;
5536
+ headerMargin5: string;
5537
+ headerMargin6: string;
5538
+ headerPrefixWidth1: string;
5539
+ headerPrefixWidth2: string;
5540
+ headerPrefixWidth3: string;
5541
+ headerPrefixWidth4: string;
5542
+ headerPrefixWidth5: string;
5543
+ headerPrefixWidth6: string;
5544
+ headerBarWidth1: string;
5545
+ headerBarWidth2: string;
5546
+ headerBarWidth3: string;
5547
+ headerBarWidth4: string;
5548
+ headerBarWidth5: string;
5549
+ headerBarWidth6: string;
5550
+ pMargin: string;
5551
+ margin: string;
5552
+ liMargin: string;
5553
+ olPadding: string;
5554
+ ulPadding: string;
5555
+ aTextColor: string;
5556
+ blockquoteTextColor: string;
5557
+ blockquotePrefixColor: string;
5558
+ blockquoteLineHeight: string;
5559
+ blockquoteFontSize: string;
5560
+ codeBorderRadius: string;
5561
+ liTextColor: string;
5562
+ liLineHeight: string;
5563
+ liFontSize: string;
5564
+ hrColor: string;
5565
+ headerFontWeight: string;
5566
+ headerTextColor: string;
5567
+ pTextColor: string;
5568
+ pTextColor1Depth: string;
5569
+ pTextColor2Depth: string;
5570
+ pTextColor3Depth: string;
5571
+ pLineHeight: string;
5572
+ pFontSize: string;
5573
+ fontSize: string;
5574
+ lineHeight: string;
5575
+ headerBarColor: string;
5576
+ headerBarColorPrimary: string;
5577
+ headerBarColorInfo: string;
5578
+ headerBarColorError: string;
5579
+ headerBarColorWarning: string;
5580
+ headerBarColorSuccess: string;
5581
+ textColor: string;
5582
+ textColor1Depth: string;
5583
+ textColor2Depth: string;
5584
+ textColor3Depth: string;
5585
+ textColorPrimary: string;
5586
+ textColorInfo: string;
5587
+ textColorSuccess: string;
5588
+ textColorWarning: string;
5589
+ textColorError: string;
5590
+ codeTextColor: string;
5591
+ codeColor: string;
5592
+ codeBorder: string;
5593
+ }, any>;
5594
+ };
5595
+ peerOverrides: {
5596
+ Input?: {
5597
+ peers?: {
5598
+ [x: string]: any;
5599
+ } | undefined;
5600
+ } | undefined;
5601
+ Empty?: {
5602
+ peers?: {
5603
+ [x: string]: any;
5604
+ } | undefined;
5605
+ } | undefined;
5606
+ Select?: {
5607
+ peers?: {
5608
+ InternalSelection?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InternalSelection", {
5609
+ paddingTiny: string;
5610
+ paddingSmall: string;
5611
+ paddingMedium: string;
5612
+ paddingLarge: string;
5613
+ paddingHuge: string;
5614
+ clearSizeTiny: string;
5615
+ clearSizeSmall: string;
5616
+ clearSizeMedium: string;
5617
+ clearSizeLarge: string;
5618
+ clearSizeHuge: string;
5619
+ arrowSizeTiny: string;
5620
+ arrowSizeSmall: string;
5621
+ arrowSizeMedium: string;
5622
+ arrowSizeLarge: string;
5623
+ arrowSizeHuge: string;
5624
+ fontSizeTiny: string;
5625
+ fontSizeSmall: string;
5626
+ fontSizeMedium: string;
5627
+ fontSizeLarge: string;
5628
+ fontSizeHuge: string;
5629
+ lineHeightTiny: string;
5630
+ lineHeightSmall: string;
5631
+ lineHeightMedium: string;
5632
+ lineHeightLarge: string;
5633
+ lineHeightHuge: string;
5634
+ heightTiny: string;
5635
+ heightSmall: string;
5636
+ heightMedium: string;
5637
+ heightLarge: string;
5638
+ heightHuge: string;
5639
+ borderRadiusTiny: string;
5640
+ borderRadiusSmall: string;
5641
+ borderRadiusMedium: string;
5642
+ borderRadiusLarge: string;
5643
+ borderRadiusHuge: string;
5644
+ textColor: string;
5645
+ textColorDisabled: string;
5646
+ placeholderColor: string;
5647
+ placeholderColorDisabled: string;
5648
+ color: string;
5649
+ colorFilled: string;
5650
+ colorDisabled: string;
5651
+ colorActive: string;
5652
+ border: string;
5653
+ borderFilled: string;
5654
+ borderHover: string;
5655
+ borderActive: string;
5656
+ borderFocus: string;
5657
+ borderDisabled: string;
5658
+ boxShadowHover: string;
5659
+ boxShadowActive: string;
5660
+ boxShadowFocus: string;
5661
+ caretColor: string;
5662
+ arrowColor: string;
5663
+ arrowColorHover: string;
5664
+ arrowColorDisabled: string;
5665
+ loadingColor: string;
5666
+ borderWarning: string;
5667
+ borderHoverWarning: string;
5668
+ borderActiveWarning: string;
5669
+ borderFocusWarning: string;
5670
+ boxShadowHoverWarning: string;
5671
+ boxShadowActiveWarning: string;
5672
+ boxShadowFocusWarning: string;
5673
+ colorActiveWarning: string;
5674
+ caretColorWarning: string;
5675
+ borderError: string;
5676
+ borderHoverError: string;
5677
+ borderActiveError: string;
5678
+ borderFocusError: string;
5679
+ boxShadowHoverError: string;
5680
+ boxShadowActiveError: string;
5681
+ boxShadowFocusError: string;
5682
+ colorActiveError: string;
5683
+ caretColorError: string;
5684
+ clearColor: string;
5685
+ clearColorHover: string;
5686
+ clearColorPressed: string;
5687
+ caretColorSecondary: string;
5688
+ filterCounterTextColor: string;
5689
+ filterCounterTextColorDisabled: string;
5690
+ arrowColorSecondary: string;
5691
+ clearColorSecondary: string;
5692
+ colorSecondary: string;
5693
+ textColorSecondary: string;
5694
+ borderSecondary: string;
5695
+ arrowColorDisabledSecondary: string;
5696
+ clearColorDisabledSecondary: string;
5697
+ colorDisabledSecondary: string;
5698
+ textColorDisabledSecondary: string;
5699
+ borderDisabledSecondary: string;
5700
+ arrowColorHoverSecondary: string;
5701
+ clearColorHoverSecondary: string;
5702
+ colorHoverSecondary: string;
5703
+ textColorHoverSecondary: string;
5704
+ borderHoverSecondary: string;
5705
+ arrowColorFocusSecondary: string;
5706
+ clearColorFocusSecondary: string;
5707
+ colorFocusSecondary: string;
5708
+ textColorFocusSecondary: string;
5709
+ borderFocusSecondary: string;
5710
+ arrowColorActiveSecondary: string;
5711
+ clearColorActiveSecondary: string;
5712
+ colorActiveSecondary: string;
5713
+ textColorActiveSecondary: string;
5714
+ borderActiveSecondary: string;
5715
+ }, {
5716
+ Popover: import("../../_mixins").Theme<"Popover", {
5717
+ space: string;
5718
+ spaceArrow: string;
5719
+ arrowOffset: string;
5720
+ arrowOffsetVertical: string;
5721
+ arrowHeight: string;
5722
+ padding: string;
5723
+ fontSize: string;
5724
+ borderRadius: string;
5725
+ color: string;
5726
+ dividerColor: string;
5727
+ textColor: string;
5728
+ boxShadow: string;
5729
+ }, any>;
5730
+ }>> | undefined;
5731
+ InternalSelectMenu?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InternalSelectMenu", {
5732
+ height: string;
5733
+ paddingSmall: string;
5734
+ paddingMedium: string;
5735
+ paddingLarge: string;
5736
+ optionPaddingSmall: string;
5737
+ optionPaddingMedium: string;
5738
+ optionPaddingLarge: string;
5739
+ loadingSize: string;
5740
+ optionFontSizeSmall: string;
5741
+ optionFontSizeMedium: string;
5742
+ optionFontSizeLarge: string;
5743
+ optionHeightSmall: string;
5744
+ optionHeightMedium: string;
5745
+ optionHeightLarge: string;
5746
+ optionBorderRadius: string;
5747
+ borderRadius: string;
5748
+ color: string;
5749
+ groupHeaderTextColor: string;
5750
+ actionDividerColor: string;
5751
+ optionTextColor: string;
5752
+ optionTextColorPressed: string;
5753
+ optionTextColorDisabled: string;
5754
+ optionTextColorActive: string;
5755
+ optionOpacityDisabled: string;
5756
+ optionCheckColor: string;
5757
+ optionColorPending: string;
5758
+ optionColorActive: string;
5759
+ optionGroupHeaderBorderColor: string;
5760
+ optionColorActivePending: string;
5761
+ actionTextColor: string;
5762
+ loadingColor: string;
5763
+ }, {
5764
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5765
+ color: string;
5766
+ colorHover: string;
5767
+ }, any>;
5768
+ Empty: import("../../_mixins").Theme<"Empty", {
5769
+ iconSizeSmall: string;
5770
+ iconSizeMedium: string;
5771
+ iconSizeLarge: string;
5772
+ iconSizeHuge: string;
5773
+ titleFontSizeSmall: string;
5774
+ titleFontSizeMedium: string;
5775
+ titleFontSizeLarge: string;
5776
+ titleFontSizeHuge: string;
5777
+ descriptionFontSizeSmall: string;
5778
+ descriptionFontSizeMedium: string;
5779
+ descriptionFontSizeLarge: string;
5780
+ descriptionFontSizeHuge: string;
5781
+ titleColor: string;
5782
+ descriptionColor: string;
5783
+ iconColor: string;
5784
+ iconBgColor: string;
5785
+ extraTextColor: string;
5786
+ }, any>;
5787
+ }>> | undefined;
5788
+ } | undefined;
5789
+ } | undefined;
5790
+ Avatar?: {
5791
+ peers?: {
5792
+ [x: string]: any;
5793
+ } | undefined;
5794
+ } | undefined;
5795
+ Badge?: {
5796
+ peers?: {
5797
+ [x: string]: any;
5798
+ } | undefined;
5799
+ } | undefined;
5800
+ Button?: {
5801
+ peers?: {
5802
+ [x: string]: any;
5803
+ } | undefined;
5804
+ } | undefined;
5805
+ Icon?: {
5806
+ peers?: {
5807
+ [x: string]: any;
5808
+ } | undefined;
5809
+ } | undefined;
5810
+ List?: {
5811
+ peers?: {
5812
+ [x: string]: any;
5813
+ } | undefined;
5814
+ } | undefined;
5815
+ Typography?: {
5816
+ peers?: {
5817
+ [x: string]: any;
5818
+ } | undefined;
5819
+ } | undefined;
5820
+ };
5821
+ }>;
4001
5822
  renderMessage: (message: ChatMessageData) => JSX.Element;
5823
+ renderMarkMessage: (message: ChatMessageData) => JSX.Element;
4002
5824
  renderTypingIndicator: () => JSX.Element;
4003
5825
  renderSkeletonMessage: (isOwn: boolean, index: number) => JSX.Element;
4004
5826
  renderDateSeparator: (date: string) => JSX.Element;
@@ -4034,7 +5856,7 @@ declare const _default: import("vue").DefineComponent<{
4034
5856
  }>;
4035
5857
  themeClass: import("vue").Ref<string>;
4036
5858
  onRender: () => void;
4037
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "message-retry"[], "message-retry", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
5859
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4038
5860
  readonly messages: {
4039
5861
  readonly type: PropType<ChatMessageData[]>;
4040
5862
  readonly default: () => never[];
@@ -4438,16 +6260,24 @@ declare const _default: import("vue").DefineComponent<{
4438
6260
  colorSecondary: string;
4439
6261
  colorSecondaryHover: string;
4440
6262
  colorSecondaryPressed: string;
6263
+ colorSecondaryFocus: string;
6264
+ colorSecondaryDisabled: string;
6265
+ textColorSecondaryDisabled: string;
4441
6266
  waveColorSecondary: string;
4442
6267
  colorTertiary: string;
4443
6268
  colorTertiaryHover: string;
4444
6269
  colorTertiaryPressed: string;
6270
+ colorTertiaryFocus: string;
4445
6271
  colorTertiaryDisalbed: string;
4446
6272
  waveColorTertiary: string;
4447
6273
  textColorTextTertiary: string;
6274
+ rippleColorTertiary: string;
4448
6275
  colorQuaternary: string;
4449
6276
  colorQuaternaryHover: string;
4450
6277
  colorQuaternaryPressed: string;
6278
+ colorQuaternaryFocus: string;
6279
+ rippleColorQuaternary: string;
6280
+ waveColorQuaternary: string;
4451
6281
  color: string;
4452
6282
  colorHover: string;
4453
6283
  colorPressed: string;
@@ -5087,16 +6917,24 @@ declare const _default: import("vue").DefineComponent<{
5087
6917
  colorSecondary: string;
5088
6918
  colorSecondaryHover: string;
5089
6919
  colorSecondaryPressed: string;
6920
+ colorSecondaryFocus: string;
6921
+ colorSecondaryDisabled: string;
6922
+ textColorSecondaryDisabled: string;
5090
6923
  waveColorSecondary: string;
5091
6924
  colorTertiary: string;
5092
6925
  colorTertiaryHover: string;
5093
6926
  colorTertiaryPressed: string;
6927
+ colorTertiaryFocus: string;
5094
6928
  colorTertiaryDisalbed: string;
5095
6929
  waveColorTertiary: string;
5096
6930
  textColorTextTertiary: string;
6931
+ rippleColorTertiary: string;
5097
6932
  colorQuaternary: string;
5098
6933
  colorQuaternaryHover: string;
5099
6934
  colorQuaternaryPressed: string;
6935
+ colorQuaternaryFocus: string;
6936
+ rippleColorQuaternary: string;
6937
+ waveColorQuaternary: string;
5100
6938
  color: string;
5101
6939
  colorHover: string;
5102
6940
  colorPressed: string;
@@ -5736,16 +7574,24 @@ declare const _default: import("vue").DefineComponent<{
5736
7574
  colorSecondary: string;
5737
7575
  colorSecondaryHover: string;
5738
7576
  colorSecondaryPressed: string;
7577
+ colorSecondaryFocus: string;
7578
+ colorSecondaryDisabled: string;
7579
+ textColorSecondaryDisabled: string;
5739
7580
  waveColorSecondary: string;
5740
7581
  colorTertiary: string;
5741
7582
  colorTertiaryHover: string;
5742
7583
  colorTertiaryPressed: string;
7584
+ colorTertiaryFocus: string;
5743
7585
  colorTertiaryDisalbed: string;
5744
7586
  waveColorTertiary: string;
5745
7587
  textColorTextTertiary: string;
7588
+ rippleColorTertiary: string;
5746
7589
  colorQuaternary: string;
5747
7590
  colorQuaternaryHover: string;
5748
7591
  colorQuaternaryPressed: string;
7592
+ colorQuaternaryFocus: string;
7593
+ rippleColorQuaternary: string;
7594
+ waveColorQuaternary: string;
5749
7595
  color: string;
5750
7596
  colorHover: string;
5751
7597
  colorPressed: string;
@@ -6030,9 +7876,7 @@ declare const _default: import("vue").DefineComponent<{
6030
7876
  codeBorder: string;
6031
7877
  }, any>;
6032
7878
  }>>>;
6033
- }>> & {
6034
- "onMessage-retry"?: ((...args: any[]) => any) | undefined;
6035
- }, {
7879
+ }>>, {
6036
7880
  readonly loading: boolean;
6037
7881
  readonly typingText: string;
6038
7882
  readonly retryText: string;