@0xsquid/ui 0.18.1 → 0.18.3
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/cjs/index.js +10979 -224
- package/dist/cjs/types/components/badges/LoadingSkeleton.d.ts +10 -1
- package/dist/cjs/types/components/controls/NumericInput.d.ts +2 -5
- package/dist/cjs/types/components/controls/Tooltip.d.ts +2 -1
- package/dist/cjs/types/components/layout/AppContainer.d.ts +529 -5
- package/dist/cjs/types/components/layout/Menu.d.ts +2 -1
- package/dist/cjs/types/components/{icons/Separator.d.ts → layout/PipeSeparator.d.ts} +0 -1
- package/dist/cjs/types/components/layout/SwapConfiguration.d.ts +2 -1
- package/dist/cjs/types/components/layout/TokenPair.d.ts +2 -2
- package/dist/cjs/types/components/layout/TransactionHeader/TransactionHeaderLayout.d.ts +2 -2
- package/dist/cjs/types/components/layout/TransactionSearch.d.ts +3 -1
- package/dist/cjs/types/components/layout/index.d.ts +2 -1
- package/dist/cjs/types/components/layout/useOnClickOutside.d.ts +4 -0
- package/dist/cjs/types/components/lists/PropertyListItem.d.ts +3 -3
- package/dist/cjs/types/components/lists/TransactionAction/ApproveAction.d.ts +3 -3
- package/dist/cjs/types/components/lists/TransactionAction/BridgeAction.d.ts +3 -3
- package/dist/cjs/types/components/lists/TransactionAction/StartAction.d.ts +3 -3
- package/dist/cjs/types/components/lists/TransactionAction/WrapAction.d.ts +3 -3
- package/dist/cjs/types/components/lists/TransactionItem.d.ts +3 -2
- package/dist/cjs/types/components/views/SwapDetailsView.d.ts +2 -1
- package/dist/cjs/types/components/views/TransactionView/TransactionViewLayout.d.ts +6 -5
- package/dist/cjs/types/core/utils.d.ts +2 -0
- package/dist/cjs/types/hooks/useVersion.d.ts +1 -0
- package/dist/cjs/types/stores/container.d.ts +6 -0
- package/dist/cjs/types/stories/views/SwapDetailsView.stories.d.ts +1 -0
- package/dist/esm/index.js +10977 -224
- package/dist/esm/types/components/badges/LoadingSkeleton.d.ts +10 -1
- package/dist/esm/types/components/controls/NumericInput.d.ts +2 -5
- package/dist/esm/types/components/controls/Tooltip.d.ts +2 -1
- package/dist/esm/types/components/layout/AppContainer.d.ts +529 -5
- package/dist/esm/types/components/layout/Menu.d.ts +2 -1
- package/dist/esm/types/components/{icons/Separator.d.ts → layout/PipeSeparator.d.ts} +0 -1
- package/dist/esm/types/components/layout/SwapConfiguration.d.ts +2 -1
- package/dist/esm/types/components/layout/TokenPair.d.ts +2 -2
- package/dist/esm/types/components/layout/TransactionHeader/TransactionHeaderLayout.d.ts +2 -2
- package/dist/esm/types/components/layout/TransactionSearch.d.ts +3 -1
- package/dist/esm/types/components/layout/index.d.ts +2 -1
- package/dist/esm/types/components/layout/useOnClickOutside.d.ts +4 -0
- package/dist/esm/types/components/lists/PropertyListItem.d.ts +3 -3
- package/dist/esm/types/components/lists/TransactionAction/ApproveAction.d.ts +3 -3
- package/dist/esm/types/components/lists/TransactionAction/BridgeAction.d.ts +3 -3
- package/dist/esm/types/components/lists/TransactionAction/StartAction.d.ts +3 -3
- package/dist/esm/types/components/lists/TransactionAction/WrapAction.d.ts +3 -3
- package/dist/esm/types/components/lists/TransactionItem.d.ts +3 -2
- package/dist/esm/types/components/views/SwapDetailsView.d.ts +2 -1
- package/dist/esm/types/components/views/TransactionView/TransactionViewLayout.d.ts +6 -5
- package/dist/esm/types/core/utils.d.ts +2 -0
- package/dist/esm/types/hooks/useVersion.d.ts +1 -0
- package/dist/esm/types/stores/container.d.ts +6 -0
- package/dist/esm/types/stories/views/SwapDetailsView.stories.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +584 -40
- package/package.json +3 -2
- package/dist/cjs/types/components/layout/ExploreLayout.d.ts +0 -3
- package/dist/cjs/types/stories/layout/ExploreLayout.stories.d.ts +0 -6
- package/dist/esm/types/components/layout/ExploreLayout.d.ts +0 -3
- package/dist/esm/types/stories/layout/ExploreLayout.stories.d.ts +0 -6
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import react__default, { ReactNode, ComponentProps } from 'react';
|
|
5
|
+
import * as framer_motion from 'framer-motion';
|
|
6
|
+
import { motion } from 'framer-motion';
|
|
5
7
|
|
|
6
8
|
interface BadgeImageProps {
|
|
7
9
|
imageUrl?: string;
|
|
@@ -80,6 +82,15 @@ interface LoadingSkeletonProps {
|
|
|
80
82
|
width?: string;
|
|
81
83
|
}
|
|
82
84
|
declare function LoadingSkeleton({ className, height, isLoading: isLoadingProp, children, width, }: LoadingSkeletonProps): string | number | true | Iterable<react.ReactNode> | react_jsx_runtime.JSX.Element;
|
|
85
|
+
interface LoadingTextProps extends ComponentProps<'span'> {
|
|
86
|
+
width?: string | [string, string];
|
|
87
|
+
isLoading?: boolean;
|
|
88
|
+
}
|
|
89
|
+
declare function TextSkeleton({ className, width, children, isLoading, ...props }: LoadingTextProps): string | number | boolean | Iterable<react.ReactNode> | react_jsx_runtime.JSX.Element | null | undefined;
|
|
90
|
+
interface LoadingBlockProps extends ComponentProps<'div'> {
|
|
91
|
+
isLoading?: boolean;
|
|
92
|
+
}
|
|
93
|
+
declare function BlockSkeleton({ isLoading, className, children, ...props }: LoadingBlockProps): string | number | boolean | Iterable<react.ReactNode> | react_jsx_runtime.JSX.Element | null | undefined;
|
|
83
94
|
|
|
84
95
|
declare const statusBgClassMap: Record<ActionStatus, string>;
|
|
85
96
|
declare const statusTextClassMap: Record<ActionStatus, string>;
|
|
@@ -201,10 +212,6 @@ interface NumericInputProps {
|
|
|
201
212
|
token: Token$1;
|
|
202
213
|
onAmountChange: (tokenAmount: string) => void;
|
|
203
214
|
forcedAmount?: string;
|
|
204
|
-
maxDecimals?: {
|
|
205
|
-
token: number;
|
|
206
|
-
usd: number;
|
|
207
|
-
};
|
|
208
215
|
formatIfVerySmall?: {
|
|
209
216
|
token: string;
|
|
210
217
|
usd: string;
|
|
@@ -219,8 +226,9 @@ interface NumericInputProps {
|
|
|
219
226
|
criticalPriceImpactPercentage?: number;
|
|
220
227
|
direction?: SwapDirection;
|
|
221
228
|
amountUsd?: string;
|
|
229
|
+
maxUsdDecimals?: number;
|
|
222
230
|
}
|
|
223
|
-
declare function NumericInput({ priceImpactPercentage, balance, error, criticalPriceImpactPercentage, token, onAmountChange, forcedAmount,
|
|
231
|
+
declare function NumericInput({ priceImpactPercentage, balance, error, criticalPriceImpactPercentage, token, onAmountChange, forcedAmount, maxUsdDecimals, formatIfVerySmall, showDetails, isLoading, direction, amountUsd, }: NumericInputProps): react_jsx_runtime.JSX.Element;
|
|
224
232
|
|
|
225
233
|
interface SettingsSliderProps {
|
|
226
234
|
value: number | undefined;
|
|
@@ -252,8 +260,9 @@ interface TooltipProps {
|
|
|
252
260
|
childrenClassName?: string;
|
|
253
261
|
tooltipClassName?: string;
|
|
254
262
|
displayDelayMs?: number;
|
|
263
|
+
containerRef?: react__default.RefObject<HTMLElement>;
|
|
255
264
|
}
|
|
256
|
-
declare function Tooltip({ children, tooltipContent, tooltipWidth, threshold, containerClassName, childrenClassName, tooltipClassName, displayDelayMs, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
265
|
+
declare function Tooltip({ children, tooltipContent, tooltipWidth, threshold, containerClassName, childrenClassName, tooltipClassName, displayDelayMs, containerRef: containerRefProp, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
257
266
|
|
|
258
267
|
interface Props {
|
|
259
268
|
lottieJsonFile: object;
|
|
@@ -262,6 +271,535 @@ interface Props {
|
|
|
262
271
|
}
|
|
263
272
|
declare const AnimationWrapper: ({ lottieJsonFile, animReplacement, hideAnimations, }: Props) => react_jsx_runtime.JSX.Element;
|
|
264
273
|
|
|
274
|
+
interface AppContainerProps extends ComponentProps<typeof motion.div> {
|
|
275
|
+
layoutKey?: string;
|
|
276
|
+
}
|
|
277
|
+
declare function AppContainer({ children, className, layoutKey, ...props }: AppContainerProps): react_jsx_runtime.JSX.Element;
|
|
278
|
+
declare namespace AppContainer {
|
|
279
|
+
var Nav: ({ className, children, ...props }: {
|
|
280
|
+
slot?: string | undefined;
|
|
281
|
+
title?: string | undefined;
|
|
282
|
+
color?: string | undefined;
|
|
283
|
+
hidden?: boolean | undefined;
|
|
284
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
285
|
+
className?: string | undefined;
|
|
286
|
+
id?: string | undefined;
|
|
287
|
+
lang?: string | undefined;
|
|
288
|
+
role?: react.AriaRole | undefined;
|
|
289
|
+
tabIndex?: number | undefined;
|
|
290
|
+
"aria-activedescendant"?: string | undefined;
|
|
291
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
292
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
293
|
+
"aria-braillelabel"?: string | undefined;
|
|
294
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
295
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
296
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
297
|
+
"aria-colcount"?: number | undefined;
|
|
298
|
+
"aria-colindex"?: number | undefined;
|
|
299
|
+
"aria-colindextext"?: string | undefined;
|
|
300
|
+
"aria-colspan"?: number | undefined;
|
|
301
|
+
"aria-controls"?: string | undefined;
|
|
302
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
303
|
+
"aria-describedby"?: string | undefined;
|
|
304
|
+
"aria-description"?: string | undefined;
|
|
305
|
+
"aria-details"?: string | undefined;
|
|
306
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
307
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
308
|
+
"aria-errormessage"?: string | undefined;
|
|
309
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
310
|
+
"aria-flowto"?: string | undefined;
|
|
311
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
312
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
313
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
314
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
315
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
316
|
+
"aria-label"?: string | undefined;
|
|
317
|
+
"aria-labelledby"?: string | undefined;
|
|
318
|
+
"aria-level"?: number | undefined;
|
|
319
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
320
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
321
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
322
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
323
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
324
|
+
"aria-owns"?: string | undefined;
|
|
325
|
+
"aria-placeholder"?: string | undefined;
|
|
326
|
+
"aria-posinset"?: number | undefined;
|
|
327
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
328
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
329
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
330
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
331
|
+
"aria-roledescription"?: string | undefined;
|
|
332
|
+
"aria-rowcount"?: number | undefined;
|
|
333
|
+
"aria-rowindex"?: number | undefined;
|
|
334
|
+
"aria-rowindextext"?: string | undefined;
|
|
335
|
+
"aria-rowspan"?: number | undefined;
|
|
336
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
337
|
+
"aria-setsize"?: number | undefined;
|
|
338
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
339
|
+
"aria-valuemax"?: number | undefined;
|
|
340
|
+
"aria-valuemin"?: number | undefined;
|
|
341
|
+
"aria-valuenow"?: number | undefined;
|
|
342
|
+
"aria-valuetext"?: string | undefined;
|
|
343
|
+
defaultChecked?: boolean | undefined;
|
|
344
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
345
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
346
|
+
accessKey?: string | undefined;
|
|
347
|
+
autoFocus?: boolean | undefined;
|
|
348
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
349
|
+
contextMenu?: string | undefined;
|
|
350
|
+
dir?: string | undefined;
|
|
351
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
352
|
+
nonce?: string | undefined;
|
|
353
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
354
|
+
translate?: "no" | "yes" | undefined;
|
|
355
|
+
radioGroup?: string | undefined;
|
|
356
|
+
about?: string | undefined;
|
|
357
|
+
content?: string | undefined;
|
|
358
|
+
datatype?: string | undefined;
|
|
359
|
+
inlist?: any;
|
|
360
|
+
prefix?: string | undefined;
|
|
361
|
+
property?: string | undefined;
|
|
362
|
+
rel?: string | undefined;
|
|
363
|
+
resource?: string | undefined;
|
|
364
|
+
rev?: string | undefined;
|
|
365
|
+
typeof?: string | undefined;
|
|
366
|
+
vocab?: string | undefined;
|
|
367
|
+
autoCapitalize?: string | undefined;
|
|
368
|
+
autoCorrect?: string | undefined;
|
|
369
|
+
autoSave?: string | undefined;
|
|
370
|
+
itemProp?: string | undefined;
|
|
371
|
+
itemScope?: boolean | undefined;
|
|
372
|
+
itemType?: string | undefined;
|
|
373
|
+
itemID?: string | undefined;
|
|
374
|
+
itemRef?: string | undefined;
|
|
375
|
+
results?: number | undefined;
|
|
376
|
+
security?: string | undefined;
|
|
377
|
+
unselectable?: "off" | "on" | undefined;
|
|
378
|
+
inputMode?: "search" | "text" | "numeric" | "none" | "email" | "tel" | "url" | "decimal" | undefined;
|
|
379
|
+
is?: string | undefined;
|
|
380
|
+
dangerouslySetInnerHTML?: {
|
|
381
|
+
__html: string | TrustedHTML;
|
|
382
|
+
} | undefined;
|
|
383
|
+
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
384
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
385
|
+
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
386
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
387
|
+
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
388
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
389
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
390
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
391
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
392
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
393
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
394
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
395
|
+
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
396
|
+
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
397
|
+
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
398
|
+
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
399
|
+
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
400
|
+
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
401
|
+
onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
402
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
403
|
+
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
404
|
+
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
405
|
+
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
406
|
+
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
407
|
+
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
408
|
+
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
409
|
+
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
410
|
+
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
411
|
+
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
412
|
+
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
413
|
+
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
414
|
+
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
415
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
416
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
417
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
418
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
419
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
420
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
421
|
+
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
422
|
+
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
423
|
+
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
424
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
425
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
426
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
427
|
+
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
428
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
429
|
+
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
430
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
431
|
+
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
432
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
433
|
+
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
434
|
+
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
435
|
+
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
436
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
437
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
438
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
439
|
+
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
440
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
441
|
+
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
442
|
+
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
443
|
+
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
444
|
+
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
445
|
+
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
446
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
447
|
+
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
448
|
+
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
449
|
+
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
450
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
451
|
+
onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
452
|
+
onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
453
|
+
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
454
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
455
|
+
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
456
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
457
|
+
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
458
|
+
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
459
|
+
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
460
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
461
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
462
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
463
|
+
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
464
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
465
|
+
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
466
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
467
|
+
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
468
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
469
|
+
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
470
|
+
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
471
|
+
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
472
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
473
|
+
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
474
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
475
|
+
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
476
|
+
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
477
|
+
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
478
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
479
|
+
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
480
|
+
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
481
|
+
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
482
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
483
|
+
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
484
|
+
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
485
|
+
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
486
|
+
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
487
|
+
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
488
|
+
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
489
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
490
|
+
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
491
|
+
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
492
|
+
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
493
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
494
|
+
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
495
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
496
|
+
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
497
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
498
|
+
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
499
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
500
|
+
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
501
|
+
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
502
|
+
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
503
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
504
|
+
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
505
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
506
|
+
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
507
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
508
|
+
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
509
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
510
|
+
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
511
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
512
|
+
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
513
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
514
|
+
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
515
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
516
|
+
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
517
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
518
|
+
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
519
|
+
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
520
|
+
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
521
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
522
|
+
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
523
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
524
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
525
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
526
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
527
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
528
|
+
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
529
|
+
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
530
|
+
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
531
|
+
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
532
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
533
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
534
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
535
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
536
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
537
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
538
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
539
|
+
} & framer_motion.MotionProps & react.RefAttributes<HTMLDivElement>) => react_jsx_runtime.JSX.Element;
|
|
540
|
+
var Content: (props: {
|
|
541
|
+
slot?: string | undefined;
|
|
542
|
+
title?: string | undefined;
|
|
543
|
+
color?: string | undefined;
|
|
544
|
+
hidden?: boolean | undefined;
|
|
545
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
546
|
+
className?: string | undefined;
|
|
547
|
+
id?: string | undefined;
|
|
548
|
+
lang?: string | undefined;
|
|
549
|
+
role?: react.AriaRole | undefined;
|
|
550
|
+
tabIndex?: number | undefined;
|
|
551
|
+
"aria-activedescendant"?: string | undefined;
|
|
552
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
553
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
554
|
+
"aria-braillelabel"?: string | undefined;
|
|
555
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
556
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
557
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
558
|
+
"aria-colcount"?: number | undefined;
|
|
559
|
+
"aria-colindex"?: number | undefined;
|
|
560
|
+
"aria-colindextext"?: string | undefined;
|
|
561
|
+
"aria-colspan"?: number | undefined;
|
|
562
|
+
"aria-controls"?: string | undefined;
|
|
563
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
564
|
+
"aria-describedby"?: string | undefined;
|
|
565
|
+
"aria-description"?: string | undefined;
|
|
566
|
+
"aria-details"?: string | undefined;
|
|
567
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
568
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
569
|
+
"aria-errormessage"?: string | undefined;
|
|
570
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
571
|
+
"aria-flowto"?: string | undefined;
|
|
572
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
573
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
574
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
575
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
576
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
577
|
+
"aria-label"?: string | undefined;
|
|
578
|
+
"aria-labelledby"?: string | undefined;
|
|
579
|
+
"aria-level"?: number | undefined;
|
|
580
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
581
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
582
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
583
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
584
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
585
|
+
"aria-owns"?: string | undefined;
|
|
586
|
+
"aria-placeholder"?: string | undefined;
|
|
587
|
+
"aria-posinset"?: number | undefined;
|
|
588
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
589
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
590
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
591
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
592
|
+
"aria-roledescription"?: string | undefined;
|
|
593
|
+
"aria-rowcount"?: number | undefined;
|
|
594
|
+
"aria-rowindex"?: number | undefined;
|
|
595
|
+
"aria-rowindextext"?: string | undefined;
|
|
596
|
+
"aria-rowspan"?: number | undefined;
|
|
597
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
598
|
+
"aria-setsize"?: number | undefined;
|
|
599
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
600
|
+
"aria-valuemax"?: number | undefined;
|
|
601
|
+
"aria-valuemin"?: number | undefined;
|
|
602
|
+
"aria-valuenow"?: number | undefined;
|
|
603
|
+
"aria-valuetext"?: string | undefined;
|
|
604
|
+
defaultChecked?: boolean | undefined;
|
|
605
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
606
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
607
|
+
accessKey?: string | undefined;
|
|
608
|
+
autoFocus?: boolean | undefined;
|
|
609
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
610
|
+
contextMenu?: string | undefined;
|
|
611
|
+
dir?: string | undefined;
|
|
612
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
613
|
+
nonce?: string | undefined;
|
|
614
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
615
|
+
translate?: "no" | "yes" | undefined;
|
|
616
|
+
radioGroup?: string | undefined;
|
|
617
|
+
about?: string | undefined;
|
|
618
|
+
content?: string | undefined;
|
|
619
|
+
datatype?: string | undefined;
|
|
620
|
+
inlist?: any;
|
|
621
|
+
prefix?: string | undefined;
|
|
622
|
+
property?: string | undefined;
|
|
623
|
+
rel?: string | undefined;
|
|
624
|
+
resource?: string | undefined;
|
|
625
|
+
rev?: string | undefined;
|
|
626
|
+
typeof?: string | undefined;
|
|
627
|
+
vocab?: string | undefined;
|
|
628
|
+
autoCapitalize?: string | undefined;
|
|
629
|
+
autoCorrect?: string | undefined;
|
|
630
|
+
autoSave?: string | undefined;
|
|
631
|
+
itemProp?: string | undefined;
|
|
632
|
+
itemScope?: boolean | undefined;
|
|
633
|
+
itemType?: string | undefined;
|
|
634
|
+
itemID?: string | undefined;
|
|
635
|
+
itemRef?: string | undefined;
|
|
636
|
+
results?: number | undefined;
|
|
637
|
+
security?: string | undefined;
|
|
638
|
+
unselectable?: "off" | "on" | undefined;
|
|
639
|
+
inputMode?: "search" | "text" | "numeric" | "none" | "email" | "tel" | "url" | "decimal" | undefined;
|
|
640
|
+
is?: string | undefined;
|
|
641
|
+
dangerouslySetInnerHTML?: {
|
|
642
|
+
__html: string | TrustedHTML;
|
|
643
|
+
} | undefined;
|
|
644
|
+
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
645
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
646
|
+
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
647
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
648
|
+
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
649
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
650
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
651
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
652
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
653
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
654
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
655
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
656
|
+
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
657
|
+
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
658
|
+
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
659
|
+
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
660
|
+
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
661
|
+
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
662
|
+
onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
663
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
664
|
+
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
665
|
+
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
666
|
+
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
667
|
+
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
668
|
+
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
669
|
+
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
670
|
+
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
671
|
+
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
672
|
+
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
673
|
+
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
674
|
+
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
675
|
+
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
676
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
677
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
678
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
679
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
680
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
681
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
682
|
+
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
683
|
+
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
684
|
+
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
685
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
686
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
687
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
688
|
+
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
689
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
690
|
+
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
691
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
692
|
+
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
693
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
694
|
+
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
695
|
+
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
696
|
+
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
697
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
698
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
699
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
700
|
+
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
701
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
702
|
+
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
703
|
+
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
704
|
+
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
705
|
+
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
706
|
+
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
707
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
708
|
+
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
709
|
+
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
710
|
+
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
711
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
712
|
+
onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
713
|
+
onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
714
|
+
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
715
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
716
|
+
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
717
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
718
|
+
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
719
|
+
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
720
|
+
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
721
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
722
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
723
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
724
|
+
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
725
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
726
|
+
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
727
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
728
|
+
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
729
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
730
|
+
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
731
|
+
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
732
|
+
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
733
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
734
|
+
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
735
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
736
|
+
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
737
|
+
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
738
|
+
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
739
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
740
|
+
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
741
|
+
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
742
|
+
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
743
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
744
|
+
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
745
|
+
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
746
|
+
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
747
|
+
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
748
|
+
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
749
|
+
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
750
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
751
|
+
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
752
|
+
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
753
|
+
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
754
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
755
|
+
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
756
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
757
|
+
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
758
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
759
|
+
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
760
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
761
|
+
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
762
|
+
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
763
|
+
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
764
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
765
|
+
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
766
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
767
|
+
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
768
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
769
|
+
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
770
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
771
|
+
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
772
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
773
|
+
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
774
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
775
|
+
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
776
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
777
|
+
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
778
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
779
|
+
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
780
|
+
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
781
|
+
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
782
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
783
|
+
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
784
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
785
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
786
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
787
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
788
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
789
|
+
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
790
|
+
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
791
|
+
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
792
|
+
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
793
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
794
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
795
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
796
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
797
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
798
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
799
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
800
|
+
} & framer_motion.MotionProps & react.RefAttributes<HTMLDivElement>) => react_jsx_runtime.JSX.Element;
|
|
801
|
+
}
|
|
802
|
+
|
|
265
803
|
interface BoostProps {
|
|
266
804
|
boostMode: BoostMode;
|
|
267
805
|
onToggleBoostMode?: ({ boostMode }: {
|
|
@@ -380,13 +918,13 @@ interface MenuItemProps {
|
|
|
380
918
|
declare function MenuItem({ label, imageUrl, icon }: MenuItemProps): react_jsx_runtime.JSX.Element;
|
|
381
919
|
|
|
382
920
|
interface PropertyListItemProps extends ComponentProps<'li'> {
|
|
383
|
-
|
|
921
|
+
isLoading?: boolean;
|
|
922
|
+
label?: React.ReactNode;
|
|
384
923
|
icon?: React.ReactNode;
|
|
385
924
|
detail?: React.ReactNode;
|
|
386
|
-
isLoading?: boolean;
|
|
387
925
|
variant?: PropertyListItemSize;
|
|
388
926
|
}
|
|
389
|
-
declare function PropertyListItem({ label, detail, icon,
|
|
927
|
+
declare function PropertyListItem({ isLoading, label, detail, icon, className, variant, ...props }: PropertyListItemProps): react_jsx_runtime.JSX.Element;
|
|
390
928
|
|
|
391
929
|
interface SectionTitleProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
392
930
|
title: string;
|
|
@@ -509,9 +1047,9 @@ interface ApproveActionProps extends BaseActionProps {
|
|
|
509
1047
|
address: string;
|
|
510
1048
|
url: string;
|
|
511
1049
|
};
|
|
512
|
-
timestamp
|
|
513
|
-
hash
|
|
514
|
-
url
|
|
1050
|
+
timestamp?: number;
|
|
1051
|
+
hash?: string;
|
|
1052
|
+
url?: string;
|
|
515
1053
|
}
|
|
516
1054
|
declare function ApproveAction({ status, nextStatus, showTimeline, showBody, profile, chain, wallet, timestamp, hash, url, }: ApproveActionProps): react_jsx_runtime.JSX.Element;
|
|
517
1055
|
|
|
@@ -528,9 +1066,9 @@ interface BridgeActionProps extends BaseActionProps {
|
|
|
528
1066
|
logoURI: string;
|
|
529
1067
|
name: string;
|
|
530
1068
|
};
|
|
531
|
-
timestamp
|
|
532
|
-
hash
|
|
533
|
-
url
|
|
1069
|
+
timestamp?: number;
|
|
1070
|
+
hash?: string;
|
|
1071
|
+
url?: string;
|
|
534
1072
|
}
|
|
535
1073
|
declare function BridgeAction({ status, nextStatus, showTimeline, showBody, token, chain, provider, timestamp, hash, url, }: BridgeActionProps): react_jsx_runtime.JSX.Element;
|
|
536
1074
|
|
|
@@ -645,9 +1183,9 @@ interface StakeActionProps extends BaseActionProps {
|
|
|
645
1183
|
declare function StakeAction({ status, nextStatus, showTimeline, showBody, token, provider, timestamp, hash, url, }: StakeActionProps): react_jsx_runtime.JSX.Element;
|
|
646
1184
|
|
|
647
1185
|
interface StartActionProps extends BaseActionProps {
|
|
648
|
-
timestamp
|
|
649
|
-
hash
|
|
650
|
-
url
|
|
1186
|
+
timestamp?: number;
|
|
1187
|
+
hash?: string;
|
|
1188
|
+
url?: string;
|
|
651
1189
|
}
|
|
652
1190
|
declare function StartAction({ status, nextStatus, showTimeline, showBody, timestamp, hash, url, }: StartActionProps): react_jsx_runtime.JSX.Element;
|
|
653
1191
|
|
|
@@ -691,9 +1229,9 @@ interface WrapActionProps extends BaseActionProps {
|
|
|
691
1229
|
logoURI: string;
|
|
692
1230
|
name: string;
|
|
693
1231
|
};
|
|
694
|
-
timestamp
|
|
695
|
-
hash
|
|
696
|
-
url
|
|
1232
|
+
timestamp?: number;
|
|
1233
|
+
hash?: string;
|
|
1234
|
+
url?: string;
|
|
697
1235
|
}
|
|
698
1236
|
declare function WrapAction({ status, nextStatus, showTimeline, showBody, fromToken, toToken, provider, timestamp, hash, url, }: WrapActionProps): react_jsx_runtime.JSX.Element;
|
|
699
1237
|
|
|
@@ -724,6 +1262,7 @@ declare function TransactionAction({ type, props }: TransactionActionProps): rea
|
|
|
724
1262
|
declare function linkActionTimelineProps(actions: TransactionActionProps[], collapsed: boolean): TransactionActionProps[];
|
|
725
1263
|
|
|
726
1264
|
interface TransactionItemProps {
|
|
1265
|
+
className?: string;
|
|
727
1266
|
isLoading?: boolean;
|
|
728
1267
|
status?: ActionStatus;
|
|
729
1268
|
image?: ReactNode;
|
|
@@ -742,9 +1281,9 @@ interface TransactionItemProps {
|
|
|
742
1281
|
};
|
|
743
1282
|
fromAmount?: string;
|
|
744
1283
|
toAmount?: string;
|
|
745
|
-
timestamp?:
|
|
1284
|
+
timestamp?: number;
|
|
746
1285
|
}
|
|
747
|
-
declare function TransactionItem({ isLoading, status, image, type, hash, fromChain, toChain, fromAmount, toAmount, timestamp, }: TransactionItemProps): react_jsx_runtime.JSX.Element;
|
|
1286
|
+
declare function TransactionItem({ className, isLoading, status, image, type, hash, fromChain, toChain, fromAmount, toAmount, timestamp, }: TransactionItemProps): react_jsx_runtime.JSX.Element;
|
|
748
1287
|
|
|
749
1288
|
interface DropdownMenuProps {
|
|
750
1289
|
dropdownRef?: React.RefObject<HTMLDivElement>;
|
|
@@ -762,9 +1301,6 @@ type ErrorMessageProps = {
|
|
|
762
1301
|
};
|
|
763
1302
|
declare function ErrorMessage({ message, showIcon }: ErrorMessageProps): react_jsx_runtime.JSX.Element;
|
|
764
1303
|
|
|
765
|
-
declare const ExploreLayout: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & react.RefAttributes<react.ElementType<"div">>>;
|
|
766
|
-
declare const ExploreNav: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & react.RefAttributes<react.ElementType<"div">>>;
|
|
767
|
-
|
|
768
1304
|
interface HashLinkProps {
|
|
769
1305
|
showTx?: boolean;
|
|
770
1306
|
hash: string;
|
|
@@ -793,8 +1329,9 @@ interface MenuProps extends react__default.ComponentProps<'div'> {
|
|
|
793
1329
|
contentClassName?: string;
|
|
794
1330
|
rounded?: Rounded;
|
|
795
1331
|
menuRef?: react__default.RefObject<HTMLDivElement>;
|
|
1332
|
+
contentWrapperClassName?: string;
|
|
796
1333
|
}
|
|
797
|
-
declare function Menu({ children, containerClassName, contentClassName, rounded, menuRef, ...props }: MenuProps): react_jsx_runtime.JSX.Element;
|
|
1334
|
+
declare function Menu({ children, containerClassName, contentClassName, rounded, menuRef, contentWrapperClassName, ...props }: MenuProps): react_jsx_runtime.JSX.Element;
|
|
798
1335
|
|
|
799
1336
|
interface ModalProps {
|
|
800
1337
|
children: React.ReactNode;
|
|
@@ -831,6 +1368,8 @@ interface NavigationBarProps {
|
|
|
831
1368
|
}
|
|
832
1369
|
declare function NavigationBar({ title, displayBackButton, logoUrl, transparent, displayButtonShadows, onBackButtonClick, actions, }: NavigationBarProps): react_jsx_runtime.JSX.Element;
|
|
833
1370
|
|
|
1371
|
+
declare function PipeSeparator({ className, ...props }: ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1372
|
+
|
|
834
1373
|
declare function ProductCard({ children }: React.PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
835
1374
|
declare function BorderedContainer({ children, className, }: {
|
|
836
1375
|
children: React.ReactNode;
|
|
@@ -869,8 +1408,9 @@ interface SwapConfigurationProps {
|
|
|
869
1408
|
criticalPriceImpactPercentage?: number;
|
|
870
1409
|
emptyAddressLabel?: string;
|
|
871
1410
|
assetsButtonVariant?: AssetsButtonVariant;
|
|
1411
|
+
maxUsdDecimals?: number;
|
|
872
1412
|
}
|
|
873
|
-
declare function SwapConfiguration({ amount, tokenPrice, isFetching, chain, token, direction, onAmountChange, onWalletButtonClick, onAssetsButtonClick, address, emptyAddressLabel, balance, criticalPriceImpactPercentage, error, priceImpactPercentage, amountUsd, assetsButtonVariant, }: SwapConfigurationProps): react_jsx_runtime.JSX.Element;
|
|
1413
|
+
declare function SwapConfiguration({ amount, tokenPrice, isFetching, chain, token, direction, onAmountChange, onWalletButtonClick, onAssetsButtonClick, address, emptyAddressLabel, balance, criticalPriceImpactPercentage, error, priceImpactPercentage, amountUsd, assetsButtonVariant, maxUsdDecimals, }: SwapConfigurationProps): react_jsx_runtime.JSX.Element;
|
|
874
1414
|
|
|
875
1415
|
interface SwapProgressViewHeaderProps {
|
|
876
1416
|
title: string;
|
|
@@ -895,11 +1435,11 @@ declare const SwapStepsCollapsed: react.ForwardRefExoticComponent<SwapStepsColla
|
|
|
895
1435
|
}>>;
|
|
896
1436
|
|
|
897
1437
|
interface TokenPairProps {
|
|
898
|
-
firstToken
|
|
1438
|
+
firstToken?: {
|
|
899
1439
|
logoURI: string;
|
|
900
1440
|
bgColor: string;
|
|
901
1441
|
};
|
|
902
|
-
secondToken
|
|
1442
|
+
secondToken?: {
|
|
903
1443
|
logoURI: string;
|
|
904
1444
|
bgColor: string;
|
|
905
1445
|
};
|
|
@@ -999,13 +1539,13 @@ type TransactionHeaderProps = {
|
|
|
999
1539
|
declare function TransactionHeader({ type, props }: TransactionHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1000
1540
|
|
|
1001
1541
|
interface TransactionHeaderLayoutProps {
|
|
1542
|
+
isLoading?: boolean;
|
|
1002
1543
|
status?: ActionStatus;
|
|
1003
1544
|
title?: string;
|
|
1004
1545
|
image?: ReactNode;
|
|
1005
1546
|
children?: ReactNode;
|
|
1006
|
-
isLoading?: boolean;
|
|
1007
1547
|
}
|
|
1008
|
-
declare function TransactionHeaderLayout({ status, title, image, children,
|
|
1548
|
+
declare function TransactionHeaderLayout({ isLoading, status, title, image, children, }: TransactionHeaderLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1009
1549
|
|
|
1010
1550
|
interface BridgePropertiesProps {
|
|
1011
1551
|
amount: string;
|
|
@@ -1128,8 +1668,10 @@ interface TransactionSearchProps {
|
|
|
1128
1668
|
setQuery: (query: string) => void;
|
|
1129
1669
|
children?: ReactNode;
|
|
1130
1670
|
className?: string;
|
|
1671
|
+
onFocus?: () => void;
|
|
1672
|
+
onBlur?: () => void;
|
|
1131
1673
|
}
|
|
1132
|
-
declare function TransactionSearch({ query, setQuery, children, className, }: TransactionSearchProps): react_jsx_runtime.JSX.Element;
|
|
1674
|
+
declare function TransactionSearch({ query, setQuery, children, className, onFocus, onBlur, }: TransactionSearchProps): react_jsx_runtime.JSX.Element;
|
|
1133
1675
|
|
|
1134
1676
|
interface FromToProps {
|
|
1135
1677
|
isLoading?: boolean;
|
|
@@ -1205,8 +1747,9 @@ interface WalletsViewProps {
|
|
|
1205
1747
|
}
|
|
1206
1748
|
declare function RecipientView({ type }: WalletsViewProps): react_jsx_runtime.JSX.Element;
|
|
1207
1749
|
|
|
1208
|
-
declare function SwapDetailsView({ isLoading }: {
|
|
1750
|
+
declare function SwapDetailsView({ isLoading, canToggleBoostMode, }: {
|
|
1209
1751
|
isLoading?: boolean;
|
|
1752
|
+
canToggleBoostMode?: boolean;
|
|
1210
1753
|
}): react_jsx_runtime.JSX.Element;
|
|
1211
1754
|
|
|
1212
1755
|
type ChainData = {
|
|
@@ -1360,12 +1903,13 @@ type TransactionViewProps = {
|
|
|
1360
1903
|
declare function TransactionView({ type, props }: TransactionViewProps): react_jsx_runtime.JSX.Element;
|
|
1361
1904
|
|
|
1362
1905
|
interface TransactionViewLayoutProps extends ComponentProps<'div'> {
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1906
|
+
isLoading?: boolean;
|
|
1907
|
+
header?: ReactNode;
|
|
1908
|
+
properties?: ReactNode;
|
|
1909
|
+
actions?: TransactionActionProps[];
|
|
1910
|
+
fees?: FeesActionProps;
|
|
1367
1911
|
}
|
|
1368
|
-
declare function TransactionViewLayout({ header, properties, actions, fees, ...props }: TransactionViewLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1912
|
+
declare function TransactionViewLayout({ isLoading, header, properties, actions, fees, ...props }: TransactionViewLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1369
1913
|
|
|
1370
1914
|
declare function WalletsView(): react_jsx_runtime.JSX.Element;
|
|
1371
1915
|
|
|
@@ -1435,4 +1979,4 @@ declare const MEDIA_QUERIES: Record<MediaQuery, {
|
|
|
1435
1979
|
value: string;
|
|
1436
1980
|
}>;
|
|
1437
1981
|
|
|
1438
|
-
export { ActionLayout, ActionLineOutRow, ActionProperties, ActionRow, type ActionStatus, ActionStatusRow, ActionWrapper, AddressButton, AnimationWrapper, ApproveAction, ArrowButton, AssetsButton, AssetsView, BadgeImage, type BaseActionProps, type BaseTransactionViewProps, BodyText, Boost, BoostButton, BorderedContainer, Breadcrumb, BridgeAction, BridgeHeader, BridgeProperties, BridgeTransactionView, Button, BuyNFTHeader, BuyNFTProperties, BuyNFTTransactionView, CaptionText, Chip, Collapse, DescriptionBlocks, DetailsToolbar, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, ErrorMessage,
|
|
1982
|
+
export { ActionLayout, ActionLineOutRow, ActionProperties, ActionRow, type ActionStatus, ActionStatusRow, ActionWrapper, AddressButton, AnimationWrapper, AppContainer, ApproveAction, ArrowButton, AssetsButton, AssetsView, BadgeImage, type BaseActionProps, type BaseTransactionViewProps, BlockSkeleton, BodyText, Boost, BoostButton, BorderedContainer, Breadcrumb, BridgeAction, BridgeHeader, BridgeProperties, BridgeTransactionView, Button, BuyNFTHeader, BuyNFTProperties, BuyNFTTransactionView, CaptionText, Chip, Collapse, DescriptionBlocks, DetailsToolbar, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, ErrorMessage, FeeButton, FeesAction, type FeesActionProps, FeesLines, FeesTotal, FilterButton, HashLink, HeadingText, HistoryItem, type HistoryItemStatus, IconLabel, ImageIcon, IncompleteAction, InfoBox, Inline, Input, InteractionHeader, InteractionProperties, InteractionTransactionView, Join, List, ListItem, LoadingProvider, LoadingSkeleton, MEDIA_QUERIES, MainView, Menu, MenuItem, Modal, ModalContent, ModalContentDivider, NavigationBar, NumericInput, PipeSeparator, ProductCard, ProfileHeader, ProfileHeaderBackground, PropertiesLayout, PropertyListItem, type PropertyListItemProps, ReceiveNFTAction, ReceiveTokensAction, RecipientView, STEP_ITEM_HEIGHT, SectionTitle, SendTokensAction, SettingsButton, type SettingsButtonProps, type SettingsControl, SettingsItem, type SettingsItemProps, SettingsSlider, type SettingsSliderProps, SizeTransition, SquidConfigProvider, type SquidTheme, StakeAction, StartAction, SuccessAction, SwapAction, SwapConfiguration, SwapDetailsView, SwapHeader, type SwapHeaderProps, SwapProgressView, SwapProgressViewHeader, SwapProperties, type SwapPropertiesProps, SwapState, type SwapStep, SwapStepItem, SwapStepsCollapsed, type SwapStepsCollapsedFooterButton, SwapTransactionView, Switch, TextSkeleton, type ThemeType, Timestamp, Toast, TokenPair, Tooltip, type TooltipProps, type TooltipThreshold, type TooltipWidth, TransactionAction, type TransactionActionProps, type TransactionActionType, TransactionFilters, TransactionHeader, TransactionHeaderLayout, type TransactionHeaderProps, type TransactionHeaderType, TransactionItem, TransactionProperties, type TransactionPropertiesProps, type TransactionPropertiesType, TransactionSearch, TransactionState, TransactionView, TransactionViewLayout, type TransactionViewProps, type TransactionViewType, Transfer, UsdAmount, WalletLink, WalletsView, WrapAction, linkActionTimelineProps, statusBgClassMap, statusColorClassMap, statusTextClassMap, useDropdownMenu, useMediaQuery };
|