@bothub-chat/ui 2.50.1-feat-prompt-queue-193b389b-6f29-4c09-baeb-fad4858b44be → 2.50.1-feat-prompt-queue-c54422ab-33aa-42f4-b048-bea7febd7565
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__rest as e}from"tslib";import{jsxs as
|
|
1
|
+
import{__rest as e}from"tslib";import{jsxs as r,jsx as l}from"react/jsx-runtime";import a,{forwardRef as t,useId as i,useState as n,useCallback as o}from"react";import{Typography as d}from"../typography/index.js";import{DropzoneFieldStyled as p,DropzoneFieldLabels as s,DropzoneFieldRightLabelsContainer as c,DropzoneFieldRightLabel as f,DropzoneFieldInput as m,DropzoneFieldPlaceholder as u}from"./styled.js";const h=t((t,h)=>{var{leftLabel:g,rightLabels:v,placeholder:b,files:y,onChange:D,fullWidth:L=!1,disabled:j=!1,multiple:x=!0,accept:C}=t,T=e(t,["leftLabel","rightLabels","placeholder","files","onChange","fullWidth","disabled","multiple","accept"]);const W=i(),[w,A]=n(!1),M=o(e=>{null==D||D(e)},[D]),[O,E]=Array.isArray(y)?[y,M]:n([]),F=o(e=>{var r;const l=[...null!==(r=e.currentTarget.files)&&void 0!==r?r:[]];E(x?[...new Map([...O,...l].map(e=>[e.name,e])).values()]:[...l].slice(0,1))},[O,E,x]),$=o(e=>{var r;e.preventDefault();const l=[...null!==(r=e.dataTransfer.files)&&void 0!==r?r:[]].filter(e=>null==C?void 0:C.includes(e.type));E(x?[...new Map([...O,...l].map(e=>[e.name,e])).values()]:[...l].slice(0,1)),A(!1)},[O,E,x,C]),k=o(e=>{e.preventDefault(),e.dataTransfer.dropEffect="move",A(!0)},[]),q=o(e=>{e.preventDefault(),A(!1)},[]);return r(p,Object.assign({onDrop:$,onDragOver:k,onDragLeave:q,$fullWidth:L,"data-dragged":w},T,{children:[r(s,{children:[g&&"string"==typeof g?l(d,{variant:"body-m-regular",children:g}):g,!!v&&l(c,{children:v.map((e,r)=>l(a.Fragment,{children:"string"==typeof e?l(f,{children:e}):e},r))})]}),l(m,{id:W,type:"file",multiple:x,accept:C,onChange:F,disabled:j,ref:h}),!!b&&l(u,{children:b})]}))});export{h as DropzoneField};
|
|
@@ -1,322 +1,8 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
|
|
7
|
-
capture?: boolean | "user" | "environment" | undefined | undefined;
|
|
8
|
-
checked?: boolean | undefined | undefined;
|
|
9
|
-
disabled?: boolean | undefined | undefined;
|
|
10
|
-
form?: string | undefined | undefined;
|
|
11
|
-
formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
|
|
12
|
-
formEncType?: string | undefined | undefined;
|
|
13
|
-
formMethod?: string | undefined | undefined;
|
|
14
|
-
formNoValidate?: boolean | undefined | undefined;
|
|
15
|
-
formTarget?: string | undefined | undefined;
|
|
16
|
-
height?: number | string | undefined | undefined;
|
|
17
|
-
list?: string | undefined | undefined;
|
|
18
|
-
max?: number | string | undefined | undefined;
|
|
19
|
-
maxLength?: number | undefined | undefined;
|
|
20
|
-
min?: number | string | undefined | undefined;
|
|
21
|
-
minLength?: number | undefined | undefined;
|
|
22
|
-
multiple?: boolean | undefined | undefined;
|
|
23
|
-
name?: string | undefined | undefined;
|
|
24
|
-
pattern?: string | undefined | undefined;
|
|
25
|
-
placeholder?: string | undefined | undefined;
|
|
26
|
-
readOnly?: boolean | undefined | undefined;
|
|
27
|
-
required?: boolean | undefined | undefined;
|
|
28
|
-
size?: number | undefined | undefined;
|
|
29
|
-
src?: string | undefined | undefined;
|
|
30
|
-
step?: number | string | undefined | undefined;
|
|
31
|
-
type?: import("react").HTMLInputTypeAttribute | undefined;
|
|
32
|
-
value?: string | number | readonly string[] | undefined;
|
|
33
|
-
width?: number | string | undefined | undefined;
|
|
34
|
-
onChange?: import("react").ChangeEventHandler<HTMLInputElement> | undefined;
|
|
35
|
-
defaultChecked?: boolean | undefined | undefined;
|
|
36
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
37
|
-
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
38
|
-
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
39
|
-
accessKey?: string | undefined | undefined;
|
|
40
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
41
|
-
autoFocus?: boolean | undefined | undefined;
|
|
42
|
-
className?: string | undefined | undefined;
|
|
43
|
-
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
44
|
-
contextMenu?: string | undefined | undefined;
|
|
45
|
-
dir?: string | undefined | undefined;
|
|
46
|
-
draggable?: (boolean | "false" | "true") | undefined;
|
|
47
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
48
|
-
hidden?: boolean | undefined | undefined;
|
|
49
|
-
id?: string | undefined | undefined;
|
|
50
|
-
lang?: string | undefined | undefined;
|
|
51
|
-
nonce?: string | undefined | undefined;
|
|
52
|
-
slot?: string | undefined | undefined;
|
|
53
|
-
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
54
|
-
style?: import("react").CSSProperties | undefined;
|
|
55
|
-
tabIndex?: number | undefined | undefined;
|
|
56
|
-
title?: string | undefined | undefined;
|
|
57
|
-
translate?: "yes" | "no" | undefined | undefined;
|
|
58
|
-
radioGroup?: string | undefined | undefined;
|
|
59
|
-
role?: import("react").AriaRole | undefined;
|
|
60
|
-
about?: string | undefined | undefined;
|
|
61
|
-
content?: string | undefined | undefined;
|
|
62
|
-
datatype?: string | undefined | undefined;
|
|
63
|
-
inlist?: any;
|
|
64
|
-
prefix?: string | undefined | undefined;
|
|
65
|
-
property?: string | undefined | undefined;
|
|
66
|
-
rel?: string | undefined | undefined;
|
|
67
|
-
resource?: string | undefined | undefined;
|
|
68
|
-
rev?: string | undefined | undefined;
|
|
69
|
-
typeof?: string | undefined | undefined;
|
|
70
|
-
vocab?: string | undefined | undefined;
|
|
71
|
-
autoCorrect?: string | undefined | undefined;
|
|
72
|
-
autoSave?: string | undefined | undefined;
|
|
73
|
-
color?: string | undefined | undefined;
|
|
74
|
-
itemProp?: string | undefined | undefined;
|
|
75
|
-
itemScope?: boolean | undefined | undefined;
|
|
76
|
-
itemType?: string | undefined | undefined;
|
|
77
|
-
itemID?: string | undefined | undefined;
|
|
78
|
-
itemRef?: string | undefined | undefined;
|
|
79
|
-
results?: number | undefined | undefined;
|
|
80
|
-
security?: string | undefined | undefined;
|
|
81
|
-
unselectable?: "on" | "off" | undefined | undefined;
|
|
82
|
-
popover?: "" | "auto" | "manual" | undefined | undefined;
|
|
83
|
-
popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
|
|
84
|
-
popoverTarget?: string | undefined | undefined;
|
|
85
|
-
inert?: boolean | undefined | undefined;
|
|
86
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
87
|
-
is?: string | undefined | undefined;
|
|
88
|
-
exportparts?: string | undefined | undefined;
|
|
89
|
-
part?: string | undefined | undefined;
|
|
90
|
-
"aria-activedescendant"?: string | undefined | undefined;
|
|
91
|
-
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
92
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
93
|
-
"aria-braillelabel"?: string | undefined | undefined;
|
|
94
|
-
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
95
|
-
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
96
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
97
|
-
"aria-colcount"?: number | undefined | undefined;
|
|
98
|
-
"aria-colindex"?: number | undefined | undefined;
|
|
99
|
-
"aria-colindextext"?: string | undefined | undefined;
|
|
100
|
-
"aria-colspan"?: number | undefined | undefined;
|
|
101
|
-
"aria-controls"?: string | undefined | undefined;
|
|
102
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
103
|
-
"aria-describedby"?: string | undefined | undefined;
|
|
104
|
-
"aria-description"?: string | undefined | undefined;
|
|
105
|
-
"aria-details"?: string | undefined | undefined;
|
|
106
|
-
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
107
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
108
|
-
"aria-errormessage"?: string | undefined | undefined;
|
|
109
|
-
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
110
|
-
"aria-flowto"?: string | undefined | undefined;
|
|
111
|
-
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
112
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
113
|
-
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
114
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
115
|
-
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
116
|
-
"aria-label"?: string | undefined | undefined;
|
|
117
|
-
"aria-labelledby"?: string | undefined | undefined;
|
|
118
|
-
"aria-level"?: number | undefined | undefined;
|
|
119
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
120
|
-
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
121
|
-
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
122
|
-
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
123
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
124
|
-
"aria-owns"?: string | undefined | undefined;
|
|
125
|
-
"aria-placeholder"?: string | undefined | undefined;
|
|
126
|
-
"aria-posinset"?: number | undefined | undefined;
|
|
127
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
128
|
-
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
129
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
130
|
-
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
131
|
-
"aria-roledescription"?: string | undefined | undefined;
|
|
132
|
-
"aria-rowcount"?: number | undefined | undefined;
|
|
133
|
-
"aria-rowindex"?: number | undefined | undefined;
|
|
134
|
-
"aria-rowindextext"?: string | undefined | undefined;
|
|
135
|
-
"aria-rowspan"?: number | undefined | undefined;
|
|
136
|
-
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
137
|
-
"aria-setsize"?: number | undefined | undefined;
|
|
138
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
139
|
-
"aria-valuemax"?: number | undefined | undefined;
|
|
140
|
-
"aria-valuemin"?: number | undefined | undefined;
|
|
141
|
-
"aria-valuenow"?: number | undefined | undefined;
|
|
142
|
-
"aria-valuetext"?: string | undefined | undefined;
|
|
143
|
-
children?: import("react").ReactNode;
|
|
144
|
-
dangerouslySetInnerHTML?: {
|
|
145
|
-
__html: string | TrustedHTML;
|
|
146
|
-
} | undefined | undefined;
|
|
147
|
-
onCopy?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
148
|
-
onCopyCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
149
|
-
onCut?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
150
|
-
onCutCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
151
|
-
onPaste?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
152
|
-
onPasteCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
153
|
-
onCompositionEnd?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
154
|
-
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
155
|
-
onCompositionStart?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
156
|
-
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
157
|
-
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
158
|
-
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
159
|
-
onFocus?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
160
|
-
onFocusCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
161
|
-
onBlur?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
162
|
-
onBlurCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
163
|
-
onChangeCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
164
|
-
onBeforeInput?: import("react").InputEventHandler<HTMLInputElement> | undefined;
|
|
165
|
-
onBeforeInputCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
166
|
-
onInput?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
167
|
-
onInputCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
168
|
-
onReset?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
169
|
-
onResetCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
170
|
-
onSubmit?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
171
|
-
onSubmitCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
172
|
-
onInvalid?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
173
|
-
onInvalidCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
174
|
-
onLoad?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
175
|
-
onLoadCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
176
|
-
onError?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
177
|
-
onErrorCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
178
|
-
onKeyDown?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
179
|
-
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
180
|
-
onKeyPress?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
181
|
-
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
182
|
-
onKeyUp?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
183
|
-
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
184
|
-
onAbort?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
185
|
-
onAbortCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
186
|
-
onCanPlay?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
187
|
-
onCanPlayCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
188
|
-
onCanPlayThrough?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
189
|
-
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
190
|
-
onDurationChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
191
|
-
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
192
|
-
onEmptied?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
193
|
-
onEmptiedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
194
|
-
onEncrypted?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
195
|
-
onEncryptedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
196
|
-
onEnded?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
197
|
-
onEndedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
198
|
-
onLoadedData?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
199
|
-
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
200
|
-
onLoadedMetadata?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
201
|
-
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
202
|
-
onLoadStart?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
203
|
-
onLoadStartCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
204
|
-
onPause?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
205
|
-
onPauseCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
206
|
-
onPlay?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
207
|
-
onPlayCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
208
|
-
onPlaying?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
209
|
-
onPlayingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
210
|
-
onProgress?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
211
|
-
onProgressCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
212
|
-
onRateChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
213
|
-
onRateChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
214
|
-
onSeeked?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
215
|
-
onSeekedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
216
|
-
onSeeking?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
217
|
-
onSeekingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
218
|
-
onStalled?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
219
|
-
onStalledCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
220
|
-
onSuspend?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
221
|
-
onSuspendCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
222
|
-
onTimeUpdate?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
223
|
-
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
224
|
-
onVolumeChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
225
|
-
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
226
|
-
onWaiting?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
227
|
-
onWaitingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
228
|
-
onAuxClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
229
|
-
onAuxClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
230
|
-
onClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
231
|
-
onClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
232
|
-
onContextMenu?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
233
|
-
onContextMenuCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
234
|
-
onDoubleClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
235
|
-
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
236
|
-
onDrag?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
237
|
-
onDragCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
238
|
-
onDragEnd?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
239
|
-
onDragEndCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
240
|
-
onDragEnter?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
241
|
-
onDragEnterCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
242
|
-
onDragExit?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
243
|
-
onDragExitCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
244
|
-
onDragLeave?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
245
|
-
onDragLeaveCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
246
|
-
onDragOver?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
247
|
-
onDragOverCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
248
|
-
onDragStart?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
249
|
-
onDragStartCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
250
|
-
onDrop?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
251
|
-
onDropCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
252
|
-
onMouseDown?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
253
|
-
onMouseDownCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
254
|
-
onMouseEnter?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
255
|
-
onMouseLeave?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
256
|
-
onMouseMove?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
257
|
-
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
258
|
-
onMouseOut?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
259
|
-
onMouseOutCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
260
|
-
onMouseOver?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
261
|
-
onMouseOverCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
262
|
-
onMouseUp?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
263
|
-
onMouseUpCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
264
|
-
onSelect?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
265
|
-
onSelectCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
266
|
-
onTouchCancel?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
267
|
-
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
268
|
-
onTouchEnd?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
269
|
-
onTouchEndCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
270
|
-
onTouchMove?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
271
|
-
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
272
|
-
onTouchStart?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
273
|
-
onTouchStartCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
274
|
-
onPointerDown?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
275
|
-
onPointerDownCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
276
|
-
onPointerMove?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
277
|
-
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
278
|
-
onPointerUp?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
279
|
-
onPointerUpCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
280
|
-
onPointerCancel?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
281
|
-
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
282
|
-
onPointerEnter?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
283
|
-
onPointerLeave?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
284
|
-
onPointerOver?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
285
|
-
onPointerOverCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
286
|
-
onPointerOut?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
287
|
-
onPointerOutCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
288
|
-
onGotPointerCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
289
|
-
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
290
|
-
onLostPointerCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
291
|
-
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
292
|
-
onScroll?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
293
|
-
onScrollCapture?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
294
|
-
onScrollEnd?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
295
|
-
onScrollEndCapture?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
296
|
-
onWheel?: import("react").WheelEventHandler<HTMLInputElement> | undefined;
|
|
297
|
-
onWheelCapture?: import("react").WheelEventHandler<HTMLInputElement> | undefined;
|
|
298
|
-
onAnimationStart?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
299
|
-
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
300
|
-
onAnimationEnd?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
301
|
-
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
302
|
-
onAnimationIteration?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
303
|
-
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
304
|
-
onToggle?: import("react").ToggleEventHandler<HTMLInputElement> | undefined;
|
|
305
|
-
onBeforeToggle?: import("react").ToggleEventHandler<HTMLInputElement> | undefined;
|
|
306
|
-
onTransitionCancel?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
307
|
-
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
308
|
-
onTransitionEnd?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
309
|
-
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
310
|
-
onTransitionRun?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
311
|
-
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
312
|
-
onTransitionStart?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
313
|
-
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
314
|
-
}>;
|
|
315
|
-
export declare const DropzoneFieldStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
316
|
-
$fullWidth: boolean;
|
|
317
|
-
}>>;
|
|
318
|
-
export declare const DropzoneFieldLabels: import("styled-components").IStyledComponent<"web", {
|
|
319
|
-
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
1
|
+
export declare const DropzoneFieldStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
2
|
+
$fullWidth: boolean;
|
|
3
|
+
}>>;
|
|
4
|
+
export declare const DropzoneFieldLabels: import("styled-components").IStyledComponent<"web", {
|
|
5
|
+
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
320
6
|
key?: import("react").Key | null | undefined;
|
|
321
7
|
defaultChecked?: boolean | undefined | undefined;
|
|
322
8
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -1457,3 +1143,317 @@ export declare const DropzoneFieldPlaceholder: import("styled-components").IStyl
|
|
|
1457
1143
|
onTransitionStart?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1458
1144
|
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1459
1145
|
}>;
|
|
1146
|
+
export declare const DropzoneFieldInput: import("styled-components").IStyledComponent<"web", {
|
|
1147
|
+
ref?: import("react").Ref<HTMLInputElement> | undefined;
|
|
1148
|
+
key?: import("react").Key | null | undefined;
|
|
1149
|
+
accept?: string | undefined | undefined;
|
|
1150
|
+
alt?: string | undefined | undefined;
|
|
1151
|
+
autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
|
|
1152
|
+
capture?: boolean | "user" | "environment" | undefined | undefined;
|
|
1153
|
+
checked?: boolean | undefined | undefined;
|
|
1154
|
+
disabled?: boolean | undefined | undefined;
|
|
1155
|
+
form?: string | undefined | undefined;
|
|
1156
|
+
formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
|
|
1157
|
+
formEncType?: string | undefined | undefined;
|
|
1158
|
+
formMethod?: string | undefined | undefined;
|
|
1159
|
+
formNoValidate?: boolean | undefined | undefined;
|
|
1160
|
+
formTarget?: string | undefined | undefined;
|
|
1161
|
+
height?: number | string | undefined | undefined;
|
|
1162
|
+
list?: string | undefined | undefined;
|
|
1163
|
+
max?: number | string | undefined | undefined;
|
|
1164
|
+
maxLength?: number | undefined | undefined;
|
|
1165
|
+
min?: number | string | undefined | undefined;
|
|
1166
|
+
minLength?: number | undefined | undefined;
|
|
1167
|
+
multiple?: boolean | undefined | undefined;
|
|
1168
|
+
name?: string | undefined | undefined;
|
|
1169
|
+
pattern?: string | undefined | undefined;
|
|
1170
|
+
placeholder?: string | undefined | undefined;
|
|
1171
|
+
readOnly?: boolean | undefined | undefined;
|
|
1172
|
+
required?: boolean | undefined | undefined;
|
|
1173
|
+
size?: number | undefined | undefined;
|
|
1174
|
+
src?: string | undefined | undefined;
|
|
1175
|
+
step?: number | string | undefined | undefined;
|
|
1176
|
+
type?: import("react").HTMLInputTypeAttribute | undefined;
|
|
1177
|
+
value?: string | number | readonly string[] | undefined;
|
|
1178
|
+
width?: number | string | undefined | undefined;
|
|
1179
|
+
onChange?: import("react").ChangeEventHandler<HTMLInputElement> | undefined;
|
|
1180
|
+
defaultChecked?: boolean | undefined | undefined;
|
|
1181
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
1182
|
+
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
1183
|
+
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
1184
|
+
accessKey?: string | undefined | undefined;
|
|
1185
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
1186
|
+
autoFocus?: boolean | undefined | undefined;
|
|
1187
|
+
className?: string | undefined | undefined;
|
|
1188
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
1189
|
+
contextMenu?: string | undefined | undefined;
|
|
1190
|
+
dir?: string | undefined | undefined;
|
|
1191
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
1192
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
1193
|
+
hidden?: boolean | undefined | undefined;
|
|
1194
|
+
id?: string | undefined | undefined;
|
|
1195
|
+
lang?: string | undefined | undefined;
|
|
1196
|
+
nonce?: string | undefined | undefined;
|
|
1197
|
+
slot?: string | undefined | undefined;
|
|
1198
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
1199
|
+
style?: import("react").CSSProperties | undefined;
|
|
1200
|
+
tabIndex?: number | undefined | undefined;
|
|
1201
|
+
title?: string | undefined | undefined;
|
|
1202
|
+
translate?: "yes" | "no" | undefined | undefined;
|
|
1203
|
+
radioGroup?: string | undefined | undefined;
|
|
1204
|
+
role?: import("react").AriaRole | undefined;
|
|
1205
|
+
about?: string | undefined | undefined;
|
|
1206
|
+
content?: string | undefined | undefined;
|
|
1207
|
+
datatype?: string | undefined | undefined;
|
|
1208
|
+
inlist?: any;
|
|
1209
|
+
prefix?: string | undefined | undefined;
|
|
1210
|
+
property?: string | undefined | undefined;
|
|
1211
|
+
rel?: string | undefined | undefined;
|
|
1212
|
+
resource?: string | undefined | undefined;
|
|
1213
|
+
rev?: string | undefined | undefined;
|
|
1214
|
+
typeof?: string | undefined | undefined;
|
|
1215
|
+
vocab?: string | undefined | undefined;
|
|
1216
|
+
autoCorrect?: string | undefined | undefined;
|
|
1217
|
+
autoSave?: string | undefined | undefined;
|
|
1218
|
+
color?: string | undefined | undefined;
|
|
1219
|
+
itemProp?: string | undefined | undefined;
|
|
1220
|
+
itemScope?: boolean | undefined | undefined;
|
|
1221
|
+
itemType?: string | undefined | undefined;
|
|
1222
|
+
itemID?: string | undefined | undefined;
|
|
1223
|
+
itemRef?: string | undefined | undefined;
|
|
1224
|
+
results?: number | undefined | undefined;
|
|
1225
|
+
security?: string | undefined | undefined;
|
|
1226
|
+
unselectable?: "on" | "off" | undefined | undefined;
|
|
1227
|
+
popover?: "" | "auto" | "manual" | undefined | undefined;
|
|
1228
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
|
|
1229
|
+
popoverTarget?: string | undefined | undefined;
|
|
1230
|
+
inert?: boolean | undefined | undefined;
|
|
1231
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
1232
|
+
is?: string | undefined | undefined;
|
|
1233
|
+
exportparts?: string | undefined | undefined;
|
|
1234
|
+
part?: string | undefined | undefined;
|
|
1235
|
+
"aria-activedescendant"?: string | undefined | undefined;
|
|
1236
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
1237
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
1238
|
+
"aria-braillelabel"?: string | undefined | undefined;
|
|
1239
|
+
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
1240
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
1241
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
1242
|
+
"aria-colcount"?: number | undefined | undefined;
|
|
1243
|
+
"aria-colindex"?: number | undefined | undefined;
|
|
1244
|
+
"aria-colindextext"?: string | undefined | undefined;
|
|
1245
|
+
"aria-colspan"?: number | undefined | undefined;
|
|
1246
|
+
"aria-controls"?: string | undefined | undefined;
|
|
1247
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
1248
|
+
"aria-describedby"?: string | undefined | undefined;
|
|
1249
|
+
"aria-description"?: string | undefined | undefined;
|
|
1250
|
+
"aria-details"?: string | undefined | undefined;
|
|
1251
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
1252
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
1253
|
+
"aria-errormessage"?: string | undefined | undefined;
|
|
1254
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
1255
|
+
"aria-flowto"?: string | undefined | undefined;
|
|
1256
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
1257
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
1258
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
1259
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
1260
|
+
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
1261
|
+
"aria-label"?: string | undefined | undefined;
|
|
1262
|
+
"aria-labelledby"?: string | undefined | undefined;
|
|
1263
|
+
"aria-level"?: number | undefined | undefined;
|
|
1264
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
1265
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
1266
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
1267
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
1268
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
1269
|
+
"aria-owns"?: string | undefined | undefined;
|
|
1270
|
+
"aria-placeholder"?: string | undefined | undefined;
|
|
1271
|
+
"aria-posinset"?: number | undefined | undefined;
|
|
1272
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
1273
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
1274
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
1275
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
1276
|
+
"aria-roledescription"?: string | undefined | undefined;
|
|
1277
|
+
"aria-rowcount"?: number | undefined | undefined;
|
|
1278
|
+
"aria-rowindex"?: number | undefined | undefined;
|
|
1279
|
+
"aria-rowindextext"?: string | undefined | undefined;
|
|
1280
|
+
"aria-rowspan"?: number | undefined | undefined;
|
|
1281
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
1282
|
+
"aria-setsize"?: number | undefined | undefined;
|
|
1283
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
1284
|
+
"aria-valuemax"?: number | undefined | undefined;
|
|
1285
|
+
"aria-valuemin"?: number | undefined | undefined;
|
|
1286
|
+
"aria-valuenow"?: number | undefined | undefined;
|
|
1287
|
+
"aria-valuetext"?: string | undefined | undefined;
|
|
1288
|
+
children?: import("react").ReactNode;
|
|
1289
|
+
dangerouslySetInnerHTML?: {
|
|
1290
|
+
__html: string | TrustedHTML;
|
|
1291
|
+
} | undefined | undefined;
|
|
1292
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1293
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1294
|
+
onCut?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1295
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1296
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1297
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1298
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1299
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1300
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1301
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1302
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1303
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1304
|
+
onFocus?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
1305
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
1306
|
+
onBlur?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
1307
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
1308
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
1309
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLInputElement> | undefined;
|
|
1310
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
1311
|
+
onInput?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
1312
|
+
onInputCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
1313
|
+
onReset?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
1314
|
+
onResetCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
1315
|
+
onSubmit?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
1316
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
1317
|
+
onInvalid?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
1318
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
1319
|
+
onLoad?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1320
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1321
|
+
onError?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1322
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1323
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1324
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1325
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1326
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1327
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1328
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1329
|
+
onAbort?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1330
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1331
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1332
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1333
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1334
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1335
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1336
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1337
|
+
onEmptied?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1338
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1339
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1340
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1341
|
+
onEnded?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1342
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1343
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1344
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1345
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1346
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1347
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1348
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1349
|
+
onPause?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1350
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1351
|
+
onPlay?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1352
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1353
|
+
onPlaying?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1354
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1355
|
+
onProgress?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1356
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1357
|
+
onRateChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1358
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1359
|
+
onSeeked?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1360
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1361
|
+
onSeeking?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1362
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1363
|
+
onStalled?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1364
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1365
|
+
onSuspend?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1366
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1367
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1368
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1369
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1370
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1371
|
+
onWaiting?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1372
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1373
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1374
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1375
|
+
onClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1376
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1377
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1378
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1379
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1380
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1381
|
+
onDrag?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1382
|
+
onDragCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1383
|
+
onDragEnd?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1384
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1385
|
+
onDragEnter?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1386
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1387
|
+
onDragExit?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1388
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1389
|
+
onDragLeave?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1390
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1391
|
+
onDragOver?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1392
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1393
|
+
onDragStart?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1394
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1395
|
+
onDrop?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1396
|
+
onDropCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
|
|
1397
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1398
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1399
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1400
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1401
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1402
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1403
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1404
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1405
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1406
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1407
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1408
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
1409
|
+
onSelect?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1410
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
1411
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
1412
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
1413
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
1414
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
1415
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
1416
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
1417
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
1418
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
1419
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1420
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1421
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1422
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1423
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1424
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1425
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1426
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1427
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1428
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1429
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1430
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1431
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1432
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1433
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1434
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1435
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1436
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
1437
|
+
onScroll?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
1438
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
1439
|
+
onScrollEnd?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
1440
|
+
onScrollEndCapture?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
1441
|
+
onWheel?: import("react").WheelEventHandler<HTMLInputElement> | undefined;
|
|
1442
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLInputElement> | undefined;
|
|
1443
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1444
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1445
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1446
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1447
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1448
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1449
|
+
onToggle?: import("react").ToggleEventHandler<HTMLInputElement> | undefined;
|
|
1450
|
+
onBeforeToggle?: import("react").ToggleEventHandler<HTMLInputElement> | undefined;
|
|
1451
|
+
onTransitionCancel?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
1452
|
+
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
1453
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
1454
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
1455
|
+
onTransitionRun?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
1456
|
+
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
1457
|
+
onTransitionStart?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
1458
|
+
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
1459
|
+
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{styled as e}from"styled-components";import{Typography as t}from"../typography/index.js";import"react";import"unified";import"remark-parse";import"remark-gfm";import"mdast-util-to-markdown";import{colorToRgba as o}from"../../utils/colors/colorToRgba.js";import"../../utils/colors/calculateGrayScale.js";import"../../utils/colors/calculateAccentColors.js";const i=e.
|
|
1
|
+
import{styled as e}from"styled-components";import{Typography as t}from"../typography/index.js";import"react";import"unified";import"remark-parse";import"remark-gfm";import"mdast-util-to-markdown";import{colorToRgba as o}from"../../utils/colors/colorToRgba.js";import"../../utils/colors/calculateGrayScale.js";import"../../utils/colors/calculateAccentColors.js";const i=e.div.withConfig({displayName:"styled__DropzoneFieldStyled",componentId:"sc-f0fnsu-0"})([""," display:flex;flex-direction:column;justify-content:stretch;gap:20px;cursor:pointer;background-color:",";padding:20px;border-radius:20px;background-image:",";transition:background 0.3s ease-out;position:relative;&:active,&[data-dragged='true']{background-color:rgba(28,100,242,0.2);background-image:url(\"data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' vector-effect='non-scaling-stroke' stroke='%231C64F2FF' stroke-width='4' stroke-dasharray='8%2c 16' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e\");}@media (max-width:","){padding:18px;border:1px solid ",";background-image:none;}@media (max-width:","){padding:24px;}"],({$fullWidth:e})=>e?"width: 100%;":"",({theme:e})=>o(e.colors.grayScale.gray4,.75),({theme:e})=>`url("${"light"===e.mode?"data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' vector-effect='non-scaling-stroke' stroke='%23CDD5DA' stroke-width='4' stroke-dasharray='8%2c 16' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e":"data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' vector-effect='non-scaling-stroke' stroke='%23222B44FF' stroke-width='4' stroke-dasharray='8%2c 16' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e"}")`,({theme:e})=>e.tablet.maxWidth,({theme:e})=>e.colors.grayScale.gray2,({theme:e})=>e.mobile.maxWidth),r=e.div.withConfig({displayName:"styled__DropzoneFieldLabels",componentId:"sc-f0fnsu-1"})(["display:flex;justify-content:space-between;align-items:center;"]),s=e.div.withConfig({displayName:"styled__DropzoneFieldRightLabelsContainer",componentId:"sc-f0fnsu-2"})(["display:flex;align-items:flex-end;flex-direction:column;gap:8px;margin-left:auto;"]),a=e(t).attrs({variant:"body-xs-medium"}).withConfig({displayName:"styled__DropzoneFieldRightLabel",componentId:"sc-f0fnsu-3"})(["color:",";"],({theme:e})=>e.colors.grayScale.gray1),n=e.div.withConfig({displayName:"styled__DropzoneFieldPlaceholder",componentId:"sc-f0fnsu-4"})(["display:flex;align-items:center;justify-content:center;position:relative;padding:20px;"]),l=e.input.withConfig({displayName:"styled__DropzoneFieldInput",componentId:"sc-f0fnsu-5"})(["cursor:pointer;position:absolute;opacity:0;inset:0;z-index:1;"]);export{l as DropzoneFieldInput,r as DropzoneFieldLabels,n as DropzoneFieldPlaceholder,a as DropzoneFieldRightLabel,s as DropzoneFieldRightLabelsContainer,i as DropzoneFieldStyled};
|
package/package.json
CHANGED