@uzum-tech/ui 2.3.3 → 2.3.5

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 (44) hide show
  1. package/dist/index.js +688 -619
  2. package/dist/index.mjs +688 -619
  3. package/dist/index.prod.js +2 -2
  4. package/dist/index.prod.mjs +2 -2
  5. package/es/chat/src/Chat.d.ts +363 -3120
  6. package/es/chat/src/Chat.mjs +13 -240
  7. package/es/chat/src/ChatListItems.d.ts +4 -4
  8. package/es/chat/src/ChatMainArea.d.ts +36 -10
  9. package/es/chat/src/ChatMainArea.mjs +49 -3
  10. package/es/chat/src/ChatMessages.d.ts +3 -3
  11. package/es/chat/src/interface.d.ts +2814 -2
  12. package/es/chat/src/interface.mjs +244 -1
  13. package/es/components.d.ts +310 -224
  14. package/es/image/index.d.ts +2 -2
  15. package/es/image/index.mjs +2 -1
  16. package/es/image/src/ImagePreview.d.ts +60 -184
  17. package/es/image/src/ImagePreview.mjs +12 -18
  18. package/es/image/src/interface.d.ts +156 -3
  19. package/es/image/src/interface.mjs +23 -1
  20. package/es/image/src/public-types.d.ts +11 -5
  21. package/es/image/src/styles/index.cssr.mjs +11 -1
  22. package/es/version.d.ts +1 -1
  23. package/es/version.mjs +1 -1
  24. package/lib/chat/src/Chat.d.ts +363 -3120
  25. package/lib/chat/src/Chat.js +15 -180
  26. package/lib/chat/src/ChatListItems.d.ts +4 -4
  27. package/lib/chat/src/ChatMainArea.d.ts +36 -10
  28. package/lib/chat/src/ChatMainArea.js +48 -3
  29. package/lib/chat/src/ChatMessages.d.ts +3 -3
  30. package/lib/chat/src/interface.d.ts +2814 -2
  31. package/lib/chat/src/interface.js +183 -1
  32. package/lib/components.d.ts +310 -224
  33. package/lib/image/index.d.ts +2 -2
  34. package/lib/image/index.js +3 -2
  35. package/lib/image/src/ImagePreview.d.ts +60 -184
  36. package/lib/image/src/ImagePreview.js +18 -17
  37. package/lib/image/src/interface.d.ts +156 -3
  38. package/lib/image/src/interface.js +12 -1
  39. package/lib/image/src/public-types.d.ts +11 -5
  40. package/lib/image/src/styles/index.cssr.js +11 -1
  41. package/lib/version.d.ts +1 -1
  42. package/lib/version.js +1 -1
  43. package/package.json +1 -1
  44. package/web-types.json +55 -3
@@ -1,4 +1,4 @@
1
- import type { InjectionKey, Ref, VNodeChild } from 'vue';
1
+ import type { ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNodeChild } from 'vue';
2
2
  import type { MergedTheme } from '../../_mixins';
3
3
  import type { AvatarProps } from '../../avatar';
4
4
  import type { BadgeProps } from '../../badge';
@@ -134,9 +134,10 @@ export interface ChatAttachment {
134
134
  percentage?: number;
135
135
  uploadProps?: Partial<UploadProps>;
136
136
  }
137
- export interface ChatProps {
137
+ export interface ChatPropsInterface {
138
138
  chatItems?: ChatListItemData[];
139
139
  selectedChatId?: ChatId;
140
+ inputValue?: string;
140
141
  messages?: ChatMessageData[];
141
142
  disabled?: boolean;
142
143
  listEmptyProps?: Partial<EmptyProps>;
@@ -192,6 +193,7 @@ export interface ChatProps {
192
193
  onChatItemsScrollToBottom?: () => void;
193
194
  onMessagesScrollToTop?: () => void;
194
195
  onMessagesScrollToBottom?: () => void;
196
+ 'onUpdate:inputValue'?: (value: string) => void;
195
197
  }
196
198
  export interface ChatSlots {
197
199
  header?: () => VNodeChild;
@@ -287,6 +289,8 @@ export declare const chatInjectionKey: InjectionKey<{
287
289
  chatItemsRef: Ref<ChatListItemData[] | undefined>;
288
290
  selectedChatIdRef: Ref<ChatId | undefined>;
289
291
  selectedChatRef: Ref<ChatListItemData | undefined>;
292
+ inputValueRef: Ref<string | undefined>;
293
+ handleInputValueChange: (value: string) => void;
290
294
  messagesRef: Ref<ChatMessageData[]>;
291
295
  typingChatIdsRef: Ref<Array<string | number | symbol> | undefined>;
292
296
  chatItemsLoadingRef: Ref<boolean | undefined>;
@@ -360,3 +364,2811 @@ export declare const chatInjectionKey: InjectionKey<{
360
364
  headerProfileIconPropsRef: Ref<Partial<IconProps> | undefined>;
361
365
  }>;
362
366
  export declare const markTypeToServiceVariantMap: Record<ChatMarkType, MessageBubbleServiceVariant>;
367
+ export declare const chatProps: {
368
+ chatItems: {
369
+ type: PropType<ChatPropsInterface["chatItems"]>;
370
+ default: () => never[];
371
+ };
372
+ selectedChatId: {
373
+ type: PropType<ChatPropsInterface["selectedChatId"]>;
374
+ default: undefined;
375
+ };
376
+ inputValue: {
377
+ type: PropType<ChatPropsInterface["inputValue"]>;
378
+ default: undefined;
379
+ };
380
+ messages: {
381
+ type: PropType<ChatPropsInterface["messages"]>;
382
+ default: () => never[];
383
+ };
384
+ typingChatIds: {
385
+ type: PropType<Array<string | number | symbol>>;
386
+ default: () => never[];
387
+ };
388
+ disabled: {
389
+ type: PropType<ChatPropsInterface["disabled"]>;
390
+ default: boolean;
391
+ };
392
+ listEmptyProps: {
393
+ type: PropType<Partial<ChatPropsInterface["listEmptyProps"]>>;
394
+ default: undefined;
395
+ };
396
+ listHeaderTitle: {
397
+ type: PropType<ChatPropsInterface["listHeaderTitle"]>;
398
+ default: string;
399
+ };
400
+ listHeaderActions: {
401
+ type: PropType<ChatPropsInterface["listHeaderActions"]>;
402
+ default: () => never[];
403
+ };
404
+ listHeaderButtonProps: {
405
+ type: PropType<Partial<ChatPropsInterface["listHeaderButtonProps"]>>;
406
+ default: undefined;
407
+ };
408
+ listHeaderIconProps: {
409
+ type: PropType<Partial<ChatPropsInterface["listHeaderIconProps"]>>;
410
+ default: undefined;
411
+ };
412
+ listItemAvatarProps: {
413
+ type: PropType<Partial<ChatPropsInterface["listItemAvatarProps"]>>;
414
+ default: undefined;
415
+ };
416
+ listItemBadgeProps: {
417
+ type: PropType<Partial<ChatPropsInterface["listItemBadgeProps"]>>;
418
+ default: undefined;
419
+ };
420
+ headerTitle: {
421
+ type: PropType<ChatPropsInterface["headerTitle"]>;
422
+ default: undefined;
423
+ };
424
+ headerActions: {
425
+ type: PropType<ChatPropsInterface["headerActions"]>;
426
+ default: () => never[];
427
+ };
428
+ headerButtonProps: {
429
+ type: PropType<Partial<ChatPropsInterface["headerButtonProps"]>>;
430
+ default: undefined;
431
+ };
432
+ headerIconProps: {
433
+ type: PropType<Partial<ChatPropsInterface["headerIconProps"]>>;
434
+ default: undefined;
435
+ };
436
+ headerShareButtonProps: {
437
+ type: PropType<Partial<ChatPropsInterface["headerShareButtonProps"]>>;
438
+ default: undefined;
439
+ };
440
+ headerProfileButtonProps: {
441
+ type: PropType<Partial<ChatPropsInterface["headerProfileButtonProps"]>>;
442
+ default: undefined;
443
+ };
444
+ headerCloseButtonProps: {
445
+ type: PropType<Partial<ChatPropsInterface["headerCloseButtonProps"]>>;
446
+ default: undefined;
447
+ };
448
+ headerShareIconProps: {
449
+ type: PropType<Partial<ChatPropsInterface["headerShareIconProps"]>>;
450
+ default: undefined;
451
+ };
452
+ headerProfileIconProps: {
453
+ type: PropType<Partial<ChatPropsInterface["headerProfileIconProps"]>>;
454
+ default: undefined;
455
+ };
456
+ messageSenderAvatarProps: {
457
+ type: PropType<Partial<ChatPropsInterface["messageSenderAvatarProps"]>>;
458
+ default: undefined;
459
+ };
460
+ messageUploadProps: {
461
+ type: PropType<Partial<ChatPropsInterface["messageUploadProps"]>>;
462
+ default: undefined;
463
+ };
464
+ messageButtonProps: {
465
+ type: PropType<Partial<ChatPropsInterface["messageButtonProps"]>>;
466
+ default: undefined;
467
+ };
468
+ footerInputProps: {
469
+ type: PropType<Partial<ChatPropsInterface["footerInputProps"]>>;
470
+ default: undefined;
471
+ };
472
+ footerButtonProps: {
473
+ type: PropType<Partial<ChatPropsInterface["footerButtonProps"]>>;
474
+ default: undefined;
475
+ };
476
+ footerUploadProps: {
477
+ type: PropType<Partial<ChatPropsInterface["footerUploadProps"]>>;
478
+ default: undefined;
479
+ };
480
+ footerUploadTriggerProps: {
481
+ type: PropType<ChatPropsInterface["footerUploadTriggerProps"]>;
482
+ default: undefined;
483
+ };
484
+ footerIconProps: {
485
+ type: PropType<Partial<ChatPropsInterface["footerIconProps"]>>;
486
+ default: undefined;
487
+ };
488
+ footerSuffixIconProps: {
489
+ type: PropType<Partial<ChatPropsInterface["footerSuffixIconProps"]>>;
490
+ default: undefined;
491
+ };
492
+ emptyProps: {
493
+ type: PropType<Partial<ChatPropsInterface["emptyProps"]>>;
494
+ default: undefined;
495
+ };
496
+ retryText: {
497
+ type: PropType<ChatPropsInterface["retryText"]>;
498
+ default: undefined;
499
+ };
500
+ typingText: {
501
+ type: PropType<ChatPropsInterface["typingText"]>;
502
+ default: undefined;
503
+ };
504
+ closeButtonText: {
505
+ type: PropType<ChatPropsInterface["closeButtonText"]>;
506
+ default: undefined;
507
+ };
508
+ shareButtonTooltip: {
509
+ type: PropType<ChatPropsInterface["shareButtonTooltip"]>;
510
+ default: undefined;
511
+ };
512
+ profileButtonTooltip: {
513
+ type: PropType<ChatPropsInterface["profileButtonTooltip"]>;
514
+ default: undefined;
515
+ };
516
+ unreadNotificationText: {
517
+ type: PropType<ChatPropsInterface["unreadNotificationText"]>;
518
+ default: undefined;
519
+ };
520
+ chatItemsLoading: {
521
+ type: PropType<ChatPropsInterface["chatItemsLoading"]>;
522
+ default: boolean;
523
+ };
524
+ chatItemsLoadingCount: {
525
+ type: PropType<ChatPropsInterface["chatItemsLoadingCount"]>;
526
+ default: number;
527
+ };
528
+ messagesLoading: {
529
+ type: PropType<ChatPropsInterface["messagesLoading"]>;
530
+ default: boolean;
531
+ };
532
+ messagesLoadingCount: {
533
+ type: PropType<ChatPropsInterface["messagesLoadingCount"]>;
534
+ default: number;
535
+ };
536
+ height: {
537
+ type: PropType<string | number>;
538
+ default: number;
539
+ };
540
+ onChatSelect: {
541
+ type: PropType<ChatPropsInterface["onChatSelect"]>;
542
+ default: undefined;
543
+ };
544
+ onMessageRetry: {
545
+ type: PropType<ChatPropsInterface["onMessageRetry"]>;
546
+ default: undefined;
547
+ };
548
+ bubbleActions: {
549
+ type: PropType<ChatPropsInterface["bubbleActions"]>;
550
+ default: undefined;
551
+ };
552
+ onChatClose: {
553
+ type: PropType<() => void>;
554
+ default: undefined;
555
+ };
556
+ onChatShare: {
557
+ type: PropType<() => void>;
558
+ default: undefined;
559
+ };
560
+ onUserProfile: {
561
+ type: PropType<() => void>;
562
+ default: undefined;
563
+ };
564
+ onAttachmentUpload: {
565
+ type: PropType<ChatPropsInterface["onAttachmentUpload"]>;
566
+ default: undefined;
567
+ };
568
+ onAttachmentDownload: {
569
+ type: PropType<ChatPropsInterface["onAttachmentDownload"]>;
570
+ default: undefined;
571
+ };
572
+ onFilterChange: {
573
+ type: PropType<ChatPropsInterface["onFilterChange"]>;
574
+ default: undefined;
575
+ };
576
+ onFooterInputChange: {
577
+ type: PropType<(value: string, chatId: ChatId) => void>;
578
+ default: undefined;
579
+ };
580
+ onNetworkError: {
581
+ type: PropType<ChatPropsInterface["onNetworkError"]>;
582
+ default: undefined;
583
+ };
584
+ onUploadError: {
585
+ type: PropType<ChatPropsInterface["onUploadError"]>;
586
+ default: undefined;
587
+ };
588
+ onSendError: {
589
+ type: PropType<ChatPropsInterface["onSendError"]>;
590
+ default: undefined;
591
+ };
592
+ onChatItemsScrollToTop: {
593
+ type: PropType<() => void>;
594
+ default: undefined;
595
+ };
596
+ onChatItemsScrollToBottom: {
597
+ type: PropType<() => void>;
598
+ default: undefined;
599
+ };
600
+ onMessagesScrollToTop: {
601
+ type: PropType<() => void>;
602
+ default: undefined;
603
+ };
604
+ onMessagesScrollToBottom: {
605
+ type: PropType<() => void>;
606
+ default: undefined;
607
+ };
608
+ theme: PropType<import("../../_mixins").Theme<"Chat", {
609
+ backgroundColor: string;
610
+ borderColor: string;
611
+ sidebarBackgroundColor: string;
612
+ sidebarBorderColor: string;
613
+ sidebarItemBackgroundColor: string;
614
+ sidebarItemBackgroundColorHover: string;
615
+ sidebarItemBackgroundColorSelected: string;
616
+ sidebarItemTextColor: string;
617
+ sidebarItemTextColorSelected: string;
618
+ sidebarItemSubtitleColor: string;
619
+ sidebarItemTimeColor: string;
620
+ mainBackgroundColor: string;
621
+ headerBackgroundColor: string;
622
+ headerBorderColor: string;
623
+ headerTitleColor: string;
624
+ messageBubbleBackgroundColorOwn: string;
625
+ messageBubbleBackgroundColorOther: string;
626
+ messageBubbleTextColorOwn: string;
627
+ messageBubbleTextColorOther: string;
628
+ messageTimeColor: string;
629
+ messageStatusColor: string;
630
+ attachmentBackgroundColorOwn: string;
631
+ attachmentBackgroundColorOther: string;
632
+ footerBackgroundColor: string;
633
+ footerBorderColor: string;
634
+ inputBackgroundColor: string;
635
+ inputBorderColor: string;
636
+ inputSuffixColor: string;
637
+ unreadNotificationBackgroundColor: string;
638
+ unreadNotificationTextColor: string;
639
+ typingIndicatorColor: string;
640
+ dateSeparatorColor: string;
641
+ dateSeparatorBackgroundColor: string;
642
+ borderRadius: string;
643
+ errorColor: string;
644
+ }, {
645
+ Input: import("../../_mixins").Theme<"Input", {
646
+ paddingTiny: string;
647
+ paddingSmall: string;
648
+ paddingMedium: string;
649
+ paddingLarge: string;
650
+ paddingHuge: string;
651
+ clearSize: string;
652
+ countTextColorDisabled: string;
653
+ countTextColor: string;
654
+ heightTiny: string;
655
+ heightSmall: string;
656
+ heightMedium: string;
657
+ heightLarge: string;
658
+ heightHuge: string;
659
+ fontSizeTiny: string;
660
+ fontSizeSmall: string;
661
+ fontSizeMedium: string;
662
+ fontSizeLarge: string;
663
+ fontSizeHuge: string;
664
+ lineHeight: string;
665
+ lineHeightTextarea: string;
666
+ borderRadius: string;
667
+ iconSize: string;
668
+ groupLabelTextColor: string;
669
+ textColor: string;
670
+ textColorDisabled: string;
671
+ textDecorationColor: string;
672
+ caretColor: string;
673
+ placeholderColor: string;
674
+ placeholderColorDisabled: string;
675
+ color: string;
676
+ colorDisabled: string;
677
+ colorFocus: string;
678
+ groupLabelBorder: string;
679
+ border: string;
680
+ borderHover: string;
681
+ borderDisabled: string;
682
+ borderFocus: string;
683
+ boxShadowFocus: string;
684
+ loadingColor: string;
685
+ loadingColorSuccess: string;
686
+ borderSuccess: string;
687
+ borderHoverSuccess: string;
688
+ colorFocusSuccess: string;
689
+ borderFocusSuccess: string;
690
+ boxShadowFocusSuccess: string;
691
+ caretColorSuccess: string;
692
+ loadingColorWarning: string;
693
+ borderWarning: string;
694
+ borderHoverWarning: string;
695
+ colorFocusWarning: string;
696
+ borderFocusWarning: string;
697
+ boxShadowFocusWarning: string;
698
+ caretColorWarning: string;
699
+ loadingColorError: string;
700
+ borderError: string;
701
+ borderHoverError: string;
702
+ colorFocusError: string;
703
+ borderFocusError: string;
704
+ boxShadowFocusError: string;
705
+ caretColorError: string;
706
+ clearColor: string;
707
+ clearColorHover: string;
708
+ clearColorPressed: string;
709
+ iconColor: string;
710
+ iconColorDisabled: string;
711
+ iconColorHover: string;
712
+ iconColorPressed: string;
713
+ suffixTextColor: string;
714
+ selectionColor: string;
715
+ }, any>;
716
+ Empty: import("../../_mixins").Theme<"Empty", {
717
+ iconSizeSmall: string;
718
+ iconSizeMedium: string;
719
+ iconSizeLarge: string;
720
+ iconSizeHuge: string;
721
+ titleFontSizeSmall: string;
722
+ titleFontSizeMedium: string;
723
+ titleFontSizeLarge: string;
724
+ titleFontSizeHuge: string;
725
+ descriptionFontSizeSmall: string;
726
+ descriptionFontSizeMedium: string;
727
+ descriptionFontSizeLarge: string;
728
+ descriptionFontSizeHuge: string;
729
+ titleColor: string;
730
+ descriptionColor: string;
731
+ iconColor: string;
732
+ iconBgColor: string;
733
+ extraTextColor: string;
734
+ }, any>;
735
+ Select: import("../../_mixins").Theme<"Select", {
736
+ menuBoxShadow: string;
737
+ }, {
738
+ InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
739
+ paddingTiny: string;
740
+ paddingSmall: string;
741
+ paddingMedium: string;
742
+ paddingLarge: string;
743
+ paddingHuge: string;
744
+ clearSizeTiny: string;
745
+ clearSizeSmall: string;
746
+ clearSizeMedium: string;
747
+ clearSizeLarge: string;
748
+ clearSizeHuge: string;
749
+ arrowSizeTiny: string;
750
+ arrowSizeSmall: string;
751
+ arrowSizeMedium: string;
752
+ arrowSizeLarge: string;
753
+ arrowSizeHuge: string;
754
+ fontSizeTiny: string;
755
+ fontSizeSmall: string;
756
+ fontSizeMedium: string;
757
+ fontSizeLarge: string;
758
+ fontSizeHuge: string;
759
+ lineHeightTiny: string;
760
+ lineHeightSmall: string;
761
+ lineHeightMedium: string;
762
+ lineHeightLarge: string;
763
+ lineHeightHuge: string;
764
+ heightTiny: string;
765
+ heightSmall: string;
766
+ heightMedium: string;
767
+ heightLarge: string;
768
+ heightHuge: string;
769
+ borderRadiusTiny: string;
770
+ borderRadiusSmall: string;
771
+ borderRadiusMedium: string;
772
+ borderRadiusLarge: string;
773
+ borderRadiusHuge: string;
774
+ textColor: string;
775
+ textColorDisabled: string;
776
+ placeholderColor: string;
777
+ placeholderColorDisabled: string;
778
+ color: string;
779
+ colorFilled: string;
780
+ colorDisabled: string;
781
+ colorActive: string;
782
+ border: string;
783
+ borderFilled: string;
784
+ borderHover: string;
785
+ borderActive: string;
786
+ borderFocus: string;
787
+ borderDisabled: string;
788
+ boxShadowHover: string;
789
+ boxShadowActive: string;
790
+ boxShadowFocus: string;
791
+ caretColor: string;
792
+ arrowColor: string;
793
+ arrowColorHover: string;
794
+ arrowColorDisabled: string;
795
+ loadingColor: string;
796
+ borderWarning: string;
797
+ borderHoverWarning: string;
798
+ borderActiveWarning: string;
799
+ borderFocusWarning: string;
800
+ boxShadowHoverWarning: string;
801
+ boxShadowActiveWarning: string;
802
+ boxShadowFocusWarning: string;
803
+ colorActiveWarning: string;
804
+ caretColorWarning: string;
805
+ borderError: string;
806
+ borderHoverError: string;
807
+ borderActiveError: string;
808
+ borderFocusError: string;
809
+ boxShadowHoverError: string;
810
+ boxShadowActiveError: string;
811
+ boxShadowFocusError: string;
812
+ colorActiveError: string;
813
+ caretColorError: string;
814
+ clearColor: string;
815
+ clearColorHover: string;
816
+ clearColorPressed: string;
817
+ caretColorSecondary: string;
818
+ filterCounterTextColor: string;
819
+ filterCounterTextColorDisabled: string;
820
+ arrowColorSecondary: string;
821
+ clearColorSecondary: string;
822
+ colorSecondary: string;
823
+ textColorSecondary: string;
824
+ borderSecondary: string;
825
+ arrowColorDisabledSecondary: string;
826
+ clearColorDisabledSecondary: string;
827
+ colorDisabledSecondary: string;
828
+ textColorDisabledSecondary: string;
829
+ borderDisabledSecondary: string;
830
+ arrowColorHoverSecondary: string;
831
+ clearColorHoverSecondary: string;
832
+ colorHoverSecondary: string;
833
+ textColorHoverSecondary: string;
834
+ borderHoverSecondary: string;
835
+ arrowColorFocusSecondary: string;
836
+ clearColorFocusSecondary: string;
837
+ colorFocusSecondary: string;
838
+ textColorFocusSecondary: string;
839
+ borderFocusSecondary: string;
840
+ arrowColorActiveSecondary: string;
841
+ clearColorActiveSecondary: string;
842
+ colorActiveSecondary: string;
843
+ textColorActiveSecondary: string;
844
+ borderActiveSecondary: string;
845
+ }, {
846
+ Popover: import("../../_mixins").Theme<"Popover", {
847
+ space: string;
848
+ spaceArrow: string;
849
+ arrowOffset: string;
850
+ arrowOffsetVertical: string;
851
+ arrowHeight: string;
852
+ padding: string;
853
+ fontSize: string;
854
+ borderRadius: string;
855
+ color: string;
856
+ dividerColor: string;
857
+ textColor: string;
858
+ boxShadow: string;
859
+ }, any>;
860
+ }>;
861
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
862
+ height: string;
863
+ paddingSmall: string;
864
+ paddingMedium: string;
865
+ paddingLarge: string;
866
+ optionPaddingSmall: string;
867
+ optionPaddingMedium: string;
868
+ optionPaddingLarge: string;
869
+ loadingSize: string;
870
+ optionFontSizeSmall: string;
871
+ optionFontSizeMedium: string;
872
+ optionFontSizeLarge: string;
873
+ optionHeightSmall: string;
874
+ optionHeightMedium: string;
875
+ optionHeightLarge: string;
876
+ optionBorderRadius: string;
877
+ borderRadius: string;
878
+ color: string;
879
+ groupHeaderTextColor: string;
880
+ actionDividerColor: string;
881
+ optionTextColor: string;
882
+ optionTextColorPressed: string;
883
+ optionTextColorDisabled: string;
884
+ optionTextColorActive: string;
885
+ optionOpacityDisabled: string;
886
+ optionCheckColor: string;
887
+ optionColorPending: string;
888
+ optionColorActive: string;
889
+ optionGroupHeaderBorderColor: string;
890
+ optionColorActivePending: string;
891
+ actionTextColor: string;
892
+ loadingColor: string;
893
+ }, {
894
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
895
+ height: string;
896
+ width: string;
897
+ borderRadius: string;
898
+ color: string;
899
+ colorHover: string;
900
+ railInsetHorizontalBottom: string;
901
+ railInsetHorizontalTop: string;
902
+ railInsetVerticalRight: string;
903
+ railInsetVerticalLeft: string;
904
+ railColor: string;
905
+ }, any>;
906
+ Empty: import("../../_mixins").Theme<"Empty", {
907
+ iconSizeSmall: string;
908
+ iconSizeMedium: string;
909
+ iconSizeLarge: string;
910
+ iconSizeHuge: string;
911
+ titleFontSizeSmall: string;
912
+ titleFontSizeMedium: string;
913
+ titleFontSizeLarge: string;
914
+ titleFontSizeHuge: string;
915
+ descriptionFontSizeSmall: string;
916
+ descriptionFontSizeMedium: string;
917
+ descriptionFontSizeLarge: string;
918
+ descriptionFontSizeHuge: string;
919
+ titleColor: string;
920
+ descriptionColor: string;
921
+ iconColor: string;
922
+ iconBgColor: string;
923
+ extraTextColor: string;
924
+ }, any>;
925
+ Checkbox: import("../../_mixins").Theme<"Checkbox", {
926
+ fontWeight: string;
927
+ textColor: string;
928
+ descriptionTextColor: string;
929
+ textColorDisabled: string;
930
+ descriptionTextColorDisabled: string;
931
+ fontSizeLarge: string;
932
+ fontSizeMedium: string;
933
+ fontSizeSmall: string;
934
+ lineHeightLarge: string;
935
+ lineHeightMedium: string;
936
+ lineHeightSmall: string;
937
+ borderRadiusLarge: string;
938
+ borderRadiusMedium: string;
939
+ borderRadiusSmall: string;
940
+ color: string;
941
+ colorHover: string;
942
+ colorFocus: string;
943
+ colorActive: string;
944
+ colorChecked: string;
945
+ colorHoverChecked: string;
946
+ colorFocusChecked: string;
947
+ colorActiveChecked: string;
948
+ colorDisabled: string;
949
+ colorDisabledChecked: string;
950
+ checkMarkColor: string;
951
+ checkMarkColorHover: string;
952
+ checkMarkColorFocus: string;
953
+ checkMarkColorActive: string;
954
+ checkMarkColorDisabled: string;
955
+ checkMarkColorDisabledChecked: string;
956
+ border: string;
957
+ borderHover: string;
958
+ borderFocus: string;
959
+ borderActive: string;
960
+ borderChecked: string;
961
+ borderHoverChecked: string;
962
+ borderFocusChecked: string;
963
+ borderActiveChecked: string;
964
+ borderDisabled: string;
965
+ borderDisabledChecked: string;
966
+ boxShadowHover: string;
967
+ boxShadowFocus: string;
968
+ boxShadowActive: string;
969
+ boxShadowHoverChecked: string;
970
+ boxShadowFocusChecked: string;
971
+ boxShadowActiveChecked: string;
972
+ sizeSmall: string;
973
+ sizeMedium: string;
974
+ sizeLarge: string;
975
+ labelPadding: string;
976
+ }, any>;
977
+ Input: import("../../_mixins").Theme<"Input", {
978
+ paddingTiny: string;
979
+ paddingSmall: string;
980
+ paddingMedium: string;
981
+ paddingLarge: string;
982
+ paddingHuge: string;
983
+ clearSize: string;
984
+ countTextColorDisabled: string;
985
+ countTextColor: string;
986
+ heightTiny: string;
987
+ heightSmall: string;
988
+ heightMedium: string;
989
+ heightLarge: string;
990
+ heightHuge: string;
991
+ fontSizeTiny: string;
992
+ fontSizeSmall: string;
993
+ fontSizeMedium: string;
994
+ fontSizeLarge: string;
995
+ fontSizeHuge: string;
996
+ lineHeight: string;
997
+ lineHeightTextarea: string;
998
+ borderRadius: string;
999
+ iconSize: string;
1000
+ groupLabelTextColor: string;
1001
+ textColor: string;
1002
+ textColorDisabled: string;
1003
+ textDecorationColor: string;
1004
+ caretColor: string;
1005
+ placeholderColor: string;
1006
+ placeholderColorDisabled: string;
1007
+ color: string;
1008
+ colorDisabled: string;
1009
+ colorFocus: string;
1010
+ groupLabelBorder: string;
1011
+ border: string;
1012
+ borderHover: string;
1013
+ borderDisabled: string;
1014
+ borderFocus: string;
1015
+ boxShadowFocus: string;
1016
+ loadingColor: string;
1017
+ loadingColorSuccess: string;
1018
+ borderSuccess: string;
1019
+ borderHoverSuccess: string;
1020
+ colorFocusSuccess: string;
1021
+ borderFocusSuccess: string;
1022
+ boxShadowFocusSuccess: string;
1023
+ caretColorSuccess: string;
1024
+ loadingColorWarning: string;
1025
+ borderWarning: string;
1026
+ borderHoverWarning: string;
1027
+ colorFocusWarning: string;
1028
+ borderFocusWarning: string;
1029
+ boxShadowFocusWarning: string;
1030
+ caretColorWarning: string;
1031
+ loadingColorError: string;
1032
+ borderError: string;
1033
+ borderHoverError: string;
1034
+ colorFocusError: string;
1035
+ borderFocusError: string;
1036
+ boxShadowFocusError: string;
1037
+ caretColorError: string;
1038
+ clearColor: string;
1039
+ clearColorHover: string;
1040
+ clearColorPressed: string;
1041
+ iconColor: string;
1042
+ iconColorDisabled: string;
1043
+ iconColorHover: string;
1044
+ iconColorPressed: string;
1045
+ suffixTextColor: string;
1046
+ selectionColor: string;
1047
+ }, any>;
1048
+ }>;
1049
+ }>;
1050
+ Avatar: import("../../_mixins").Theme<"Avatar", {
1051
+ borderRadius: string;
1052
+ fontSize: string;
1053
+ fontWeight: string;
1054
+ border: string;
1055
+ heightTiny: string;
1056
+ heightSmall: string;
1057
+ heightMedium: string;
1058
+ heightLarge: string;
1059
+ textColor: string;
1060
+ iconColor: string;
1061
+ color: string;
1062
+ iconSize: string;
1063
+ }, any>;
1064
+ Badge: import("../../_mixins").Theme<"Badge", {
1065
+ color: string;
1066
+ colorPrime: string;
1067
+ colorInfo: string;
1068
+ colorSuccess: string;
1069
+ colorError: string;
1070
+ colorWarning: string;
1071
+ fontSize: string;
1072
+ textColor: string;
1073
+ textColorPrime: string;
1074
+ textColorInfo: string;
1075
+ textColorSuccess: string;
1076
+ textColorError: string;
1077
+ textColorWarning: string;
1078
+ borderColor: string;
1079
+ dotSize: string;
1080
+ }, any>;
1081
+ Button: import("../../_mixins").Theme<"Button", {
1082
+ heightTiny: string;
1083
+ heightSmall: string;
1084
+ heightMedium: string;
1085
+ heightLarge: string;
1086
+ borderRadiusTiny: string;
1087
+ borderRadiusSmall: string;
1088
+ borderRadiusMedium: string;
1089
+ borderRadiusLarge: string;
1090
+ fontSizeTiny: string;
1091
+ fontSizeSmall: string;
1092
+ fontSizeMedium: string;
1093
+ fontSizeLarge: string;
1094
+ opacityDisabled: string;
1095
+ colorOpacitySecondary: string;
1096
+ colorOpacitySecondaryHover: string;
1097
+ colorOpacitySecondaryPressed: string;
1098
+ colorOpacitySecondaryFocus: string;
1099
+ colorSecondary: string;
1100
+ colorSecondaryHover: string;
1101
+ colorSecondaryPressed: string;
1102
+ colorSecondaryFocus: string;
1103
+ colorSecondaryDisabled: string;
1104
+ textColorSecondaryDisabled: string;
1105
+ waveColorSecondary: string;
1106
+ colorTertiary: string;
1107
+ colorTertiaryHover: string;
1108
+ colorTertiaryPressed: string;
1109
+ colorTertiaryFocus: string;
1110
+ colorTertiaryDisalbed: string;
1111
+ waveColorTertiary: string;
1112
+ textColorTextTertiary: string;
1113
+ rippleColorTertiary: string;
1114
+ colorQuaternary: string;
1115
+ colorQuaternaryHover: string;
1116
+ colorQuaternaryPressed: string;
1117
+ colorQuaternaryFocus: string;
1118
+ rippleColorQuaternary: string;
1119
+ waveColorQuaternary: string;
1120
+ color: string;
1121
+ colorHover: string;
1122
+ colorPressed: string;
1123
+ colorFocus: string;
1124
+ colorDisabled: string;
1125
+ textColor: string;
1126
+ textTertiary: string;
1127
+ textColorTertiary: string;
1128
+ textColorHover: string;
1129
+ textColorPressed: string;
1130
+ textColorFocus: string;
1131
+ textColorDisabled: string;
1132
+ textColorText: string;
1133
+ textColorTextHover: string;
1134
+ textColorTextPressed: string;
1135
+ textColorTextFocus: string;
1136
+ textColorTextDisabled: string;
1137
+ textColorGhost: string;
1138
+ textColorGhostHover: string;
1139
+ textColorGhostPressed: string;
1140
+ textColorGhostFocus: string;
1141
+ textColorGhostDisabled: string;
1142
+ border: string;
1143
+ borderHover: string;
1144
+ borderPressed: string;
1145
+ borderFocus: string;
1146
+ borderDisabled: string;
1147
+ rippleColor: string;
1148
+ colorPrimary: string;
1149
+ colorHoverPrimary: string;
1150
+ colorPressedPrimary: string;
1151
+ colorFocusPrimary: string;
1152
+ colorDisabledPrimary: string;
1153
+ waveColorPrimary: string;
1154
+ textColorPrimary: string;
1155
+ textColorHoverPrimary: string;
1156
+ textColorPressedPrimary: string;
1157
+ textColorFocusPrimary: string;
1158
+ textColorDisabledPrimary: string;
1159
+ textColorTextPrimary: string;
1160
+ textColorTextHoverPrimary: string;
1161
+ textColorTextPressedPrimary: string;
1162
+ textColorTextFocusPrimary: string;
1163
+ textColorTextDisabledPrimary: string;
1164
+ textColorGhostPrimary: string;
1165
+ textColorGhostHoverPrimary: string;
1166
+ textColorGhostPressedPrimary: string;
1167
+ textColorGhostFocusPrimary: string;
1168
+ textColorGhostDisabledPrimary: string;
1169
+ borderPrimary: string;
1170
+ borderHoverPrimary: string;
1171
+ borderPressedPrimary: string;
1172
+ borderFocusPrimary: string;
1173
+ borderDisabledPrimary: string;
1174
+ rippleColorPrimary: string;
1175
+ colorInfo: string;
1176
+ colorHoverInfo: string;
1177
+ colorPressedInfo: string;
1178
+ colorFocusInfo: string;
1179
+ colorDisabledInfo: string;
1180
+ textColorInfo: string;
1181
+ textColorHoverInfo: string;
1182
+ textColorPressedInfo: string;
1183
+ textColorFocusInfo: string;
1184
+ textColorDisabledInfo: string;
1185
+ textColorTextInfo: string;
1186
+ textColorTextHoverInfo: string;
1187
+ textColorTextPressedInfo: string;
1188
+ textColorTextFocusInfo: string;
1189
+ textColorTextDisabledInfo: string;
1190
+ textColorGhostInfo: string;
1191
+ textColorGhostHoverInfo: string;
1192
+ textColorGhostPressedInfo: string;
1193
+ textColorGhostFocusInfo: string;
1194
+ textColorGhostDisabledInfo: string;
1195
+ borderInfo: string;
1196
+ borderHoverInfo: string;
1197
+ borderPressedInfo: string;
1198
+ borderFocusInfo: string;
1199
+ borderDisabledInfo: string;
1200
+ rippleColorInfo: string;
1201
+ colorSuccess: string;
1202
+ colorHoverSuccess: string;
1203
+ colorPressedSuccess: string;
1204
+ colorFocusSuccess: string;
1205
+ colorDisabledSuccess: string;
1206
+ textColorSuccess: string;
1207
+ textColorHoverSuccess: string;
1208
+ textColorPressedSuccess: string;
1209
+ textColorFocusSuccess: string;
1210
+ textColorDisabledSuccess: string;
1211
+ textColorTextSuccess: string;
1212
+ textColorTextHoverSuccess: string;
1213
+ textColorTextPressedSuccess: string;
1214
+ textColorTextFocusSuccess: string;
1215
+ textColorTextDisabledSuccess: string;
1216
+ textColorGhostSuccess: string;
1217
+ textColorGhostHoverSuccess: string;
1218
+ textColorGhostPressedSuccess: string;
1219
+ textColorGhostFocusSuccess: string;
1220
+ textColorGhostDisabledSuccess: string;
1221
+ borderSuccess: string;
1222
+ borderHoverSuccess: string;
1223
+ borderPressedSuccess: string;
1224
+ borderFocusSuccess: string;
1225
+ borderDisabledSuccess: string;
1226
+ rippleColorSuccess: string;
1227
+ colorWarning: string;
1228
+ colorHoverWarning: string;
1229
+ colorPressedWarning: string;
1230
+ colorFocusWarning: string;
1231
+ colorDisabledWarning: string;
1232
+ textColorWarning: string;
1233
+ textColorHoverWarning: string;
1234
+ textColorPressedWarning: string;
1235
+ textColorFocusWarning: string;
1236
+ textColorDisabledWarning: string;
1237
+ textColorTextWarning: string;
1238
+ textColorTextHoverWarning: string;
1239
+ textColorTextPressedWarning: string;
1240
+ textColorTextFocusWarning: string;
1241
+ textColorTextDisabledWarning: string;
1242
+ textColorGhostWarning: string;
1243
+ textColorGhostHoverWarning: string;
1244
+ textColorGhostPressedWarning: string;
1245
+ textColorGhostFocusWarning: string;
1246
+ textColorGhostDisabledWarning: string;
1247
+ borderWarning: string;
1248
+ borderHoverWarning: string;
1249
+ borderPressedWarning: string;
1250
+ borderFocusWarning: string;
1251
+ borderDisabledWarning: string;
1252
+ rippleColorWarning: string;
1253
+ colorError: string;
1254
+ colorHoverError: string;
1255
+ colorPressedError: string;
1256
+ colorFocusError: string;
1257
+ colorDisabledError: string;
1258
+ textColorError: string;
1259
+ textColorHoverError: string;
1260
+ textColorPressedError: string;
1261
+ textColorFocusError: string;
1262
+ textColorDisabledError: string;
1263
+ textColorTextError: string;
1264
+ textColorTextHoverError: string;
1265
+ textColorTextPressedError: string;
1266
+ textColorTextFocusError: string;
1267
+ textColorTextDisabledError: string;
1268
+ textColorGhostError: string;
1269
+ textColorGhostHoverError: string;
1270
+ textColorGhostPressedError: string;
1271
+ textColorGhostFocusError: string;
1272
+ textColorGhostDisabledError: string;
1273
+ borderError: string;
1274
+ borderHoverError: string;
1275
+ borderPressedError: string;
1276
+ borderFocusError: string;
1277
+ borderDisabledError: string;
1278
+ rippleColorError: string;
1279
+ waveOpacity: string;
1280
+ fontWeight: string;
1281
+ fontWeightStrong: string;
1282
+ paddingTiny: string;
1283
+ paddingSmall: string;
1284
+ paddingMedium: string;
1285
+ paddingLarge: string;
1286
+ paddingRoundTiny: string;
1287
+ paddingRoundSmall: string;
1288
+ paddingRoundMedium: string;
1289
+ paddingRoundLarge: string;
1290
+ iconMarginTiny: string;
1291
+ iconMarginSmall: string;
1292
+ iconMarginMedium: string;
1293
+ iconMarginLarge: string;
1294
+ iconSizeTiny: string;
1295
+ iconSizeSmall: string;
1296
+ iconSizeMedium: string;
1297
+ iconSizeLarge: string;
1298
+ rippleDuration: string;
1299
+ }, any>;
1300
+ List: import("../../_mixins").Theme<"List", {
1301
+ iconSize: string;
1302
+ iconSpace: string;
1303
+ suffixSpace: string;
1304
+ prefixSpace: string;
1305
+ subtitleColor: string;
1306
+ avatarSpace: string;
1307
+ colorFocus: string;
1308
+ pressedScale: string;
1309
+ textColorDisabled: string;
1310
+ textColor: string;
1311
+ color: string;
1312
+ colorHover: string;
1313
+ colorModal: string;
1314
+ colorHoverModal: string;
1315
+ colorPopover: string;
1316
+ colorHoverPopover: string;
1317
+ borderColor: string;
1318
+ borderColorModal: string;
1319
+ borderColorPopover: string;
1320
+ borderRadiusLarge: string;
1321
+ borderRadiusMedium: string;
1322
+ borderRadiusSmall: string;
1323
+ padding: string;
1324
+ suffixSize: string;
1325
+ }, any>;
1326
+ Typography: import("../../_mixins").Theme<"Typography", {
1327
+ headerFontSize1: string;
1328
+ headerFontSize2: string;
1329
+ headerFontSize3: string;
1330
+ headerFontSize4: string;
1331
+ headerFontSize5: string;
1332
+ headerFontSize6: string;
1333
+ headerMargin1: string;
1334
+ headerMargin2: string;
1335
+ headerMargin3: string;
1336
+ headerMargin4: string;
1337
+ headerMargin5: string;
1338
+ headerMargin6: string;
1339
+ headerPrefixWidth1: string;
1340
+ headerPrefixWidth2: string;
1341
+ headerPrefixWidth3: string;
1342
+ headerPrefixWidth4: string;
1343
+ headerPrefixWidth5: string;
1344
+ headerPrefixWidth6: string;
1345
+ headerBarWidth1: string;
1346
+ headerBarWidth2: string;
1347
+ headerBarWidth3: string;
1348
+ headerBarWidth4: string;
1349
+ headerBarWidth5: string;
1350
+ headerBarWidth6: string;
1351
+ pMargin: string;
1352
+ margin: string;
1353
+ liMargin: string;
1354
+ olPadding: string;
1355
+ ulPadding: string;
1356
+ aTextColor: string;
1357
+ blockquoteTextColor: string;
1358
+ blockquotePrefixColor: string;
1359
+ blockquoteLineHeight: string;
1360
+ blockquoteFontSize: string;
1361
+ codeBorderRadius: string;
1362
+ liTextColor: string;
1363
+ liLineHeight: string;
1364
+ liFontSize: string;
1365
+ hrColor: string;
1366
+ headerFontWeight: string;
1367
+ headerTextColor: string;
1368
+ pTextColor: string;
1369
+ pTextColor1Depth: string;
1370
+ pTextColor2Depth: string;
1371
+ pTextColor3Depth: string;
1372
+ pLineHeight: string;
1373
+ pFontSize: string;
1374
+ fontSize: string;
1375
+ lineHeight: string;
1376
+ headerBarColor: string;
1377
+ headerBarColorPrimary: string;
1378
+ headerBarColorInfo: string;
1379
+ headerBarColorError: string;
1380
+ headerBarColorWarning: string;
1381
+ headerBarColorSuccess: string;
1382
+ textColor: string;
1383
+ textColor1Depth: string;
1384
+ textColor2Depth: string;
1385
+ textColor3Depth: string;
1386
+ textColorPrimary: string;
1387
+ textColorInfo: string;
1388
+ textColorSuccess: string;
1389
+ textColorWarning: string;
1390
+ textColorError: string;
1391
+ codeTextColor: string;
1392
+ codeColor: string;
1393
+ codeBorder: string;
1394
+ }, any>;
1395
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
1396
+ messageBubbleBackgroundColorOwn: string;
1397
+ messageBubbleBackgroundColorOther: string;
1398
+ messageBubbleTextColorOwn: string;
1399
+ messageBubbleTextColorOther: string;
1400
+ messageTimeColor: string;
1401
+ messageStatusReadColor: string;
1402
+ messageStatusSuccessColor: string;
1403
+ attachmentBackgroundColorOwn: string;
1404
+ attachmentBackgroundColorOther: string;
1405
+ messageErrorColor: string;
1406
+ messageBorderRadius: string;
1407
+ unreadNotificationBackgroundColor: string;
1408
+ unreadNotificationTextColor: string;
1409
+ serviceMessageTextColor: string;
1410
+ serviceMessageBackgroundColor: string;
1411
+ messageTitleColor: string;
1412
+ }, {
1413
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
1414
+ color: string;
1415
+ opacity1Depth: string;
1416
+ opacity2Depth: string;
1417
+ opacity3Depth: string;
1418
+ opacity4Depth: string;
1419
+ opacity5Depth: string;
1420
+ }, any>;
1421
+ }>;
1422
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
1423
+ color: string;
1424
+ opacity1Depth: string;
1425
+ opacity2Depth: string;
1426
+ opacity3Depth: string;
1427
+ opacity4Depth: string;
1428
+ opacity5Depth: string;
1429
+ }, any>;
1430
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
1431
+ color: string;
1432
+ opacity1Depth: string;
1433
+ opacity2Depth: string;
1434
+ opacity3Depth: string;
1435
+ opacity4Depth: string;
1436
+ opacity5Depth: string;
1437
+ }, any>;
1438
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
1439
+ color: string;
1440
+ opacity1Depth: string;
1441
+ opacity2Depth: string;
1442
+ opacity3Depth: string;
1443
+ opacity4Depth: string;
1444
+ opacity5Depth: string;
1445
+ }, any>;
1446
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
1447
+ color: string;
1448
+ opacity1Depth: string;
1449
+ opacity2Depth: string;
1450
+ opacity3Depth: string;
1451
+ opacity4Depth: string;
1452
+ opacity5Depth: string;
1453
+ }, any>;
1454
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
1455
+ color: string;
1456
+ opacity1Depth: string;
1457
+ opacity2Depth: string;
1458
+ opacity3Depth: string;
1459
+ opacity4Depth: string;
1460
+ opacity5Depth: string;
1461
+ }, any>;
1462
+ }>>;
1463
+ themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
1464
+ backgroundColor: string;
1465
+ borderColor: string;
1466
+ sidebarBackgroundColor: string;
1467
+ sidebarBorderColor: string;
1468
+ sidebarItemBackgroundColor: string;
1469
+ sidebarItemBackgroundColorHover: string;
1470
+ sidebarItemBackgroundColorSelected: string;
1471
+ sidebarItemTextColor: string;
1472
+ sidebarItemTextColorSelected: string;
1473
+ sidebarItemSubtitleColor: string;
1474
+ sidebarItemTimeColor: string;
1475
+ mainBackgroundColor: string;
1476
+ headerBackgroundColor: string;
1477
+ headerBorderColor: string;
1478
+ headerTitleColor: string;
1479
+ messageBubbleBackgroundColorOwn: string;
1480
+ messageBubbleBackgroundColorOther: string;
1481
+ messageBubbleTextColorOwn: string;
1482
+ messageBubbleTextColorOther: string;
1483
+ messageTimeColor: string;
1484
+ messageStatusColor: string;
1485
+ attachmentBackgroundColorOwn: string;
1486
+ attachmentBackgroundColorOther: string;
1487
+ footerBackgroundColor: string;
1488
+ footerBorderColor: string;
1489
+ inputBackgroundColor: string;
1490
+ inputBorderColor: string;
1491
+ inputSuffixColor: string;
1492
+ unreadNotificationBackgroundColor: string;
1493
+ unreadNotificationTextColor: string;
1494
+ typingIndicatorColor: string;
1495
+ dateSeparatorColor: string;
1496
+ dateSeparatorBackgroundColor: string;
1497
+ borderRadius: string;
1498
+ errorColor: string;
1499
+ }, {
1500
+ Input: import("../../_mixins").Theme<"Input", {
1501
+ paddingTiny: string;
1502
+ paddingSmall: string;
1503
+ paddingMedium: string;
1504
+ paddingLarge: string;
1505
+ paddingHuge: string;
1506
+ clearSize: string;
1507
+ countTextColorDisabled: string;
1508
+ countTextColor: string;
1509
+ heightTiny: string;
1510
+ heightSmall: string;
1511
+ heightMedium: string;
1512
+ heightLarge: string;
1513
+ heightHuge: string;
1514
+ fontSizeTiny: string;
1515
+ fontSizeSmall: string;
1516
+ fontSizeMedium: string;
1517
+ fontSizeLarge: string;
1518
+ fontSizeHuge: string;
1519
+ lineHeight: string;
1520
+ lineHeightTextarea: string;
1521
+ borderRadius: string;
1522
+ iconSize: string;
1523
+ groupLabelTextColor: string;
1524
+ textColor: string;
1525
+ textColorDisabled: string;
1526
+ textDecorationColor: string;
1527
+ caretColor: string;
1528
+ placeholderColor: string;
1529
+ placeholderColorDisabled: string;
1530
+ color: string;
1531
+ colorDisabled: string;
1532
+ colorFocus: string;
1533
+ groupLabelBorder: string;
1534
+ border: string;
1535
+ borderHover: string;
1536
+ borderDisabled: string;
1537
+ borderFocus: string;
1538
+ boxShadowFocus: string;
1539
+ loadingColor: string;
1540
+ loadingColorSuccess: string;
1541
+ borderSuccess: string;
1542
+ borderHoverSuccess: string;
1543
+ colorFocusSuccess: string;
1544
+ borderFocusSuccess: string;
1545
+ boxShadowFocusSuccess: string;
1546
+ caretColorSuccess: string;
1547
+ loadingColorWarning: string;
1548
+ borderWarning: string;
1549
+ borderHoverWarning: string;
1550
+ colorFocusWarning: string;
1551
+ borderFocusWarning: string;
1552
+ boxShadowFocusWarning: string;
1553
+ caretColorWarning: string;
1554
+ loadingColorError: string;
1555
+ borderError: string;
1556
+ borderHoverError: string;
1557
+ colorFocusError: string;
1558
+ borderFocusError: string;
1559
+ boxShadowFocusError: string;
1560
+ caretColorError: string;
1561
+ clearColor: string;
1562
+ clearColorHover: string;
1563
+ clearColorPressed: string;
1564
+ iconColor: string;
1565
+ iconColorDisabled: string;
1566
+ iconColorHover: string;
1567
+ iconColorPressed: string;
1568
+ suffixTextColor: string;
1569
+ selectionColor: string;
1570
+ }, any>;
1571
+ Empty: import("../../_mixins").Theme<"Empty", {
1572
+ iconSizeSmall: string;
1573
+ iconSizeMedium: string;
1574
+ iconSizeLarge: string;
1575
+ iconSizeHuge: string;
1576
+ titleFontSizeSmall: string;
1577
+ titleFontSizeMedium: string;
1578
+ titleFontSizeLarge: string;
1579
+ titleFontSizeHuge: string;
1580
+ descriptionFontSizeSmall: string;
1581
+ descriptionFontSizeMedium: string;
1582
+ descriptionFontSizeLarge: string;
1583
+ descriptionFontSizeHuge: string;
1584
+ titleColor: string;
1585
+ descriptionColor: string;
1586
+ iconColor: string;
1587
+ iconBgColor: string;
1588
+ extraTextColor: string;
1589
+ }, any>;
1590
+ Select: import("../../_mixins").Theme<"Select", {
1591
+ menuBoxShadow: string;
1592
+ }, {
1593
+ InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
1594
+ paddingTiny: string;
1595
+ paddingSmall: string;
1596
+ paddingMedium: string;
1597
+ paddingLarge: string;
1598
+ paddingHuge: string;
1599
+ clearSizeTiny: string;
1600
+ clearSizeSmall: string;
1601
+ clearSizeMedium: string;
1602
+ clearSizeLarge: string;
1603
+ clearSizeHuge: string;
1604
+ arrowSizeTiny: string;
1605
+ arrowSizeSmall: string;
1606
+ arrowSizeMedium: string;
1607
+ arrowSizeLarge: string;
1608
+ arrowSizeHuge: string;
1609
+ fontSizeTiny: string;
1610
+ fontSizeSmall: string;
1611
+ fontSizeMedium: string;
1612
+ fontSizeLarge: string;
1613
+ fontSizeHuge: string;
1614
+ lineHeightTiny: string;
1615
+ lineHeightSmall: string;
1616
+ lineHeightMedium: string;
1617
+ lineHeightLarge: string;
1618
+ lineHeightHuge: string;
1619
+ heightTiny: string;
1620
+ heightSmall: string;
1621
+ heightMedium: string;
1622
+ heightLarge: string;
1623
+ heightHuge: string;
1624
+ borderRadiusTiny: string;
1625
+ borderRadiusSmall: string;
1626
+ borderRadiusMedium: string;
1627
+ borderRadiusLarge: string;
1628
+ borderRadiusHuge: string;
1629
+ textColor: string;
1630
+ textColorDisabled: string;
1631
+ placeholderColor: string;
1632
+ placeholderColorDisabled: string;
1633
+ color: string;
1634
+ colorFilled: string;
1635
+ colorDisabled: string;
1636
+ colorActive: string;
1637
+ border: string;
1638
+ borderFilled: string;
1639
+ borderHover: string;
1640
+ borderActive: string;
1641
+ borderFocus: string;
1642
+ borderDisabled: string;
1643
+ boxShadowHover: string;
1644
+ boxShadowActive: string;
1645
+ boxShadowFocus: string;
1646
+ caretColor: string;
1647
+ arrowColor: string;
1648
+ arrowColorHover: string;
1649
+ arrowColorDisabled: string;
1650
+ loadingColor: string;
1651
+ borderWarning: string;
1652
+ borderHoverWarning: string;
1653
+ borderActiveWarning: string;
1654
+ borderFocusWarning: string;
1655
+ boxShadowHoverWarning: string;
1656
+ boxShadowActiveWarning: string;
1657
+ boxShadowFocusWarning: string;
1658
+ colorActiveWarning: string;
1659
+ caretColorWarning: string;
1660
+ borderError: string;
1661
+ borderHoverError: string;
1662
+ borderActiveError: string;
1663
+ borderFocusError: string;
1664
+ boxShadowHoverError: string;
1665
+ boxShadowActiveError: string;
1666
+ boxShadowFocusError: string;
1667
+ colorActiveError: string;
1668
+ caretColorError: string;
1669
+ clearColor: string;
1670
+ clearColorHover: string;
1671
+ clearColorPressed: string;
1672
+ caretColorSecondary: string;
1673
+ filterCounterTextColor: string;
1674
+ filterCounterTextColorDisabled: string;
1675
+ arrowColorSecondary: string;
1676
+ clearColorSecondary: string;
1677
+ colorSecondary: string;
1678
+ textColorSecondary: string;
1679
+ borderSecondary: string;
1680
+ arrowColorDisabledSecondary: string;
1681
+ clearColorDisabledSecondary: string;
1682
+ colorDisabledSecondary: string;
1683
+ textColorDisabledSecondary: string;
1684
+ borderDisabledSecondary: string;
1685
+ arrowColorHoverSecondary: string;
1686
+ clearColorHoverSecondary: string;
1687
+ colorHoverSecondary: string;
1688
+ textColorHoverSecondary: string;
1689
+ borderHoverSecondary: string;
1690
+ arrowColorFocusSecondary: string;
1691
+ clearColorFocusSecondary: string;
1692
+ colorFocusSecondary: string;
1693
+ textColorFocusSecondary: string;
1694
+ borderFocusSecondary: string;
1695
+ arrowColorActiveSecondary: string;
1696
+ clearColorActiveSecondary: string;
1697
+ colorActiveSecondary: string;
1698
+ textColorActiveSecondary: string;
1699
+ borderActiveSecondary: string;
1700
+ }, {
1701
+ Popover: import("../../_mixins").Theme<"Popover", {
1702
+ space: string;
1703
+ spaceArrow: string;
1704
+ arrowOffset: string;
1705
+ arrowOffsetVertical: string;
1706
+ arrowHeight: string;
1707
+ padding: string;
1708
+ fontSize: string;
1709
+ borderRadius: string;
1710
+ color: string;
1711
+ dividerColor: string;
1712
+ textColor: string;
1713
+ boxShadow: string;
1714
+ }, any>;
1715
+ }>;
1716
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1717
+ height: string;
1718
+ paddingSmall: string;
1719
+ paddingMedium: string;
1720
+ paddingLarge: string;
1721
+ optionPaddingSmall: string;
1722
+ optionPaddingMedium: string;
1723
+ optionPaddingLarge: string;
1724
+ loadingSize: string;
1725
+ optionFontSizeSmall: string;
1726
+ optionFontSizeMedium: string;
1727
+ optionFontSizeLarge: string;
1728
+ optionHeightSmall: string;
1729
+ optionHeightMedium: string;
1730
+ optionHeightLarge: string;
1731
+ optionBorderRadius: string;
1732
+ borderRadius: string;
1733
+ color: string;
1734
+ groupHeaderTextColor: string;
1735
+ actionDividerColor: string;
1736
+ optionTextColor: string;
1737
+ optionTextColorPressed: string;
1738
+ optionTextColorDisabled: string;
1739
+ optionTextColorActive: string;
1740
+ optionOpacityDisabled: string;
1741
+ optionCheckColor: string;
1742
+ optionColorPending: string;
1743
+ optionColorActive: string;
1744
+ optionGroupHeaderBorderColor: string;
1745
+ optionColorActivePending: string;
1746
+ actionTextColor: string;
1747
+ loadingColor: string;
1748
+ }, {
1749
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1750
+ height: string;
1751
+ width: string;
1752
+ borderRadius: string;
1753
+ color: string;
1754
+ colorHover: string;
1755
+ railInsetHorizontalBottom: string;
1756
+ railInsetHorizontalTop: string;
1757
+ railInsetVerticalRight: string;
1758
+ railInsetVerticalLeft: string;
1759
+ railColor: string;
1760
+ }, any>;
1761
+ Empty: import("../../_mixins").Theme<"Empty", {
1762
+ iconSizeSmall: string;
1763
+ iconSizeMedium: string;
1764
+ iconSizeLarge: string;
1765
+ iconSizeHuge: string;
1766
+ titleFontSizeSmall: string;
1767
+ titleFontSizeMedium: string;
1768
+ titleFontSizeLarge: string;
1769
+ titleFontSizeHuge: string;
1770
+ descriptionFontSizeSmall: string;
1771
+ descriptionFontSizeMedium: string;
1772
+ descriptionFontSizeLarge: string;
1773
+ descriptionFontSizeHuge: string;
1774
+ titleColor: string;
1775
+ descriptionColor: string;
1776
+ iconColor: string;
1777
+ iconBgColor: string;
1778
+ extraTextColor: string;
1779
+ }, any>;
1780
+ Checkbox: import("../../_mixins").Theme<"Checkbox", {
1781
+ fontWeight: string;
1782
+ textColor: string;
1783
+ descriptionTextColor: string;
1784
+ textColorDisabled: string;
1785
+ descriptionTextColorDisabled: string;
1786
+ fontSizeLarge: string;
1787
+ fontSizeMedium: string;
1788
+ fontSizeSmall: string;
1789
+ lineHeightLarge: string;
1790
+ lineHeightMedium: string;
1791
+ lineHeightSmall: string;
1792
+ borderRadiusLarge: string;
1793
+ borderRadiusMedium: string;
1794
+ borderRadiusSmall: string;
1795
+ color: string;
1796
+ colorHover: string;
1797
+ colorFocus: string;
1798
+ colorActive: string;
1799
+ colorChecked: string;
1800
+ colorHoverChecked: string;
1801
+ colorFocusChecked: string;
1802
+ colorActiveChecked: string;
1803
+ colorDisabled: string;
1804
+ colorDisabledChecked: string;
1805
+ checkMarkColor: string;
1806
+ checkMarkColorHover: string;
1807
+ checkMarkColorFocus: string;
1808
+ checkMarkColorActive: string;
1809
+ checkMarkColorDisabled: string;
1810
+ checkMarkColorDisabledChecked: string;
1811
+ border: string;
1812
+ borderHover: string;
1813
+ borderFocus: string;
1814
+ borderActive: string;
1815
+ borderChecked: string;
1816
+ borderHoverChecked: string;
1817
+ borderFocusChecked: string;
1818
+ borderActiveChecked: string;
1819
+ borderDisabled: string;
1820
+ borderDisabledChecked: string;
1821
+ boxShadowHover: string;
1822
+ boxShadowFocus: string;
1823
+ boxShadowActive: string;
1824
+ boxShadowHoverChecked: string;
1825
+ boxShadowFocusChecked: string;
1826
+ boxShadowActiveChecked: string;
1827
+ sizeSmall: string;
1828
+ sizeMedium: string;
1829
+ sizeLarge: string;
1830
+ labelPadding: string;
1831
+ }, any>;
1832
+ Input: import("../../_mixins").Theme<"Input", {
1833
+ paddingTiny: string;
1834
+ paddingSmall: string;
1835
+ paddingMedium: string;
1836
+ paddingLarge: string;
1837
+ paddingHuge: string;
1838
+ clearSize: string;
1839
+ countTextColorDisabled: string;
1840
+ countTextColor: string;
1841
+ heightTiny: string;
1842
+ heightSmall: string;
1843
+ heightMedium: string;
1844
+ heightLarge: string;
1845
+ heightHuge: string;
1846
+ fontSizeTiny: string;
1847
+ fontSizeSmall: string;
1848
+ fontSizeMedium: string;
1849
+ fontSizeLarge: string;
1850
+ fontSizeHuge: string;
1851
+ lineHeight: string;
1852
+ lineHeightTextarea: string;
1853
+ borderRadius: string;
1854
+ iconSize: string;
1855
+ groupLabelTextColor: string;
1856
+ textColor: string;
1857
+ textColorDisabled: string;
1858
+ textDecorationColor: string;
1859
+ caretColor: string;
1860
+ placeholderColor: string;
1861
+ placeholderColorDisabled: string;
1862
+ color: string;
1863
+ colorDisabled: string;
1864
+ colorFocus: string;
1865
+ groupLabelBorder: string;
1866
+ border: string;
1867
+ borderHover: string;
1868
+ borderDisabled: string;
1869
+ borderFocus: string;
1870
+ boxShadowFocus: string;
1871
+ loadingColor: string;
1872
+ loadingColorSuccess: string;
1873
+ borderSuccess: string;
1874
+ borderHoverSuccess: string;
1875
+ colorFocusSuccess: string;
1876
+ borderFocusSuccess: string;
1877
+ boxShadowFocusSuccess: string;
1878
+ caretColorSuccess: string;
1879
+ loadingColorWarning: string;
1880
+ borderWarning: string;
1881
+ borderHoverWarning: string;
1882
+ colorFocusWarning: string;
1883
+ borderFocusWarning: string;
1884
+ boxShadowFocusWarning: string;
1885
+ caretColorWarning: string;
1886
+ loadingColorError: string;
1887
+ borderError: string;
1888
+ borderHoverError: string;
1889
+ colorFocusError: string;
1890
+ borderFocusError: string;
1891
+ boxShadowFocusError: string;
1892
+ caretColorError: string;
1893
+ clearColor: string;
1894
+ clearColorHover: string;
1895
+ clearColorPressed: string;
1896
+ iconColor: string;
1897
+ iconColorDisabled: string;
1898
+ iconColorHover: string;
1899
+ iconColorPressed: string;
1900
+ suffixTextColor: string;
1901
+ selectionColor: string;
1902
+ }, any>;
1903
+ }>;
1904
+ }>;
1905
+ Avatar: import("../../_mixins").Theme<"Avatar", {
1906
+ borderRadius: string;
1907
+ fontSize: string;
1908
+ fontWeight: string;
1909
+ border: string;
1910
+ heightTiny: string;
1911
+ heightSmall: string;
1912
+ heightMedium: string;
1913
+ heightLarge: string;
1914
+ textColor: string;
1915
+ iconColor: string;
1916
+ color: string;
1917
+ iconSize: string;
1918
+ }, any>;
1919
+ Badge: import("../../_mixins").Theme<"Badge", {
1920
+ color: string;
1921
+ colorPrime: string;
1922
+ colorInfo: string;
1923
+ colorSuccess: string;
1924
+ colorError: string;
1925
+ colorWarning: string;
1926
+ fontSize: string;
1927
+ textColor: string;
1928
+ textColorPrime: string;
1929
+ textColorInfo: string;
1930
+ textColorSuccess: string;
1931
+ textColorError: string;
1932
+ textColorWarning: string;
1933
+ borderColor: string;
1934
+ dotSize: string;
1935
+ }, any>;
1936
+ Button: import("../../_mixins").Theme<"Button", {
1937
+ heightTiny: string;
1938
+ heightSmall: string;
1939
+ heightMedium: string;
1940
+ heightLarge: string;
1941
+ borderRadiusTiny: string;
1942
+ borderRadiusSmall: string;
1943
+ borderRadiusMedium: string;
1944
+ borderRadiusLarge: string;
1945
+ fontSizeTiny: string;
1946
+ fontSizeSmall: string;
1947
+ fontSizeMedium: string;
1948
+ fontSizeLarge: string;
1949
+ opacityDisabled: string;
1950
+ colorOpacitySecondary: string;
1951
+ colorOpacitySecondaryHover: string;
1952
+ colorOpacitySecondaryPressed: string;
1953
+ colorOpacitySecondaryFocus: string;
1954
+ colorSecondary: string;
1955
+ colorSecondaryHover: string;
1956
+ colorSecondaryPressed: string;
1957
+ colorSecondaryFocus: string;
1958
+ colorSecondaryDisabled: string;
1959
+ textColorSecondaryDisabled: string;
1960
+ waveColorSecondary: string;
1961
+ colorTertiary: string;
1962
+ colorTertiaryHover: string;
1963
+ colorTertiaryPressed: string;
1964
+ colorTertiaryFocus: string;
1965
+ colorTertiaryDisalbed: string;
1966
+ waveColorTertiary: string;
1967
+ textColorTextTertiary: string;
1968
+ rippleColorTertiary: string;
1969
+ colorQuaternary: string;
1970
+ colorQuaternaryHover: string;
1971
+ colorQuaternaryPressed: string;
1972
+ colorQuaternaryFocus: string;
1973
+ rippleColorQuaternary: string;
1974
+ waveColorQuaternary: string;
1975
+ color: string;
1976
+ colorHover: string;
1977
+ colorPressed: string;
1978
+ colorFocus: string;
1979
+ colorDisabled: string;
1980
+ textColor: string;
1981
+ textTertiary: string;
1982
+ textColorTertiary: string;
1983
+ textColorHover: string;
1984
+ textColorPressed: string;
1985
+ textColorFocus: string;
1986
+ textColorDisabled: string;
1987
+ textColorText: string;
1988
+ textColorTextHover: string;
1989
+ textColorTextPressed: string;
1990
+ textColorTextFocus: string;
1991
+ textColorTextDisabled: string;
1992
+ textColorGhost: string;
1993
+ textColorGhostHover: string;
1994
+ textColorGhostPressed: string;
1995
+ textColorGhostFocus: string;
1996
+ textColorGhostDisabled: string;
1997
+ border: string;
1998
+ borderHover: string;
1999
+ borderPressed: string;
2000
+ borderFocus: string;
2001
+ borderDisabled: string;
2002
+ rippleColor: string;
2003
+ colorPrimary: string;
2004
+ colorHoverPrimary: string;
2005
+ colorPressedPrimary: string;
2006
+ colorFocusPrimary: string;
2007
+ colorDisabledPrimary: string;
2008
+ waveColorPrimary: string;
2009
+ textColorPrimary: string;
2010
+ textColorHoverPrimary: string;
2011
+ textColorPressedPrimary: string;
2012
+ textColorFocusPrimary: string;
2013
+ textColorDisabledPrimary: string;
2014
+ textColorTextPrimary: string;
2015
+ textColorTextHoverPrimary: string;
2016
+ textColorTextPressedPrimary: string;
2017
+ textColorTextFocusPrimary: string;
2018
+ textColorTextDisabledPrimary: string;
2019
+ textColorGhostPrimary: string;
2020
+ textColorGhostHoverPrimary: string;
2021
+ textColorGhostPressedPrimary: string;
2022
+ textColorGhostFocusPrimary: string;
2023
+ textColorGhostDisabledPrimary: string;
2024
+ borderPrimary: string;
2025
+ borderHoverPrimary: string;
2026
+ borderPressedPrimary: string;
2027
+ borderFocusPrimary: string;
2028
+ borderDisabledPrimary: string;
2029
+ rippleColorPrimary: string;
2030
+ colorInfo: string;
2031
+ colorHoverInfo: string;
2032
+ colorPressedInfo: string;
2033
+ colorFocusInfo: string;
2034
+ colorDisabledInfo: string;
2035
+ textColorInfo: string;
2036
+ textColorHoverInfo: string;
2037
+ textColorPressedInfo: string;
2038
+ textColorFocusInfo: string;
2039
+ textColorDisabledInfo: string;
2040
+ textColorTextInfo: string;
2041
+ textColorTextHoverInfo: string;
2042
+ textColorTextPressedInfo: string;
2043
+ textColorTextFocusInfo: string;
2044
+ textColorTextDisabledInfo: string;
2045
+ textColorGhostInfo: string;
2046
+ textColorGhostHoverInfo: string;
2047
+ textColorGhostPressedInfo: string;
2048
+ textColorGhostFocusInfo: string;
2049
+ textColorGhostDisabledInfo: string;
2050
+ borderInfo: string;
2051
+ borderHoverInfo: string;
2052
+ borderPressedInfo: string;
2053
+ borderFocusInfo: string;
2054
+ borderDisabledInfo: string;
2055
+ rippleColorInfo: string;
2056
+ colorSuccess: string;
2057
+ colorHoverSuccess: string;
2058
+ colorPressedSuccess: string;
2059
+ colorFocusSuccess: string;
2060
+ colorDisabledSuccess: string;
2061
+ textColorSuccess: string;
2062
+ textColorHoverSuccess: string;
2063
+ textColorPressedSuccess: string;
2064
+ textColorFocusSuccess: string;
2065
+ textColorDisabledSuccess: string;
2066
+ textColorTextSuccess: string;
2067
+ textColorTextHoverSuccess: string;
2068
+ textColorTextPressedSuccess: string;
2069
+ textColorTextFocusSuccess: string;
2070
+ textColorTextDisabledSuccess: string;
2071
+ textColorGhostSuccess: string;
2072
+ textColorGhostHoverSuccess: string;
2073
+ textColorGhostPressedSuccess: string;
2074
+ textColorGhostFocusSuccess: string;
2075
+ textColorGhostDisabledSuccess: string;
2076
+ borderSuccess: string;
2077
+ borderHoverSuccess: string;
2078
+ borderPressedSuccess: string;
2079
+ borderFocusSuccess: string;
2080
+ borderDisabledSuccess: string;
2081
+ rippleColorSuccess: string;
2082
+ colorWarning: string;
2083
+ colorHoverWarning: string;
2084
+ colorPressedWarning: string;
2085
+ colorFocusWarning: string;
2086
+ colorDisabledWarning: string;
2087
+ textColorWarning: string;
2088
+ textColorHoverWarning: string;
2089
+ textColorPressedWarning: string;
2090
+ textColorFocusWarning: string;
2091
+ textColorDisabledWarning: string;
2092
+ textColorTextWarning: string;
2093
+ textColorTextHoverWarning: string;
2094
+ textColorTextPressedWarning: string;
2095
+ textColorTextFocusWarning: string;
2096
+ textColorTextDisabledWarning: string;
2097
+ textColorGhostWarning: string;
2098
+ textColorGhostHoverWarning: string;
2099
+ textColorGhostPressedWarning: string;
2100
+ textColorGhostFocusWarning: string;
2101
+ textColorGhostDisabledWarning: string;
2102
+ borderWarning: string;
2103
+ borderHoverWarning: string;
2104
+ borderPressedWarning: string;
2105
+ borderFocusWarning: string;
2106
+ borderDisabledWarning: string;
2107
+ rippleColorWarning: string;
2108
+ colorError: string;
2109
+ colorHoverError: string;
2110
+ colorPressedError: string;
2111
+ colorFocusError: string;
2112
+ colorDisabledError: string;
2113
+ textColorError: string;
2114
+ textColorHoverError: string;
2115
+ textColorPressedError: string;
2116
+ textColorFocusError: string;
2117
+ textColorDisabledError: string;
2118
+ textColorTextError: string;
2119
+ textColorTextHoverError: string;
2120
+ textColorTextPressedError: string;
2121
+ textColorTextFocusError: string;
2122
+ textColorTextDisabledError: string;
2123
+ textColorGhostError: string;
2124
+ textColorGhostHoverError: string;
2125
+ textColorGhostPressedError: string;
2126
+ textColorGhostFocusError: string;
2127
+ textColorGhostDisabledError: string;
2128
+ borderError: string;
2129
+ borderHoverError: string;
2130
+ borderPressedError: string;
2131
+ borderFocusError: string;
2132
+ borderDisabledError: string;
2133
+ rippleColorError: string;
2134
+ waveOpacity: string;
2135
+ fontWeight: string;
2136
+ fontWeightStrong: string;
2137
+ paddingTiny: string;
2138
+ paddingSmall: string;
2139
+ paddingMedium: string;
2140
+ paddingLarge: string;
2141
+ paddingRoundTiny: string;
2142
+ paddingRoundSmall: string;
2143
+ paddingRoundMedium: string;
2144
+ paddingRoundLarge: string;
2145
+ iconMarginTiny: string;
2146
+ iconMarginSmall: string;
2147
+ iconMarginMedium: string;
2148
+ iconMarginLarge: string;
2149
+ iconSizeTiny: string;
2150
+ iconSizeSmall: string;
2151
+ iconSizeMedium: string;
2152
+ iconSizeLarge: string;
2153
+ rippleDuration: string;
2154
+ }, any>;
2155
+ List: import("../../_mixins").Theme<"List", {
2156
+ iconSize: string;
2157
+ iconSpace: string;
2158
+ suffixSpace: string;
2159
+ prefixSpace: string;
2160
+ subtitleColor: string;
2161
+ avatarSpace: string;
2162
+ colorFocus: string;
2163
+ pressedScale: string;
2164
+ textColorDisabled: string;
2165
+ textColor: string;
2166
+ color: string;
2167
+ colorHover: string;
2168
+ colorModal: string;
2169
+ colorHoverModal: string;
2170
+ colorPopover: string;
2171
+ colorHoverPopover: string;
2172
+ borderColor: string;
2173
+ borderColorModal: string;
2174
+ borderColorPopover: string;
2175
+ borderRadiusLarge: string;
2176
+ borderRadiusMedium: string;
2177
+ borderRadiusSmall: string;
2178
+ padding: string;
2179
+ suffixSize: string;
2180
+ }, any>;
2181
+ Typography: import("../../_mixins").Theme<"Typography", {
2182
+ headerFontSize1: string;
2183
+ headerFontSize2: string;
2184
+ headerFontSize3: string;
2185
+ headerFontSize4: string;
2186
+ headerFontSize5: string;
2187
+ headerFontSize6: string;
2188
+ headerMargin1: string;
2189
+ headerMargin2: string;
2190
+ headerMargin3: string;
2191
+ headerMargin4: string;
2192
+ headerMargin5: string;
2193
+ headerMargin6: string;
2194
+ headerPrefixWidth1: string;
2195
+ headerPrefixWidth2: string;
2196
+ headerPrefixWidth3: string;
2197
+ headerPrefixWidth4: string;
2198
+ headerPrefixWidth5: string;
2199
+ headerPrefixWidth6: string;
2200
+ headerBarWidth1: string;
2201
+ headerBarWidth2: string;
2202
+ headerBarWidth3: string;
2203
+ headerBarWidth4: string;
2204
+ headerBarWidth5: string;
2205
+ headerBarWidth6: string;
2206
+ pMargin: string;
2207
+ margin: string;
2208
+ liMargin: string;
2209
+ olPadding: string;
2210
+ ulPadding: string;
2211
+ aTextColor: string;
2212
+ blockquoteTextColor: string;
2213
+ blockquotePrefixColor: string;
2214
+ blockquoteLineHeight: string;
2215
+ blockquoteFontSize: string;
2216
+ codeBorderRadius: string;
2217
+ liTextColor: string;
2218
+ liLineHeight: string;
2219
+ liFontSize: string;
2220
+ hrColor: string;
2221
+ headerFontWeight: string;
2222
+ headerTextColor: string;
2223
+ pTextColor: string;
2224
+ pTextColor1Depth: string;
2225
+ pTextColor2Depth: string;
2226
+ pTextColor3Depth: string;
2227
+ pLineHeight: string;
2228
+ pFontSize: string;
2229
+ fontSize: string;
2230
+ lineHeight: string;
2231
+ headerBarColor: string;
2232
+ headerBarColorPrimary: string;
2233
+ headerBarColorInfo: string;
2234
+ headerBarColorError: string;
2235
+ headerBarColorWarning: string;
2236
+ headerBarColorSuccess: string;
2237
+ textColor: string;
2238
+ textColor1Depth: string;
2239
+ textColor2Depth: string;
2240
+ textColor3Depth: string;
2241
+ textColorPrimary: string;
2242
+ textColorInfo: string;
2243
+ textColorSuccess: string;
2244
+ textColorWarning: string;
2245
+ textColorError: string;
2246
+ codeTextColor: string;
2247
+ codeColor: string;
2248
+ codeBorder: string;
2249
+ }, any>;
2250
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
2251
+ messageBubbleBackgroundColorOwn: string;
2252
+ messageBubbleBackgroundColorOther: string;
2253
+ messageBubbleTextColorOwn: string;
2254
+ messageBubbleTextColorOther: string;
2255
+ messageTimeColor: string;
2256
+ messageStatusReadColor: string;
2257
+ messageStatusSuccessColor: string;
2258
+ attachmentBackgroundColorOwn: string;
2259
+ attachmentBackgroundColorOther: string;
2260
+ messageErrorColor: string;
2261
+ messageBorderRadius: string;
2262
+ unreadNotificationBackgroundColor: string;
2263
+ unreadNotificationTextColor: string;
2264
+ serviceMessageTextColor: string;
2265
+ serviceMessageBackgroundColor: string;
2266
+ messageTitleColor: string;
2267
+ }, {
2268
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
2269
+ color: string;
2270
+ opacity1Depth: string;
2271
+ opacity2Depth: string;
2272
+ opacity3Depth: string;
2273
+ opacity4Depth: string;
2274
+ opacity5Depth: string;
2275
+ }, any>;
2276
+ }>;
2277
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
2278
+ color: string;
2279
+ opacity1Depth: string;
2280
+ opacity2Depth: string;
2281
+ opacity3Depth: string;
2282
+ opacity4Depth: string;
2283
+ opacity5Depth: string;
2284
+ }, any>;
2285
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
2286
+ color: string;
2287
+ opacity1Depth: string;
2288
+ opacity2Depth: string;
2289
+ opacity3Depth: string;
2290
+ opacity4Depth: string;
2291
+ opacity5Depth: string;
2292
+ }, any>;
2293
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
2294
+ color: string;
2295
+ opacity1Depth: string;
2296
+ opacity2Depth: string;
2297
+ opacity3Depth: string;
2298
+ opacity4Depth: string;
2299
+ opacity5Depth: string;
2300
+ }, any>;
2301
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
2302
+ color: string;
2303
+ opacity1Depth: string;
2304
+ opacity2Depth: string;
2305
+ opacity3Depth: string;
2306
+ opacity4Depth: string;
2307
+ opacity5Depth: string;
2308
+ }, any>;
2309
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
2310
+ color: string;
2311
+ opacity1Depth: string;
2312
+ opacity2Depth: string;
2313
+ opacity3Depth: string;
2314
+ opacity4Depth: string;
2315
+ opacity5Depth: string;
2316
+ }, any>;
2317
+ }>>>;
2318
+ builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
2319
+ backgroundColor: string;
2320
+ borderColor: string;
2321
+ sidebarBackgroundColor: string;
2322
+ sidebarBorderColor: string;
2323
+ sidebarItemBackgroundColor: string;
2324
+ sidebarItemBackgroundColorHover: string;
2325
+ sidebarItemBackgroundColorSelected: string;
2326
+ sidebarItemTextColor: string;
2327
+ sidebarItemTextColorSelected: string;
2328
+ sidebarItemSubtitleColor: string;
2329
+ sidebarItemTimeColor: string;
2330
+ mainBackgroundColor: string;
2331
+ headerBackgroundColor: string;
2332
+ headerBorderColor: string;
2333
+ headerTitleColor: string;
2334
+ messageBubbleBackgroundColorOwn: string;
2335
+ messageBubbleBackgroundColorOther: string;
2336
+ messageBubbleTextColorOwn: string;
2337
+ messageBubbleTextColorOther: string;
2338
+ messageTimeColor: string;
2339
+ messageStatusColor: string;
2340
+ attachmentBackgroundColorOwn: string;
2341
+ attachmentBackgroundColorOther: string;
2342
+ footerBackgroundColor: string;
2343
+ footerBorderColor: string;
2344
+ inputBackgroundColor: string;
2345
+ inputBorderColor: string;
2346
+ inputSuffixColor: string;
2347
+ unreadNotificationBackgroundColor: string;
2348
+ unreadNotificationTextColor: string;
2349
+ typingIndicatorColor: string;
2350
+ dateSeparatorColor: string;
2351
+ dateSeparatorBackgroundColor: string;
2352
+ borderRadius: string;
2353
+ errorColor: string;
2354
+ }, {
2355
+ Input: import("../../_mixins").Theme<"Input", {
2356
+ paddingTiny: string;
2357
+ paddingSmall: string;
2358
+ paddingMedium: string;
2359
+ paddingLarge: string;
2360
+ paddingHuge: string;
2361
+ clearSize: string;
2362
+ countTextColorDisabled: string;
2363
+ countTextColor: string;
2364
+ heightTiny: string;
2365
+ heightSmall: string;
2366
+ heightMedium: string;
2367
+ heightLarge: string;
2368
+ heightHuge: string;
2369
+ fontSizeTiny: string;
2370
+ fontSizeSmall: string;
2371
+ fontSizeMedium: string;
2372
+ fontSizeLarge: string;
2373
+ fontSizeHuge: string;
2374
+ lineHeight: string;
2375
+ lineHeightTextarea: string;
2376
+ borderRadius: string;
2377
+ iconSize: string;
2378
+ groupLabelTextColor: string;
2379
+ textColor: string;
2380
+ textColorDisabled: string;
2381
+ textDecorationColor: string;
2382
+ caretColor: string;
2383
+ placeholderColor: string;
2384
+ placeholderColorDisabled: string;
2385
+ color: string;
2386
+ colorDisabled: string;
2387
+ colorFocus: string;
2388
+ groupLabelBorder: string;
2389
+ border: string;
2390
+ borderHover: string;
2391
+ borderDisabled: string;
2392
+ borderFocus: string;
2393
+ boxShadowFocus: string;
2394
+ loadingColor: string;
2395
+ loadingColorSuccess: string;
2396
+ borderSuccess: string;
2397
+ borderHoverSuccess: string;
2398
+ colorFocusSuccess: string;
2399
+ borderFocusSuccess: string;
2400
+ boxShadowFocusSuccess: string;
2401
+ caretColorSuccess: string;
2402
+ loadingColorWarning: string;
2403
+ borderWarning: string;
2404
+ borderHoverWarning: string;
2405
+ colorFocusWarning: string;
2406
+ borderFocusWarning: string;
2407
+ boxShadowFocusWarning: string;
2408
+ caretColorWarning: string;
2409
+ loadingColorError: string;
2410
+ borderError: string;
2411
+ borderHoverError: string;
2412
+ colorFocusError: string;
2413
+ borderFocusError: string;
2414
+ boxShadowFocusError: string;
2415
+ caretColorError: string;
2416
+ clearColor: string;
2417
+ clearColorHover: string;
2418
+ clearColorPressed: string;
2419
+ iconColor: string;
2420
+ iconColorDisabled: string;
2421
+ iconColorHover: string;
2422
+ iconColorPressed: string;
2423
+ suffixTextColor: string;
2424
+ selectionColor: string;
2425
+ }, any>;
2426
+ Empty: import("../../_mixins").Theme<"Empty", {
2427
+ iconSizeSmall: string;
2428
+ iconSizeMedium: string;
2429
+ iconSizeLarge: string;
2430
+ iconSizeHuge: string;
2431
+ titleFontSizeSmall: string;
2432
+ titleFontSizeMedium: string;
2433
+ titleFontSizeLarge: string;
2434
+ titleFontSizeHuge: string;
2435
+ descriptionFontSizeSmall: string;
2436
+ descriptionFontSizeMedium: string;
2437
+ descriptionFontSizeLarge: string;
2438
+ descriptionFontSizeHuge: string;
2439
+ titleColor: string;
2440
+ descriptionColor: string;
2441
+ iconColor: string;
2442
+ iconBgColor: string;
2443
+ extraTextColor: string;
2444
+ }, any>;
2445
+ Select: import("../../_mixins").Theme<"Select", {
2446
+ menuBoxShadow: string;
2447
+ }, {
2448
+ InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
2449
+ paddingTiny: string;
2450
+ paddingSmall: string;
2451
+ paddingMedium: string;
2452
+ paddingLarge: string;
2453
+ paddingHuge: string;
2454
+ clearSizeTiny: string;
2455
+ clearSizeSmall: string;
2456
+ clearSizeMedium: string;
2457
+ clearSizeLarge: string;
2458
+ clearSizeHuge: string;
2459
+ arrowSizeTiny: string;
2460
+ arrowSizeSmall: string;
2461
+ arrowSizeMedium: string;
2462
+ arrowSizeLarge: string;
2463
+ arrowSizeHuge: string;
2464
+ fontSizeTiny: string;
2465
+ fontSizeSmall: string;
2466
+ fontSizeMedium: string;
2467
+ fontSizeLarge: string;
2468
+ fontSizeHuge: string;
2469
+ lineHeightTiny: string;
2470
+ lineHeightSmall: string;
2471
+ lineHeightMedium: string;
2472
+ lineHeightLarge: string;
2473
+ lineHeightHuge: string;
2474
+ heightTiny: string;
2475
+ heightSmall: string;
2476
+ heightMedium: string;
2477
+ heightLarge: string;
2478
+ heightHuge: string;
2479
+ borderRadiusTiny: string;
2480
+ borderRadiusSmall: string;
2481
+ borderRadiusMedium: string;
2482
+ borderRadiusLarge: string;
2483
+ borderRadiusHuge: string;
2484
+ textColor: string;
2485
+ textColorDisabled: string;
2486
+ placeholderColor: string;
2487
+ placeholderColorDisabled: string;
2488
+ color: string;
2489
+ colorFilled: string;
2490
+ colorDisabled: string;
2491
+ colorActive: string;
2492
+ border: string;
2493
+ borderFilled: string;
2494
+ borderHover: string;
2495
+ borderActive: string;
2496
+ borderFocus: string;
2497
+ borderDisabled: string;
2498
+ boxShadowHover: string;
2499
+ boxShadowActive: string;
2500
+ boxShadowFocus: string;
2501
+ caretColor: string;
2502
+ arrowColor: string;
2503
+ arrowColorHover: string;
2504
+ arrowColorDisabled: string;
2505
+ loadingColor: string;
2506
+ borderWarning: string;
2507
+ borderHoverWarning: string;
2508
+ borderActiveWarning: string;
2509
+ borderFocusWarning: string;
2510
+ boxShadowHoverWarning: string;
2511
+ boxShadowActiveWarning: string;
2512
+ boxShadowFocusWarning: string;
2513
+ colorActiveWarning: string;
2514
+ caretColorWarning: string;
2515
+ borderError: string;
2516
+ borderHoverError: string;
2517
+ borderActiveError: string;
2518
+ borderFocusError: string;
2519
+ boxShadowHoverError: string;
2520
+ boxShadowActiveError: string;
2521
+ boxShadowFocusError: string;
2522
+ colorActiveError: string;
2523
+ caretColorError: string;
2524
+ clearColor: string;
2525
+ clearColorHover: string;
2526
+ clearColorPressed: string;
2527
+ caretColorSecondary: string;
2528
+ filterCounterTextColor: string;
2529
+ filterCounterTextColorDisabled: string;
2530
+ arrowColorSecondary: string;
2531
+ clearColorSecondary: string;
2532
+ colorSecondary: string;
2533
+ textColorSecondary: string;
2534
+ borderSecondary: string;
2535
+ arrowColorDisabledSecondary: string;
2536
+ clearColorDisabledSecondary: string;
2537
+ colorDisabledSecondary: string;
2538
+ textColorDisabledSecondary: string;
2539
+ borderDisabledSecondary: string;
2540
+ arrowColorHoverSecondary: string;
2541
+ clearColorHoverSecondary: string;
2542
+ colorHoverSecondary: string;
2543
+ textColorHoverSecondary: string;
2544
+ borderHoverSecondary: string;
2545
+ arrowColorFocusSecondary: string;
2546
+ clearColorFocusSecondary: string;
2547
+ colorFocusSecondary: string;
2548
+ textColorFocusSecondary: string;
2549
+ borderFocusSecondary: string;
2550
+ arrowColorActiveSecondary: string;
2551
+ clearColorActiveSecondary: string;
2552
+ colorActiveSecondary: string;
2553
+ textColorActiveSecondary: string;
2554
+ borderActiveSecondary: string;
2555
+ }, {
2556
+ Popover: import("../../_mixins").Theme<"Popover", {
2557
+ space: string;
2558
+ spaceArrow: string;
2559
+ arrowOffset: string;
2560
+ arrowOffsetVertical: string;
2561
+ arrowHeight: string;
2562
+ padding: string;
2563
+ fontSize: string;
2564
+ borderRadius: string;
2565
+ color: string;
2566
+ dividerColor: string;
2567
+ textColor: string;
2568
+ boxShadow: string;
2569
+ }, any>;
2570
+ }>;
2571
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
2572
+ height: string;
2573
+ paddingSmall: string;
2574
+ paddingMedium: string;
2575
+ paddingLarge: string;
2576
+ optionPaddingSmall: string;
2577
+ optionPaddingMedium: string;
2578
+ optionPaddingLarge: string;
2579
+ loadingSize: string;
2580
+ optionFontSizeSmall: string;
2581
+ optionFontSizeMedium: string;
2582
+ optionFontSizeLarge: string;
2583
+ optionHeightSmall: string;
2584
+ optionHeightMedium: string;
2585
+ optionHeightLarge: string;
2586
+ optionBorderRadius: string;
2587
+ borderRadius: string;
2588
+ color: string;
2589
+ groupHeaderTextColor: string;
2590
+ actionDividerColor: string;
2591
+ optionTextColor: string;
2592
+ optionTextColorPressed: string;
2593
+ optionTextColorDisabled: string;
2594
+ optionTextColorActive: string;
2595
+ optionOpacityDisabled: string;
2596
+ optionCheckColor: string;
2597
+ optionColorPending: string;
2598
+ optionColorActive: string;
2599
+ optionGroupHeaderBorderColor: string;
2600
+ optionColorActivePending: string;
2601
+ actionTextColor: string;
2602
+ loadingColor: string;
2603
+ }, {
2604
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2605
+ height: string;
2606
+ width: string;
2607
+ borderRadius: string;
2608
+ color: string;
2609
+ colorHover: string;
2610
+ railInsetHorizontalBottom: string;
2611
+ railInsetHorizontalTop: string;
2612
+ railInsetVerticalRight: string;
2613
+ railInsetVerticalLeft: string;
2614
+ railColor: string;
2615
+ }, any>;
2616
+ Empty: import("../../_mixins").Theme<"Empty", {
2617
+ iconSizeSmall: string;
2618
+ iconSizeMedium: string;
2619
+ iconSizeLarge: string;
2620
+ iconSizeHuge: string;
2621
+ titleFontSizeSmall: string;
2622
+ titleFontSizeMedium: string;
2623
+ titleFontSizeLarge: string;
2624
+ titleFontSizeHuge: string;
2625
+ descriptionFontSizeSmall: string;
2626
+ descriptionFontSizeMedium: string;
2627
+ descriptionFontSizeLarge: string;
2628
+ descriptionFontSizeHuge: string;
2629
+ titleColor: string;
2630
+ descriptionColor: string;
2631
+ iconColor: string;
2632
+ iconBgColor: string;
2633
+ extraTextColor: string;
2634
+ }, any>;
2635
+ Checkbox: import("../../_mixins").Theme<"Checkbox", {
2636
+ fontWeight: string;
2637
+ textColor: string;
2638
+ descriptionTextColor: string;
2639
+ textColorDisabled: string;
2640
+ descriptionTextColorDisabled: string;
2641
+ fontSizeLarge: string;
2642
+ fontSizeMedium: string;
2643
+ fontSizeSmall: string;
2644
+ lineHeightLarge: string;
2645
+ lineHeightMedium: string;
2646
+ lineHeightSmall: string;
2647
+ borderRadiusLarge: string;
2648
+ borderRadiusMedium: string;
2649
+ borderRadiusSmall: string;
2650
+ color: string;
2651
+ colorHover: string;
2652
+ colorFocus: string;
2653
+ colorActive: string;
2654
+ colorChecked: string;
2655
+ colorHoverChecked: string;
2656
+ colorFocusChecked: string;
2657
+ colorActiveChecked: string;
2658
+ colorDisabled: string;
2659
+ colorDisabledChecked: string;
2660
+ checkMarkColor: string;
2661
+ checkMarkColorHover: string;
2662
+ checkMarkColorFocus: string;
2663
+ checkMarkColorActive: string;
2664
+ checkMarkColorDisabled: string;
2665
+ checkMarkColorDisabledChecked: string;
2666
+ border: string;
2667
+ borderHover: string;
2668
+ borderFocus: string;
2669
+ borderActive: string;
2670
+ borderChecked: string;
2671
+ borderHoverChecked: string;
2672
+ borderFocusChecked: string;
2673
+ borderActiveChecked: string;
2674
+ borderDisabled: string;
2675
+ borderDisabledChecked: string;
2676
+ boxShadowHover: string;
2677
+ boxShadowFocus: string;
2678
+ boxShadowActive: string;
2679
+ boxShadowHoverChecked: string;
2680
+ boxShadowFocusChecked: string;
2681
+ boxShadowActiveChecked: string;
2682
+ sizeSmall: string;
2683
+ sizeMedium: string;
2684
+ sizeLarge: string;
2685
+ labelPadding: string;
2686
+ }, any>;
2687
+ Input: import("../../_mixins").Theme<"Input", {
2688
+ paddingTiny: string;
2689
+ paddingSmall: string;
2690
+ paddingMedium: string;
2691
+ paddingLarge: string;
2692
+ paddingHuge: string;
2693
+ clearSize: string;
2694
+ countTextColorDisabled: string;
2695
+ countTextColor: string;
2696
+ heightTiny: string;
2697
+ heightSmall: string;
2698
+ heightMedium: string;
2699
+ heightLarge: string;
2700
+ heightHuge: string;
2701
+ fontSizeTiny: string;
2702
+ fontSizeSmall: string;
2703
+ fontSizeMedium: string;
2704
+ fontSizeLarge: string;
2705
+ fontSizeHuge: string;
2706
+ lineHeight: string;
2707
+ lineHeightTextarea: string;
2708
+ borderRadius: string;
2709
+ iconSize: string;
2710
+ groupLabelTextColor: string;
2711
+ textColor: string;
2712
+ textColorDisabled: string;
2713
+ textDecorationColor: string;
2714
+ caretColor: string;
2715
+ placeholderColor: string;
2716
+ placeholderColorDisabled: string;
2717
+ color: string;
2718
+ colorDisabled: string;
2719
+ colorFocus: string;
2720
+ groupLabelBorder: string;
2721
+ border: string;
2722
+ borderHover: string;
2723
+ borderDisabled: string;
2724
+ borderFocus: string;
2725
+ boxShadowFocus: string;
2726
+ loadingColor: string;
2727
+ loadingColorSuccess: string;
2728
+ borderSuccess: string;
2729
+ borderHoverSuccess: string;
2730
+ colorFocusSuccess: string;
2731
+ borderFocusSuccess: string;
2732
+ boxShadowFocusSuccess: string;
2733
+ caretColorSuccess: string;
2734
+ loadingColorWarning: string;
2735
+ borderWarning: string;
2736
+ borderHoverWarning: string;
2737
+ colorFocusWarning: string;
2738
+ borderFocusWarning: string;
2739
+ boxShadowFocusWarning: string;
2740
+ caretColorWarning: string;
2741
+ loadingColorError: string;
2742
+ borderError: string;
2743
+ borderHoverError: string;
2744
+ colorFocusError: string;
2745
+ borderFocusError: string;
2746
+ boxShadowFocusError: string;
2747
+ caretColorError: string;
2748
+ clearColor: string;
2749
+ clearColorHover: string;
2750
+ clearColorPressed: string;
2751
+ iconColor: string;
2752
+ iconColorDisabled: string;
2753
+ iconColorHover: string;
2754
+ iconColorPressed: string;
2755
+ suffixTextColor: string;
2756
+ selectionColor: string;
2757
+ }, any>;
2758
+ }>;
2759
+ }>;
2760
+ Avatar: import("../../_mixins").Theme<"Avatar", {
2761
+ borderRadius: string;
2762
+ fontSize: string;
2763
+ fontWeight: string;
2764
+ border: string;
2765
+ heightTiny: string;
2766
+ heightSmall: string;
2767
+ heightMedium: string;
2768
+ heightLarge: string;
2769
+ textColor: string;
2770
+ iconColor: string;
2771
+ color: string;
2772
+ iconSize: string;
2773
+ }, any>;
2774
+ Badge: import("../../_mixins").Theme<"Badge", {
2775
+ color: string;
2776
+ colorPrime: string;
2777
+ colorInfo: string;
2778
+ colorSuccess: string;
2779
+ colorError: string;
2780
+ colorWarning: string;
2781
+ fontSize: string;
2782
+ textColor: string;
2783
+ textColorPrime: string;
2784
+ textColorInfo: string;
2785
+ textColorSuccess: string;
2786
+ textColorError: string;
2787
+ textColorWarning: string;
2788
+ borderColor: string;
2789
+ dotSize: string;
2790
+ }, any>;
2791
+ Button: import("../../_mixins").Theme<"Button", {
2792
+ heightTiny: string;
2793
+ heightSmall: string;
2794
+ heightMedium: string;
2795
+ heightLarge: string;
2796
+ borderRadiusTiny: string;
2797
+ borderRadiusSmall: string;
2798
+ borderRadiusMedium: string;
2799
+ borderRadiusLarge: string;
2800
+ fontSizeTiny: string;
2801
+ fontSizeSmall: string;
2802
+ fontSizeMedium: string;
2803
+ fontSizeLarge: string;
2804
+ opacityDisabled: string;
2805
+ colorOpacitySecondary: string;
2806
+ colorOpacitySecondaryHover: string;
2807
+ colorOpacitySecondaryPressed: string;
2808
+ colorOpacitySecondaryFocus: string;
2809
+ colorSecondary: string;
2810
+ colorSecondaryHover: string;
2811
+ colorSecondaryPressed: string;
2812
+ colorSecondaryFocus: string;
2813
+ colorSecondaryDisabled: string;
2814
+ textColorSecondaryDisabled: string;
2815
+ waveColorSecondary: string;
2816
+ colorTertiary: string;
2817
+ colorTertiaryHover: string;
2818
+ colorTertiaryPressed: string;
2819
+ colorTertiaryFocus: string;
2820
+ colorTertiaryDisalbed: string;
2821
+ waveColorTertiary: string;
2822
+ textColorTextTertiary: string;
2823
+ rippleColorTertiary: string;
2824
+ colorQuaternary: string;
2825
+ colorQuaternaryHover: string;
2826
+ colorQuaternaryPressed: string;
2827
+ colorQuaternaryFocus: string;
2828
+ rippleColorQuaternary: string;
2829
+ waveColorQuaternary: string;
2830
+ color: string;
2831
+ colorHover: string;
2832
+ colorPressed: string;
2833
+ colorFocus: string;
2834
+ colorDisabled: string;
2835
+ textColor: string;
2836
+ textTertiary: string;
2837
+ textColorTertiary: string;
2838
+ textColorHover: string;
2839
+ textColorPressed: string;
2840
+ textColorFocus: string;
2841
+ textColorDisabled: string;
2842
+ textColorText: string;
2843
+ textColorTextHover: string;
2844
+ textColorTextPressed: string;
2845
+ textColorTextFocus: string;
2846
+ textColorTextDisabled: string;
2847
+ textColorGhost: string;
2848
+ textColorGhostHover: string;
2849
+ textColorGhostPressed: string;
2850
+ textColorGhostFocus: string;
2851
+ textColorGhostDisabled: string;
2852
+ border: string;
2853
+ borderHover: string;
2854
+ borderPressed: string;
2855
+ borderFocus: string;
2856
+ borderDisabled: string;
2857
+ rippleColor: string;
2858
+ colorPrimary: string;
2859
+ colorHoverPrimary: string;
2860
+ colorPressedPrimary: string;
2861
+ colorFocusPrimary: string;
2862
+ colorDisabledPrimary: string;
2863
+ waveColorPrimary: string;
2864
+ textColorPrimary: string;
2865
+ textColorHoverPrimary: string;
2866
+ textColorPressedPrimary: string;
2867
+ textColorFocusPrimary: string;
2868
+ textColorDisabledPrimary: string;
2869
+ textColorTextPrimary: string;
2870
+ textColorTextHoverPrimary: string;
2871
+ textColorTextPressedPrimary: string;
2872
+ textColorTextFocusPrimary: string;
2873
+ textColorTextDisabledPrimary: string;
2874
+ textColorGhostPrimary: string;
2875
+ textColorGhostHoverPrimary: string;
2876
+ textColorGhostPressedPrimary: string;
2877
+ textColorGhostFocusPrimary: string;
2878
+ textColorGhostDisabledPrimary: string;
2879
+ borderPrimary: string;
2880
+ borderHoverPrimary: string;
2881
+ borderPressedPrimary: string;
2882
+ borderFocusPrimary: string;
2883
+ borderDisabledPrimary: string;
2884
+ rippleColorPrimary: string;
2885
+ colorInfo: string;
2886
+ colorHoverInfo: string;
2887
+ colorPressedInfo: string;
2888
+ colorFocusInfo: string;
2889
+ colorDisabledInfo: string;
2890
+ textColorInfo: string;
2891
+ textColorHoverInfo: string;
2892
+ textColorPressedInfo: string;
2893
+ textColorFocusInfo: string;
2894
+ textColorDisabledInfo: string;
2895
+ textColorTextInfo: string;
2896
+ textColorTextHoverInfo: string;
2897
+ textColorTextPressedInfo: string;
2898
+ textColorTextFocusInfo: string;
2899
+ textColorTextDisabledInfo: string;
2900
+ textColorGhostInfo: string;
2901
+ textColorGhostHoverInfo: string;
2902
+ textColorGhostPressedInfo: string;
2903
+ textColorGhostFocusInfo: string;
2904
+ textColorGhostDisabledInfo: string;
2905
+ borderInfo: string;
2906
+ borderHoverInfo: string;
2907
+ borderPressedInfo: string;
2908
+ borderFocusInfo: string;
2909
+ borderDisabledInfo: string;
2910
+ rippleColorInfo: string;
2911
+ colorSuccess: string;
2912
+ colorHoverSuccess: string;
2913
+ colorPressedSuccess: string;
2914
+ colorFocusSuccess: string;
2915
+ colorDisabledSuccess: string;
2916
+ textColorSuccess: string;
2917
+ textColorHoverSuccess: string;
2918
+ textColorPressedSuccess: string;
2919
+ textColorFocusSuccess: string;
2920
+ textColorDisabledSuccess: string;
2921
+ textColorTextSuccess: string;
2922
+ textColorTextHoverSuccess: string;
2923
+ textColorTextPressedSuccess: string;
2924
+ textColorTextFocusSuccess: string;
2925
+ textColorTextDisabledSuccess: string;
2926
+ textColorGhostSuccess: string;
2927
+ textColorGhostHoverSuccess: string;
2928
+ textColorGhostPressedSuccess: string;
2929
+ textColorGhostFocusSuccess: string;
2930
+ textColorGhostDisabledSuccess: string;
2931
+ borderSuccess: string;
2932
+ borderHoverSuccess: string;
2933
+ borderPressedSuccess: string;
2934
+ borderFocusSuccess: string;
2935
+ borderDisabledSuccess: string;
2936
+ rippleColorSuccess: string;
2937
+ colorWarning: string;
2938
+ colorHoverWarning: string;
2939
+ colorPressedWarning: string;
2940
+ colorFocusWarning: string;
2941
+ colorDisabledWarning: string;
2942
+ textColorWarning: string;
2943
+ textColorHoverWarning: string;
2944
+ textColorPressedWarning: string;
2945
+ textColorFocusWarning: string;
2946
+ textColorDisabledWarning: string;
2947
+ textColorTextWarning: string;
2948
+ textColorTextHoverWarning: string;
2949
+ textColorTextPressedWarning: string;
2950
+ textColorTextFocusWarning: string;
2951
+ textColorTextDisabledWarning: string;
2952
+ textColorGhostWarning: string;
2953
+ textColorGhostHoverWarning: string;
2954
+ textColorGhostPressedWarning: string;
2955
+ textColorGhostFocusWarning: string;
2956
+ textColorGhostDisabledWarning: string;
2957
+ borderWarning: string;
2958
+ borderHoverWarning: string;
2959
+ borderPressedWarning: string;
2960
+ borderFocusWarning: string;
2961
+ borderDisabledWarning: string;
2962
+ rippleColorWarning: string;
2963
+ colorError: string;
2964
+ colorHoverError: string;
2965
+ colorPressedError: string;
2966
+ colorFocusError: string;
2967
+ colorDisabledError: string;
2968
+ textColorError: string;
2969
+ textColorHoverError: string;
2970
+ textColorPressedError: string;
2971
+ textColorFocusError: string;
2972
+ textColorDisabledError: string;
2973
+ textColorTextError: string;
2974
+ textColorTextHoverError: string;
2975
+ textColorTextPressedError: string;
2976
+ textColorTextFocusError: string;
2977
+ textColorTextDisabledError: string;
2978
+ textColorGhostError: string;
2979
+ textColorGhostHoverError: string;
2980
+ textColorGhostPressedError: string;
2981
+ textColorGhostFocusError: string;
2982
+ textColorGhostDisabledError: string;
2983
+ borderError: string;
2984
+ borderHoverError: string;
2985
+ borderPressedError: string;
2986
+ borderFocusError: string;
2987
+ borderDisabledError: string;
2988
+ rippleColorError: string;
2989
+ waveOpacity: string;
2990
+ fontWeight: string;
2991
+ fontWeightStrong: string;
2992
+ paddingTiny: string;
2993
+ paddingSmall: string;
2994
+ paddingMedium: string;
2995
+ paddingLarge: string;
2996
+ paddingRoundTiny: string;
2997
+ paddingRoundSmall: string;
2998
+ paddingRoundMedium: string;
2999
+ paddingRoundLarge: string;
3000
+ iconMarginTiny: string;
3001
+ iconMarginSmall: string;
3002
+ iconMarginMedium: string;
3003
+ iconMarginLarge: string;
3004
+ iconSizeTiny: string;
3005
+ iconSizeSmall: string;
3006
+ iconSizeMedium: string;
3007
+ iconSizeLarge: string;
3008
+ rippleDuration: string;
3009
+ }, any>;
3010
+ List: import("../../_mixins").Theme<"List", {
3011
+ iconSize: string;
3012
+ iconSpace: string;
3013
+ suffixSpace: string;
3014
+ prefixSpace: string;
3015
+ subtitleColor: string;
3016
+ avatarSpace: string;
3017
+ colorFocus: string;
3018
+ pressedScale: string;
3019
+ textColorDisabled: string;
3020
+ textColor: string;
3021
+ color: string;
3022
+ colorHover: string;
3023
+ colorModal: string;
3024
+ colorHoverModal: string;
3025
+ colorPopover: string;
3026
+ colorHoverPopover: string;
3027
+ borderColor: string;
3028
+ borderColorModal: string;
3029
+ borderColorPopover: string;
3030
+ borderRadiusLarge: string;
3031
+ borderRadiusMedium: string;
3032
+ borderRadiusSmall: string;
3033
+ padding: string;
3034
+ suffixSize: string;
3035
+ }, any>;
3036
+ Typography: import("../../_mixins").Theme<"Typography", {
3037
+ headerFontSize1: string;
3038
+ headerFontSize2: string;
3039
+ headerFontSize3: string;
3040
+ headerFontSize4: string;
3041
+ headerFontSize5: string;
3042
+ headerFontSize6: string;
3043
+ headerMargin1: string;
3044
+ headerMargin2: string;
3045
+ headerMargin3: string;
3046
+ headerMargin4: string;
3047
+ headerMargin5: string;
3048
+ headerMargin6: string;
3049
+ headerPrefixWidth1: string;
3050
+ headerPrefixWidth2: string;
3051
+ headerPrefixWidth3: string;
3052
+ headerPrefixWidth4: string;
3053
+ headerPrefixWidth5: string;
3054
+ headerPrefixWidth6: string;
3055
+ headerBarWidth1: string;
3056
+ headerBarWidth2: string;
3057
+ headerBarWidth3: string;
3058
+ headerBarWidth4: string;
3059
+ headerBarWidth5: string;
3060
+ headerBarWidth6: string;
3061
+ pMargin: string;
3062
+ margin: string;
3063
+ liMargin: string;
3064
+ olPadding: string;
3065
+ ulPadding: string;
3066
+ aTextColor: string;
3067
+ blockquoteTextColor: string;
3068
+ blockquotePrefixColor: string;
3069
+ blockquoteLineHeight: string;
3070
+ blockquoteFontSize: string;
3071
+ codeBorderRadius: string;
3072
+ liTextColor: string;
3073
+ liLineHeight: string;
3074
+ liFontSize: string;
3075
+ hrColor: string;
3076
+ headerFontWeight: string;
3077
+ headerTextColor: string;
3078
+ pTextColor: string;
3079
+ pTextColor1Depth: string;
3080
+ pTextColor2Depth: string;
3081
+ pTextColor3Depth: string;
3082
+ pLineHeight: string;
3083
+ pFontSize: string;
3084
+ fontSize: string;
3085
+ lineHeight: string;
3086
+ headerBarColor: string;
3087
+ headerBarColorPrimary: string;
3088
+ headerBarColorInfo: string;
3089
+ headerBarColorError: string;
3090
+ headerBarColorWarning: string;
3091
+ headerBarColorSuccess: string;
3092
+ textColor: string;
3093
+ textColor1Depth: string;
3094
+ textColor2Depth: string;
3095
+ textColor3Depth: string;
3096
+ textColorPrimary: string;
3097
+ textColorInfo: string;
3098
+ textColorSuccess: string;
3099
+ textColorWarning: string;
3100
+ textColorError: string;
3101
+ codeTextColor: string;
3102
+ codeColor: string;
3103
+ codeBorder: string;
3104
+ }, any>;
3105
+ MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
3106
+ messageBubbleBackgroundColorOwn: string;
3107
+ messageBubbleBackgroundColorOther: string;
3108
+ messageBubbleTextColorOwn: string;
3109
+ messageBubbleTextColorOther: string;
3110
+ messageTimeColor: string;
3111
+ messageStatusReadColor: string;
3112
+ messageStatusSuccessColor: string;
3113
+ attachmentBackgroundColorOwn: string;
3114
+ attachmentBackgroundColorOther: string;
3115
+ messageErrorColor: string;
3116
+ messageBorderRadius: string;
3117
+ unreadNotificationBackgroundColor: string;
3118
+ unreadNotificationTextColor: string;
3119
+ serviceMessageTextColor: string;
3120
+ serviceMessageBackgroundColor: string;
3121
+ messageTitleColor: string;
3122
+ }, {
3123
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
3124
+ color: string;
3125
+ opacity1Depth: string;
3126
+ opacity2Depth: string;
3127
+ opacity3Depth: string;
3128
+ opacity4Depth: string;
3129
+ opacity5Depth: string;
3130
+ }, any>;
3131
+ }>;
3132
+ StatusIcon: import("../../_mixins").Theme<"Icon", {
3133
+ color: string;
3134
+ opacity1Depth: string;
3135
+ opacity2Depth: string;
3136
+ opacity3Depth: string;
3137
+ opacity4Depth: string;
3138
+ opacity5Depth: string;
3139
+ }, any>;
3140
+ FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
3141
+ color: string;
3142
+ opacity1Depth: string;
3143
+ opacity2Depth: string;
3144
+ opacity3Depth: string;
3145
+ opacity4Depth: string;
3146
+ opacity5Depth: string;
3147
+ }, any>;
3148
+ FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
3149
+ color: string;
3150
+ opacity1Depth: string;
3151
+ opacity2Depth: string;
3152
+ opacity3Depth: string;
3153
+ opacity4Depth: string;
3154
+ opacity5Depth: string;
3155
+ }, any>;
3156
+ HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
3157
+ color: string;
3158
+ opacity1Depth: string;
3159
+ opacity2Depth: string;
3160
+ opacity3Depth: string;
3161
+ opacity4Depth: string;
3162
+ opacity5Depth: string;
3163
+ }, any>;
3164
+ HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
3165
+ color: string;
3166
+ opacity1Depth: string;
3167
+ opacity2Depth: string;
3168
+ opacity3Depth: string;
3169
+ opacity4Depth: string;
3170
+ opacity5Depth: string;
3171
+ }, any>;
3172
+ }>>>;
3173
+ };
3174
+ export type ChatProps = ExtractPublicPropTypes<typeof chatProps>;