@0xsquid/ui 0.18.1 → 0.18.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist/cjs/index.js +10966 -205
  2. package/dist/cjs/types/components/badges/LoadingSkeleton.d.ts +10 -1
  3. package/dist/cjs/types/components/controls/Tooltip.d.ts +2 -1
  4. package/dist/cjs/types/components/layout/AppContainer.d.ts +529 -5
  5. package/dist/cjs/types/components/layout/Menu.d.ts +2 -1
  6. package/dist/cjs/types/components/{icons/Separator.d.ts → layout/PipeSeparator.d.ts} +0 -1
  7. package/dist/cjs/types/components/layout/TokenPair.d.ts +2 -2
  8. package/dist/cjs/types/components/layout/TransactionHeader/TransactionHeaderLayout.d.ts +2 -2
  9. package/dist/cjs/types/components/layout/TransactionSearch.d.ts +3 -1
  10. package/dist/cjs/types/components/layout/index.d.ts +2 -1
  11. package/dist/cjs/types/components/layout/useOnClickOutside.d.ts +4 -0
  12. package/dist/cjs/types/components/lists/PropertyListItem.d.ts +3 -3
  13. package/dist/cjs/types/components/lists/TransactionAction/ApproveAction.d.ts +3 -3
  14. package/dist/cjs/types/components/lists/TransactionAction/BridgeAction.d.ts +3 -3
  15. package/dist/cjs/types/components/lists/TransactionAction/StartAction.d.ts +3 -3
  16. package/dist/cjs/types/components/lists/TransactionAction/WrapAction.d.ts +3 -3
  17. package/dist/cjs/types/components/lists/TransactionItem.d.ts +3 -2
  18. package/dist/cjs/types/components/views/SwapDetailsView.d.ts +2 -1
  19. package/dist/cjs/types/components/views/TransactionView/TransactionViewLayout.d.ts +6 -5
  20. package/dist/cjs/types/core/utils.d.ts +2 -0
  21. package/dist/cjs/types/hooks/useVersion.d.ts +1 -0
  22. package/dist/cjs/types/stores/container.d.ts +6 -0
  23. package/dist/cjs/types/stories/views/SwapDetailsView.stories.d.ts +1 -0
  24. package/dist/esm/index.js +10964 -205
  25. package/dist/esm/types/components/badges/LoadingSkeleton.d.ts +10 -1
  26. package/dist/esm/types/components/controls/Tooltip.d.ts +2 -1
  27. package/dist/esm/types/components/layout/AppContainer.d.ts +529 -5
  28. package/dist/esm/types/components/layout/Menu.d.ts +2 -1
  29. package/dist/esm/types/components/{icons/Separator.d.ts → layout/PipeSeparator.d.ts} +0 -1
  30. package/dist/esm/types/components/layout/TokenPair.d.ts +2 -2
  31. package/dist/esm/types/components/layout/TransactionHeader/TransactionHeaderLayout.d.ts +2 -2
  32. package/dist/esm/types/components/layout/TransactionSearch.d.ts +3 -1
  33. package/dist/esm/types/components/layout/index.d.ts +2 -1
  34. package/dist/esm/types/components/layout/useOnClickOutside.d.ts +4 -0
  35. package/dist/esm/types/components/lists/PropertyListItem.d.ts +3 -3
  36. package/dist/esm/types/components/lists/TransactionAction/ApproveAction.d.ts +3 -3
  37. package/dist/esm/types/components/lists/TransactionAction/BridgeAction.d.ts +3 -3
  38. package/dist/esm/types/components/lists/TransactionAction/StartAction.d.ts +3 -3
  39. package/dist/esm/types/components/lists/TransactionAction/WrapAction.d.ts +3 -3
  40. package/dist/esm/types/components/lists/TransactionItem.d.ts +3 -2
  41. package/dist/esm/types/components/views/SwapDetailsView.d.ts +2 -1
  42. package/dist/esm/types/components/views/TransactionView/TransactionViewLayout.d.ts +6 -5
  43. package/dist/esm/types/core/utils.d.ts +2 -0
  44. package/dist/esm/types/hooks/useVersion.d.ts +1 -0
  45. package/dist/esm/types/stores/container.d.ts +6 -0
  46. package/dist/esm/types/stories/views/SwapDetailsView.stories.d.ts +1 -0
  47. package/dist/index.css +1 -1
  48. package/dist/index.d.ts +580 -34
  49. package/package.json +3 -2
  50. package/dist/cjs/types/components/layout/ExploreLayout.d.ts +0 -3
  51. package/dist/cjs/types/stories/layout/ExploreLayout.stories.d.ts +0 -6
  52. package/dist/esm/types/components/layout/ExploreLayout.d.ts +0 -3
  53. 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>;
@@ -252,8 +263,9 @@ interface TooltipProps {
252
263
  childrenClassName?: string;
253
264
  tooltipClassName?: string;
254
265
  displayDelayMs?: number;
266
+ containerRef?: react__default.RefObject<HTMLElement>;
255
267
  }
256
- declare function Tooltip({ children, tooltipContent, tooltipWidth, threshold, containerClassName, childrenClassName, tooltipClassName, displayDelayMs, }: TooltipProps): react_jsx_runtime.JSX.Element;
268
+ declare function Tooltip({ children, tooltipContent, tooltipWidth, threshold, containerClassName, childrenClassName, tooltipClassName, displayDelayMs, containerRef: containerRefProp, }: TooltipProps): react_jsx_runtime.JSX.Element;
257
269
 
258
270
  interface Props {
259
271
  lottieJsonFile: object;
@@ -262,6 +274,535 @@ interface Props {
262
274
  }
263
275
  declare const AnimationWrapper: ({ lottieJsonFile, animReplacement, hideAnimations, }: Props) => react_jsx_runtime.JSX.Element;
264
276
 
277
+ interface AppContainerProps extends ComponentProps<typeof motion.div> {
278
+ layoutKey?: string;
279
+ }
280
+ declare function AppContainer({ children, className, layoutKey, ...props }: AppContainerProps): react_jsx_runtime.JSX.Element;
281
+ declare namespace AppContainer {
282
+ var Nav: ({ className, children, ...props }: {
283
+ slot?: string | undefined;
284
+ title?: string | undefined;
285
+ color?: string | undefined;
286
+ hidden?: boolean | undefined;
287
+ suppressHydrationWarning?: boolean | undefined;
288
+ className?: string | undefined;
289
+ id?: string | undefined;
290
+ lang?: string | undefined;
291
+ role?: react.AriaRole | undefined;
292
+ tabIndex?: number | undefined;
293
+ "aria-activedescendant"?: string | undefined;
294
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
295
+ "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
296
+ "aria-braillelabel"?: string | undefined;
297
+ "aria-brailleroledescription"?: string | undefined;
298
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
299
+ "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
300
+ "aria-colcount"?: number | undefined;
301
+ "aria-colindex"?: number | undefined;
302
+ "aria-colindextext"?: string | undefined;
303
+ "aria-colspan"?: number | undefined;
304
+ "aria-controls"?: string | undefined;
305
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
306
+ "aria-describedby"?: string | undefined;
307
+ "aria-description"?: string | undefined;
308
+ "aria-details"?: string | undefined;
309
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
310
+ "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
311
+ "aria-errormessage"?: string | undefined;
312
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
313
+ "aria-flowto"?: string | undefined;
314
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
315
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
316
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
317
+ "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
318
+ "aria-keyshortcuts"?: string | undefined;
319
+ "aria-label"?: string | undefined;
320
+ "aria-labelledby"?: string | undefined;
321
+ "aria-level"?: number | undefined;
322
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
323
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
324
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
325
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
326
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
327
+ "aria-owns"?: string | undefined;
328
+ "aria-placeholder"?: string | undefined;
329
+ "aria-posinset"?: number | undefined;
330
+ "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
331
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
332
+ "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
333
+ "aria-required"?: (boolean | "true" | "false") | undefined;
334
+ "aria-roledescription"?: string | undefined;
335
+ "aria-rowcount"?: number | undefined;
336
+ "aria-rowindex"?: number | undefined;
337
+ "aria-rowindextext"?: string | undefined;
338
+ "aria-rowspan"?: number | undefined;
339
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
340
+ "aria-setsize"?: number | undefined;
341
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
342
+ "aria-valuemax"?: number | undefined;
343
+ "aria-valuemin"?: number | undefined;
344
+ "aria-valuenow"?: number | undefined;
345
+ "aria-valuetext"?: string | undefined;
346
+ defaultChecked?: boolean | undefined;
347
+ defaultValue?: string | number | readonly string[] | undefined;
348
+ suppressContentEditableWarning?: boolean | undefined;
349
+ accessKey?: string | undefined;
350
+ autoFocus?: boolean | undefined;
351
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
352
+ contextMenu?: string | undefined;
353
+ dir?: string | undefined;
354
+ draggable?: (boolean | "true" | "false") | undefined;
355
+ nonce?: string | undefined;
356
+ spellCheck?: (boolean | "true" | "false") | undefined;
357
+ translate?: "no" | "yes" | undefined;
358
+ radioGroup?: string | undefined;
359
+ about?: string | undefined;
360
+ content?: string | undefined;
361
+ datatype?: string | undefined;
362
+ inlist?: any;
363
+ prefix?: string | undefined;
364
+ property?: string | undefined;
365
+ rel?: string | undefined;
366
+ resource?: string | undefined;
367
+ rev?: string | undefined;
368
+ typeof?: string | undefined;
369
+ vocab?: string | undefined;
370
+ autoCapitalize?: string | undefined;
371
+ autoCorrect?: string | undefined;
372
+ autoSave?: string | undefined;
373
+ itemProp?: string | undefined;
374
+ itemScope?: boolean | undefined;
375
+ itemType?: string | undefined;
376
+ itemID?: string | undefined;
377
+ itemRef?: string | undefined;
378
+ results?: number | undefined;
379
+ security?: string | undefined;
380
+ unselectable?: "off" | "on" | undefined;
381
+ inputMode?: "search" | "text" | "numeric" | "none" | "email" | "tel" | "url" | "decimal" | undefined;
382
+ is?: string | undefined;
383
+ dangerouslySetInnerHTML?: {
384
+ __html: string | TrustedHTML;
385
+ } | undefined;
386
+ onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
387
+ onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
388
+ onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
389
+ onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
390
+ onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
391
+ onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
392
+ onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
393
+ onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
394
+ onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
395
+ onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
396
+ onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
397
+ onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
398
+ onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
399
+ onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
400
+ onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
401
+ onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
402
+ onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
403
+ onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
404
+ onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
405
+ onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
406
+ onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
407
+ onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
408
+ onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
409
+ onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
410
+ onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
411
+ onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
412
+ onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
413
+ onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
414
+ onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
415
+ onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
416
+ onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
417
+ onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
418
+ onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
419
+ onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
420
+ onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
421
+ onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
422
+ onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
423
+ onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
424
+ onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
425
+ onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
426
+ onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
427
+ onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
428
+ onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
429
+ onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
430
+ onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
431
+ onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
432
+ onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
433
+ onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
434
+ onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
435
+ onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
436
+ onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
437
+ onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
438
+ onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
439
+ onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
440
+ onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
441
+ onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
442
+ onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
443
+ onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
444
+ onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
445
+ onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
446
+ onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
447
+ onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
448
+ onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
449
+ onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
450
+ onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
451
+ onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
452
+ onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
453
+ onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
454
+ onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
455
+ onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
456
+ onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
457
+ onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
458
+ onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
459
+ onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
460
+ onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
461
+ onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
462
+ onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
463
+ onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
464
+ onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
465
+ onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
466
+ onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
467
+ onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
468
+ onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
469
+ onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
470
+ onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
471
+ onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
472
+ onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
473
+ onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
474
+ onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
475
+ onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
476
+ onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
477
+ onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
478
+ onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
479
+ onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
480
+ onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
481
+ onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
482
+ onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
483
+ onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
484
+ onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
485
+ onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
486
+ onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
487
+ onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
488
+ onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
489
+ onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
490
+ onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
491
+ onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
492
+ onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
493
+ onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
494
+ onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
495
+ onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
496
+ onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
497
+ onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
498
+ onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
499
+ onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
500
+ onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
501
+ onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
502
+ onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
503
+ onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
504
+ onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
505
+ onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
506
+ onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
507
+ onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
508
+ onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
509
+ onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
510
+ onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
511
+ onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
512
+ onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
513
+ onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
514
+ onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
515
+ onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
516
+ onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
517
+ onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
518
+ onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
519
+ onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
520
+ onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
521
+ onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
522
+ onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
523
+ onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
524
+ onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
525
+ onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
526
+ onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
527
+ onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
528
+ onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
529
+ onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
530
+ onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
531
+ onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
532
+ onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
533
+ onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
534
+ onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
535
+ onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
536
+ onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
537
+ onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
538
+ onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
539
+ onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
540
+ onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
541
+ onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
542
+ } & framer_motion.MotionProps & react.RefAttributes<HTMLDivElement>) => react_jsx_runtime.JSX.Element;
543
+ var Content: (props: {
544
+ slot?: string | undefined;
545
+ title?: string | undefined;
546
+ color?: string | undefined;
547
+ hidden?: boolean | undefined;
548
+ suppressHydrationWarning?: boolean | undefined;
549
+ className?: string | undefined;
550
+ id?: string | undefined;
551
+ lang?: string | undefined;
552
+ role?: react.AriaRole | undefined;
553
+ tabIndex?: number | undefined;
554
+ "aria-activedescendant"?: string | undefined;
555
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
556
+ "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
557
+ "aria-braillelabel"?: string | undefined;
558
+ "aria-brailleroledescription"?: string | undefined;
559
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
560
+ "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
561
+ "aria-colcount"?: number | undefined;
562
+ "aria-colindex"?: number | undefined;
563
+ "aria-colindextext"?: string | undefined;
564
+ "aria-colspan"?: number | undefined;
565
+ "aria-controls"?: string | undefined;
566
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
567
+ "aria-describedby"?: string | undefined;
568
+ "aria-description"?: string | undefined;
569
+ "aria-details"?: string | undefined;
570
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
571
+ "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
572
+ "aria-errormessage"?: string | undefined;
573
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
574
+ "aria-flowto"?: string | undefined;
575
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
576
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
577
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
578
+ "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
579
+ "aria-keyshortcuts"?: string | undefined;
580
+ "aria-label"?: string | undefined;
581
+ "aria-labelledby"?: string | undefined;
582
+ "aria-level"?: number | undefined;
583
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
584
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
585
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
586
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
587
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
588
+ "aria-owns"?: string | undefined;
589
+ "aria-placeholder"?: string | undefined;
590
+ "aria-posinset"?: number | undefined;
591
+ "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
592
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
593
+ "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
594
+ "aria-required"?: (boolean | "true" | "false") | undefined;
595
+ "aria-roledescription"?: string | undefined;
596
+ "aria-rowcount"?: number | undefined;
597
+ "aria-rowindex"?: number | undefined;
598
+ "aria-rowindextext"?: string | undefined;
599
+ "aria-rowspan"?: number | undefined;
600
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
601
+ "aria-setsize"?: number | undefined;
602
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
603
+ "aria-valuemax"?: number | undefined;
604
+ "aria-valuemin"?: number | undefined;
605
+ "aria-valuenow"?: number | undefined;
606
+ "aria-valuetext"?: string | undefined;
607
+ defaultChecked?: boolean | undefined;
608
+ defaultValue?: string | number | readonly string[] | undefined;
609
+ suppressContentEditableWarning?: boolean | undefined;
610
+ accessKey?: string | undefined;
611
+ autoFocus?: boolean | undefined;
612
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
613
+ contextMenu?: string | undefined;
614
+ dir?: string | undefined;
615
+ draggable?: (boolean | "true" | "false") | undefined;
616
+ nonce?: string | undefined;
617
+ spellCheck?: (boolean | "true" | "false") | undefined;
618
+ translate?: "no" | "yes" | undefined;
619
+ radioGroup?: string | undefined;
620
+ about?: string | undefined;
621
+ content?: string | undefined;
622
+ datatype?: string | undefined;
623
+ inlist?: any;
624
+ prefix?: string | undefined;
625
+ property?: string | undefined;
626
+ rel?: string | undefined;
627
+ resource?: string | undefined;
628
+ rev?: string | undefined;
629
+ typeof?: string | undefined;
630
+ vocab?: string | undefined;
631
+ autoCapitalize?: string | undefined;
632
+ autoCorrect?: string | undefined;
633
+ autoSave?: string | undefined;
634
+ itemProp?: string | undefined;
635
+ itemScope?: boolean | undefined;
636
+ itemType?: string | undefined;
637
+ itemID?: string | undefined;
638
+ itemRef?: string | undefined;
639
+ results?: number | undefined;
640
+ security?: string | undefined;
641
+ unselectable?: "off" | "on" | undefined;
642
+ inputMode?: "search" | "text" | "numeric" | "none" | "email" | "tel" | "url" | "decimal" | undefined;
643
+ is?: string | undefined;
644
+ dangerouslySetInnerHTML?: {
645
+ __html: string | TrustedHTML;
646
+ } | undefined;
647
+ onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
648
+ onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
649
+ onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
650
+ onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
651
+ onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
652
+ onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
653
+ onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
654
+ onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
655
+ onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
656
+ onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
657
+ onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
658
+ onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
659
+ onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
660
+ onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
661
+ onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
662
+ onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
663
+ onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
664
+ onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
665
+ onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
666
+ onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
667
+ onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
668
+ onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
669
+ onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
670
+ onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
671
+ onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
672
+ onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
673
+ onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
674
+ onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
675
+ onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
676
+ onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
677
+ onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
678
+ onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
679
+ onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
680
+ onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
681
+ onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
682
+ onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
683
+ onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
684
+ onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
685
+ onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
686
+ onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
687
+ onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
688
+ onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
689
+ onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
690
+ onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
691
+ onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
692
+ onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
693
+ onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
694
+ onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
695
+ onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
696
+ onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
697
+ onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
698
+ onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
699
+ onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
700
+ onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
701
+ onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
702
+ onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
703
+ onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
704
+ onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
705
+ onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
706
+ onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
707
+ onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
708
+ onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
709
+ onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
710
+ onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
711
+ onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
712
+ onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
713
+ onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
714
+ onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
715
+ onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
716
+ onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
717
+ onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
718
+ onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
719
+ onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
720
+ onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
721
+ onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
722
+ onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
723
+ onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
724
+ onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
725
+ onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
726
+ onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
727
+ onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
728
+ onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
729
+ onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
730
+ onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
731
+ onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
732
+ onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
733
+ onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
734
+ onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
735
+ onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
736
+ onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
737
+ onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
738
+ onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
739
+ onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
740
+ onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
741
+ onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
742
+ onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
743
+ onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
744
+ onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
745
+ onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
746
+ onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
747
+ onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
748
+ onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
749
+ onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
750
+ onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
751
+ onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
752
+ onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
753
+ onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
754
+ onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
755
+ onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
756
+ onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
757
+ onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
758
+ onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
759
+ onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
760
+ onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
761
+ onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
762
+ onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
763
+ onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
764
+ onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
765
+ onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
766
+ onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
767
+ onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
768
+ onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
769
+ onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
770
+ onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
771
+ onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
772
+ onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
773
+ onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
774
+ onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
775
+ onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
776
+ onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
777
+ onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
778
+ onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
779
+ onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
780
+ onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
781
+ onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
782
+ onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
783
+ onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
784
+ onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
785
+ onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
786
+ onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
787
+ onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
788
+ onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
789
+ onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
790
+ onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
791
+ onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
792
+ onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
793
+ onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
794
+ onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
795
+ onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
796
+ onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
797
+ onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
798
+ onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
799
+ onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
800
+ onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
801
+ onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
802
+ onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
803
+ } & framer_motion.MotionProps & react.RefAttributes<HTMLDivElement>) => react_jsx_runtime.JSX.Element;
804
+ }
805
+
265
806
  interface BoostProps {
266
807
  boostMode: BoostMode;
267
808
  onToggleBoostMode?: ({ boostMode }: {
@@ -380,13 +921,13 @@ interface MenuItemProps {
380
921
  declare function MenuItem({ label, imageUrl, icon }: MenuItemProps): react_jsx_runtime.JSX.Element;
381
922
 
382
923
  interface PropertyListItemProps extends ComponentProps<'li'> {
383
- label: React.ReactNode;
924
+ isLoading?: boolean;
925
+ label?: React.ReactNode;
384
926
  icon?: React.ReactNode;
385
927
  detail?: React.ReactNode;
386
- isLoading?: boolean;
387
928
  variant?: PropertyListItemSize;
388
929
  }
389
- declare function PropertyListItem({ label, detail, icon, isLoading, className, variant, ...props }: PropertyListItemProps): react_jsx_runtime.JSX.Element;
930
+ declare function PropertyListItem({ isLoading, label, detail, icon, className, variant, ...props }: PropertyListItemProps): react_jsx_runtime.JSX.Element;
390
931
 
391
932
  interface SectionTitleProps extends React.HTMLAttributes<HTMLDivElement> {
392
933
  title: string;
@@ -509,9 +1050,9 @@ interface ApproveActionProps extends BaseActionProps {
509
1050
  address: string;
510
1051
  url: string;
511
1052
  };
512
- timestamp: number;
513
- hash: string;
514
- url: string;
1053
+ timestamp?: number;
1054
+ hash?: string;
1055
+ url?: string;
515
1056
  }
516
1057
  declare function ApproveAction({ status, nextStatus, showTimeline, showBody, profile, chain, wallet, timestamp, hash, url, }: ApproveActionProps): react_jsx_runtime.JSX.Element;
517
1058
 
@@ -528,9 +1069,9 @@ interface BridgeActionProps extends BaseActionProps {
528
1069
  logoURI: string;
529
1070
  name: string;
530
1071
  };
531
- timestamp: number;
532
- hash: string;
533
- url: string;
1072
+ timestamp?: number;
1073
+ hash?: string;
1074
+ url?: string;
534
1075
  }
535
1076
  declare function BridgeAction({ status, nextStatus, showTimeline, showBody, token, chain, provider, timestamp, hash, url, }: BridgeActionProps): react_jsx_runtime.JSX.Element;
536
1077
 
@@ -645,9 +1186,9 @@ interface StakeActionProps extends BaseActionProps {
645
1186
  declare function StakeAction({ status, nextStatus, showTimeline, showBody, token, provider, timestamp, hash, url, }: StakeActionProps): react_jsx_runtime.JSX.Element;
646
1187
 
647
1188
  interface StartActionProps extends BaseActionProps {
648
- timestamp: number;
649
- hash: string;
650
- url: string;
1189
+ timestamp?: number;
1190
+ hash?: string;
1191
+ url?: string;
651
1192
  }
652
1193
  declare function StartAction({ status, nextStatus, showTimeline, showBody, timestamp, hash, url, }: StartActionProps): react_jsx_runtime.JSX.Element;
653
1194
 
@@ -691,9 +1232,9 @@ interface WrapActionProps extends BaseActionProps {
691
1232
  logoURI: string;
692
1233
  name: string;
693
1234
  };
694
- timestamp: number;
695
- hash: string;
696
- url: string;
1235
+ timestamp?: number;
1236
+ hash?: string;
1237
+ url?: string;
697
1238
  }
698
1239
  declare function WrapAction({ status, nextStatus, showTimeline, showBody, fromToken, toToken, provider, timestamp, hash, url, }: WrapActionProps): react_jsx_runtime.JSX.Element;
699
1240
 
@@ -724,6 +1265,7 @@ declare function TransactionAction({ type, props }: TransactionActionProps): rea
724
1265
  declare function linkActionTimelineProps(actions: TransactionActionProps[], collapsed: boolean): TransactionActionProps[];
725
1266
 
726
1267
  interface TransactionItemProps {
1268
+ className?: string;
727
1269
  isLoading?: boolean;
728
1270
  status?: ActionStatus;
729
1271
  image?: ReactNode;
@@ -742,9 +1284,9 @@ interface TransactionItemProps {
742
1284
  };
743
1285
  fromAmount?: string;
744
1286
  toAmount?: string;
745
- timestamp?: string;
1287
+ timestamp?: number;
746
1288
  }
747
- declare function TransactionItem({ isLoading, status, image, type, hash, fromChain, toChain, fromAmount, toAmount, timestamp, }: TransactionItemProps): react_jsx_runtime.JSX.Element;
1289
+ declare function TransactionItem({ className, isLoading, status, image, type, hash, fromChain, toChain, fromAmount, toAmount, timestamp, }: TransactionItemProps): react_jsx_runtime.JSX.Element;
748
1290
 
749
1291
  interface DropdownMenuProps {
750
1292
  dropdownRef?: React.RefObject<HTMLDivElement>;
@@ -762,9 +1304,6 @@ type ErrorMessageProps = {
762
1304
  };
763
1305
  declare function ErrorMessage({ message, showIcon }: ErrorMessageProps): react_jsx_runtime.JSX.Element;
764
1306
 
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
1307
  interface HashLinkProps {
769
1308
  showTx?: boolean;
770
1309
  hash: string;
@@ -793,8 +1332,9 @@ interface MenuProps extends react__default.ComponentProps<'div'> {
793
1332
  contentClassName?: string;
794
1333
  rounded?: Rounded;
795
1334
  menuRef?: react__default.RefObject<HTMLDivElement>;
1335
+ contentWrapperClassName?: string;
796
1336
  }
797
- declare function Menu({ children, containerClassName, contentClassName, rounded, menuRef, ...props }: MenuProps): react_jsx_runtime.JSX.Element;
1337
+ declare function Menu({ children, containerClassName, contentClassName, rounded, menuRef, contentWrapperClassName, ...props }: MenuProps): react_jsx_runtime.JSX.Element;
798
1338
 
799
1339
  interface ModalProps {
800
1340
  children: React.ReactNode;
@@ -831,6 +1371,8 @@ interface NavigationBarProps {
831
1371
  }
832
1372
  declare function NavigationBar({ title, displayBackButton, logoUrl, transparent, displayButtonShadows, onBackButtonClick, actions, }: NavigationBarProps): react_jsx_runtime.JSX.Element;
833
1373
 
1374
+ declare function PipeSeparator({ className, ...props }: ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
1375
+
834
1376
  declare function ProductCard({ children }: React.PropsWithChildren): react_jsx_runtime.JSX.Element;
835
1377
  declare function BorderedContainer({ children, className, }: {
836
1378
  children: React.ReactNode;
@@ -895,11 +1437,11 @@ declare const SwapStepsCollapsed: react.ForwardRefExoticComponent<SwapStepsColla
895
1437
  }>>;
896
1438
 
897
1439
  interface TokenPairProps {
898
- firstToken: {
1440
+ firstToken?: {
899
1441
  logoURI: string;
900
1442
  bgColor: string;
901
1443
  };
902
- secondToken: {
1444
+ secondToken?: {
903
1445
  logoURI: string;
904
1446
  bgColor: string;
905
1447
  };
@@ -999,13 +1541,13 @@ type TransactionHeaderProps = {
999
1541
  declare function TransactionHeader({ type, props }: TransactionHeaderProps): react_jsx_runtime.JSX.Element;
1000
1542
 
1001
1543
  interface TransactionHeaderLayoutProps {
1544
+ isLoading?: boolean;
1002
1545
  status?: ActionStatus;
1003
1546
  title?: string;
1004
1547
  image?: ReactNode;
1005
1548
  children?: ReactNode;
1006
- isLoading?: boolean;
1007
1549
  }
1008
- declare function TransactionHeaderLayout({ status, title, image, children, isLoading, }: TransactionHeaderLayoutProps): react_jsx_runtime.JSX.Element;
1550
+ declare function TransactionHeaderLayout({ isLoading, status, title, image, children, }: TransactionHeaderLayoutProps): react_jsx_runtime.JSX.Element;
1009
1551
 
1010
1552
  interface BridgePropertiesProps {
1011
1553
  amount: string;
@@ -1128,8 +1670,10 @@ interface TransactionSearchProps {
1128
1670
  setQuery: (query: string) => void;
1129
1671
  children?: ReactNode;
1130
1672
  className?: string;
1673
+ onFocus?: () => void;
1674
+ onBlur?: () => void;
1131
1675
  }
1132
- declare function TransactionSearch({ query, setQuery, children, className, }: TransactionSearchProps): react_jsx_runtime.JSX.Element;
1676
+ declare function TransactionSearch({ query, setQuery, children, className, onFocus, onBlur, }: TransactionSearchProps): react_jsx_runtime.JSX.Element;
1133
1677
 
1134
1678
  interface FromToProps {
1135
1679
  isLoading?: boolean;
@@ -1205,8 +1749,9 @@ interface WalletsViewProps {
1205
1749
  }
1206
1750
  declare function RecipientView({ type }: WalletsViewProps): react_jsx_runtime.JSX.Element;
1207
1751
 
1208
- declare function SwapDetailsView({ isLoading }: {
1752
+ declare function SwapDetailsView({ isLoading, canToggleBoostMode, }: {
1209
1753
  isLoading?: boolean;
1754
+ canToggleBoostMode?: boolean;
1210
1755
  }): react_jsx_runtime.JSX.Element;
1211
1756
 
1212
1757
  type ChainData = {
@@ -1360,12 +1905,13 @@ type TransactionViewProps = {
1360
1905
  declare function TransactionView({ type, props }: TransactionViewProps): react_jsx_runtime.JSX.Element;
1361
1906
 
1362
1907
  interface TransactionViewLayoutProps extends ComponentProps<'div'> {
1363
- header: ReactNode;
1364
- properties: ReactNode;
1365
- actions: TransactionActionProps[];
1366
- fees: FeesActionProps;
1908
+ isLoading?: boolean;
1909
+ header?: ReactNode;
1910
+ properties?: ReactNode;
1911
+ actions?: TransactionActionProps[];
1912
+ fees?: FeesActionProps;
1367
1913
  }
1368
- declare function TransactionViewLayout({ header, properties, actions, fees, ...props }: TransactionViewLayoutProps): react_jsx_runtime.JSX.Element;
1914
+ declare function TransactionViewLayout({ isLoading, header, properties, actions, fees, ...props }: TransactionViewLayoutProps): react_jsx_runtime.JSX.Element;
1369
1915
 
1370
1916
  declare function WalletsView(): react_jsx_runtime.JSX.Element;
1371
1917
 
@@ -1435,4 +1981,4 @@ declare const MEDIA_QUERIES: Record<MediaQuery, {
1435
1981
  value: string;
1436
1982
  }>;
1437
1983
 
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, ExploreLayout, ExploreNav, 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, 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, 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 };
1984
+ 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 };