@bothub-chat/ui 2.38.0 → 2.38.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/message/list/index.d.ts +1 -0
- package/dist/components/message/list/index.js +1 -1
- package/dist/components/message/scroll-button/index.d.ts +1 -0
- package/dist/components/message/scroll-button/index.js +1 -1
- package/dist/components/message/scroll-button/styled.d.ts +4 -280
- package/dist/components/message/scroll-button/styled.js +4 -1
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export interface MessagesRef {
|
|
|
7
7
|
export interface MessagesProps extends React.PropsWithChildren {
|
|
8
8
|
className?: string;
|
|
9
9
|
scrollButton?: boolean;
|
|
10
|
+
variant?: 'dashboard' | 'main';
|
|
10
11
|
fullWidth?: boolean;
|
|
11
12
|
startRef?: (node?: Element | null | undefined) => void;
|
|
12
13
|
scrollShadows?: ScrollbarShadowsProps;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as r,jsxs as e}from"react/jsx-runtime";import{forwardRef as
|
|
1
|
+
import{jsx as r,jsxs as e}from"react/jsx-runtime";import{forwardRef as t,useRef as l,useCallback as o,useImperativeHandle as n}from"react";import{MessagesStyled as s,MessagesScrollbarWrapper as c,MessagesContent as i,MessagesContainer as a,MessagesStart as d,MessageList as u}from"./styled.js";import{MessagesProvider as m,MessagesScrollProvider as f}from"./context.js";export{MessagesContext,MessagesScrollContext,useMessages,useScrollbarRef}from"./context.js";import{ScrollButton as h}from"../scroll-button/index.js";const v=t((({scrollButton:t=!1,fullWidth:v=!1,variant:S="main",className:x,startRef:p,scrollShadows:b,children:j},R)=>{const g=l(null),w=o((r=>{var e;return null===(e=g.current)||void 0===e?void 0:e.setScroll(null!=r?r:{side:"bottom"})}),[g.current]);return n(R,(()=>{var r,e;return{element:null!==(e=null===(r=g.current)||void 0===r?void 0:r.element)&&void 0!==e?e:null,setScroll:w}}),[w,g.current]),r(m,{setScroll:w,children:e(s,{className:x,children:[r(c,{ref:g,scrollShadows:b,withStickyBottom:!0,defaultStickyBottom:!0,children:r(i,{children:e(a,{$fullWidth:v,children:[r(d,{ref:p}),r(f,{scrollbarRef:g,children:r(u,{children:j})})]})})}),t&&r(h,{variant:S,scrollbarRef:g})]})})}));export{v as Messages,m as MessagesProvider,f as MessagesScrollProvider};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as
|
|
1
|
+
import{jsx as r}from"react/jsx-runtime";import{useState as e,useEffect as t}from"react";import{MessageListScrollButton as l,MessageListArrowNarrowDownIcon as o}from"./styled.js";const n=({scrollbarRef:n,variant:i})=>{const[c,s]=e(!1),[u,v]=e(!1);return t((()=>{var r;const e=()=>{var r;if(null===(r=n.current)||void 0===r?void 0:r.element){const{scrollHeight:r,clientHeight:e,scrollTop:t}=n.current.element,l=Math.round(t+e)>=r-10,o=r>e;s(l),v(o)}},t=null===(r=n.current)||void 0===r?void 0:r.element;return null==t||t.addEventListener("scroll",e),e(),()=>{null==t||t.removeEventListener("scroll",e)}}),[n.current]),c||!u?null:r(l,{$variant:i,$visible:!c&&u,onClick:()=>{var r;const e=null===(r=n.current)||void 0===r?void 0:r.element;e&&e.scrollTo({top:e.scrollHeight,behavior:"smooth"})},type:"button",children:r(o,{size:18})})};export{n as ScrollButton};
|
|
@@ -1,283 +1,7 @@
|
|
|
1
|
-
export declare const MessageListScrollButton: import("styled-components").IStyledComponent<"web", {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
form?: string | undefined | undefined;
|
|
6
|
-
formAction?: string | undefined;
|
|
7
|
-
formEncType?: string | undefined | undefined;
|
|
8
|
-
formMethod?: string | undefined | undefined;
|
|
9
|
-
formNoValidate?: boolean | undefined | undefined;
|
|
10
|
-
formTarget?: string | undefined | undefined;
|
|
11
|
-
name?: string | undefined | undefined;
|
|
12
|
-
type?: "submit" | "reset" | "button" | undefined | undefined;
|
|
13
|
-
value?: string | number | readonly string[] | undefined;
|
|
14
|
-
defaultChecked?: boolean | undefined | undefined;
|
|
15
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
16
|
-
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
17
|
-
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
18
|
-
accessKey?: string | undefined | undefined;
|
|
19
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
20
|
-
autoFocus?: boolean | undefined | undefined;
|
|
21
|
-
className?: string | undefined | undefined;
|
|
22
|
-
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
23
|
-
contextMenu?: string | undefined | undefined;
|
|
24
|
-
dir?: string | undefined | undefined;
|
|
25
|
-
draggable?: (boolean | "false" | "true") | undefined;
|
|
26
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
27
|
-
hidden?: boolean | undefined | undefined;
|
|
28
|
-
id?: string | undefined | undefined;
|
|
29
|
-
lang?: string | undefined | undefined;
|
|
30
|
-
nonce?: string | undefined | undefined;
|
|
31
|
-
slot?: string | undefined | undefined;
|
|
32
|
-
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
33
|
-
style?: import("react").CSSProperties | undefined;
|
|
34
|
-
tabIndex?: number | undefined | undefined;
|
|
35
|
-
title?: string | undefined | undefined;
|
|
36
|
-
translate?: "yes" | "no" | undefined | undefined;
|
|
37
|
-
radioGroup?: string | undefined | undefined;
|
|
38
|
-
role?: import("react").AriaRole | undefined;
|
|
39
|
-
about?: string | undefined | undefined;
|
|
40
|
-
content?: string | undefined | undefined;
|
|
41
|
-
datatype?: string | undefined | undefined;
|
|
42
|
-
inlist?: any;
|
|
43
|
-
prefix?: string | undefined | undefined;
|
|
44
|
-
property?: string | undefined | undefined;
|
|
45
|
-
rel?: string | undefined | undefined;
|
|
46
|
-
resource?: string | undefined | undefined;
|
|
47
|
-
rev?: string | undefined | undefined;
|
|
48
|
-
typeof?: string | undefined | undefined;
|
|
49
|
-
vocab?: string | undefined | undefined;
|
|
50
|
-
autoCorrect?: string | undefined | undefined;
|
|
51
|
-
autoSave?: string | undefined | undefined;
|
|
52
|
-
color?: string | undefined | undefined;
|
|
53
|
-
itemProp?: string | undefined | undefined;
|
|
54
|
-
itemScope?: boolean | undefined | undefined;
|
|
55
|
-
itemType?: string | undefined | undefined;
|
|
56
|
-
itemID?: string | undefined | undefined;
|
|
57
|
-
itemRef?: string | undefined | undefined;
|
|
58
|
-
results?: number | undefined | undefined;
|
|
59
|
-
security?: string | undefined | undefined;
|
|
60
|
-
unselectable?: "on" | "off" | undefined | undefined;
|
|
61
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
62
|
-
is?: string | undefined | undefined;
|
|
63
|
-
"aria-activedescendant"?: string | undefined | undefined;
|
|
64
|
-
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
65
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
66
|
-
"aria-braillelabel"?: string | undefined | undefined;
|
|
67
|
-
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
68
|
-
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
69
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
70
|
-
"aria-colcount"?: number | undefined | undefined;
|
|
71
|
-
"aria-colindex"?: number | undefined | undefined;
|
|
72
|
-
"aria-colindextext"?: string | undefined | undefined;
|
|
73
|
-
"aria-colspan"?: number | undefined | undefined;
|
|
74
|
-
"aria-controls"?: string | undefined | undefined;
|
|
75
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
76
|
-
"aria-describedby"?: string | undefined | undefined;
|
|
77
|
-
"aria-description"?: string | undefined | undefined;
|
|
78
|
-
"aria-details"?: string | undefined | undefined;
|
|
79
|
-
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
80
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
81
|
-
"aria-errormessage"?: string | undefined | undefined;
|
|
82
|
-
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
83
|
-
"aria-flowto"?: string | undefined | undefined;
|
|
84
|
-
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
85
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
86
|
-
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
87
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
88
|
-
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
89
|
-
"aria-label"?: string | undefined | undefined;
|
|
90
|
-
"aria-labelledby"?: string | undefined | undefined;
|
|
91
|
-
"aria-level"?: number | undefined | undefined;
|
|
92
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
93
|
-
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
94
|
-
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
95
|
-
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
96
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
97
|
-
"aria-owns"?: string | undefined | undefined;
|
|
98
|
-
"aria-placeholder"?: string | undefined | undefined;
|
|
99
|
-
"aria-posinset"?: number | undefined | undefined;
|
|
100
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
101
|
-
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
102
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
103
|
-
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
104
|
-
"aria-roledescription"?: string | undefined | undefined;
|
|
105
|
-
"aria-rowcount"?: number | undefined | undefined;
|
|
106
|
-
"aria-rowindex"?: number | undefined | undefined;
|
|
107
|
-
"aria-rowindextext"?: string | undefined | undefined;
|
|
108
|
-
"aria-rowspan"?: number | undefined | undefined;
|
|
109
|
-
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
110
|
-
"aria-setsize"?: number | undefined | undefined;
|
|
111
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
112
|
-
"aria-valuemax"?: number | undefined | undefined;
|
|
113
|
-
"aria-valuemin"?: number | undefined | undefined;
|
|
114
|
-
"aria-valuenow"?: number | undefined | undefined;
|
|
115
|
-
"aria-valuetext"?: string | undefined | undefined;
|
|
116
|
-
children?: import("react").ReactNode;
|
|
117
|
-
dangerouslySetInnerHTML?: {
|
|
118
|
-
__html: string | TrustedHTML;
|
|
119
|
-
} | undefined | undefined;
|
|
120
|
-
onCopy?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
121
|
-
onCopyCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
122
|
-
onCut?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
123
|
-
onCutCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
124
|
-
onPaste?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
125
|
-
onPasteCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
126
|
-
onCompositionEnd?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
127
|
-
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
128
|
-
onCompositionStart?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
129
|
-
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
130
|
-
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
131
|
-
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
132
|
-
onFocus?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
133
|
-
onFocusCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
134
|
-
onBlur?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
135
|
-
onBlurCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
136
|
-
onChange?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
137
|
-
onChangeCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
138
|
-
onBeforeInput?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
139
|
-
onBeforeInputCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
140
|
-
onInput?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
141
|
-
onInputCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
142
|
-
onReset?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
143
|
-
onResetCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
144
|
-
onSubmit?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
145
|
-
onSubmitCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
146
|
-
onInvalid?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
147
|
-
onInvalidCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
148
|
-
onLoad?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
149
|
-
onLoadCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
150
|
-
onError?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
151
|
-
onErrorCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
152
|
-
onKeyDown?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
153
|
-
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
154
|
-
onKeyPress?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
155
|
-
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
156
|
-
onKeyUp?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
157
|
-
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
158
|
-
onAbort?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
159
|
-
onAbortCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
160
|
-
onCanPlay?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
161
|
-
onCanPlayCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
162
|
-
onCanPlayThrough?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
163
|
-
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
164
|
-
onDurationChange?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
165
|
-
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
166
|
-
onEmptied?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
167
|
-
onEmptiedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
168
|
-
onEncrypted?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
169
|
-
onEncryptedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
170
|
-
onEnded?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
171
|
-
onEndedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
172
|
-
onLoadedData?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
173
|
-
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
174
|
-
onLoadedMetadata?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
175
|
-
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
176
|
-
onLoadStart?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
177
|
-
onLoadStartCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
178
|
-
onPause?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
179
|
-
onPauseCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
180
|
-
onPlay?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
181
|
-
onPlayCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
182
|
-
onPlaying?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
183
|
-
onPlayingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
184
|
-
onProgress?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
185
|
-
onProgressCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
186
|
-
onRateChange?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
187
|
-
onRateChangeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
188
|
-
onResize?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
189
|
-
onResizeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
190
|
-
onSeeked?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
191
|
-
onSeekedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
192
|
-
onSeeking?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
193
|
-
onSeekingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
194
|
-
onStalled?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
195
|
-
onStalledCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
196
|
-
onSuspend?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
197
|
-
onSuspendCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
198
|
-
onTimeUpdate?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
199
|
-
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
200
|
-
onVolumeChange?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
201
|
-
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
202
|
-
onWaiting?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
203
|
-
onWaitingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
204
|
-
onAuxClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
205
|
-
onAuxClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
206
|
-
onClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
207
|
-
onClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
208
|
-
onContextMenu?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
209
|
-
onContextMenuCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
210
|
-
onDoubleClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
211
|
-
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
212
|
-
onDrag?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
213
|
-
onDragCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
214
|
-
onDragEnd?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
215
|
-
onDragEndCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
216
|
-
onDragEnter?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
217
|
-
onDragEnterCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
218
|
-
onDragExit?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
219
|
-
onDragExitCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
220
|
-
onDragLeave?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
221
|
-
onDragLeaveCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
222
|
-
onDragOver?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
223
|
-
onDragOverCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
224
|
-
onDragStart?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
225
|
-
onDragStartCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
226
|
-
onDrop?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
227
|
-
onDropCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
228
|
-
onMouseDown?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
229
|
-
onMouseDownCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
230
|
-
onMouseEnter?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
231
|
-
onMouseLeave?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
232
|
-
onMouseMove?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
233
|
-
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
234
|
-
onMouseOut?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
235
|
-
onMouseOutCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
236
|
-
onMouseOver?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
237
|
-
onMouseOverCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
238
|
-
onMouseUp?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
239
|
-
onMouseUpCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
240
|
-
onSelect?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
241
|
-
onSelectCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
242
|
-
onTouchCancel?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
243
|
-
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
244
|
-
onTouchEnd?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
245
|
-
onTouchEndCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
246
|
-
onTouchMove?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
247
|
-
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
248
|
-
onTouchStart?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
249
|
-
onTouchStartCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
250
|
-
onPointerDown?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
251
|
-
onPointerDownCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
252
|
-
onPointerMove?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
253
|
-
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
254
|
-
onPointerUp?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
255
|
-
onPointerUpCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
256
|
-
onPointerCancel?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
257
|
-
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
258
|
-
onPointerEnter?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
259
|
-
onPointerLeave?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
260
|
-
onPointerOver?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
261
|
-
onPointerOverCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
262
|
-
onPointerOut?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
263
|
-
onPointerOutCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
264
|
-
onGotPointerCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
265
|
-
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
266
|
-
onLostPointerCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
267
|
-
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
268
|
-
onScroll?: import("react").UIEventHandler<HTMLButtonElement> | undefined;
|
|
269
|
-
onScrollCapture?: import("react").UIEventHandler<HTMLButtonElement> | undefined;
|
|
270
|
-
onWheel?: import("react").WheelEventHandler<HTMLButtonElement> | undefined;
|
|
271
|
-
onWheelCapture?: import("react").WheelEventHandler<HTMLButtonElement> | undefined;
|
|
272
|
-
onAnimationStart?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
273
|
-
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
274
|
-
onAnimationEnd?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
275
|
-
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
276
|
-
onAnimationIteration?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
277
|
-
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
278
|
-
onTransitionEnd?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
279
|
-
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
280
|
-
}>;
|
|
1
|
+
export declare const MessageListScrollButton: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
|
|
2
|
+
$variant: "main" | "dashboard";
|
|
3
|
+
$visible: boolean;
|
|
4
|
+
}>>;
|
|
281
5
|
export declare const MessageListArrowNarrowDownIcon: import("styled-components").IStyledComponent<"web", {
|
|
282
6
|
size?: number | undefined;
|
|
283
7
|
fill?: string | undefined;
|
|
@@ -1 +1,4 @@
|
|
|
1
|
-
import{styled as i}from"styled-components";import"../../../icons/arrow-down/index.js";import"../../../icons/arrow-narrow-left/index.js";import"../../../icons/arrow-narrow-right/index.js";import"../../../icons/arrow-up/index.js";import"../../../icons/bitcoin/index.js";import"../../../icons/bot-circle/index.js";import"../../../icons/bothub-agg/index.js";import"../../../icons/business-colored/index.js";import"../../../icons/check-circle/index.js";import"../../../icons/close/index.js";import"../../../icons/email-circle/index.js";import"../../../icons/language/index.js";import"../../../icons/lock-circle/index.js";import"../../../icons/menu/index.js";import"../../../icons/medium-circle/index.js";import"../../../icons/tg-circle/index.js";import"../../../icons/tg-colored/index.js";import"../../../icons/youcassa/index.js";import"../../../icons/dashboard/index.js";import"../../../icons/user-profile/index.js";import"../../../icons/logout/index.js";import"tslib";import"react/jsx-runtime";import"../../../icons/habr-2/index.js";import"../../../icons/arrow-2-down/index.js";import"../../../icons/links/index.js";import"../../../icons/free/index.js";import"../../../icons/hotness/index.js";import"../../../icons/checked/index.js";import"../../../icons/ai/index.js";import"../../../icons/bookmarks/index.js";import"../../../icons/bookmarks-big/index.js";import"../../../icons/chat/index.js";import"../../../icons/chats/index.js";import"../../../icons/coder/index.js";import"../../../icons/copy/index.js";import"../../../icons/edit/index.js";import"../../../icons/presets-big/index.js";import"../../../icons/referal/index.js";import"../../../icons/restore/index.js";import"../../../icons/tariff/index.js";import"../../../icons/trash/index.js";import"../../../icons/update/index.js";import"../../../icons/menu-dot/index.js";import"../../../icons/plus-2/index.js";import"../../../icons/plus-1/index.js";import"../../../icons/send/index.js";import"../../../icons/settings/index.js";import"../../../icons/habr/index.js";import"../../../icons/check-small/index.js";import"../../../icons/stop/index.js";import"../../../icons/thumb-up/index.js";import"../../../icons/thumb-down/index.js";import"../../../icons/star/index.js";import"../../../icons/info-big/index.js";import"../../../icons/warning-big/index.js";import"../../../icons/error-big/index.js";import"../../../icons/success-big/index.js";import"../../../icons/mj/index.js";import"../../../icons/card/index.js";import"../../../icons/arrow-narrow-up/index.js";import{ArrowNarrowDownIcon as o}from"../../../icons/arrow-narrow-down/index.js";import"../../../icons/filters/index.js";import"../../../icons/info/index.js";import"../../../icons/search-circle/index.js";import"../../../icons/save/index.js";import"../../../icons/light/index.js";import"../../../icons/dark/index.js";import"../../../icons/email-colored/index.js";import"../../../icons/action-chat/index.js";import"../../../icons/attach/index.js";import"../../../icons/avatar-add/index.js";import"../../../icons/brush/index.js";import"../../../icons/calendar/index.js";import"../../../icons/claude/index.js";import"../../../icons/cookie/index.js";import"../../../icons/dalle/index.js";import"../../../icons/download-img/index.js";import"../../../icons/error/index.js";import"../../../icons/expand/index.js";import"../../../icons/eye/index.js";import"../../../icons/face/index.js";import"../../../icons/gear/index.js";import"../../../icons/gear-min/index.js";import"../../../icons/generation/index.js";import"../../../icons/gpt-3_5/index.js";import"../../../icons/gpt-4/index.js";import"../../../icons/imagine/index.js";import"../../../icons/imagine-2/index.js";import"../../../icons/loader/index.js";import"../../../icons/loader-circular/index.js";import"../../../icons/loader-circular-gradient/index.js";import"../../../icons/loader-circular-gradient-2/index.js";import"../../../icons/minus/index.js";import"../../../icons/mj-white/index.js";import"../../../icons/prompt/index.js";import"../../../icons/rabbit/index.js";import"../../../icons/ratio-1x1/index.js";import"../../../icons/ratio-2x3/index.js";import"../../../icons/ratio-3x2/index.js";import"../../../icons/ratio-4x5/index.js";import"../../../icons/ratio-4x7/index.js";import"../../../icons/ratio-5x4/index.js";import"../../../icons/ratio-7x4/index.js";import"../../../icons/ratio-16x9/index.js";import"../../../icons/ratio-9x16/index.js";import"../../../icons/ratio-21x9/index.js";import"../../../icons/ratio-9x21/index.js";import"../../../icons/refferal-min/index.js";import"../../../icons/search-data/index.js";import"../../../icons/square/index.js";import"../../../icons/turtle/index.js";import"../../../icons/upscale/index.js";import"../../../icons/withdraw/index.js";import"../../../icons/search-plus/index.js";import"../../../icons/lightning/index.js";import"../../../icons/blog-circle/index.js";import"../../../icons/stripe/index.js";import"../../../icons/corporate/index.js";import"../../../icons/public/index.js";import"../../../icons/private/index.js";import"../../../icons/mistral/index.js";import"../../../icons/gemini/index.js";import"../../../icons/search-simple/index.js";import"../../../icons/sad-robot/index.js";import"../../../icons/model/index.js";import"../../../icons/phone-colored/index.js";import"../../../icons/questions/index.js";import"../../../icons/pdf-big/index.js";import"../../../icons/xls-big/index.js";import"../../../icons/word-big/index.js";import"../../../icons/txt-big/index.js";import"../../../icons/pdf/index.js";import"../../../icons/xls/index.js";import"../../../icons/word/index.js";import"../../../icons/txt/index.js";import"../../../icons/bothub-logo-gradient/index.js";import"../../../icons/telegram-logo-gradient/index.js";import"../../../icons/decline-circle/index.js";import"../../../icons/simple-gear-bg/index.js";import"../../../icons/advanced-filter/index.js";import"../../../icons/big-corporate/index.js";import"../../../icons/big-mj/index.js";import"../../../icons/big-models/index.js";import"../../../icons/big-stats/index.js";import"../../../icons/big-success/index.js";import"../../../icons/big-users/index.js";import"../../../icons/optional-presets/index.js";import"../../../icons/wallet-withdraw/index.js";import"../../../icons/big-presets/index.js";import"../../../icons/big-favorite/index.js";import"../../../icons/big-referal/index.js";import"../../../icons/attach-file/index.js";import"../../../icons/attach-file-big/index.js";import"../../../icons/voice/index.js";import"../../../icons/play-button/index.js";import"../../../icons/pause-button/index.js";import"../../../icons/text-read/index.js";import"../../../icons/text-hide/index.js";import"../../../icons/best-chat-bots/index.js";import"../../../icons/upload/index.js";import"../../../icons/enter/index.js";import"../../../icons/discord/index.js";import"../../../icons/discord-circle/index.js";import"../../../icons/black-forest-labs/index.js";import"../../../icons/flux/index.js";import"../../../icons/stable-diffusion/index.js";import"../../../icons/stability-ai/index.js";import"../../../icons/article-generator/index.js";import"../../../icons/success/index.js";import"../../../icons/google/index.js";import"../../../icons/yandex/index.js";import"../../../icons/vk/index.js";import"../../../icons/resend/index.js";import"../../../icons/big-article/index.js";import"../../../icons/add-chat/index.js";import"../../../icons/add-group/index.js";import"../../../icons/drag-dot/index.js";import"../../../icons/add-folder/index.js";import"../../../icons/temp-chat/index.js";import"../../../icons/delete-chat/index.js";import"../../../icons/sidebar-chat/index.js";import"../../../icons/organization/index.js";import"../../../icons/simple-gear/index.js";import"../../../icons/text-bold/index.js";import"../../../icons/text-italic/index.js";import"../../../icons/text-underline/index.js";import"../../../icons/text-strikethrough/index.js";import"../../../icons/refresh/index.js";import"../../../icons/copy-variants/index.js";import"../../../icons/sort-ascending/index.js";import"../../../icons/sort-descending/index.js";import"../../../icons/quote/index.js";import"../../../icons/url-circle/index.js";import"../../../icons/show-ui/index.js";import"../../../icons/hide-ui/index.js";import"../../../icons/sort-user/index.js";import"../../../icons/happy-robot/index.js";import"../../../icons/happy-robot-gradient/index.js";import"../../../icons/min-window/index.js";import"../../../icons/max-window/index.js";import"../../../icons/manage-chat/index.js";import"../../../icons/analyze-urls/index.js";import"../../../icons/web-search/index.js";import"../../../icons/include-context/index.js";import"../../../icons/queue/index.js";import"../../../icons/sort-alphabet-ascending/index.js";import"../../../icons/sort-alphabet-descending/index.js";import"../../../icons/sort-date-ascending/index.js";import"../../../icons/sort-date-descending/index.js";import"../../../icons/cot-r1/index.js";import"../../../icons/news/index.js";import"../../../icons/volume/index.js";import"../../../icons/flag-ru/index.js";import"../../../icons/flag-kz/index.js";import"../../../icons/print/index.js";import"../../../icons/pc-icon-1/index.js";import"../../../icons/pc-icon-2/index.js";import"../../../icons/pc-icon-3/index.js";import"../../../icons/star-unfilled/index.js";import"../../../icons/image-generation/index.js";import"../../../icons/speech-synthesys/index.js";import"../../../icons/transcription/index.js";import"../../../icons/text-rewrite/index.js";import"../../../icons/code-generation/index.js";import"../../../icons/essay-generation/index.js";import"../../../icons/spelling/index.js";import"../../../icons/text-generation/index.js";import"../../../icons/traffic-analisys/index.js";import"../../../icons/fav-profile/index.js";import"../../../icons/exclamation/index.js";import"../../../icons/article/index.js";import"../../../icons/setchel/index.js";import"../../../icons/assembly/index.js";import"../../../icons/data-visualisation/index.js";import"../../../icons/document-analisys/index.js";import"../../../icons/problem-solvment/index.js";import"../../../icons/setting-analisys/index.js";import"../../../icons/translation/index.js";import"../../../icons/stars/index.js";import"../../../icons/academy/index.js";import"../../../icons/articles/index.js";import"../../../icons/blog-post/index.js";import"../../../icons/book/index.js";import"../../../icons/bow-tie/index.js";import"../../../icons/case-study/index.js";import"../../../icons/comments/index.js";import"../../../icons/guide/index.js";import"../../../icons/marketing/index.js";import"../../../icons/post/index.js";import"../../../icons/report/index.js";import"../../../icons/review/index.js";import"../../../icons/scientific-article/index.js";import"../../../icons/selling-text/index.js";import"../../../icons/textbook/index.js";import"../../../icons/wind/index.js";import"../../../icons/grok/index.js";import"../../../icons/deepseek/index.js";import"../../../icons/grid-horizontal/index.js";import"../../../icons/grid-vertical/index.js";import"../../../icons/star-gradient/index.js";import"../../../icons/qwen/index.js";import"../../../icons/sidebar-toggle-left/index.js";import"../../../icons/sidebar-toggle-right/index.js";import"../../../icons/video-camera/index.js";import"../../../icons/music-note/index.js";import"../../../icons/add-profile/index.js";import"../../../icons/token-counter/index.js";import"../../../icons/customer-support/index.js";import"../../../icons/video-generation/index.js";import"../../../icons/veo-model/index.js";import"../../../icons/runway/index.js";const s=i.button.withConfig({displayName:"styled__MessageListScrollButton",componentId:"sc-1qkcplr-0"})(["z-index:1;position:absolute;display:flex;align-items:center;justify-content:center;padding:10px;bottom:0;left:50%;transform:translateX(-50%);size:38px;border-radius:50%;border:1px solid;border-color:",";background:",";box-shadow:0px 0px 1px 0px rgba(255,255,255,0.4) inset;cursor:pointer;"],(({theme:i})=>i.colors.grayScale.gray2),(({theme:i})=>i.colors.grayScale.gray4)),n=i(o).withConfig({displayName:"styled__MessageListArrowNarrowDownIcon",componentId:"sc-1qkcplr-1"})(["path{fill:",";}"],(({theme:i})=>i.colors.base.white));export{n as MessageListArrowNarrowDownIcon,s as MessageListScrollButton};
|
|
1
|
+
import{styled as i,css as o}from"styled-components";import"../../../icons/arrow-down/index.js";import"../../../icons/arrow-narrow-left/index.js";import"../../../icons/arrow-narrow-right/index.js";import"../../../icons/arrow-up/index.js";import"../../../icons/bitcoin/index.js";import"../../../icons/bot-circle/index.js";import"../../../icons/bothub-agg/index.js";import"../../../icons/business-colored/index.js";import"../../../icons/check-circle/index.js";import"../../../icons/close/index.js";import"../../../icons/email-circle/index.js";import"../../../icons/language/index.js";import"../../../icons/lock-circle/index.js";import"../../../icons/menu/index.js";import"../../../icons/medium-circle/index.js";import"../../../icons/tg-circle/index.js";import"../../../icons/tg-colored/index.js";import"../../../icons/youcassa/index.js";import"../../../icons/dashboard/index.js";import"../../../icons/user-profile/index.js";import"../../../icons/logout/index.js";import"tslib";import"react/jsx-runtime";import"../../../icons/habr-2/index.js";import"../../../icons/arrow-2-down/index.js";import"../../../icons/links/index.js";import"../../../icons/free/index.js";import"../../../icons/hotness/index.js";import"../../../icons/checked/index.js";import"../../../icons/ai/index.js";import"../../../icons/bookmarks/index.js";import"../../../icons/bookmarks-big/index.js";import"../../../icons/chat/index.js";import"../../../icons/chats/index.js";import"../../../icons/coder/index.js";import"../../../icons/copy/index.js";import"../../../icons/edit/index.js";import"../../../icons/presets-big/index.js";import"../../../icons/referal/index.js";import"../../../icons/restore/index.js";import"../../../icons/tariff/index.js";import"../../../icons/trash/index.js";import"../../../icons/update/index.js";import"../../../icons/menu-dot/index.js";import"../../../icons/plus-2/index.js";import"../../../icons/plus-1/index.js";import"../../../icons/send/index.js";import"../../../icons/settings/index.js";import"../../../icons/habr/index.js";import"../../../icons/check-small/index.js";import"../../../icons/stop/index.js";import"../../../icons/thumb-up/index.js";import"../../../icons/thumb-down/index.js";import"../../../icons/star/index.js";import"../../../icons/info-big/index.js";import"../../../icons/warning-big/index.js";import"../../../icons/error-big/index.js";import"../../../icons/success-big/index.js";import"../../../icons/mj/index.js";import"../../../icons/card/index.js";import"../../../icons/arrow-narrow-up/index.js";import{ArrowNarrowDownIcon as s}from"../../../icons/arrow-narrow-down/index.js";import"../../../icons/filters/index.js";import"../../../icons/info/index.js";import"../../../icons/search-circle/index.js";import"../../../icons/save/index.js";import"../../../icons/light/index.js";import"../../../icons/dark/index.js";import"../../../icons/email-colored/index.js";import"../../../icons/action-chat/index.js";import"../../../icons/attach/index.js";import"../../../icons/avatar-add/index.js";import"../../../icons/brush/index.js";import"../../../icons/calendar/index.js";import"../../../icons/claude/index.js";import"../../../icons/cookie/index.js";import"../../../icons/dalle/index.js";import"../../../icons/download-img/index.js";import"../../../icons/error/index.js";import"../../../icons/expand/index.js";import"../../../icons/eye/index.js";import"../../../icons/face/index.js";import"../../../icons/gear/index.js";import"../../../icons/gear-min/index.js";import"../../../icons/generation/index.js";import"../../../icons/gpt-3_5/index.js";import"../../../icons/gpt-4/index.js";import"../../../icons/imagine/index.js";import"../../../icons/imagine-2/index.js";import"../../../icons/loader/index.js";import"../../../icons/loader-circular/index.js";import"../../../icons/loader-circular-gradient/index.js";import"../../../icons/loader-circular-gradient-2/index.js";import"../../../icons/minus/index.js";import"../../../icons/mj-white/index.js";import"../../../icons/prompt/index.js";import"../../../icons/rabbit/index.js";import"../../../icons/ratio-1x1/index.js";import"../../../icons/ratio-2x3/index.js";import"../../../icons/ratio-3x2/index.js";import"../../../icons/ratio-4x5/index.js";import"../../../icons/ratio-4x7/index.js";import"../../../icons/ratio-5x4/index.js";import"../../../icons/ratio-7x4/index.js";import"../../../icons/ratio-16x9/index.js";import"../../../icons/ratio-9x16/index.js";import"../../../icons/ratio-21x9/index.js";import"../../../icons/ratio-9x21/index.js";import"../../../icons/refferal-min/index.js";import"../../../icons/search-data/index.js";import"../../../icons/square/index.js";import"../../../icons/turtle/index.js";import"../../../icons/upscale/index.js";import"../../../icons/withdraw/index.js";import"../../../icons/search-plus/index.js";import"../../../icons/lightning/index.js";import"../../../icons/blog-circle/index.js";import"../../../icons/stripe/index.js";import"../../../icons/corporate/index.js";import"../../../icons/public/index.js";import"../../../icons/private/index.js";import"../../../icons/mistral/index.js";import"../../../icons/gemini/index.js";import"../../../icons/search-simple/index.js";import"../../../icons/sad-robot/index.js";import"../../../icons/model/index.js";import"../../../icons/phone-colored/index.js";import"../../../icons/questions/index.js";import"../../../icons/pdf-big/index.js";import"../../../icons/xls-big/index.js";import"../../../icons/word-big/index.js";import"../../../icons/txt-big/index.js";import"../../../icons/pdf/index.js";import"../../../icons/xls/index.js";import"../../../icons/word/index.js";import"../../../icons/txt/index.js";import"../../../icons/bothub-logo-gradient/index.js";import"../../../icons/telegram-logo-gradient/index.js";import"../../../icons/decline-circle/index.js";import"../../../icons/simple-gear-bg/index.js";import"../../../icons/advanced-filter/index.js";import"../../../icons/big-corporate/index.js";import"../../../icons/big-mj/index.js";import"../../../icons/big-models/index.js";import"../../../icons/big-stats/index.js";import"../../../icons/big-success/index.js";import"../../../icons/big-users/index.js";import"../../../icons/optional-presets/index.js";import"../../../icons/wallet-withdraw/index.js";import"../../../icons/big-presets/index.js";import"../../../icons/big-favorite/index.js";import"../../../icons/big-referal/index.js";import"../../../icons/attach-file/index.js";import"../../../icons/attach-file-big/index.js";import"../../../icons/voice/index.js";import"../../../icons/play-button/index.js";import"../../../icons/pause-button/index.js";import"../../../icons/text-read/index.js";import"../../../icons/text-hide/index.js";import"../../../icons/best-chat-bots/index.js";import"../../../icons/upload/index.js";import"../../../icons/enter/index.js";import"../../../icons/discord/index.js";import"../../../icons/discord-circle/index.js";import"../../../icons/black-forest-labs/index.js";import"../../../icons/flux/index.js";import"../../../icons/stable-diffusion/index.js";import"../../../icons/stability-ai/index.js";import"../../../icons/article-generator/index.js";import"../../../icons/success/index.js";import"../../../icons/google/index.js";import"../../../icons/yandex/index.js";import"../../../icons/vk/index.js";import"../../../icons/resend/index.js";import"../../../icons/big-article/index.js";import"../../../icons/add-chat/index.js";import"../../../icons/add-group/index.js";import"../../../icons/drag-dot/index.js";import"../../../icons/add-folder/index.js";import"../../../icons/temp-chat/index.js";import"../../../icons/delete-chat/index.js";import"../../../icons/sidebar-chat/index.js";import"../../../icons/organization/index.js";import"../../../icons/simple-gear/index.js";import"../../../icons/text-bold/index.js";import"../../../icons/text-italic/index.js";import"../../../icons/text-underline/index.js";import"../../../icons/text-strikethrough/index.js";import"../../../icons/refresh/index.js";import"../../../icons/copy-variants/index.js";import"../../../icons/sort-ascending/index.js";import"../../../icons/sort-descending/index.js";import"../../../icons/quote/index.js";import"../../../icons/url-circle/index.js";import"../../../icons/show-ui/index.js";import"../../../icons/hide-ui/index.js";import"../../../icons/sort-user/index.js";import"../../../icons/happy-robot/index.js";import"../../../icons/happy-robot-gradient/index.js";import"../../../icons/min-window/index.js";import"../../../icons/max-window/index.js";import"../../../icons/manage-chat/index.js";import"../../../icons/analyze-urls/index.js";import"../../../icons/web-search/index.js";import"../../../icons/include-context/index.js";import"../../../icons/queue/index.js";import"../../../icons/sort-alphabet-ascending/index.js";import"../../../icons/sort-alphabet-descending/index.js";import"../../../icons/sort-date-ascending/index.js";import"../../../icons/sort-date-descending/index.js";import"../../../icons/cot-r1/index.js";import"../../../icons/news/index.js";import"../../../icons/volume/index.js";import"../../../icons/flag-ru/index.js";import"../../../icons/flag-kz/index.js";import"../../../icons/print/index.js";import"../../../icons/pc-icon-1/index.js";import"../../../icons/pc-icon-2/index.js";import"../../../icons/pc-icon-3/index.js";import"../../../icons/star-unfilled/index.js";import"../../../icons/image-generation/index.js";import"../../../icons/speech-synthesys/index.js";import"../../../icons/transcription/index.js";import"../../../icons/text-rewrite/index.js";import"../../../icons/code-generation/index.js";import"../../../icons/essay-generation/index.js";import"../../../icons/spelling/index.js";import"../../../icons/text-generation/index.js";import"../../../icons/traffic-analisys/index.js";import"../../../icons/fav-profile/index.js";import"../../../icons/exclamation/index.js";import"../../../icons/article/index.js";import"../../../icons/setchel/index.js";import"../../../icons/assembly/index.js";import"../../../icons/data-visualisation/index.js";import"../../../icons/document-analisys/index.js";import"../../../icons/problem-solvment/index.js";import"../../../icons/setting-analisys/index.js";import"../../../icons/translation/index.js";import"../../../icons/stars/index.js";import"../../../icons/academy/index.js";import"../../../icons/articles/index.js";import"../../../icons/blog-post/index.js";import"../../../icons/book/index.js";import"../../../icons/bow-tie/index.js";import"../../../icons/case-study/index.js";import"../../../icons/comments/index.js";import"../../../icons/guide/index.js";import"../../../icons/marketing/index.js";import"../../../icons/post/index.js";import"../../../icons/report/index.js";import"../../../icons/review/index.js";import"../../../icons/scientific-article/index.js";import"../../../icons/selling-text/index.js";import"../../../icons/textbook/index.js";import"../../../icons/wind/index.js";import"../../../icons/grok/index.js";import"../../../icons/deepseek/index.js";import"../../../icons/grid-horizontal/index.js";import"../../../icons/grid-vertical/index.js";import"../../../icons/star-gradient/index.js";import"../../../icons/qwen/index.js";import"../../../icons/sidebar-toggle-left/index.js";import"../../../icons/sidebar-toggle-right/index.js";import"../../../icons/video-camera/index.js";import"../../../icons/music-note/index.js";import"../../../icons/add-profile/index.js";import"../../../icons/token-counter/index.js";import"../../../icons/customer-support/index.js";import"../../../icons/video-generation/index.js";import"../../../icons/veo-model/index.js";import"../../../icons/runway/index.js";const n=i.button.withConfig({displayName:"styled__MessageListScrollButton",componentId:"sc-1qkcplr-0"})(["opacity:0;pointer-events:none;z-index:1;position:absolute;display:flex;align-items:center;justify-content:center;padding:10px;bottom:",";left:50%;transform:translateX(-50%);size:38px;border-radius:50%;border:2px solid;border-color:",";background:",";box-shadow:0px 0px 1px 0px rgba(255,255,255,0.4) inset;cursor:pointer;"," &:hover{background-color:",";cursor:pointer;}transition:all 0.1s linear;"],(({$variant:i})=>"main"===i?0:"60px"),(({theme:i})=>i.colors.grayScale.gray2),(({theme:i})=>i.colors.grayScale.gray4),(({$visible:i})=>i&&o`
|
|
2
|
+
opacity: 1;
|
|
3
|
+
pointer-events: auto;
|
|
4
|
+
`),(({theme:i})=>i.colors.grayScale.gray2)),e=i(s).withConfig({displayName:"styled__MessageListArrowNarrowDownIcon",componentId:"sc-1qkcplr-1"})(["path{fill:",";}"],(({theme:i})=>i.colors.base.white));export{e as MessageListArrowNarrowDownIcon,n as MessageListScrollButton};
|