@0xsquid/ui 0.20.2 → 0.21.0
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 +341 -36
- package/dist/cjs/types/components/controls/Input.d.ts +2 -1
- package/dist/cjs/types/components/controls/RangeInput.d.ts +9 -0
- package/dist/cjs/types/components/controls/index.d.ts +1 -0
- package/dist/cjs/types/components/icons/Arrow.d.ts +4 -0
- package/dist/cjs/types/components/icons/Checkmark.d.ts +10 -1
- package/dist/cjs/types/components/icons/CompassRound.d.ts +8 -0
- package/dist/cjs/types/components/icons/index.d.ts +0 -1
- package/dist/cjs/types/components/index.d.ts +1 -0
- package/dist/cjs/types/components/layout/Modal.d.ts +3 -1
- package/dist/cjs/types/components/lists/SettingsItem.d.ts +7 -0
- package/dist/cjs/types/stories/controls/RangeInput.stories.d.ts +6 -0
- package/dist/esm/index.js +245 -37
- package/dist/esm/types/components/controls/Input.d.ts +2 -1
- package/dist/esm/types/components/controls/RangeInput.d.ts +9 -0
- package/dist/esm/types/components/controls/index.d.ts +1 -0
- package/dist/esm/types/components/icons/Arrow.d.ts +4 -0
- package/dist/esm/types/components/icons/Checkmark.d.ts +10 -1
- package/dist/esm/types/components/icons/CompassRound.d.ts +8 -0
- package/dist/esm/types/components/icons/index.d.ts +0 -1
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/esm/types/components/layout/Modal.d.ts +3 -1
- package/dist/esm/types/components/lists/SettingsItem.d.ts +7 -0
- package/dist/esm/types/stories/controls/RangeInput.stories.d.ts +6 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +328 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -138,8 +138,9 @@ interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
|
138
138
|
containerClassName?: string;
|
|
139
139
|
actionButtonProps?: InputActionButtonProps;
|
|
140
140
|
autoFocusTimeout?: number;
|
|
141
|
+
inputRef?: React.RefObject<HTMLInputElement>;
|
|
141
142
|
}
|
|
142
|
-
declare function Input({ placeholder, showIcon, className, icon, isError, containerClassName, actionButtonProps, autoFocusTimeout, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
143
|
+
declare function Input({ placeholder, showIcon, className, icon, isError, containerClassName, actionButtonProps, autoFocusTimeout, inputRef: inputRefProp, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
143
144
|
type InputActionButtonProps = {
|
|
144
145
|
onClick?: () => void;
|
|
145
146
|
variant?: ButtonVariant;
|
|
@@ -215,6 +216,15 @@ interface SwitchProps {
|
|
|
215
216
|
}
|
|
216
217
|
declare function Switch({ checked, onChange, size, disabled, }: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
217
218
|
|
|
219
|
+
interface RangeInputProps {
|
|
220
|
+
label: string;
|
|
221
|
+
initialValue?: string;
|
|
222
|
+
onChange?: (value: string) => void;
|
|
223
|
+
min?: number;
|
|
224
|
+
max?: number;
|
|
225
|
+
}
|
|
226
|
+
declare function RangeInput({ label, initialValue, onChange, min, max, }: RangeInputProps): react_jsx_runtime.JSX.Element;
|
|
227
|
+
|
|
218
228
|
interface AssetsButtonProps {
|
|
219
229
|
token?: {
|
|
220
230
|
iconUrl: string;
|
|
@@ -278,6 +288,312 @@ interface SettingsButtonProps {
|
|
|
278
288
|
}
|
|
279
289
|
declare function SettingsButton({ label, isSelected, onClick, }: SettingsButtonProps): react_jsx_runtime.JSX.Element;
|
|
280
290
|
|
|
291
|
+
declare function Approve(): react_jsx_runtime.JSX.Element;
|
|
292
|
+
|
|
293
|
+
declare function ArrowRightIcon(): react_jsx_runtime.JSX.Element;
|
|
294
|
+
declare function ArrowRightDownIcon(): react_jsx_runtime.JSX.Element;
|
|
295
|
+
declare function ArrowRightUpIcon(): react_jsx_runtime.JSX.Element;
|
|
296
|
+
declare function ChevronArrowIcon({ size, className, }: {
|
|
297
|
+
size?: string;
|
|
298
|
+
className?: string;
|
|
299
|
+
}): react_jsx_runtime.JSX.Element;
|
|
300
|
+
declare function ArrowTriangle({ className }: {
|
|
301
|
+
className?: string;
|
|
302
|
+
}): react_jsx_runtime.JSX.Element;
|
|
303
|
+
declare function ChevronTopSmallIcon(): react_jsx_runtime.JSX.Element;
|
|
304
|
+
declare function ChevronLargeDownIcon({ size, className, }: {
|
|
305
|
+
size?: string;
|
|
306
|
+
className?: string;
|
|
307
|
+
}): react_jsx_runtime.JSX.Element;
|
|
308
|
+
declare function ChevronTopIcon({ className }: {
|
|
309
|
+
className?: string;
|
|
310
|
+
}): react_jsx_runtime.JSX.Element;
|
|
311
|
+
declare function ChevronLargeRightIcon({ size, className, }: {
|
|
312
|
+
size?: string;
|
|
313
|
+
className?: string;
|
|
314
|
+
}): react_jsx_runtime.JSX.Element;
|
|
315
|
+
declare function ChevronRightSmallIcon(): react_jsx_runtime.JSX.Element;
|
|
316
|
+
declare function ArrowLeftIcon({ className, size, }: {
|
|
317
|
+
className?: string;
|
|
318
|
+
size?: string;
|
|
319
|
+
}): react_jsx_runtime.JSX.Element;
|
|
320
|
+
declare function ArrowRightUpCircleIcon(): react_jsx_runtime.JSX.Element;
|
|
321
|
+
declare function ArrowRightDownCircleIcon(): react_jsx_runtime.JSX.Element;
|
|
322
|
+
declare function ArrowOutOfBoxIcon(): react_jsx_runtime.JSX.Element;
|
|
323
|
+
declare function ChevronGrabberVerticalIcon({ size, className, }: {
|
|
324
|
+
size?: string;
|
|
325
|
+
className?: string;
|
|
326
|
+
}): react_jsx_runtime.JSX.Element;
|
|
327
|
+
declare function SquareArrowTopRight2Icon({ className, size, strokeWidth, }: {
|
|
328
|
+
className?: string;
|
|
329
|
+
size?: string;
|
|
330
|
+
strokeWidth?: string;
|
|
331
|
+
}): react_jsx_runtime.JSX.Element;
|
|
332
|
+
declare function SquareArrowTopLeftIcon({ size }: {
|
|
333
|
+
size?: string;
|
|
334
|
+
}): react_jsx_runtime.JSX.Element;
|
|
335
|
+
declare function ArrowBottomTopIcon({ className, size, }: {
|
|
336
|
+
className?: string;
|
|
337
|
+
size?: string;
|
|
338
|
+
}): react_jsx_runtime.JSX.Element;
|
|
339
|
+
declare function ArrowWallDownIcon({ className, size, }: {
|
|
340
|
+
className?: string;
|
|
341
|
+
size?: string;
|
|
342
|
+
}): react_jsx_runtime.JSX.Element;
|
|
343
|
+
declare function ReorderIcon({ size, className, }: {
|
|
344
|
+
size?: string;
|
|
345
|
+
className?: string;
|
|
346
|
+
}): react_jsx_runtime.JSX.Element;
|
|
347
|
+
declare function ArrowsSwapIcon({ size, className, }: {
|
|
348
|
+
size?: string;
|
|
349
|
+
className?: string;
|
|
350
|
+
}): react_jsx_runtime.JSX.Element;
|
|
351
|
+
declare function ArrowUpIcon(): react_jsx_runtime.JSX.Element;
|
|
352
|
+
declare function ArrowCornerDownRightIcon({ size, className, }: {
|
|
353
|
+
size?: string;
|
|
354
|
+
className?: string;
|
|
355
|
+
}): react_jsx_runtime.JSX.Element;
|
|
356
|
+
|
|
357
|
+
declare function ArrowRotate(): react_jsx_runtime.JSX.Element;
|
|
358
|
+
|
|
359
|
+
declare function PunkIcon({ size }: {
|
|
360
|
+
size?: string;
|
|
361
|
+
}): react_jsx_runtime.JSX.Element;
|
|
362
|
+
|
|
363
|
+
declare function BagIcon(): react_jsx_runtime.JSX.Element;
|
|
364
|
+
|
|
365
|
+
declare function BankIcon(): react_jsx_runtime.JSX.Element;
|
|
366
|
+
|
|
367
|
+
declare function BoostBadge(): react_jsx_runtime.JSX.Element;
|
|
368
|
+
|
|
369
|
+
declare function Calendar(): react_jsx_runtime.JSX.Element;
|
|
370
|
+
|
|
371
|
+
declare function ChainLink({ size, strokeWidth, }: {
|
|
372
|
+
size?: string;
|
|
373
|
+
strokeWidth?: string;
|
|
374
|
+
}): react_jsx_runtime.JSX.Element;
|
|
375
|
+
|
|
376
|
+
declare function Checkmark1Icon({ className, size, }: {
|
|
377
|
+
className?: string;
|
|
378
|
+
size?: string;
|
|
379
|
+
}): react_jsx_runtime.JSX.Element;
|
|
380
|
+
declare function Checkmark2Icon({ className, size, style, }: {
|
|
381
|
+
className?: string;
|
|
382
|
+
size?: string;
|
|
383
|
+
style?: React.CSSProperties;
|
|
384
|
+
}): react_jsx_runtime.JSX.Element;
|
|
385
|
+
|
|
386
|
+
declare function ClockIcon({ className, size, }: {
|
|
387
|
+
className?: string;
|
|
388
|
+
size?: string;
|
|
389
|
+
}): react_jsx_runtime.JSX.Element;
|
|
390
|
+
declare function ClockOutlineIcon({ className, size, }: {
|
|
391
|
+
className?: string;
|
|
392
|
+
size?: string;
|
|
393
|
+
}): react_jsx_runtime.JSX.Element;
|
|
394
|
+
declare const SettingsGearIcon: ({ size, className, }: {
|
|
395
|
+
className?: string;
|
|
396
|
+
size?: string;
|
|
397
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
398
|
+
declare const ExplosionIcon: ({ size, className, }: {
|
|
399
|
+
className?: string;
|
|
400
|
+
size?: string;
|
|
401
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
402
|
+
declare function TimeFliesIcon({ size, className, }: {
|
|
403
|
+
size?: string;
|
|
404
|
+
className?: string;
|
|
405
|
+
}): react_jsx_runtime.JSX.Element;
|
|
406
|
+
|
|
407
|
+
declare function CoinsIcon(): react_jsx_runtime.JSX.Element;
|
|
408
|
+
declare function CoinsAddIcon(): react_jsx_runtime.JSX.Element;
|
|
409
|
+
declare function Dollar({ className, size, }: {
|
|
410
|
+
className?: string;
|
|
411
|
+
size?: string;
|
|
412
|
+
}): react_jsx_runtime.JSX.Element;
|
|
413
|
+
|
|
414
|
+
declare function CollectionIcon(): react_jsx_runtime.JSX.Element;
|
|
415
|
+
|
|
416
|
+
declare function CompassRound({ size, className, }: {
|
|
417
|
+
size?: string;
|
|
418
|
+
className?: string;
|
|
419
|
+
}): react_jsx_runtime.JSX.Element;
|
|
420
|
+
declare function CircleX({ size, className, }: {
|
|
421
|
+
size?: string;
|
|
422
|
+
className?: string;
|
|
423
|
+
}): react_jsx_runtime.JSX.Element;
|
|
424
|
+
declare function CircleMinusIcon({ size, className, }: {
|
|
425
|
+
size?: string;
|
|
426
|
+
className?: string;
|
|
427
|
+
}): react_jsx_runtime.JSX.Element;
|
|
428
|
+
declare function CirclePlusIcon({ size, className, }: {
|
|
429
|
+
size?: string;
|
|
430
|
+
className?: string;
|
|
431
|
+
}): react_jsx_runtime.JSX.Element;
|
|
432
|
+
|
|
433
|
+
declare function Copy({ size, strokeWidth, ...props }: {
|
|
434
|
+
size?: string;
|
|
435
|
+
strokeWidth?: string;
|
|
436
|
+
} & ComponentProps<'svg'>): react_jsx_runtime.JSX.Element;
|
|
437
|
+
|
|
438
|
+
declare function DashboardFast({ size, className, }: {
|
|
439
|
+
size?: string;
|
|
440
|
+
className?: string;
|
|
441
|
+
}): react_jsx_runtime.JSX.Element;
|
|
442
|
+
|
|
443
|
+
declare function DotGrid1x3HorizontalIcon({ className, size, }: {
|
|
444
|
+
className?: string;
|
|
445
|
+
size?: string;
|
|
446
|
+
}): react_jsx_runtime.JSX.Element;
|
|
447
|
+
|
|
448
|
+
declare function EmojiSadIcon({ className, size, }: {
|
|
449
|
+
className?: string;
|
|
450
|
+
size?: string;
|
|
451
|
+
}): react_jsx_runtime.JSX.Element;
|
|
452
|
+
declare function EmojiMeh({ className, size, }: {
|
|
453
|
+
className?: string;
|
|
454
|
+
size?: string;
|
|
455
|
+
}): react_jsx_runtime.JSX.Element;
|
|
456
|
+
|
|
457
|
+
declare function EthereumIcon(): react_jsx_runtime.JSX.Element;
|
|
458
|
+
|
|
459
|
+
declare function FilterIcon(): react_jsx_runtime.JSX.Element;
|
|
460
|
+
|
|
461
|
+
declare function EmptyHeartIcon({ className }: {
|
|
462
|
+
className?: string;
|
|
463
|
+
}): react_jsx_runtime.JSX.Element;
|
|
464
|
+
declare function FilledHeartIcon({ className }: {
|
|
465
|
+
className?: string;
|
|
466
|
+
}): react_jsx_runtime.JSX.Element;
|
|
467
|
+
declare function BrokenHeartIcon({ className }: {
|
|
468
|
+
className?: string;
|
|
469
|
+
}): react_jsx_runtime.JSX.Element;
|
|
470
|
+
declare function HeartSmallIcon(): react_jsx_runtime.JSX.Element;
|
|
471
|
+
|
|
472
|
+
declare function HelpIcon({ size, className, }: {
|
|
473
|
+
size?: string;
|
|
474
|
+
className?: string;
|
|
475
|
+
}): react_jsx_runtime.JSX.Element;
|
|
476
|
+
declare function GasIcon({ size, className, }: {
|
|
477
|
+
size?: string;
|
|
478
|
+
className?: string;
|
|
479
|
+
}): react_jsx_runtime.JSX.Element;
|
|
480
|
+
declare function ReceiptBillIcon({ size, className, }: {
|
|
481
|
+
size?: string;
|
|
482
|
+
className?: string;
|
|
483
|
+
}): react_jsx_runtime.JSX.Element;
|
|
484
|
+
declare function SnapIcon({ size, className, }: {
|
|
485
|
+
size?: string;
|
|
486
|
+
className?: string;
|
|
487
|
+
}): react_jsx_runtime.JSX.Element;
|
|
488
|
+
|
|
489
|
+
declare function HomeIcon({ className }: {
|
|
490
|
+
className?: string;
|
|
491
|
+
}): react_jsx_runtime.JSX.Element;
|
|
492
|
+
|
|
493
|
+
declare function ImageSparkle(): react_jsx_runtime.JSX.Element;
|
|
494
|
+
|
|
495
|
+
declare function InfinityIcon({ size, className, }: {
|
|
496
|
+
size?: string;
|
|
497
|
+
className?: string;
|
|
498
|
+
}): react_jsx_runtime.JSX.Element;
|
|
499
|
+
|
|
500
|
+
declare function LightningIcon({ size, className, }: {
|
|
501
|
+
size?: string;
|
|
502
|
+
className?: string;
|
|
503
|
+
}): react_jsx_runtime.JSX.Element;
|
|
504
|
+
|
|
505
|
+
declare function LinkIcon(props: ComponentProps<'svg'>): react_jsx_runtime.JSX.Element;
|
|
506
|
+
|
|
507
|
+
interface LoaderProps extends ComponentProps<'svg'> {
|
|
508
|
+
size?: string;
|
|
509
|
+
strokeWidth?: string;
|
|
510
|
+
rotateDuration?: string;
|
|
511
|
+
}
|
|
512
|
+
declare function Loader({ size, strokeWidth, className, rotateDuration, ...props }: LoaderProps): react_jsx_runtime.JSX.Element;
|
|
513
|
+
|
|
514
|
+
declare function MaxIcon(): react_jsx_runtime.JSX.Element;
|
|
515
|
+
|
|
516
|
+
declare function NotAllowedIcon(): react_jsx_runtime.JSX.Element;
|
|
517
|
+
|
|
518
|
+
declare function PercentIcon({ size, className, }: {
|
|
519
|
+
size?: string;
|
|
520
|
+
className?: string;
|
|
521
|
+
}): react_jsx_runtime.JSX.Element;
|
|
522
|
+
declare function PathSquareIcon({ size, className, }: {
|
|
523
|
+
size?: string;
|
|
524
|
+
className?: string;
|
|
525
|
+
}): react_jsx_runtime.JSX.Element;
|
|
526
|
+
|
|
527
|
+
declare function PieChartIcon(): react_jsx_runtime.JSX.Element;
|
|
528
|
+
|
|
529
|
+
declare function PlusIcon(): react_jsx_runtime.JSX.Element;
|
|
530
|
+
|
|
531
|
+
declare function RefreshIcon(): react_jsx_runtime.JSX.Element;
|
|
532
|
+
|
|
533
|
+
declare function SearchIcon(): react_jsx_runtime.JSX.Element;
|
|
534
|
+
|
|
535
|
+
declare function XSocial({ className, size, }: {
|
|
536
|
+
size?: string;
|
|
537
|
+
className?: string;
|
|
538
|
+
}): react_jsx_runtime.JSX.Element;
|
|
539
|
+
|
|
540
|
+
declare function SortIcon(): react_jsx_runtime.JSX.Element;
|
|
541
|
+
|
|
542
|
+
declare function SparklesIcon(): react_jsx_runtime.JSX.Element;
|
|
543
|
+
declare function SparkleIcon(): react_jsx_runtime.JSX.Element;
|
|
544
|
+
|
|
545
|
+
declare function SquareArrowCenter(): react_jsx_runtime.JSX.Element;
|
|
546
|
+
|
|
547
|
+
declare function DockSwapIcon(): react_jsx_runtime.JSX.Element;
|
|
548
|
+
|
|
549
|
+
declare function SquidLogo(): react_jsx_runtime.JSX.Element;
|
|
550
|
+
|
|
551
|
+
declare function SwapInputsIcon(): react_jsx_runtime.JSX.Element;
|
|
552
|
+
|
|
553
|
+
declare function SwapSuccessIcon(): react_jsx_runtime.JSX.Element;
|
|
554
|
+
declare function SwapErrorIcon(): react_jsx_runtime.JSX.Element;
|
|
555
|
+
declare function SwapWarningIcon(): react_jsx_runtime.JSX.Element;
|
|
556
|
+
|
|
557
|
+
declare function SwapStepSeparator(): react_jsx_runtime.JSX.Element;
|
|
558
|
+
|
|
559
|
+
declare function TagIcon({ size }: {
|
|
560
|
+
size?: string;
|
|
561
|
+
}): react_jsx_runtime.JSX.Element;
|
|
562
|
+
declare function TagIconFilled(): react_jsx_runtime.JSX.Element;
|
|
563
|
+
|
|
564
|
+
declare function ThumbsUp({ fill }: {
|
|
565
|
+
fill?: boolean;
|
|
566
|
+
}): react_jsx_runtime.JSX.Element;
|
|
567
|
+
|
|
568
|
+
declare function Tick({ className }: {
|
|
569
|
+
className?: string;
|
|
570
|
+
}): react_jsx_runtime.JSX.Element;
|
|
571
|
+
|
|
572
|
+
declare function Timeline({ className, ...props }: ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
573
|
+
declare namespace Timeline {
|
|
574
|
+
var ArrowDown: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
575
|
+
var ArrowReverse: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
576
|
+
var ArrowRight: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
577
|
+
var ArrowUp: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
578
|
+
var CapBottom: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
579
|
+
var CapTop: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
580
|
+
var Straight: ({ className, ...props }: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
declare function TradingViewStepsIcon({ size, className, }: {
|
|
584
|
+
size?: string;
|
|
585
|
+
className?: string;
|
|
586
|
+
}): react_jsx_runtime.JSX.Element;
|
|
587
|
+
|
|
588
|
+
declare function TriangleExclamation(): react_jsx_runtime.JSX.Element;
|
|
589
|
+
|
|
590
|
+
declare function WalletIcon({ size }: {
|
|
591
|
+
size?: string;
|
|
592
|
+
}): react_jsx_runtime.JSX.Element;
|
|
593
|
+
declare function WalletFilledIcon({ size }: {
|
|
594
|
+
size?: string;
|
|
595
|
+
}): react_jsx_runtime.JSX.Element;
|
|
596
|
+
|
|
281
597
|
interface Props {
|
|
282
598
|
lottieJsonFile: object;
|
|
283
599
|
animReplacement?: JSX.Element;
|
|
@@ -981,6 +1297,13 @@ type SettingsControl = {
|
|
|
981
1297
|
onChange: (checked: boolean) => void;
|
|
982
1298
|
tooltip?: Omit<TooltipProps, 'children'>;
|
|
983
1299
|
disabled?: boolean;
|
|
1300
|
+
} | {
|
|
1301
|
+
type: 'options';
|
|
1302
|
+
selectedLabel: string;
|
|
1303
|
+
options: {
|
|
1304
|
+
label: string;
|
|
1305
|
+
onSelect: () => void;
|
|
1306
|
+
}[];
|
|
984
1307
|
};
|
|
985
1308
|
interface SettingsItemProps {
|
|
986
1309
|
icon: React.ReactNode;
|
|
@@ -1349,14 +1672,16 @@ interface MenuProps extends react__default.ComponentProps<'div'> {
|
|
|
1349
1672
|
}
|
|
1350
1673
|
declare function Menu({ children, containerClassName, contentClassName, rounded, menuRef, contentWrapperClassName, ...props }: MenuProps): react_jsx_runtime.JSX.Element;
|
|
1351
1674
|
|
|
1675
|
+
type ModalWidth = 'large' | 'extra-large';
|
|
1352
1676
|
interface ModalProps {
|
|
1353
1677
|
children: React.ReactNode;
|
|
1354
1678
|
className?: string;
|
|
1355
1679
|
onBackdropClick?: () => void;
|
|
1356
1680
|
isOpen?: boolean;
|
|
1357
1681
|
maxHeight?: boolean;
|
|
1682
|
+
width?: ModalWidth;
|
|
1358
1683
|
}
|
|
1359
|
-
declare function Modal({ children, className, onBackdropClick, isOpen: _isOpen, maxHeight, }: ModalProps): false | react_jsx_runtime.JSX.Element;
|
|
1684
|
+
declare function Modal({ children, className, onBackdropClick, isOpen: _isOpen, maxHeight, width, }: ModalProps): false | react_jsx_runtime.JSX.Element;
|
|
1360
1685
|
|
|
1361
1686
|
type ModalContentBorderType = 'border' | 'outline';
|
|
1362
1687
|
interface ModalContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -2016,4 +2341,4 @@ declare const MEDIA_QUERIES: Record<MediaQuery, {
|
|
|
2016
2341
|
value: string;
|
|
2017
2342
|
}>;
|
|
2018
2343
|
|
|
2019
|
-
export { ActionLayout, ActionLineOutRow, ActionProperties, ActionRow, type ActionStatus, ActionStatusRow, ActionWrapper, AddressButton, AnimationWrapper, AppContainer, ApproveAction, ArrowButton, AssetsButton, type AssetsButtonVariant, 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 };
|
|
2344
|
+
export { ActionLayout, ActionLineOutRow, ActionProperties, ActionRow, type ActionStatus, ActionStatusRow, ActionWrapper, AddressButton, AnimationWrapper, AppContainer, Approve, ApproveAction, ArrowBottomTopIcon, ArrowButton, ArrowCornerDownRightIcon, ArrowLeftIcon, ArrowOutOfBoxIcon, ArrowRightDownCircleIcon, ArrowRightDownIcon, ArrowRightIcon, ArrowRightUpCircleIcon, ArrowRightUpIcon, ArrowRotate, ArrowTriangle, ArrowUpIcon, ArrowWallDownIcon, ArrowsSwapIcon, AssetsButton, type AssetsButtonVariant, AssetsView, BadgeImage, BagIcon, BankIcon, type BaseActionProps, type BaseTransactionViewProps, BlockSkeleton, BodyText, Boost, BoostBadge, BoostButton, BorderedContainer, Breadcrumb, BridgeAction, BridgeHeader, BridgeProperties, BridgeTransactionView, BrokenHeartIcon, Button, BuyNFTHeader, BuyNFTProperties, BuyNFTTransactionView, Calendar, CaptionText, ChainLink, Checkmark1Icon, Checkmark2Icon, ChevronArrowIcon, ChevronGrabberVerticalIcon, ChevronLargeDownIcon, ChevronLargeRightIcon, ChevronRightSmallIcon, ChevronTopIcon, ChevronTopSmallIcon, Chip, CircleMinusIcon, CirclePlusIcon, CircleX, ClockIcon, ClockOutlineIcon, CoinsAddIcon, CoinsIcon, Collapse, CollectionIcon, CompassRound, Copy, DashboardFast, DescriptionBlocks, DetailsToolbar, DockSwapIcon, Dollar, DotGrid1x3HorizontalIcon, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, EmojiMeh, EmojiSadIcon, EmptyHeartIcon, ErrorMessage, EthereumIcon, ExplosionIcon, FeeButton, FeesAction, type FeesActionProps, FeesLines, FeesTotal, FilledHeartIcon, FilterButton, FilterIcon, GasIcon, HashLink, HeadingText, HeartSmallIcon, HelpIcon, HistoryItem, type HistoryItemStatus, HomeIcon, IconLabel, ImageIcon, ImageSparkle, IncompleteAction, InfinityIcon, InfoBox, Inline, Input, InteractionHeader, InteractionProperties, InteractionTransactionView, Join, LightningIcon, LinkIcon, List, ListItem, Loader, LoadingProvider, LoadingSkeleton, MEDIA_QUERIES, MainView, MaxIcon, Menu, MenuItem, Modal, ModalContent, ModalContentDivider, NavigationBar, NotAllowedIcon, NumericInput, PathSquareIcon, PercentIcon, PieChartIcon, PipeSeparator, PlusIcon, ProductCard, ProfileHeader, ProfileHeaderBackground, PropertiesLayout, PropertyListItem, type PropertyListItemProps, PunkIcon, RangeInput, ReceiptBillIcon, ReceiveNFTAction, ReceiveTokensAction, RecipientView, RefreshIcon, ReorderIcon, STEP_ITEM_HEIGHT, SearchIcon, SectionTitle, SendTokensAction, SettingsButton, type SettingsButtonProps, type SettingsControl, SettingsGearIcon, SettingsItem, type SettingsItemProps, SettingsSlider, type SettingsSliderProps, SizeTransition, SnapIcon, SortIcon, SparkleIcon, SparklesIcon, SquareArrowCenter, SquareArrowTopLeftIcon, SquareArrowTopRight2Icon, SquidConfigProvider, SquidLogo, type SquidTheme, StakeAction, StartAction, SuccessAction, SwapAction, SwapConfiguration, SwapDetailsView, SwapErrorIcon, SwapHeader, type SwapHeaderProps, SwapInputsIcon, SwapProgressView, SwapProgressViewHeader, SwapProperties, type SwapPropertiesProps, SwapState, type SwapStep, SwapStepItem, SwapStepSeparator, SwapStepsCollapsed, type SwapStepsCollapsedFooterButton, SwapSuccessIcon, SwapTransactionView, SwapWarningIcon, Switch, TagIcon, TagIconFilled, TextSkeleton, type ThemeType, ThumbsUp, Tick, TimeFliesIcon, Timeline, Timestamp, Toast, TokenPair, Tooltip, type TooltipProps, type TooltipThreshold, type TooltipWidth, TradingViewStepsIcon, 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, TriangleExclamation, UsdAmount, WalletFilledIcon, WalletIcon, WalletLink, WalletsView, WrapAction, XSocial, linkActionTimelineProps, statusBgClassMap, statusColorClassMap, statusTextClassMap, useDropdownMenu, useMediaQuery };
|