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