@bothub-chat/ui 2.48.1-fix-refactor-e9e5211d-1338-4645-8201-f19d80c72c33 → 2.48.1-fix-refactor-aefd59c8-ddc6-4440-a441-cf2dc85c5c96

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 (38) hide show
  1. package/dist/components/adaptive-button/styled.d.ts +1 -0
  2. package/dist/components/bookmark/card/styled.d.ts +3 -0
  3. package/dist/components/bookmark/list/styled.d.ts +1 -0
  4. package/dist/components/bookmark/styled.d.ts +1 -0
  5. package/dist/components/button/index.d.ts +2 -0
  6. package/dist/components/button/index.js +1 -1
  7. package/dist/components/chip/styled.d.ts +1 -0
  8. package/dist/components/color-picker/menu/styled.d.ts +1 -0
  9. package/dist/components/datepicker/ui/calendar/styled.d.ts +2 -0
  10. package/dist/components/description/card/styled.d.ts +1 -0
  11. package/dist/components/developer-key/list/styled.d.ts +1 -0
  12. package/dist/components/file-field/styled.d.ts +1 -0
  13. package/dist/components/header/menu/toggle-button/styled.d.ts +1 -0
  14. package/dist/components/header/user/button/styled.d.ts +1 -0
  15. package/dist/components/image-fullscreen/styled.d.ts +2 -0
  16. package/dist/components/input-message/styled.d.ts +7 -0
  17. package/dist/components/lang-switcher/styled.d.ts +1 -0
  18. package/dist/components/menu-dropdown/styled.d.ts +1 -0
  19. package/dist/components/message/button/styled.d.ts +1 -0
  20. package/dist/components/message/components/code/multiline/copy/styled.d.ts +1 -0
  21. package/dist/components/message/components/image/button/styled.d.ts +1 -0
  22. package/dist/components/message/copy/styled.d.ts +1 -0
  23. package/dist/components/message/styled.d.ts +6 -0
  24. package/dist/components/message/video/styled.d.ts +1 -0
  25. package/dist/components/message/voice/styled.d.ts +2 -0
  26. package/dist/components/notification/styled.d.ts +1 -0
  27. package/dist/components/preset/card/styled.d.ts +4 -0
  28. package/dist/components/referral/card/styled.d.ts +1 -0
  29. package/dist/components/referral/list/styled.d.ts +1 -0
  30. package/dist/components/select-field/styled.d.ts +1 -0
  31. package/dist/components/sidebar/buttons/index.d.ts +6 -0
  32. package/dist/components/sidebar/toggle-button/styled.d.ts +1 -0
  33. package/dist/components/sidebar/user-info/styled.d.ts +1 -0
  34. package/dist/components/tariff/card/styled.d.ts +1 -0
  35. package/dist/components/text-field/styled.d.ts +1 -0
  36. package/dist/components/theme-schemes/theme-button/styled.d.ts +2 -0
  37. package/dist/components/uploaded-file/styled.d.ts +1 -0
  38. package/package.json +1 -1
@@ -17,6 +17,7 @@ export declare const AdaptiveButtonStyled: import("styled-components").IStyledCo
17
17
  skeleton?: boolean;
18
18
  htmlFor?: string;
19
19
  href?: string;
20
+ to?: string;
20
21
  color?: string;
21
22
  disableHoverColor?: boolean;
22
23
  children?: React.ReactNode;
@@ -2017,6 +2017,7 @@ export declare const BookmarkCardAction: import("styled-components").IStyledComp
2017
2017
  skeleton?: boolean | undefined;
2018
2018
  htmlFor?: string | undefined;
2019
2019
  href?: string | undefined;
2020
+ to?: string | undefined;
2020
2021
  disableHoverColor?: boolean | undefined;
2021
2022
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2022
2023
  }>;
@@ -2320,6 +2321,7 @@ export declare const BookmarkCardEditAction: import("styled-components").IStyled
2320
2321
  skeleton?: boolean | undefined;
2321
2322
  htmlFor?: string | undefined;
2322
2323
  href?: string | undefined;
2324
+ to?: string | undefined;
2323
2325
  disableHoverColor?: boolean | undefined;
2324
2326
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2325
2327
  }>;
@@ -2623,6 +2625,7 @@ export declare const BookmarkCardDeleteAction: import("styled-components").IStyl
2623
2625
  skeleton?: boolean | undefined;
2624
2626
  htmlFor?: string | undefined;
2625
2627
  href?: string | undefined;
2628
+ to?: string | undefined;
2626
2629
  disableHoverColor?: boolean | undefined;
2627
2630
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2628
2631
  }>;
@@ -1452,6 +1452,7 @@ export declare const AddBookmarkButton: import("styled-components").IStyledCompo
1452
1452
  skeleton?: boolean | undefined;
1453
1453
  htmlFor?: string | undefined;
1454
1454
  href?: string | undefined;
1455
+ to?: string | undefined;
1455
1456
  disableHoverColor?: boolean | undefined;
1456
1457
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1457
1458
  }>;
@@ -588,6 +588,7 @@ export declare const BookmarkCloseButton: import("styled-components").IStyledCom
588
588
  skeleton?: boolean | undefined;
589
589
  htmlFor?: string | undefined;
590
590
  href?: string | undefined;
591
+ to?: string | undefined;
591
592
  disableHoverColor?: boolean | undefined;
592
593
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
593
594
  }>;
@@ -14,6 +14,7 @@ export type ButtonProps = Omit<React.ComponentProps<'button'>, 'ref' | 'onAnimat
14
14
  skeleton?: boolean;
15
15
  htmlFor?: string;
16
16
  href?: string;
17
+ to?: string;
17
18
  color?: string;
18
19
  disableHoverColor?: boolean;
19
20
  children?: React.ReactNode;
@@ -32,6 +33,7 @@ export declare const Button: React.ForwardRefExoticComponent<Omit<React.Detailed
32
33
  skeleton?: boolean;
33
34
  htmlFor?: string;
34
35
  href?: string;
36
+ to?: string;
35
37
  color?: string;
36
38
  disableHoverColor?: boolean;
37
39
  children?: React.ReactNode;
@@ -1 +1 @@
1
- import{__rest as o}from"tslib";import{jsxs as e,jsx as t,Fragment as r}from"react/jsx-runtime";import l,{forwardRef as i,useRef as s,useCallback as c,useImperativeHandle as n}from"react";import{ButtonStyled as a,ButtonText as m}from"./styled.js";import"../../theme/index.js";import{IconProvider as d}from"../icon/context.js";import"../icon/styled.js";import"@react-spring/web";import"react-markdown";import"react-dom";import"../portal/styled.js";import"../tooltip/styled.js";import"../tooltip/arrow/styled.js";import{useTooltip as p}from"../tooltip/context.js";import{isIconComponent as u}from"../icon/component.js";import{Skeleton as f}from"../skeleton/index.js";import{InfoIcon as b}from"../../icons/info/index.js";import{isBright as h}from"../../utils/colors/isBright.js";import"../../utils/colors/calculateGrayScale.js";import"../../utils/colors/calculateAccentColors.js";import{useTheme as y}from"../../theme/hook.js";const j=i((i,j)=>{var{children:v,fullWidth:k=!1,variant:g="primary",component:$="button",type:x="button",size:w="small",corner:M="brick",startIcon:z=null,endIcon:C=null,iconSize:E,iconFill:F,disabled:I=!1,skeleton:L=!1,color:O,disableHoverColor:S=!1}=i,H=o(i,["children","fullWidth","variant","component","type","size","corner","startIcon","endIcon","iconSize","iconFill","disabled","skeleton","color","disableHoverColor"]);const W=y(),A=s(null),T=l.Children.toArray(v),B=!!l.isValidElement(T[0])&&u(T[0].type);if("number"!=typeof E)if("md"===w)E=20;else E=18;if("string"!=typeof F&&"text"!==g&&"help"!==g)if(I)F=W.colors.grayScale.gray1;else switch(g){case"primary":if("custom"===W.scheme){h(W.colors.accent.primary)&&(F=h(W.colors.custom.interface.text)?"dark"===W.mode?W.colors.base.black:W.default.colors.base.black:W.colors.custom.interface.text),F=h(W.colors.custom.interface.text)?W.colors.custom.interface.text:W.default.colors.base.white;break}F=W.bright?"dark"===W.mode?W.colors.base.black:W.default.colors.base.black:W.default.colors.base.white;break;default:F=W.colors.base.white}const G={size:E,fill:F},{handleTooltipMouseEnter:V,handleTooltipMouseLeave:q}=p(),D=c(o=>{var e;null===(e=H.onMouseEnter)||void 0===e||e.call(H,o),V(o)},[H.onMouseEnter,V]),J=c(o=>{var e;null===(e=H.onMouseLeave)||void 0===e||e.call(H,o),q(o)},[H.onMouseLeave,q]);return n(j,()=>A.current,[A.current]),e(a,Object.assign({},H,{disabled:I,type:x,$variant:g,$icon:B,$size:w,$corner:M,$fullWidth:k,$iconFill:F,$skeleton:L,$disabled:I,$disableHoverColor:S,$color:O,as:$},"button"===$&&{type:x,disabled:I},"a"===$&&{href:H.href},"label"===$&&{htmlFor:H.htmlFor},{ref:A,onMouseEnter:D,onMouseLeave:J,children:[z?t(d,Object.assign({},G,{children:z})):null,!L&&e(d,Object.assign({},G,{children:["help"===g&&t(b,{}),"help"!==g&&e(r,{children:["string"==typeof v&&t(m,{$variant:g,$size:w,$disabled:I,children:v}),"string"!=typeof v&&v]})]})),L&&t(f,{width:70,height:17.5,colors:[W.colors.base.white],opacity:[.15,.45]}),C?t(d,Object.assign({},G,{children:C})):null]}))});export{j as Button,a as ButtonStyled,m as ButtonText};
1
+ import{__rest as o}from"tslib";import{jsxs as e,jsx as t,Fragment as r}from"react/jsx-runtime";import l,{forwardRef as i,useRef as s,useCallback as c,useImperativeHandle as n}from"react";import{ButtonStyled as a,ButtonText as m}from"./styled.js";import"../../theme/index.js";import{IconProvider as d}from"../icon/context.js";import"../icon/styled.js";import"@react-spring/web";import"react-markdown";import"react-dom";import"../portal/styled.js";import"../tooltip/styled.js";import"../tooltip/arrow/styled.js";import{useTooltip as p}from"../tooltip/context.js";import{isIconComponent as u}from"../icon/component.js";import{Skeleton as f}from"../skeleton/index.js";import{InfoIcon as b}from"../../icons/info/index.js";import{isBright as h}from"../../utils/colors/isBright.js";import"../../utils/colors/calculateGrayScale.js";import"../../utils/colors/calculateAccentColors.js";import{useTheme as y}from"../../theme/hook.js";const j=i((i,j)=>{var{children:v,fullWidth:k=!1,variant:g="primary",component:$="button",type:x="button",size:w="small",corner:M="brick",startIcon:z=null,endIcon:C=null,iconSize:E,iconFill:F,disabled:I=!1,skeleton:L=!1,color:O,to:S,disableHoverColor:H=!1}=i,W=o(i,["children","fullWidth","variant","component","type","size","corner","startIcon","endIcon","iconSize","iconFill","disabled","skeleton","color","to","disableHoverColor"]);const A=y(),T=s(null),B=l.Children.toArray(v),G=!!l.isValidElement(B[0])&&u(B[0].type);if("number"!=typeof E)if("md"===w)E=20;else E=18;if("string"!=typeof F&&"text"!==g&&"help"!==g)if(I)F=A.colors.grayScale.gray1;else switch(g){case"primary":if("custom"===A.scheme){h(A.colors.accent.primary)&&(F=h(A.colors.custom.interface.text)?"dark"===A.mode?A.colors.base.black:A.default.colors.base.black:A.colors.custom.interface.text),F=h(A.colors.custom.interface.text)?A.colors.custom.interface.text:A.default.colors.base.white;break}F=A.bright?"dark"===A.mode?A.colors.base.black:A.default.colors.base.black:A.default.colors.base.white;break;default:F=A.colors.base.white}const V={size:E,fill:F},{handleTooltipMouseEnter:q,handleTooltipMouseLeave:D}=p(),J=c(o=>{var e;null===(e=W.onMouseEnter)||void 0===e||e.call(W,o),q(o)},[W.onMouseEnter,q]),K=c(o=>{var e;null===(e=W.onMouseLeave)||void 0===e||e.call(W,o),D(o)},[W.onMouseLeave,D]);return n(j,()=>T.current,[T.current]),e(a,Object.assign({},W,{disabled:I,type:x,$variant:g,$icon:G,$size:w,$corner:M,$fullWidth:k,$iconFill:F,$skeleton:L,$disabled:I,$disableHoverColor:H,$color:O,as:$},"button"===$&&{type:x,disabled:I},S&&{to:S},"a"===$&&{href:W.href},"label"===$&&{htmlFor:W.htmlFor},{ref:T,onMouseEnter:J,onMouseLeave:K,children:[z?t(d,Object.assign({},V,{children:z})):null,!L&&e(d,Object.assign({},V,{children:["help"===g&&t(b,{}),"help"!==g&&e(r,{children:["string"==typeof v&&t(m,{$variant:g,$size:w,$disabled:I,children:v}),"string"!=typeof v&&v]})]})),L&&t(f,{width:70,height:17.5,colors:[A.colors.base.white],opacity:[.15,.45]}),C?t(d,Object.assign({},V,{children:C})):null]}))});export{j as Button,a as ButtonStyled,m as ButtonText};
@@ -890,6 +890,7 @@ export declare const ChipDeleteButton: import("styled-components").IStyledCompon
890
890
  skeleton?: boolean | undefined;
891
891
  htmlFor?: string | undefined;
892
892
  href?: string | undefined;
893
+ to?: string | undefined;
893
894
  disableHoverColor?: boolean | undefined;
894
895
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
895
896
  }>;
@@ -1457,6 +1457,7 @@ export declare const ColorPickerMenuCloseButton: import("styled-components").ISt
1457
1457
  skeleton?: boolean | undefined;
1458
1458
  htmlFor?: string | undefined;
1459
1459
  href?: string | undefined;
1460
+ to?: string | undefined;
1460
1461
  disableHoverColor?: boolean | undefined;
1461
1462
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1462
1463
  }>;
@@ -4439,6 +4439,7 @@ export declare const SaveButton: import("styled-components").IStyledComponent<"w
4439
4439
  skeleton?: boolean | undefined;
4440
4440
  htmlFor?: string | undefined;
4441
4441
  href?: string | undefined;
4442
+ to?: string | undefined;
4442
4443
  disableHoverColor?: boolean | undefined;
4443
4444
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
4444
4445
  }>;
@@ -4742,6 +4743,7 @@ export declare const CancelButton: import("styled-components").IStyledComponent<
4742
4743
  skeleton?: boolean | undefined;
4743
4744
  htmlFor?: string | undefined;
4744
4745
  href?: string | undefined;
4746
+ to?: string | undefined;
4745
4747
  disableHoverColor?: boolean | undefined;
4746
4748
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
4747
4749
  }>;
@@ -1761,6 +1761,7 @@ export declare const DescriptionCardButton: import("styled-components").IStyledC
1761
1761
  skeleton?: boolean | undefined;
1762
1762
  htmlFor?: string | undefined;
1763
1763
  href?: string | undefined;
1764
+ to?: string | undefined;
1764
1765
  disableHoverColor?: boolean | undefined;
1765
1766
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1766
1767
  }>;
@@ -2210,6 +2210,7 @@ export declare const AddDeveloperKeyButton: import("styled-components").IStyledC
2210
2210
  skeleton?: boolean | undefined;
2211
2211
  htmlFor?: string | undefined;
2212
2212
  href?: string | undefined;
2213
+ to?: string | undefined;
2213
2214
  disableHoverColor?: boolean | undefined;
2214
2215
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2215
2216
  }>;
@@ -2265,6 +2265,7 @@ export declare const FileFieldFileDeleteButton: import("styled-components").ISty
2265
2265
  skeleton?: boolean | undefined;
2266
2266
  htmlFor?: string | undefined;
2267
2267
  href?: string | undefined;
2268
+ to?: string | undefined;
2268
2269
  disableHoverColor?: boolean | undefined;
2269
2270
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2270
2271
  }>;
@@ -16,6 +16,7 @@ export declare const HeaderMenuToggleButtonStyled: import("styled-components").I
16
16
  skeleton?: boolean;
17
17
  htmlFor?: string;
18
18
  href?: string;
19
+ to?: string;
19
20
  color?: string;
20
21
  disableHoverColor?: boolean;
21
22
  children?: React.ReactNode;
@@ -298,6 +298,7 @@ export declare const ButtonStyled: import("styled-components").IStyledComponent<
298
298
  skeleton?: boolean | undefined;
299
299
  htmlFor?: string | undefined;
300
300
  href?: string | undefined;
301
+ to?: string | undefined;
301
302
  disableHoverColor?: boolean | undefined;
302
303
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
303
304
  }>;
@@ -5445,6 +5445,7 @@ export declare const ImageFullScreenCarouselPrevButton: import("styled-component
5445
5445
  skeleton?: boolean | undefined;
5446
5446
  htmlFor?: string | undefined;
5447
5447
  href?: string | undefined;
5448
+ to?: string | undefined;
5448
5449
  disableHoverColor?: boolean | undefined;
5449
5450
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
5450
5451
  }>;
@@ -5748,6 +5749,7 @@ export declare const ImageFullScreenCarouselNextButton: import("styled-component
5748
5749
  skeleton?: boolean | undefined;
5749
5750
  htmlFor?: string | undefined;
5750
5751
  href?: string | undefined;
5752
+ to?: string | undefined;
5751
5753
  disableHoverColor?: boolean | undefined;
5752
5754
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
5753
5755
  }>;
@@ -1756,6 +1756,7 @@ export declare const InputMessageUploadFileButton: import("styled-components").I
1756
1756
  skeleton?: boolean | undefined;
1757
1757
  htmlFor?: string | undefined;
1758
1758
  href?: string | undefined;
1759
+ to?: string | undefined;
1759
1760
  disableHoverColor?: boolean | undefined;
1760
1761
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1761
1762
  }>;
@@ -3773,6 +3774,7 @@ export declare const InputMessageVoiceFileDelete: import("styled-components").IS
3773
3774
  skeleton?: boolean | undefined;
3774
3775
  htmlFor?: string | undefined;
3775
3776
  href?: string | undefined;
3777
+ to?: string | undefined;
3776
3778
  disableHoverColor?: boolean | undefined;
3777
3779
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
3778
3780
  }>;
@@ -4080,6 +4082,7 @@ export declare const InputMessageSendButton: import("styled-components").IStyled
4080
4082
  skeleton?: boolean | undefined;
4081
4083
  htmlFor?: string | undefined;
4082
4084
  href?: string | undefined;
4085
+ to?: string | undefined;
4083
4086
  disableHoverColor?: boolean | undefined;
4084
4087
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
4085
4088
  }>;
@@ -4383,6 +4386,7 @@ export declare const InputMessageVoicePauseButton: import("styled-components").I
4383
4386
  skeleton?: boolean | undefined;
4384
4387
  htmlFor?: string | undefined;
4385
4388
  href?: string | undefined;
4389
+ to?: string | undefined;
4386
4390
  disableHoverColor?: boolean | undefined;
4387
4391
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
4388
4392
  }>;
@@ -4686,6 +4690,7 @@ export declare const InputMessageVoicePlayButton: import("styled-components").IS
4686
4690
  skeleton?: boolean | undefined;
4687
4691
  htmlFor?: string | undefined;
4688
4692
  href?: string | undefined;
4693
+ to?: string | undefined;
4689
4694
  disableHoverColor?: boolean | undefined;
4690
4695
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
4691
4696
  }>;
@@ -4992,6 +4997,7 @@ export declare const InputMessageVoiceButton: import("styled-components").IStyle
4992
4997
  skeleton?: boolean | undefined;
4993
4998
  htmlFor?: string | undefined;
4994
4999
  href?: string | undefined;
5000
+ to?: string | undefined;
4995
5001
  disableHoverColor?: boolean | undefined;
4996
5002
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
4997
5003
  $isRecording?: boolean | undefined;
@@ -6440,6 +6446,7 @@ export declare const InputMessageToggleSendButton: import("styled-components").I
6440
6446
  skeleton?: boolean | undefined;
6441
6447
  htmlFor?: string | undefined;
6442
6448
  href?: string | undefined;
6449
+ to?: string | undefined;
6443
6450
  disableHoverColor?: boolean | undefined;
6444
6451
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
6445
6452
  }>;
@@ -2296,6 +2296,7 @@ export declare const LangSwitcherButton: import("styled-components").IStyledComp
2296
2296
  skeleton?: boolean | undefined;
2297
2297
  htmlFor?: string | undefined;
2298
2298
  href?: string | undefined;
2299
+ to?: string | undefined;
2299
2300
  disableHoverColor?: boolean | undefined;
2300
2301
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2301
2302
  }>;
@@ -582,6 +582,7 @@ export declare const MenuDropdownToggleButton: import("styled-components").IStyl
582
582
  skeleton?: boolean | undefined;
583
583
  htmlFor?: string | undefined;
584
584
  href?: string | undefined;
585
+ to?: string | undefined;
585
586
  disableHoverColor?: boolean | undefined;
586
587
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
587
588
  }>;
@@ -298,6 +298,7 @@ export declare const MessageButton: import("styled-components").IStyledComponent
298
298
  skeleton?: boolean | undefined;
299
299
  htmlFor?: string | undefined;
300
300
  href?: string | undefined;
301
+ to?: string | undefined;
301
302
  disableHoverColor?: boolean | undefined;
302
303
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
303
304
  }>;
@@ -304,6 +304,7 @@ export declare const MessageMultilineCodeCopyButtonStyled: import("styled-compon
304
304
  skeleton?: boolean | undefined;
305
305
  htmlFor?: string | undefined;
306
306
  href?: string | undefined;
307
+ to?: string | undefined;
307
308
  disableHoverColor?: boolean | undefined;
308
309
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
309
310
  }, MessageMultilineCodeCopyButtonStyledProps>>;
@@ -866,6 +866,7 @@ export declare const MessageImageButtonContent: import("styled-components").ISty
866
866
  skeleton?: boolean | undefined;
867
867
  htmlFor?: string | undefined;
868
868
  href?: string | undefined;
869
+ to?: string | undefined;
869
870
  disableHoverColor?: boolean | undefined;
870
871
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
871
872
  }>;
@@ -301,6 +301,7 @@ export declare const MessageCopyActionStyled: import("styled-components").IStyle
301
301
  skeleton?: boolean | undefined;
302
302
  htmlFor?: string | undefined;
303
303
  href?: string | undefined;
304
+ to?: string | undefined;
304
305
  disableHoverColor?: boolean | undefined;
305
306
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
306
307
  }, MessageCopyActionStyledProps>>;
@@ -3787,6 +3787,7 @@ export declare const MessageAction: import("styled-components").IStyledComponent
3787
3787
  skeleton?: boolean | undefined;
3788
3788
  htmlFor?: string | undefined;
3789
3789
  href?: string | undefined;
3790
+ to?: string | undefined;
3790
3791
  disableHoverColor?: boolean | undefined;
3791
3792
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
3792
3793
  }>;
@@ -4090,6 +4091,7 @@ export declare const MessageEditAction: import("styled-components").IStyledCompo
4090
4091
  skeleton?: boolean | undefined;
4091
4092
  htmlFor?: string | undefined;
4092
4093
  href?: string | undefined;
4094
+ to?: string | undefined;
4093
4095
  disableHoverColor?: boolean | undefined;
4094
4096
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
4095
4097
  }>;
@@ -4393,6 +4395,7 @@ export declare const MessageImageLeftArrowButton: import("styled-components").IS
4393
4395
  skeleton?: boolean | undefined;
4394
4396
  htmlFor?: string | undefined;
4395
4397
  href?: string | undefined;
4398
+ to?: string | undefined;
4396
4399
  disableHoverColor?: boolean | undefined;
4397
4400
  zone?: boolean | undefined;
4398
4401
  }>;
@@ -4696,6 +4699,7 @@ export declare const MessageImageRightArrowButton: import("styled-components").I
4696
4699
  skeleton?: boolean | undefined;
4697
4700
  htmlFor?: string | undefined;
4698
4701
  href?: string | undefined;
4702
+ to?: string | undefined;
4699
4703
  disableHoverColor?: boolean | undefined;
4700
4704
  zone?: boolean | undefined;
4701
4705
  }>;
@@ -4999,6 +5003,7 @@ export declare const MessageImageTopArrowButton: import("styled-components").ISt
4999
5003
  skeleton?: boolean | undefined;
5000
5004
  htmlFor?: string | undefined;
5001
5005
  href?: string | undefined;
5006
+ to?: string | undefined;
5002
5007
  disableHoverColor?: boolean | undefined;
5003
5008
  zone?: boolean | undefined;
5004
5009
  }>;
@@ -5302,6 +5307,7 @@ export declare const MessageImageBottomArrowButton: import("styled-components").
5302
5307
  skeleton?: boolean | undefined;
5303
5308
  htmlFor?: string | undefined;
5304
5309
  href?: string | undefined;
5310
+ to?: string | undefined;
5305
5311
  disableHoverColor?: boolean | undefined;
5306
5312
  zone?: boolean | undefined;
5307
5313
  }>;
@@ -1469,6 +1469,7 @@ export declare const MessageVideoDownload: import("styled-components").IStyledCo
1469
1469
  skeleton?: boolean | undefined;
1470
1470
  htmlFor?: string | undefined;
1471
1471
  href?: string | undefined;
1472
+ to?: string | undefined;
1472
1473
  disableHoverColor?: boolean | undefined;
1473
1474
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1474
1475
  }>;
@@ -880,6 +880,7 @@ export declare const MessageVoiceToggleButton: import("styled-components").IStyl
880
880
  skeleton?: boolean | undefined;
881
881
  htmlFor?: string | undefined;
882
882
  href?: string | undefined;
883
+ to?: string | undefined;
883
884
  disableHoverColor?: boolean | undefined;
884
885
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
885
886
  }>;
@@ -2934,6 +2935,7 @@ export declare const MessageVoiceToggleTextButton: import("styled-components").I
2934
2935
  skeleton?: boolean | undefined;
2935
2936
  htmlFor?: string | undefined;
2936
2937
  href?: string | undefined;
2938
+ to?: string | undefined;
2937
2939
  disableHoverColor?: boolean | undefined;
2938
2940
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2939
2941
  }>;
@@ -3078,6 +3078,7 @@ export declare const NotificationCloseButton: import("styled-components").IStyle
3078
3078
  skeleton?: boolean | undefined;
3079
3079
  htmlFor?: string | undefined;
3080
3080
  href?: string | undefined;
3081
+ to?: string | undefined;
3081
3082
  disableHoverColor?: boolean | undefined;
3082
3083
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
3083
3084
  }>;
@@ -2018,6 +2018,7 @@ export declare const PresetCardAction: import("styled-components").IStyledCompon
2018
2018
  skeleton?: boolean | undefined;
2019
2019
  htmlFor?: string | undefined;
2020
2020
  href?: string | undefined;
2021
+ to?: string | undefined;
2021
2022
  disableHoverColor?: boolean | undefined;
2022
2023
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2023
2024
  }>;
@@ -2321,6 +2322,7 @@ export declare const PresetCardFavoriteAction: import("styled-components").IStyl
2321
2322
  skeleton?: boolean | undefined;
2322
2323
  htmlFor?: string | undefined;
2323
2324
  href?: string | undefined;
2325
+ to?: string | undefined;
2324
2326
  disableHoverColor?: boolean | undefined;
2325
2327
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2326
2328
  }>;
@@ -2624,6 +2626,7 @@ export declare const PresetCardEditAction: import("styled-components").IStyledCo
2624
2626
  skeleton?: boolean | undefined;
2625
2627
  htmlFor?: string | undefined;
2626
2628
  href?: string | undefined;
2629
+ to?: string | undefined;
2627
2630
  disableHoverColor?: boolean | undefined;
2628
2631
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2629
2632
  }>;
@@ -2927,6 +2930,7 @@ export declare const PresetCardDeleteAction: import("styled-components").IStyled
2927
2930
  skeleton?: boolean | undefined;
2928
2931
  htmlFor?: string | undefined;
2929
2932
  href?: string | undefined;
2933
+ to?: string | undefined;
2930
2934
  disableHoverColor?: boolean | undefined;
2931
2935
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2932
2936
  }>;
@@ -4880,6 +4880,7 @@ export declare const ReferralCardWithdrawButton: import("styled-components").ISt
4880
4880
  skeleton?: boolean | undefined;
4881
4881
  htmlFor?: string | undefined;
4882
4882
  href?: string | undefined;
4883
+ to?: string | undefined;
4883
4884
  disableHoverColor?: boolean | undefined;
4884
4885
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
4885
4886
  }>;
@@ -1150,6 +1150,7 @@ export declare const CreateReferralButton: import("styled-components").IStyledCo
1150
1150
  skeleton?: boolean | undefined;
1151
1151
  htmlFor?: string | undefined;
1152
1152
  href?: string | undefined;
1153
+ to?: string | undefined;
1153
1154
  disableHoverColor?: boolean | undefined;
1154
1155
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1155
1156
  }>;
@@ -1974,6 +1974,7 @@ export declare const SelectFieldClearButton: import("styled-components").IStyled
1974
1974
  skeleton?: boolean | undefined;
1975
1975
  htmlFor?: string | undefined;
1976
1976
  href?: string | undefined;
1977
+ to?: string | undefined;
1977
1978
  disableHoverColor?: boolean | undefined;
1978
1979
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1979
1980
  }>;
@@ -303,6 +303,7 @@ export declare const SidebarDeleteButton: import("styled-components").IStyledCom
303
303
  skeleton?: boolean | undefined;
304
304
  htmlFor?: string | undefined;
305
305
  href?: string | undefined;
306
+ to?: string | undefined;
306
307
  disableHoverColor?: boolean | undefined;
307
308
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
308
309
  }>;
@@ -606,6 +607,7 @@ export declare const SidebarCreateChatButton: import("styled-components").IStyle
606
607
  skeleton?: boolean | undefined;
607
608
  htmlFor?: string | undefined;
608
609
  href?: string | undefined;
610
+ to?: string | undefined;
609
611
  disableHoverColor?: boolean | undefined;
610
612
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
611
613
  }>;
@@ -909,6 +911,7 @@ export declare const SidebarAddGroupButton: import("styled-components").IStyledC
909
911
  skeleton?: boolean | undefined;
910
912
  htmlFor?: string | undefined;
911
913
  href?: string | undefined;
914
+ to?: string | undefined;
912
915
  disableHoverColor?: boolean | undefined;
913
916
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
914
917
  }, {
@@ -1214,6 +1217,7 @@ export declare const SidebarEditButton: import("styled-components").IStyledCompo
1214
1217
  skeleton?: boolean | undefined;
1215
1218
  htmlFor?: string | undefined;
1216
1219
  href?: string | undefined;
1220
+ to?: string | undefined;
1217
1221
  disableHoverColor?: boolean | undefined;
1218
1222
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1219
1223
  }, {
@@ -1519,6 +1523,7 @@ export declare const SidebarSearchButton: import("styled-components").IStyledCom
1519
1523
  skeleton?: boolean | undefined;
1520
1524
  htmlFor?: string | undefined;
1521
1525
  href?: string | undefined;
1526
+ to?: string | undefined;
1522
1527
  disableHoverColor?: boolean | undefined;
1523
1528
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1524
1529
  }, {
@@ -1824,6 +1829,7 @@ export declare const SidebarSortButton: import("styled-components").IStyledCompo
1824
1829
  skeleton?: boolean | undefined;
1825
1830
  htmlFor?: string | undefined;
1826
1831
  href?: string | undefined;
1832
+ to?: string | undefined;
1827
1833
  disableHoverColor?: boolean | undefined;
1828
1834
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1829
1835
  }>;
@@ -298,6 +298,7 @@ export declare const SidebarToggleButtonStyled: import("styled-components").ISty
298
298
  skeleton?: boolean | undefined;
299
299
  htmlFor?: string | undefined;
300
300
  href?: string | undefined;
301
+ to?: string | undefined;
301
302
  disableHoverColor?: boolean | undefined;
302
303
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
303
304
  }, {
@@ -3752,6 +3752,7 @@ export declare const SidebarUserInfoLogoutButton: import("styled-components").IS
3752
3752
  skeleton?: boolean | undefined;
3753
3753
  htmlFor?: string | undefined;
3754
3754
  href?: string | undefined;
3755
+ to?: string | undefined;
3755
3756
  disableHoverColor?: boolean | undefined;
3756
3757
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
3757
3758
  }>;
@@ -4532,6 +4532,7 @@ export declare const TariffCardEnterpriseButton: import("styled-components").ISt
4532
4532
  skeleton?: boolean | undefined;
4533
4533
  htmlFor?: string | undefined;
4534
4534
  href?: string | undefined;
4535
+ to?: string | undefined;
4535
4536
  disableHoverColor?: boolean | undefined;
4536
4537
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
4537
4538
  }>;
@@ -1213,6 +1213,7 @@ export declare const TextFieldClearButton: import("styled-components").IStyledCo
1213
1213
  skeleton?: boolean | undefined;
1214
1214
  htmlFor?: string | undefined;
1215
1215
  href?: string | undefined;
1216
+ to?: string | undefined;
1216
1217
  disableHoverColor?: boolean | undefined;
1217
1218
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1218
1219
  $big: boolean;
@@ -1448,6 +1448,7 @@ export declare const ThemeButtonEditAction: import("styled-components").IStyledC
1448
1448
  skeleton?: boolean | undefined;
1449
1449
  htmlFor?: string | undefined;
1450
1450
  href?: string | undefined;
1451
+ to?: string | undefined;
1451
1452
  disableHoverColor?: boolean | undefined;
1452
1453
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1453
1454
  }>;
@@ -1751,6 +1752,7 @@ export declare const ThemeButtonDeleteAction: import("styled-components").IStyle
1751
1752
  skeleton?: boolean | undefined;
1752
1753
  htmlFor?: string | undefined;
1753
1754
  href?: string | undefined;
1755
+ to?: string | undefined;
1754
1756
  disableHoverColor?: boolean | undefined;
1755
1757
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
1756
1758
  }>;
@@ -2307,6 +2307,7 @@ export declare const UploadedFileDeleteButton: import("styled-components").IStyl
2307
2307
  skeleton?: boolean | undefined;
2308
2308
  htmlFor?: string | undefined;
2309
2309
  href?: string | undefined;
2310
+ to?: string | undefined;
2310
2311
  disableHoverColor?: boolean | undefined;
2311
2312
  ref?: import("react").Ref<HTMLButtonElement | null> | undefined;
2312
2313
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bothub-chat/ui",
3
- "version": "2.48.1-fix-refactor-e9e5211d-1338-4645-8201-f19d80c72c33",
3
+ "version": "2.48.1-fix-refactor-aefd59c8-ddc6-4440-a441-cf2dc85c5c96",
4
4
  "description": "Bothub UI Components",
5
5
  "keywords": [
6
6
  "bot",