@gearbox-protocol/ui-kit 3.0.0 → 3.1.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +86 -6
- package/dist/cjs/components/assets-list-cell/assets-list-cell.cjs +1 -1
- package/dist/cjs/components/auth/connect-required.cjs +1 -1
- package/dist/cjs/components/auth/index.cjs +1 -1
- package/dist/cjs/components/auth/signin-required.cjs +1 -1
- package/dist/cjs/components/auth/wallet-ui-context.cjs +1 -0
- package/dist/cjs/components/block-sync/block-sync.cjs +1 -1
- package/dist/cjs/components/checkbox/checkbox-labeled.cjs +1 -1
- package/dist/cjs/components/client-adapters/styled-rounded-image/styled-rounded-image.cjs +1 -1
- package/dist/cjs/components/complex-input/complex-input.cjs +1 -1
- package/dist/cjs/components/compound-apy/compound-apy.cjs +1 -1
- package/dist/cjs/components/connectkit/connect-kit-wallet-adapter.cjs +1 -0
- package/dist/cjs/components/connectkit/index.cjs +1 -0
- package/dist/cjs/components/detailed-page-title/detailed-page-title.cjs +1 -1
- package/dist/cjs/components/graph/graph.cjs +1 -1
- package/dist/cjs/components/index.cjs +1 -1
- package/dist/cjs/components/markdown-viewer/markdown-viewer.cjs +1 -1
- package/dist/cjs/components/next/connectkit/index.cjs +1 -0
- package/dist/cjs/components/next/connectkit/siwe-provider.cjs +1 -0
- package/dist/cjs/components/next/index.cjs +1 -1
- package/dist/cjs/components/table/editable-grid-table.cjs +1 -1
- package/dist/cjs/components/table/editable-table.cjs +1 -1
- package/dist/cjs/components/time-to-liquidation/time-to-liquidation.cjs +1 -1
- package/dist/cjs/components/tokens-list-cell/tokens-list-cell.cjs +1 -1
- package/dist/cjs/components/with-copy/with-copy.cjs +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/components/assets-list-cell/assets-list-cell.js +3 -4
- package/dist/esm/components/auth/connect-required.js +18 -11
- package/dist/esm/components/auth/index.js +5 -4
- package/dist/esm/components/auth/signin-required.js +30 -23
- package/dist/esm/components/auth/wallet-ui-context.js +13 -0
- package/dist/esm/components/block-sync/block-sync.js +3 -4
- package/dist/esm/components/checkbox/checkbox-labeled.js +1 -2
- package/dist/esm/components/client-adapters/styled-rounded-image/styled-rounded-image.js +1 -2
- package/dist/esm/components/complex-input/complex-input.js +3 -4
- package/dist/esm/components/compound-apy/compound-apy.js +3 -4
- package/dist/esm/components/connectkit/connect-kit-wallet-adapter.js +32 -0
- package/dist/esm/components/connectkit/index.js +6 -0
- package/dist/esm/components/detailed-page-title/detailed-page-title.js +1 -2
- package/dist/esm/components/graph/graph.js +167 -164
- package/dist/esm/components/index.js +608 -607
- package/dist/esm/components/markdown-viewer/markdown-viewer.js +3 -4
- package/dist/esm/components/next/connectkit/index.js +4 -0
- package/dist/esm/components/next/{siwe-provider.js → connectkit/siwe-provider.js} +1 -1
- package/dist/esm/components/next/index.js +6 -8
- package/dist/esm/components/table/editable-grid-table.js +36 -37
- package/dist/esm/components/table/editable-table.js +17 -18
- package/dist/esm/components/time-to-liquidation/time-to-liquidation.js +1 -2
- package/dist/esm/components/tokens-list-cell/tokens-list-cell.js +3 -4
- package/dist/esm/components/with-copy/with-copy.js +3 -4
- package/dist/esm/index.js +768 -767
- package/dist/types/components/auth/connect-required.d.ts +10 -11
- package/dist/types/components/auth/index.d.ts +1 -1
- package/dist/types/components/auth/signin-required.d.ts +7 -5
- package/dist/types/components/auth/wallet-ui-context.d.ts +36 -0
- package/dist/types/components/connectkit/connect-kit-wallet-adapter.d.ts +12 -0
- package/dist/types/components/connectkit/index.d.ts +2 -0
- package/dist/types/components/connectkit/siwe-provider.d.ts +30 -0
- package/dist/types/components/next/connectkit/index.d.ts +1 -0
- package/dist/types/components/next/connectkit/siwe-provider.d.ts +8 -0
- package/dist/types/components/next/index.d.ts +0 -1
- package/package.json +21 -4
- package/dist/cjs/components/next/siwe-provider.cjs +0 -1
- package/dist/types/components/auth/siwe-provider.d.ts +0 -31
- package/dist/types/components/next/siwe-provider.d.ts +0 -7
- /package/dist/cjs/components/{auth → connectkit}/siwe-provider.cjs +0 -0
- /package/dist/esm/components/{auth → connectkit}/siwe-provider.js +0 -0
package/dist/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Accordion as o, AccordionContent as t, AccordionItem as a, AccordionTrigger as i } from "./components/accordion/accordion.js";
|
|
2
|
-
import { AlertBadge as n, alertBadgeVariants as
|
|
2
|
+
import { AlertBadge as n, alertBadgeVariants as l } from "./components/alert-badge/alert-badge.js";
|
|
3
3
|
import { AlertDialog as f, AlertDialogAction as x, AlertDialogCancel as s, AlertDialogContent as d, AlertDialogDescription as u, AlertDialogFooter as g, AlertDialogHeader as c, AlertDialogOverlay as T, AlertDialogPortal as C, AlertDialogTitle as S, AlertDialogTrigger as b } from "./components/alert-dialog/alert-dialog.js";
|
|
4
4
|
import { AlertModal as D } from "./components/alert-modal/alert-modal.js";
|
|
5
5
|
import { AppBar as I, AppBarCenter as h, AppBarCenterContent as B, AppBarDotsButton as V, AppBarDropdownMenu as F, AppBarHamburgerButton as w, AppBarMenuItem as k, AppBarNavItem as P, AppBarSidePanel as v } from "./components/app-bar/app-bar.js";
|
|
@@ -10,266 +10,266 @@ import { AssetsListCell as O } from "./components/assets-list-cell/assets-list-c
|
|
|
10
10
|
import { AssetsRatio as U } from "./components/assets-ratio/assets-ratio.js";
|
|
11
11
|
import { ConnectRequired as q } from "./components/auth/connect-required.js";
|
|
12
12
|
import { SignInRequired as Z } from "./components/auth/signin-required.js";
|
|
13
|
-
import {
|
|
14
|
-
import { Avatar as
|
|
15
|
-
import { Badge as
|
|
16
|
-
import { BaseLink as
|
|
17
|
-
import { BlockSync as
|
|
18
|
-
import { BreadCrumbs as
|
|
19
|
-
import { ButtonCheckbox as
|
|
20
|
-
import { BackButton as
|
|
21
|
-
import { Button as
|
|
22
|
-
import { CopyButton as
|
|
23
|
-
import { ExternalButton as
|
|
24
|
-
import { FilterButton as
|
|
25
|
-
import { NavigationButton as
|
|
26
|
-
import { RangeButtons as
|
|
27
|
-
import { TabButton as
|
|
28
|
-
import { CardGrid as
|
|
29
|
-
import { Card as
|
|
30
|
-
import { DangerZone as
|
|
31
|
-
import { ExpandablCall as
|
|
32
|
-
import { ExpandableCard as
|
|
33
|
-
import { Carousel as
|
|
34
|
-
import { Checkbox as
|
|
35
|
-
import { CheckboxLabeled as
|
|
36
|
-
import { StyledButton as
|
|
37
|
-
import { StyledDialogContainer as
|
|
38
|
-
import { StyledRoundedImage as
|
|
39
|
-
import { ColoredText as
|
|
40
|
-
import { ComplexInput as
|
|
41
|
-
import { CompoundAPY as me, getRewardTokenSymbol as
|
|
42
|
-
import { ConfirmMenu as
|
|
43
|
-
import { CreditSessionStatus as
|
|
44
|
-
import { CurrencyButton as
|
|
45
|
-
import { Description as
|
|
46
|
-
import { DetailedApy as
|
|
47
|
-
import { DetailedPageTitle as
|
|
48
|
-
import { DetailedPageTitleCopyButton as
|
|
49
|
-
import { DetailedPageTitleExplorerDropdown as
|
|
50
|
-
import { Modal as
|
|
51
|
-
import { Dialog as
|
|
52
|
-
import { DialogContainer as
|
|
53
|
-
import { DialogContent as
|
|
54
|
-
import { DialogDescription as
|
|
55
|
-
import { DialogFooter as
|
|
56
|
-
import { DialogForm as
|
|
57
|
-
import { DialogHeader as
|
|
58
|
-
import { DialogModalContainer as
|
|
59
|
-
import { DialogOverlay as
|
|
60
|
-
import { DialogTitle as
|
|
61
|
-
import { OneFieldDialog as
|
|
62
|
-
import { DefaultDropdownLabel as
|
|
63
|
-
import { DropdownMenu as
|
|
64
|
-
import { DropdownMenuCheckboxItem as
|
|
65
|
-
import { DropdownMenuContent as
|
|
66
|
-
import { DropdownMenuItem as
|
|
67
|
-
import { DropdownMenuLabel as
|
|
68
|
-
import { DropdownMenuRadioItem as
|
|
69
|
-
import { DropdownMenuSeparator as
|
|
70
|
-
import { DropdownMenuShortcut as
|
|
71
|
-
import { DropdownMenuSubContent as
|
|
72
|
-
import { DropdownMenuSubTrigger as
|
|
73
|
-
import { EditInput as
|
|
74
|
-
import { ErrorLineMessage as
|
|
75
|
-
import { ErrorMessage as
|
|
76
|
-
import { ErrorView as
|
|
77
|
-
import { ExplorerLinksDropdown as
|
|
78
|
-
import { FadeoutLoading as
|
|
79
|
-
import { FilterBlock as
|
|
80
|
-
import { FilterCheckboxItem as
|
|
81
|
-
import { FilterChip as
|
|
82
|
-
import { FilterChips as
|
|
83
|
-
import { FilterDropdownItem as
|
|
84
|
-
import { FilterGroup as
|
|
85
|
-
import { FilterLabel as
|
|
86
|
-
import { FilterModal as
|
|
87
|
-
import { FilterModalItem as
|
|
88
|
-
import { FilterRadioItem as
|
|
89
|
-
import { FilterSeparator as
|
|
13
|
+
import { WalletUIProvider as Q, useWalletUI as Y } from "./components/auth/wallet-ui-context.js";
|
|
14
|
+
import { Avatar as j, AvatarFallback as J, AvatarImage as $ } from "./components/avatar/avatar.js";
|
|
15
|
+
import { Badge as er, badgeVariants as or } from "./components/badge/badge.js";
|
|
16
|
+
import { BaseLink as ar } from "./components/base-link/base-link.js";
|
|
17
|
+
import { BlockSync as pr } from "./components/block-sync/block-sync.js";
|
|
18
|
+
import { BreadCrumbs as lr } from "./components/breadcrumbs/breadcrumbs.js";
|
|
19
|
+
import { ButtonCheckbox as fr } from "./components/button-checkbox/button-checkbox.js";
|
|
20
|
+
import { BackButton as sr, backButtonVariants as dr } from "./components/buttons/back-button/back-button.js";
|
|
21
|
+
import { Button as gr, buttonVariants as cr } from "./components/buttons/button/button.js";
|
|
22
|
+
import { CopyButton as Cr } from "./components/buttons/copy-button/copy-button.js";
|
|
23
|
+
import { ExternalButton as br } from "./components/buttons/external-button/external-button.js";
|
|
24
|
+
import { FilterButton as Dr } from "./components/buttons/filter-button/filter-button.js";
|
|
25
|
+
import { NavigationButton as Ir } from "./components/buttons/navigation-button/navigation-button.js";
|
|
26
|
+
import { RangeButtons as Br } from "./components/buttons/range-buttons/range-buttons.js";
|
|
27
|
+
import { TabButton as Fr } from "./components/buttons/tab-button/tab-button.js";
|
|
28
|
+
import { CardGrid as kr, cardGridVariants as Pr } from "./components/card-grid/card-grid.js";
|
|
29
|
+
import { Card as Mr, CardContent as Er, CardDescription as Gr, CardFooter as yr, CardHeader as Hr, CardTitle as Rr } from "./components/cards/card/card.js";
|
|
30
|
+
import { DangerZone as Or } from "./components/cards/danger-zone/danger-zone.js";
|
|
31
|
+
import { ExpandablCall as Ur } from "./components/cards/expandable-call/expandable-call.js";
|
|
32
|
+
import { ExpandableCard as qr } from "./components/cards/expandable-card/expandable-card.js";
|
|
33
|
+
import { Carousel as Zr } from "./components/carousel/carousel.js";
|
|
34
|
+
import { Checkbox as Qr } from "./components/checkbox/checkbox.js";
|
|
35
|
+
import { CheckboxLabeled as Kr } from "./components/checkbox/checkbox-labeled.js";
|
|
36
|
+
import { StyledButton as Jr } from "./components/client-adapters/styled-button/styled-button.js";
|
|
37
|
+
import { StyledDialogContainer as re } from "./components/client-adapters/styled-dialog-container/styled-dialog-container.js";
|
|
38
|
+
import { StyledRoundedImage as oe } from "./components/client-adapters/styled-rounded-image/styled-rounded-image.js";
|
|
39
|
+
import { ColoredText as ae, coloredTextVariants as ie } from "./components/colored-text/colored-text.js";
|
|
40
|
+
import { ComplexInput as ne } from "./components/complex-input/complex-input.js";
|
|
41
|
+
import { CompoundAPY as me, getRewardTokenSymbol as fe } from "./components/compound-apy/compound-apy.js";
|
|
42
|
+
import { ConfirmMenu as se } from "./components/confirm-menu/confirm-menu.js";
|
|
43
|
+
import { CreditSessionStatus as ue } from "./components/credit-session-status/credit-session-status.js";
|
|
44
|
+
import { CurrencyButton as ce } from "./components/currency-button/currency-button.js";
|
|
45
|
+
import { Description as Ce } from "./components/description/description.js";
|
|
46
|
+
import { DetailedApy as be, PoolRewardsIcon as Le } from "./components/detailed-apy/detailed-apy.js";
|
|
47
|
+
import { DetailedPageTitle as Ae } from "./components/detailed-page-title/detailed-page-title.js";
|
|
48
|
+
import { DetailedPageTitleCopyButton as he } from "./components/detailed-page-title/detailed-page-title-copy-button.js";
|
|
49
|
+
import { DetailedPageTitleExplorerDropdown as Ve } from "./components/detailed-page-title/detailed-page-title-explorer-dropdown.js";
|
|
50
|
+
import { Modal as we } from "./components/modal/modal.js";
|
|
51
|
+
import { Dialog as Pe, DialogPortal as ve, DialogTrigger as Me } from "./components/dialog/dialog.js";
|
|
52
|
+
import { DialogContainer as Ge } from "./components/dialog/dialog-container.js";
|
|
53
|
+
import { DialogContent as He } from "./components/dialog/dialog-content.js";
|
|
54
|
+
import { DialogDescription as Ne } from "./components/dialog/dialog-description.js";
|
|
55
|
+
import { DialogFooter as _e } from "./components/dialog/dialog-footer.js";
|
|
56
|
+
import { DialogForm as We } from "./components/dialog/dialog-form.js";
|
|
57
|
+
import { DialogHeader as Xe } from "./components/dialog/dialog-header.js";
|
|
58
|
+
import { DialogModalContainer as ze } from "./components/dialog/dialog-modal-container.js";
|
|
59
|
+
import { DialogOverlay as Ye } from "./components/dialog/dialog-overlay.js";
|
|
60
|
+
import { DialogTitle as je } from "./components/dialog/dialog-title.js";
|
|
61
|
+
import { OneFieldDialog as $e } from "./components/dialog/one-field-dialog.js";
|
|
62
|
+
import { DefaultDropdownLabel as eo } from "./components/dropdown-label/dropdown-label.js";
|
|
63
|
+
import { DropdownMenu as to, DropdownMenuGroup as ao, DropdownMenuPortal as io, DropdownMenuRadioGroup as po, DropdownMenuSub as no, DropdownMenuTrigger as lo } from "./components/dropdown-menu/dropdown-menu.js";
|
|
64
|
+
import { DropdownMenuCheckboxItem as fo } from "./components/dropdown-menu/dropdown-menu-checkbox-item.js";
|
|
65
|
+
import { DropdownMenuContent as so } from "./components/dropdown-menu/dropdown-menu-content.js";
|
|
66
|
+
import { DropdownMenuItem as go } from "./components/dropdown-menu/dropdown-menu-item.js";
|
|
67
|
+
import { DropdownMenuLabel as To } from "./components/dropdown-menu/dropdown-menu-label.js";
|
|
68
|
+
import { DropdownMenuRadioItem as So } from "./components/dropdown-menu/dropdown-menu-radio-item.js";
|
|
69
|
+
import { DropdownMenuSeparator as Lo } from "./components/dropdown-menu/dropdown-menu-separator.js";
|
|
70
|
+
import { DropdownMenuShortcut as Ao } from "./components/dropdown-menu/dropdown-menu-shortcut.js";
|
|
71
|
+
import { DropdownMenuSubContent as ho } from "./components/dropdown-menu/dropdown-menu-sub-content.js";
|
|
72
|
+
import { DropdownMenuSubTrigger as Vo } from "./components/dropdown-menu/dropdown-menu-sub-trigger.js";
|
|
73
|
+
import { EditInput as wo } from "./components/edit-input/edit-input.js";
|
|
74
|
+
import { ErrorLineMessage as Po } from "./components/error-message/error-line-message.js";
|
|
75
|
+
import { ErrorMessage as Mo } from "./components/error-message/error-message.js";
|
|
76
|
+
import { ErrorView as Go } from "./components/error-view/error-view.js";
|
|
77
|
+
import { ExplorerLinksDropdown as Ho } from "./components/explorer-links-dropdown/explorer-links-dropdown.js";
|
|
78
|
+
import { FadeoutLoading as No } from "./components/fadeout-loading/fadeout-loading.js";
|
|
79
|
+
import { FilterBlock as _o } from "./components/filter/filter-block.js";
|
|
80
|
+
import { FilterCheckboxItem as Wo } from "./components/filter/filter-checkbox-item.js";
|
|
81
|
+
import { FilterChip as Xo } from "./components/filter/filter-chip.js";
|
|
82
|
+
import { FilterChips as zo } from "./components/filter/filter-chips.js";
|
|
83
|
+
import { FilterDropdownItem as Yo } from "./components/filter/filter-dropdown-item.js";
|
|
84
|
+
import { FilterGroup as jo } from "./components/filter/filter-group.js";
|
|
85
|
+
import { FilterLabel as $o } from "./components/filter/filter-label.js";
|
|
86
|
+
import { FilterModal as et } from "./components/filter/filter-modal.js";
|
|
87
|
+
import { FilterModalItem as tt } from "./components/filter/filter-modal-item.js";
|
|
88
|
+
import { FilterRadioItem as it } from "./components/filter/filter-radio-item.js";
|
|
89
|
+
import { FilterSeparator as nt } from "./components/filter/filter-separator.js";
|
|
90
90
|
import { filterBlockVariants as mt } from "./components/filter/variants.js";
|
|
91
|
-
import { FormField as
|
|
92
|
-
import { FormattedNumberString as
|
|
93
|
-
import { DEFAULT_AREA_SERIES as
|
|
94
|
-
import { getXFormatter as
|
|
95
|
-
import { DEFAULT_SERIES_COLORS as
|
|
96
|
-
import { GraphCurrentValue as
|
|
97
|
-
import { GraphTooltip as
|
|
98
|
-
import { GraphView as
|
|
99
|
-
import { VertLine as
|
|
100
|
-
import { GridTDCell as
|
|
101
|
-
import { Guard as
|
|
102
|
-
import { HeadCell as
|
|
103
|
-
import { BAD_HF as
|
|
104
|
-
import { HelpCenterContainer as
|
|
105
|
-
import { HelpSection as
|
|
106
|
-
import { HelpTip as
|
|
107
|
-
import { HideOn as ma, ShowOn as
|
|
108
|
-
import { HorizontalIndicator as
|
|
109
|
-
import { IconButton as
|
|
110
|
-
import { faArrowDown as
|
|
111
|
-
import { FaIcon as
|
|
112
|
-
import { Input as
|
|
113
|
-
import { Label as
|
|
114
|
-
import { AppLogo as mi, AppLogoLink as
|
|
115
|
-
import { Block as
|
|
116
|
-
import { Col as
|
|
117
|
-
import { Container as
|
|
118
|
-
import { Footer as
|
|
119
|
-
import { Grid as
|
|
120
|
-
import { Header as
|
|
121
|
-
import { Layout as
|
|
122
|
-
import { LegalDisclaimer as
|
|
123
|
-
import { PageLayout as
|
|
124
|
-
import { SocialIcons as
|
|
125
|
-
import { BlockedRegionDialog as
|
|
126
|
-
import { Link as
|
|
127
|
-
import { LiquidationModellingAssetsTable as
|
|
128
|
-
import { LiquidationGraph as
|
|
129
|
-
import { LiquidationGraphLegend as
|
|
130
|
-
import { LiquidationGraphTip as
|
|
131
|
-
import { LiquidationPrice as
|
|
132
|
-
import { Loader as
|
|
133
|
-
import { LoaderGuard as
|
|
134
|
-
import { Loading as
|
|
135
|
-
import { LoadingBar as
|
|
91
|
+
import { FormField as xt } from "./components/form/form-field.js";
|
|
92
|
+
import { FormattedNumberString as dt } from "./components/formatted-number/formatted-number.js";
|
|
93
|
+
import { DEFAULT_AREA_SERIES as gt, DEFAULT_OPTIONS as ct, DEFAULT_VERTICAL_LINE as Tt, getDefaultOptions as Ct, getDefaultSeries as St, getDefaultVerticalLine as bt } from "./components/graph/default-config.js";
|
|
94
|
+
import { getXFormatter as Dt, getXFormatters as At, getYFormatter as It } from "./components/graph/formatters.js";
|
|
95
|
+
import { DEFAULT_SERIES_COLORS as Bt, Graph as Vt, getSeriesColorPalette as Ft, getVerticalLineTooltipContent as wt } from "./components/graph/graph.js";
|
|
96
|
+
import { GraphCurrentValue as Pt } from "./components/graph/graph-current-value.js";
|
|
97
|
+
import { GraphTooltip as Mt } from "./components/graph/graph-tooltip.js";
|
|
98
|
+
import { GraphView as Gt, GraphViewWithData as yt, graphViewVariants as Ht, useGraphAside as Rt } from "./components/graph/graph-view.js";
|
|
99
|
+
import { VertLine as Ot } from "./components/graph/plugins/vertical-line.js";
|
|
100
|
+
import { GridTDCell as Ut } from "./components/grid-td-cell/grid-td-cell.js";
|
|
101
|
+
import { Guard as qt } from "./components/guard/guard.js";
|
|
102
|
+
import { HeadCell as Zt, SimpleHeadCell as zt } from "./components/head-cell/head-cell.js";
|
|
103
|
+
import { BAD_HF as Yt, GOOD_HF as Kt, HealthFactor as jt, getHFZones as Jt } from "./components/health-factor/health-factor.js";
|
|
104
|
+
import { HelpCenterContainer as ra } from "./components/help-center-container/help-center-container.js";
|
|
105
|
+
import { HelpSection as oa, HelpSections as ta } from "./components/help-sections/help-sections.js";
|
|
106
|
+
import { HelpTip as ia, HelpTipIcon as pa, TipWrap as na } from "./components/help-tip/help-tip.js";
|
|
107
|
+
import { HideOn as ma, ShowOn as fa } from "./components/hide-on/hide-on.js";
|
|
108
|
+
import { HorizontalIndicator as sa } from "./components/horizontal-indicator/horizontal-indicator.js";
|
|
109
|
+
import { IconButton as ua, iconButtonVariants as ga } from "./components/icon-button/icon-button.js";
|
|
110
|
+
import { faArrowDown as Ta, faArrowLeft as Ca, faArrowRight as Sa, faArrowUp as ba, faArrowsUpDown as La, faBars as Da, faBolt as Aa, faCaretDown as Ia, faCaretLeft as ha, faCaretRight as Ba, faCaretUp as Va, faCheck as Fa, faChevronLeft as wa, faChevronRight as ka, faCircle as Pa, faCircleCheck as va, faCircleExclamation as Ma, faCirclePlus as Ea, faCircleQuestion as Ga, faCloud as ya, faCog as Ha, faCreditCard as Ra, faEllipsisVertical as Na, faEnvelope as Oa, faKeyboard as _a, faLifeRing as Ua, faMagnifyingGlass as Wa, faMessage as qa, faPlus as Xa, faRightFromBracket as Za, faTrash as za, faTriangleExclamation as Qa, faUser as Ya, faUserPlus as Ka, faUsers as ja, faWallet as Ja, faXmark as $a } from "@fortawesome/free-solid-svg-icons";
|
|
111
|
+
import { FaIcon as ei } from "./components/icons/fa-icon.js";
|
|
112
|
+
import { Input as ti, inputVariants as ai } from "./components/input/input.js";
|
|
113
|
+
import { Label as pi, labelVariants as ni } from "./components/label/label.js";
|
|
114
|
+
import { AppLogo as mi, AppLogoLink as fi } from "./components/layout/app-logo/app-logo.js";
|
|
115
|
+
import { Block as si } from "./components/layout/block/block.js";
|
|
116
|
+
import { Col as ui } from "./components/layout/col/col.js";
|
|
117
|
+
import { Container as ci } from "./components/layout/container/container.js";
|
|
118
|
+
import { Footer as Ci, FooterLink as Si, FooterLinkSection as bi, GearboxFooter as Li } from "./components/layout/footer/footer.js";
|
|
119
|
+
import { Grid as Ai } from "./components/layout/grid/grid.js";
|
|
120
|
+
import { Header as hi, useMobileMenu as Bi } from "./components/layout/header/header.js";
|
|
121
|
+
import { Layout as Fi } from "./components/layout/layout/layout.js";
|
|
122
|
+
import { LegalDisclaimer as ki } from "./components/layout/legal-disclaimer/legal-disclaimer.js";
|
|
123
|
+
import { PageLayout as vi } from "./components/layout/page-layout/page-layout.js";
|
|
124
|
+
import { SocialIcons as Ei } from "./components/layout/social-icons/social-icons.js";
|
|
125
|
+
import { BlockedRegionDialog as yi, LegalAgreementDialog as Hi, createGearboxAppConfig as Ri, createLegalAgreementConfig as Ni, createPermissionlessInterfaceConfig as Oi, createPermissionlessSafeConfig as _i } from "./components/legal-agreement/legal-agreement-dialog.js";
|
|
126
|
+
import { Link as Wi } from "./components/link/link.js";
|
|
127
|
+
import { LiquidationModellingAssetsTable as Xi } from "./components/liquidation/liquidation-assets-table/liquidation-assets-table.js";
|
|
128
|
+
import { LiquidationGraph as zi } from "./components/liquidation/liquidation-graph/liquidation-graph.js";
|
|
129
|
+
import { LiquidationGraphLegend as Yi } from "./components/liquidation/liquidation-graph-legend/liquidation-graph-legend.js";
|
|
130
|
+
import { LiquidationGraphTip as ji } from "./components/liquidation/liquidation-graph-tip/liquidation-graph-tip.js";
|
|
131
|
+
import { LiquidationPrice as $i } from "./components/liquidation-price/liquidation-price.js";
|
|
132
|
+
import { Loader as ep } from "./components/loader/loader.js";
|
|
133
|
+
import { LoaderGuard as tp } from "./components/loader-guard/loader-guard.js";
|
|
134
|
+
import { Loading as ip } from "./components/loading/loading.js";
|
|
135
|
+
import { LoadingBar as np } from "./components/loading-bar/loading-bar.js";
|
|
136
136
|
import { MarkdownViewer as mp } from "./components/markdown-viewer/markdown-viewer.js";
|
|
137
|
-
import { Navbar as
|
|
138
|
-
import { NavbarIndicatorProvider as
|
|
139
|
-
import { NavbarWithOverflow as
|
|
140
|
-
import { NavBarLogo as
|
|
141
|
-
import { NavigationProvider as
|
|
142
|
-
import { NavItem as
|
|
143
|
-
import { NetworkIcon as
|
|
144
|
-
import { NotFound as
|
|
145
|
-
import { OptionsItem as
|
|
146
|
-
import { Overflow as
|
|
147
|
-
import { OverflowContainer as
|
|
148
|
-
import { PageTitle as
|
|
149
|
-
import { PercentIndicator as
|
|
150
|
-
import { PointsIcon as
|
|
151
|
-
import { PoolAPYTooltip as
|
|
152
|
-
import { PoolIndicatorIcon as
|
|
153
|
-
import { PoolPointsIndicator as
|
|
154
|
-
import { Progress as
|
|
155
|
-
import { ProgressBar as
|
|
156
|
-
import { ProgressCircle as
|
|
157
|
-
import { RadioGroup as
|
|
158
|
-
import { RoundedImage as
|
|
159
|
-
import { Row as
|
|
160
|
-
import { SearchBar as
|
|
161
|
-
import { SearchLine as
|
|
162
|
-
import { SegmentedControl as
|
|
163
|
-
import { Select as
|
|
164
|
-
import { SeparateLine as
|
|
165
|
-
import { Separator as
|
|
166
|
-
import { ShortString as
|
|
167
|
-
import { ConfirmationItem as
|
|
168
|
-
import { Identicon as
|
|
169
|
-
import { VerticalTimeline as
|
|
170
|
-
import { SimpleAccordion as
|
|
171
|
-
import { SimpleDropdown as
|
|
172
|
-
import { SimpleDropdownMenuItem as
|
|
173
|
-
import { Skeleton as
|
|
174
|
-
import { SkeletonStack as
|
|
175
|
-
import { Slider as
|
|
176
|
-
import { SliderProvider as
|
|
177
|
-
import { SliderMark as
|
|
178
|
-
import { SliderTrack as
|
|
179
|
-
import { makeMarkerPoints as
|
|
180
|
-
import { THEME_COLOR_MAP as
|
|
181
|
-
import { SliderToken as
|
|
182
|
-
import { SliderTokenLabel as
|
|
183
|
-
import { makeSliderTokenMarkerPoints as
|
|
184
|
-
import { BalanceIndicator as
|
|
185
|
-
import { SmartNumberInput as
|
|
186
|
-
import { Spinner as
|
|
187
|
-
import { SpinnerLoader as
|
|
188
|
-
import { SplitList as
|
|
189
|
-
import { StatBadge as
|
|
190
|
-
import { StatusDot as
|
|
191
|
-
import { HealthDot as
|
|
192
|
-
import { StatusTriangle as
|
|
193
|
-
import { Stepper as
|
|
194
|
-
import { StyledDropdown as
|
|
195
|
-
import { Switch as
|
|
196
|
-
import { TabControl as
|
|
197
|
-
import { EditButton as
|
|
198
|
-
import { GridTableCellAsset as
|
|
199
|
-
import { TableCellAsset as
|
|
200
|
-
import { GridErrorLine as
|
|
201
|
-
import { GridLoadingLine as
|
|
202
|
-
import { GridTable as
|
|
203
|
-
import { GridTableLoader as
|
|
204
|
-
import { SortingTableHead as
|
|
205
|
-
import { TableLoader as
|
|
206
|
-
import { TableLoaderGuard as
|
|
207
|
-
import { TableCellSm as
|
|
208
|
-
import { UpdatedValue as
|
|
209
|
-
import { Tabs as
|
|
210
|
-
import { TextButton as
|
|
211
|
-
import { Textarea as
|
|
212
|
-
import { ThemeProvider as
|
|
213
|
-
import { ThemeToggle as
|
|
214
|
-
import { TimeToLiquidation as
|
|
215
|
-
import { TipCard as
|
|
216
|
-
import { Toggle as
|
|
217
|
-
import { TokenIcon as
|
|
218
|
-
import { TokenSymbol as
|
|
219
|
-
import { TokenTemplate as
|
|
220
|
-
import { SimpleTooltip as
|
|
221
|
-
import { Tooltip as
|
|
222
|
-
import { GraphDropdown as
|
|
223
|
-
import { TradingView as
|
|
224
|
-
import { FormattedMessageTyped as
|
|
225
|
-
import { Typography as
|
|
226
|
-
import { VerticalIndicator as
|
|
227
|
-
import { VerticalList as
|
|
228
|
-
import { VSpace as
|
|
229
|
-
import { WithCopy as
|
|
230
|
-
import { WithFilterButton as
|
|
231
|
-
import { WithTitle as
|
|
232
|
-
import { designTokens as
|
|
233
|
-
import { interactiveVariants as
|
|
234
|
-
import { useCheckboxSelect as
|
|
235
|
-
import { useControllableState as
|
|
236
|
-
import { useDebounce as
|
|
237
|
-
import { useDebounceCall as
|
|
238
|
-
import { getSortForField as
|
|
239
|
-
import { useHF as
|
|
240
|
-
import { useEditPriceManually as
|
|
241
|
-
import { useIsDesktop as
|
|
242
|
-
import { useOpenedState as
|
|
243
|
-
import { usePrevious as
|
|
137
|
+
import { Navbar as xp, NavbarNav as sp, navbarVariants as dp } from "./components/navbar/navbar.js";
|
|
138
|
+
import { NavbarIndicatorProvider as gp, useNavbarIndicator as cp } from "./components/navbar/navbar-indicator-context.js";
|
|
139
|
+
import { NavbarWithOverflow as Cp } from "./components/navbar/navbar-with-overflow.js";
|
|
140
|
+
import { NavBarLogo as bp } from "./components/navbar-logo/navbar-logo.js";
|
|
141
|
+
import { NavigationProvider as Dp, useNavigationAdapter as Ap } from "./components/navigation-context/navigation-context.js";
|
|
142
|
+
import { NavItem as hp, navitemVariants as Bp } from "./components/navitem/navitem.js";
|
|
143
|
+
import { NetworkIcon as Fp } from "./components/network-icon/network-icon.js";
|
|
144
|
+
import { NotFound as kp } from "./components/not-found/not-found.js";
|
|
145
|
+
import { OptionsItem as vp, OptionsList as Mp } from "./components/options-list/options-list.js";
|
|
146
|
+
import { Overflow as Gp, OverflowWrap as yp } from "./components/overflow/overflow.js";
|
|
147
|
+
import { OverflowContainer as Rp } from "./components/overflow-container/overflow-container.js";
|
|
148
|
+
import { PageTitle as Op, pageTitleRootVariants as _p, pageTitleVariants as Up } from "./components/page-title/page-title.js";
|
|
149
|
+
import { PercentIndicator as qp } from "./components/percent-indicator/percent-indicator.js";
|
|
150
|
+
import { PointsIcon as Zp } from "./components/points-icon/points-icon.js";
|
|
151
|
+
import { PoolAPYTooltip as Qp } from "./components/pool-apy-tooltip/pool-apy-tooltip.js";
|
|
152
|
+
import { PoolIndicatorIcon as Kp } from "./components/pool-indicator-icon/pool-indicator-icon.js";
|
|
153
|
+
import { PoolPointsIndicator as Jp } from "./components/pool-points-indicator/pool-points-indicator.js";
|
|
154
|
+
import { Progress as rn } from "./components/progress/progress.js";
|
|
155
|
+
import { ProgressBar as on, hfToBarIndex as tn } from "./components/progress-bar/progress-bar.js";
|
|
156
|
+
import { ProgressCircle as pn } from "./components/progress-circle/progress-circle.js";
|
|
157
|
+
import { RadioGroup as ln, RadioGroupItem as mn, RadioOption as fn } from "./components/radio-group/radio-group.js";
|
|
158
|
+
import { RoundedImage as sn } from "./components/rounded-image/rounded-image.js";
|
|
159
|
+
import { Row as un } from "./components/row/row.js";
|
|
160
|
+
import { SearchBar as cn } from "./components/search-bar/search-bar.js";
|
|
161
|
+
import { SearchLine as Cn, WithSearchLine as Sn, searchLineInputVariants as bn, searchLineVariants as Ln } from "./components/search-line/search-line.js";
|
|
162
|
+
import { SegmentedControl as An, segmentedControlVariants as In } from "./components/segmented-control/segmented-control.js";
|
|
163
|
+
import { Select as Bn, SelectContent as Vn, SelectGroup as Fn, SelectItem as wn, SelectLabel as kn, SelectScrollDownButton as Pn, SelectScrollUpButton as vn, SelectSeparator as Mn, SelectTrigger as En, SelectValue as Gn, selectTriggerVariants as yn } from "./components/select/select.js";
|
|
164
|
+
import { SeparateLine as Rn } from "./components/separate-line/separate-line.js";
|
|
165
|
+
import { Separator as On } from "./components/separator/separator.js";
|
|
166
|
+
import { ShortString as Un } from "./components/short-string/short-string.js";
|
|
167
|
+
import { ConfirmationItem as qn } from "./components/signatures/confirmation-item.js";
|
|
168
|
+
import { Identicon as Zn } from "./components/signatures/identicon.js";
|
|
169
|
+
import { VerticalTimeline as Qn } from "./components/signatures/vertical-timeline.js";
|
|
170
|
+
import { SimpleAccordion as Kn, SimpleAccordionItem as jn } from "./components/simple-accordion/simple-accordion.js";
|
|
171
|
+
import { SimpleDropdown as $n } from "./components/simple-dropdown/simple-dropdown.js";
|
|
172
|
+
import { SimpleDropdownMenuItem as el } from "./components/simple-dropdown/simple-dropdown-menu-item.js";
|
|
173
|
+
import { Skeleton as tl, skeletonVariants as al } from "./components/skeleton/skeleton.js";
|
|
174
|
+
import { SkeletonStack as pl } from "./components/skeleton/skeleton-stack.js";
|
|
175
|
+
import { Slider as ll } from "./components/slider/slider.js";
|
|
176
|
+
import { SliderProvider as fl, useSliderContext as xl } from "./components/slider/slider-context.js";
|
|
177
|
+
import { SliderMark as dl } from "./components/slider/slider-mark.js";
|
|
178
|
+
import { SliderTrack as gl } from "./components/slider/slider-track.js";
|
|
179
|
+
import { makeMarkerPoints as Tl, validateMarkerPoints as Cl } from "./components/slider/slider-utils.js";
|
|
180
|
+
import { THEME_COLOR_MAP as bl, THUMB_HALF as Ll, THUMB_SIZE as Dl, getIntervalBounds as Al, getThumbInBoundsOffset as Il, resolveColor as hl } from "./components/slider/types.js";
|
|
181
|
+
import { SliderToken as Vl } from "./components/slider-token/slider-token.js";
|
|
182
|
+
import { SliderTokenLabel as wl } from "./components/slider-token/slider-token-label.js";
|
|
183
|
+
import { makeSliderTokenMarkerPoints as Pl, mergeCloseMarkers as vl } from "./components/slider-token/slider-token-utils.js";
|
|
184
|
+
import { BalanceIndicator as El } from "./components/smart-number-input/balance-indicator.js";
|
|
185
|
+
import { SmartNumberInput as yl } from "./components/smart-number-input/smart-number-input.js";
|
|
186
|
+
import { Spinner as Rl, SpinnerOverlay as Nl } from "./components/spinner/spinner.js";
|
|
187
|
+
import { SpinnerLoader as _l } from "./components/spinner-loader/spinner-loader.js";
|
|
188
|
+
import { SplitList as Wl } from "./components/split-list/split-list.js";
|
|
189
|
+
import { StatBadge as Xl, StatBadgeGrid as Zl, statBadgeContentVariants as zl, statBadgeGridVariants as Ql, statBadgeTitleVariants as Yl, statBadgeVariants as Kl } from "./components/stat-badge/stat-badge.js";
|
|
190
|
+
import { StatusDot as Jl, statusDotVariants as $l } from "./components/status-dot/status-dot.js";
|
|
191
|
+
import { HealthDot as em, StatusBars as om } from "./components/status-elements/status-elements.js";
|
|
192
|
+
import { StatusTriangle as am } from "./components/status-triangle/status-triangle.js";
|
|
193
|
+
import { Stepper as pm } from "./components/stepper/stepper.js";
|
|
194
|
+
import { StyledDropdown as lm } from "./components/styled-dropdown/styled-dropdown.js";
|
|
195
|
+
import { Switch as fm } from "./components/switch/switch.js";
|
|
196
|
+
import { TabControl as sm, TabItem as dm, useHashTabs as um, useSectionTab as gm, useTabControl as cm } from "./components/tab-control/tab-control.js";
|
|
197
|
+
import { EditButton as Cm } from "./components/table/edit-button.js";
|
|
198
|
+
import { GridTableCellAsset as bm, GridTableCellUpdatable as Lm, GridTableEditable as Dm } from "./components/table/editable-grid-table.js";
|
|
199
|
+
import { TableCellAsset as Im, TableCellUpdatable as hm, TableEditable as Bm } from "./components/table/editable-table.js";
|
|
200
|
+
import { GridErrorLine as Fm } from "./components/table/grid-error-line.js";
|
|
201
|
+
import { GridLoadingLine as km } from "./components/table/grid-loading-line.js";
|
|
202
|
+
import { GridTable as vm, GridTableBody as Mm, GridTableCaption as Em, GridTableCell as Gm, GridTableFooter as ym, GridTableHead as Hm, GridTableHeader as Rm, GridTableRow as Nm, Td as Om, Th as _m, gridTableCellVariants as Um, gridTableHeadVariants as Wm, gridTableVariants as qm } from "./components/table/grid-table.js";
|
|
203
|
+
import { GridTableLoader as Zm } from "./components/table/grid-table-loader.js";
|
|
204
|
+
import { SortingTableHead as Qm, Table as Ym, TableBody as Km, TableCaption as jm, TableCell as Jm, TableFooter as $m, TableHead as rf, TableHeader as ef, TableRow as of, tableCellVariants as tf, tableHeadVariants as af, tableVariants as pf } from "./components/table/table.js";
|
|
205
|
+
import { TableLoader as lf } from "./components/table/table-loader.js";
|
|
206
|
+
import { TableLoaderGuard as ff } from "./components/table/table-loader-guard.js";
|
|
207
|
+
import { TableCellSm as sf, TableLineSm as df } from "./components/table/table-sm.js";
|
|
208
|
+
import { UpdatedValue as gf } from "./components/table/updated-value.js";
|
|
209
|
+
import { Tabs as Tf, TabsContent as Cf, TabsList as Sf, TabsTrigger as bf } from "./components/tabs/tabs.js";
|
|
210
|
+
import { TextButton as Df } from "./components/text-button/text-button.js";
|
|
211
|
+
import { Textarea as If, textareaVariants as hf } from "./components/textarea/textarea.js";
|
|
212
|
+
import { ThemeProvider as Vf, useTheme as Ff } from "./components/theme-provider.js";
|
|
213
|
+
import { ThemeToggle as kf } from "./components/theme-toggle/theme-toggle.js";
|
|
214
|
+
import { TimeToLiquidation as vf } from "./components/time-to-liquidation/time-to-liquidation.js";
|
|
215
|
+
import { TipCard as Ef, tipCardVariants as Gf } from "./components/tip-card/tip-card.js";
|
|
216
|
+
import { Toggle as Hf, toggleTrackVariants as Rf } from "./components/toggle/toggle.js";
|
|
217
|
+
import { TokenIcon as Of, preloadTokenIcons as _f } from "./components/token-icon/token-icon.js";
|
|
218
|
+
import { TokenSymbol as Wf, getSymbolOrIcon as qf } from "./components/token-symbol/token-symbol.js";
|
|
219
|
+
import { TokenTemplate as Zf } from "./components/token-template/token-template.js";
|
|
220
|
+
import { SimpleTooltip as Qf } from "./components/tooltip/simple-tooltip.js";
|
|
221
|
+
import { Tooltip as Kf, TooltipContent as jf, TooltipProvider as Jf, TooltipTrigger as $f } from "./components/tooltip/tooltip.js";
|
|
222
|
+
import { GraphDropdown as ex } from "./components/trading-view/graph-dropdown.js";
|
|
223
|
+
import { TradingView as tx } from "./components/trading-view/trading-view.js";
|
|
224
|
+
import { FormattedMessageTyped as ix, useIntlTyped as px } from "./components/typed-intl/index.js";
|
|
225
|
+
import { Typography as lx, typographyVariants as mx } from "./components/typography/typography.js";
|
|
226
|
+
import { VerticalIndicator as xx, verticalIndicatorVariants as sx } from "./components/vertical-indicator/vertical-indicator.js";
|
|
227
|
+
import { VerticalList as ux, verticalListVariants as gx } from "./components/vertical-list/vertical-list.js";
|
|
228
|
+
import { VSpace as Tx } from "./components/vspace/vspace.js";
|
|
229
|
+
import { WithCopy as Sx } from "./components/with-copy/with-copy.js";
|
|
230
|
+
import { WithFilterButton as Lx } from "./components/with-filter-button/with-filter-button.js";
|
|
231
|
+
import { WithTitle as Ax } from "./components/with-title/with-title.js";
|
|
232
|
+
import { designTokens as hx } from "./configs/design-tokens.js";
|
|
233
|
+
import { interactiveVariants as Vx, paddingVariants as Fx, sizeVariants as wx, stateVariants as kx } from "./configs/variants.js";
|
|
234
|
+
import { useCheckboxSelect as vx } from "./hooks/use-checkbox-select.js";
|
|
235
|
+
import { useControllableState as Ex } from "./hooks/use-controllable-state.js";
|
|
236
|
+
import { useDebounce as yx } from "./hooks/use-debounce.js";
|
|
237
|
+
import { useDebounceCall as Rx } from "./hooks/use-debounce-call.js";
|
|
238
|
+
import { getSortForField as Ox, useFilterAllSelected as _x, useRangeFilter as Ux, useSelectFilter as Wx, useSort as qx } from "./hooks/use-filter.js";
|
|
239
|
+
import { useHF as Zx } from "./hooks/use-hf.js";
|
|
240
|
+
import { useEditPriceManually as Qx, useLiquidationGraphParams as Yx, useLiquidationHeatmap as Kx } from "./hooks/use-liquidation/index.js";
|
|
241
|
+
import { useIsDesktop as Jx, useIsExtraSmall as $x, useIsMedium as rs, useIsMobile as es, useIsTablet as os, useMediaQuery as ts } from "./hooks/use-media-query.js";
|
|
242
|
+
import { useOpenedState as is } from "./hooks/use-opened-state.js";
|
|
243
|
+
import { usePrevious as ns } from "./hooks/use-previous.js";
|
|
244
244
|
import { useSmartNumberInput as ms } from "./hooks/use-smart-number-input.js";
|
|
245
|
-
import { default as
|
|
246
|
-
import { generateId as
|
|
247
|
-
import { bnToInputView as
|
|
248
|
-
import { bnToPrettyView as
|
|
249
|
-
import { cn as
|
|
250
|
-
import { generateColorsFromBase as
|
|
251
|
-
import { copyToClipboard as
|
|
252
|
-
import { convertPercent as
|
|
253
|
-
import { formatAssetAmount as
|
|
254
|
-
import { formatMoney as
|
|
255
|
-
import { FORMAT_CONSTANTS as
|
|
256
|
-
import { slippageTemplate as
|
|
257
|
-
import { allLoaded as
|
|
258
|
-
import { decimalsToStep as
|
|
259
|
-
import { getNetworkIcon as
|
|
260
|
-
import { bnToLiquidationPriceView as
|
|
261
|
-
import { pluralize as
|
|
262
|
-
import { getAvailableRanges as
|
|
263
|
-
import { extractTextFromLabel as
|
|
264
|
-
import { searchInString as
|
|
265
|
-
import { createTokenSearchFilter as
|
|
266
|
-
import { shortSHA as
|
|
267
|
-
import { isLongString as
|
|
268
|
-
import { negativeTokenTemplate as
|
|
269
|
-
import { TTL_CONSTANTS as
|
|
270
|
-
import { openInNewWindow as
|
|
271
|
-
import { Z_INDEX as
|
|
272
|
-
import { CELL_BAD as
|
|
245
|
+
import { default as xs } from "./locale/en.json.js";
|
|
246
|
+
import { generateId as ds, useFormFieldIds as us } from "./utils/a11y.js";
|
|
247
|
+
import { bnToInputView as cs } from "./utils/bn-to-input-view.js";
|
|
248
|
+
import { bnToPrettyView as Cs } from "./utils/bn-to-pretty-view.js";
|
|
249
|
+
import { cn as bs } from "./utils/cn.js";
|
|
250
|
+
import { generateColorsFromBase as Ds, getCSSVariable as As, hexToRgba as Is, hslToHex as hs, resolveCSSColor as Bs } from "./utils/colors.js";
|
|
251
|
+
import { copyToClipboard as Fs } from "./utils/copy.js";
|
|
252
|
+
import { convertPercent as ks, formatBytecodeSize as Ps, formatBytecodeVersion as vs, formatTimestamp as Ms, shortenHash as Es, significantTrunc as Gs } from "./utils/format.js";
|
|
253
|
+
import { formatAssetAmount as Hs } from "./utils/format-asset-amount.js";
|
|
254
|
+
import { formatMoney as Ns, formatMoneyAmount as Os, formatPercentAmount as _s, percentTemplate as Us, percentageTemplate as Ws } from "./utils/format-money.js";
|
|
255
|
+
import { FORMAT_CONSTANTS as Xs, formatNumberWithSuffix as Zs, formatPrice as zs, getAdaptiveDecimals as Qs, isBelowDisplayThreshold as Ys, isEffectivelyZero as Ks, toSignificantDigits as js } from "./utils/format-number.js";
|
|
256
|
+
import { slippageTemplate as $s } from "./utils/format-slippage.js";
|
|
257
|
+
import { allLoaded as ed, loadingProgress as od, round5 as td } from "./utils/loading.js";
|
|
258
|
+
import { decimalsToStep as id, findClosestPoint as pd, formatWithDecimals as nd, formatWithoutDecimals as ld, splitInterval as md, validateMinMax as fd } from "./utils/math.js";
|
|
259
|
+
import { getNetworkIcon as sd } from "./utils/network-icons.js";
|
|
260
|
+
import { bnToLiquidationPriceView as ud, isPositiveFloat as gd, parseInputToBN as cd, parseSmallNumber as Td } from "./utils/parse-input-to-bn.js";
|
|
261
|
+
import { pluralize as Sd, selectPluralString as bd } from "./utils/plural.js";
|
|
262
|
+
import { getAvailableRanges as Dd } from "./utils/ranges.js";
|
|
263
|
+
import { extractTextFromLabel as Id, serializeValue as hd } from "./utils/react.js";
|
|
264
|
+
import { searchInString as Vd } from "./utils/search.js";
|
|
265
|
+
import { createTokenSearchFilter as wd, searchInToken as kd } from "./utils/search-in-token.js";
|
|
266
|
+
import { shortSHA as vd } from "./utils/short-sha.js";
|
|
267
|
+
import { isLongString as Ed, shortenString as Gd } from "./utils/shorten-string.js";
|
|
268
|
+
import { negativeTokenTemplate as Hd, tokenTemplate as Rd, tokenTemplateNumber as Nd, tokenTemplateString as Od } from "./utils/templates.js";
|
|
269
|
+
import { TTL_CONSTANTS as Ud, getTTLZones as Wd, ttlFromTimestamp as qd, ttlLeft as Xd, ttlLeftHuman as Zd } from "./utils/ttl.js";
|
|
270
|
+
import { openInNewWindow as Qd } from "./utils/window.js";
|
|
271
|
+
import { Z_INDEX as Kd, Z_INDEX_VALUES as jd } from "./utils/z-index.js";
|
|
272
|
+
import { CELL_BAD as $d, CELL_CURRENT as ru, CELL_GOOD as eu, CELL_HOVERED as ou, CELL_LIQUIDATION as tu, CELL_OK as au, DEFAULT_AXIS_MAX as iu, DEFAULT_AXIS_MIN as pu, formatAxisLabel as nu, formatAxisTipLabel as lu, formatAxisTipPrice as mu, getCellClass as fu, isPointInCell as xu, useAxis as su, useFixedAssets as du, useIsAxisInRelativeUnits as uu, useLiquidationGraphActivePrice as gu, useLiquidationGraphCurrentActiveValue as cu, usePriceInNumber as Tu, useWithLiquidationGraphActivePrices as Cu } from "./hooks/use-liquidation/utils.js";
|
|
273
273
|
export {
|
|
274
274
|
o as Accordion,
|
|
275
275
|
t as AccordionContent,
|
|
@@ -298,529 +298,530 @@ export {
|
|
|
298
298
|
P as AppBarNavItem,
|
|
299
299
|
v as AppBarSidePanel,
|
|
300
300
|
mi as AppLogo,
|
|
301
|
-
|
|
301
|
+
fi as AppLogoLink,
|
|
302
302
|
E as Apy,
|
|
303
303
|
y as ArcLoader,
|
|
304
304
|
R as AssetLine,
|
|
305
305
|
O as AssetsListCell,
|
|
306
306
|
U as AssetsRatio,
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
307
|
+
j as Avatar,
|
|
308
|
+
J as AvatarFallback,
|
|
309
|
+
$ as AvatarImage,
|
|
310
|
+
Yt as BAD_HF,
|
|
311
|
+
sr as BackButton,
|
|
312
|
+
er as Badge,
|
|
313
|
+
El as BalanceIndicator,
|
|
314
|
+
ar as BaseLink,
|
|
315
|
+
si as Block,
|
|
316
|
+
pr as BlockSync,
|
|
317
|
+
yi as BlockedRegionDialog,
|
|
318
|
+
lr as BreadCrumbs,
|
|
319
|
+
gr as Button,
|
|
320
|
+
fr as ButtonCheckbox,
|
|
321
|
+
$d as CELL_BAD,
|
|
322
|
+
ru as CELL_CURRENT,
|
|
323
|
+
eu as CELL_GOOD,
|
|
324
|
+
ou as CELL_HOVERED,
|
|
325
|
+
tu as CELL_LIQUIDATION,
|
|
326
|
+
au as CELL_OK,
|
|
327
|
+
Mr as Card,
|
|
328
|
+
Er as CardContent,
|
|
329
|
+
Gr as CardDescription,
|
|
330
|
+
yr as CardFooter,
|
|
331
|
+
kr as CardGrid,
|
|
332
|
+
Hr as CardHeader,
|
|
333
|
+
Rr as CardTitle,
|
|
334
|
+
Zr as Carousel,
|
|
335
|
+
Qr as Checkbox,
|
|
336
|
+
Kr as CheckboxLabeled,
|
|
337
|
+
ui as Col,
|
|
338
|
+
ae as ColoredText,
|
|
339
|
+
ne as ComplexInput,
|
|
340
340
|
me as CompoundAPY,
|
|
341
|
-
|
|
342
|
-
|
|
341
|
+
se as ConfirmMenu,
|
|
342
|
+
qn as ConfirmationItem,
|
|
343
343
|
q as ConnectRequired,
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
344
|
+
ci as Container,
|
|
345
|
+
Cr as CopyButton,
|
|
346
|
+
ue as CreditSessionStatus,
|
|
347
|
+
ce as CurrencyButton,
|
|
348
|
+
gt as DEFAULT_AREA_SERIES,
|
|
349
|
+
iu as DEFAULT_AXIS_MAX,
|
|
350
|
+
pu as DEFAULT_AXIS_MIN,
|
|
351
|
+
ct as DEFAULT_OPTIONS,
|
|
352
|
+
Bt as DEFAULT_SERIES_COLORS,
|
|
353
|
+
Tt as DEFAULT_VERTICAL_LINE,
|
|
354
|
+
Or as DangerZone,
|
|
355
|
+
eo as DefaultDropdownLabel,
|
|
356
|
+
Ce as Description,
|
|
357
|
+
be as DetailedApy,
|
|
358
|
+
Ae as DetailedPageTitle,
|
|
359
|
+
he as DetailedPageTitleCopyButton,
|
|
360
|
+
Ve as DetailedPageTitleExplorerDropdown,
|
|
361
|
+
Pe as Dialog,
|
|
362
|
+
Ge as DialogContainer,
|
|
363
|
+
He as DialogContent,
|
|
364
|
+
Ne as DialogDescription,
|
|
365
|
+
_e as DialogFooter,
|
|
366
|
+
We as DialogForm,
|
|
367
|
+
Xe as DialogHeader,
|
|
368
|
+
ze as DialogModalContainer,
|
|
369
|
+
Ye as DialogOverlay,
|
|
370
|
+
ve as DialogPortal,
|
|
371
|
+
je as DialogTitle,
|
|
372
|
+
Me as DialogTrigger,
|
|
373
|
+
to as DropdownMenu,
|
|
374
|
+
fo as DropdownMenuCheckboxItem,
|
|
375
|
+
so as DropdownMenuContent,
|
|
376
|
+
ao as DropdownMenuGroup,
|
|
377
|
+
go as DropdownMenuItem,
|
|
378
|
+
To as DropdownMenuLabel,
|
|
379
|
+
io as DropdownMenuPortal,
|
|
380
|
+
po as DropdownMenuRadioGroup,
|
|
381
|
+
So as DropdownMenuRadioItem,
|
|
382
|
+
Lo as DropdownMenuSeparator,
|
|
383
|
+
Ao as DropdownMenuShortcut,
|
|
384
|
+
no as DropdownMenuSub,
|
|
385
|
+
ho as DropdownMenuSubContent,
|
|
386
|
+
Vo as DropdownMenuSubTrigger,
|
|
387
|
+
lo as DropdownMenuTrigger,
|
|
388
|
+
Cm as EditButton,
|
|
389
|
+
wo as EditInput,
|
|
390
|
+
xs as EnglishLocale,
|
|
391
|
+
Po as ErrorLineMessage,
|
|
392
|
+
Mo as ErrorMessage,
|
|
393
|
+
Go as ErrorView,
|
|
394
|
+
Ur as ExpandablCall,
|
|
395
|
+
qr as ExpandableCard,
|
|
396
|
+
Ho as ExplorerLinksDropdown,
|
|
397
|
+
br as ExternalButton,
|
|
398
|
+
Xs as FORMAT_CONSTANTS,
|
|
399
|
+
ei as FaIcon,
|
|
400
|
+
No as FadeoutLoading,
|
|
401
|
+
_o as FilterBlock,
|
|
402
|
+
Dr as FilterButton,
|
|
403
|
+
Wo as FilterCheckboxItem,
|
|
404
|
+
Xo as FilterChip,
|
|
405
|
+
zo as FilterChips,
|
|
406
|
+
Yo as FilterDropdownItem,
|
|
407
|
+
jo as FilterGroup,
|
|
408
|
+
$o as FilterLabel,
|
|
409
|
+
et as FilterModal,
|
|
410
|
+
tt as FilterModalItem,
|
|
411
|
+
it as FilterRadioItem,
|
|
412
|
+
nt as FilterSeparator,
|
|
413
|
+
Ci as Footer,
|
|
414
|
+
Si as FooterLink,
|
|
415
|
+
bi as FooterLinkSection,
|
|
416
|
+
xt as FormField,
|
|
417
|
+
ix as FormattedMessageTyped,
|
|
418
|
+
dt as FormattedNumberString,
|
|
419
|
+
Kt as GOOD_HF,
|
|
420
|
+
Li as GearboxFooter,
|
|
421
|
+
Vt as Graph,
|
|
422
|
+
Pt as GraphCurrentValue,
|
|
423
|
+
ex as GraphDropdown,
|
|
424
|
+
Mt as GraphTooltip,
|
|
425
|
+
Gt as GraphView,
|
|
426
|
+
yt as GraphViewWithData,
|
|
427
|
+
Ai as Grid,
|
|
428
|
+
Fm as GridErrorLine,
|
|
429
|
+
km as GridLoadingLine,
|
|
430
|
+
Ut as GridTDCell,
|
|
431
|
+
vm as GridTable,
|
|
432
|
+
Mm as GridTableBody,
|
|
433
|
+
Em as GridTableCaption,
|
|
434
|
+
Gm as GridTableCell,
|
|
435
|
+
bm as GridTableCellAsset,
|
|
436
|
+
Lm as GridTableCellUpdatable,
|
|
437
|
+
Dm as GridTableEditable,
|
|
438
|
+
ym as GridTableFooter,
|
|
439
|
+
Hm as GridTableHead,
|
|
440
|
+
Rm as GridTableHeader,
|
|
441
|
+
Zm as GridTableLoader,
|
|
442
|
+
Nm as GridTableRow,
|
|
443
|
+
qt as Guard,
|
|
444
|
+
Zt as HeadCell,
|
|
445
|
+
hi as Header,
|
|
446
|
+
em as HealthDot,
|
|
447
|
+
jt as HealthFactor,
|
|
448
|
+
ra as HelpCenterContainer,
|
|
449
|
+
oa as HelpSection,
|
|
450
|
+
ta as HelpSections,
|
|
451
|
+
ia as HelpTip,
|
|
452
|
+
pa as HelpTipIcon,
|
|
453
453
|
ma as HideOn,
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
454
|
+
sa as HorizontalIndicator,
|
|
455
|
+
ua as IconButton,
|
|
456
|
+
Zn as Identicon,
|
|
457
|
+
ti as Input,
|
|
458
|
+
pi as Label,
|
|
459
|
+
Fi as Layout,
|
|
460
|
+
Hi as LegalAgreementDialog,
|
|
461
|
+
ki as LegalDisclaimer,
|
|
462
|
+
Wi as Link,
|
|
463
|
+
zi as LiquidationGraph,
|
|
464
|
+
Yi as LiquidationGraphLegend,
|
|
465
|
+
ji as LiquidationGraphTip,
|
|
466
|
+
Xi as LiquidationModellingAssetsTable,
|
|
467
|
+
$i as LiquidationPrice,
|
|
468
|
+
ep as Loader,
|
|
469
|
+
tp as LoaderGuard,
|
|
470
|
+
ip as Loading,
|
|
471
|
+
np as LoadingBar,
|
|
472
472
|
mp as MarkdownViewer,
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
473
|
+
we as Modal,
|
|
474
|
+
bp as NavBarLogo,
|
|
475
|
+
hp as NavItem,
|
|
476
|
+
xp as Navbar,
|
|
477
|
+
gp as NavbarIndicatorProvider,
|
|
478
|
+
sp as NavbarNav,
|
|
479
|
+
Cp as NavbarWithOverflow,
|
|
480
|
+
Ir as NavigationButton,
|
|
481
|
+
Dp as NavigationProvider,
|
|
482
|
+
Fp as NetworkIcon,
|
|
483
|
+
kp as NotFound,
|
|
484
|
+
$e as OneFieldDialog,
|
|
485
|
+
vp as OptionsItem,
|
|
486
|
+
Mp as OptionsList,
|
|
487
|
+
Gp as Overflow,
|
|
488
|
+
Rp as OverflowContainer,
|
|
489
|
+
yp as OverflowWrap,
|
|
490
|
+
vi as PageLayout,
|
|
491
|
+
Op as PageTitle,
|
|
492
|
+
qp as PercentIndicator,
|
|
493
|
+
Zp as PointsIcon,
|
|
494
|
+
Qp as PoolAPYTooltip,
|
|
495
|
+
Kp as PoolIndicatorIcon,
|
|
496
|
+
Jp as PoolPointsIndicator,
|
|
497
|
+
Le as PoolRewardsIcon,
|
|
498
|
+
rn as Progress,
|
|
499
|
+
on as ProgressBar,
|
|
500
|
+
pn as ProgressCircle,
|
|
501
|
+
ln as RadioGroup,
|
|
502
502
|
mn as RadioGroupItem,
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
la as ShowOn,
|
|
503
|
+
fn as RadioOption,
|
|
504
|
+
Br as RangeButtons,
|
|
505
|
+
sn as RoundedImage,
|
|
506
|
+
un as Row,
|
|
507
|
+
cn as SearchBar,
|
|
508
|
+
Cn as SearchLine,
|
|
509
|
+
An as SegmentedControl,
|
|
510
|
+
Bn as Select,
|
|
511
|
+
Vn as SelectContent,
|
|
512
|
+
Fn as SelectGroup,
|
|
513
|
+
wn as SelectItem,
|
|
514
|
+
kn as SelectLabel,
|
|
515
|
+
Pn as SelectScrollDownButton,
|
|
516
|
+
vn as SelectScrollUpButton,
|
|
517
|
+
Mn as SelectSeparator,
|
|
518
|
+
En as SelectTrigger,
|
|
519
|
+
Gn as SelectValue,
|
|
520
|
+
Rn as SeparateLine,
|
|
521
|
+
On as Separator,
|
|
522
|
+
Un as ShortString,
|
|
523
|
+
fa as ShowOn,
|
|
525
524
|
Z as SignInRequired,
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
Kd as
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
Ri as
|
|
630
|
-
Ni as
|
|
631
|
-
Oi as
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
Ta as
|
|
638
|
-
Ca as
|
|
639
|
-
Sa as
|
|
640
|
-
ba as
|
|
641
|
-
La as
|
|
642
|
-
Da as
|
|
643
|
-
Aa as
|
|
644
|
-
Ia as
|
|
645
|
-
ha as
|
|
646
|
-
Ba as
|
|
647
|
-
Va as
|
|
648
|
-
Fa as
|
|
649
|
-
wa as
|
|
650
|
-
ka as
|
|
651
|
-
Pa as
|
|
652
|
-
va as
|
|
653
|
-
Ma as
|
|
654
|
-
Ea as
|
|
655
|
-
Ga as
|
|
656
|
-
ya as
|
|
657
|
-
Ha as
|
|
658
|
-
Ra as
|
|
659
|
-
Na as
|
|
660
|
-
Oa as
|
|
661
|
-
_a as
|
|
662
|
-
Ua as
|
|
663
|
-
Wa as
|
|
664
|
-
qa as
|
|
665
|
-
Xa as
|
|
666
|
-
Za as
|
|
667
|
-
za as
|
|
668
|
-
Qa as
|
|
669
|
-
Ya as
|
|
670
|
-
Ka as
|
|
671
|
-
ja as
|
|
672
|
-
Ja as
|
|
525
|
+
Kn as SimpleAccordion,
|
|
526
|
+
jn as SimpleAccordionItem,
|
|
527
|
+
$n as SimpleDropdown,
|
|
528
|
+
el as SimpleDropdownMenuItem,
|
|
529
|
+
zt as SimpleHeadCell,
|
|
530
|
+
Qf as SimpleTooltip,
|
|
531
|
+
tl as Skeleton,
|
|
532
|
+
pl as SkeletonStack,
|
|
533
|
+
ll as Slider,
|
|
534
|
+
dl as SliderMark,
|
|
535
|
+
fl as SliderProvider,
|
|
536
|
+
Vl as SliderToken,
|
|
537
|
+
wl as SliderTokenLabel,
|
|
538
|
+
gl as SliderTrack,
|
|
539
|
+
yl as SmartNumberInput,
|
|
540
|
+
Ei as SocialIcons,
|
|
541
|
+
Qm as SortingTableHead,
|
|
542
|
+
Rl as Spinner,
|
|
543
|
+
_l as SpinnerLoader,
|
|
544
|
+
Nl as SpinnerOverlay,
|
|
545
|
+
Wl as SplitList,
|
|
546
|
+
Xl as StatBadge,
|
|
547
|
+
Zl as StatBadgeGrid,
|
|
548
|
+
om as StatusBars,
|
|
549
|
+
Jl as StatusDot,
|
|
550
|
+
am as StatusTriangle,
|
|
551
|
+
pm as Stepper,
|
|
552
|
+
Jr as StyledButton,
|
|
553
|
+
re as StyledDialogContainer,
|
|
554
|
+
lm as StyledDropdown,
|
|
555
|
+
oe as StyledRoundedImage,
|
|
556
|
+
fm as Switch,
|
|
557
|
+
bl as THEME_COLOR_MAP,
|
|
558
|
+
Ll as THUMB_HALF,
|
|
559
|
+
Dl as THUMB_SIZE,
|
|
560
|
+
Ud as TTL_CONSTANTS,
|
|
561
|
+
Fr as TabButton,
|
|
562
|
+
sm as TabControl,
|
|
563
|
+
dm as TabItem,
|
|
564
|
+
Ym as Table,
|
|
565
|
+
Km as TableBody,
|
|
566
|
+
jm as TableCaption,
|
|
567
|
+
Jm as TableCell,
|
|
568
|
+
Im as TableCellAsset,
|
|
569
|
+
sf as TableCellSm,
|
|
570
|
+
hm as TableCellUpdatable,
|
|
571
|
+
Bm as TableEditable,
|
|
572
|
+
$m as TableFooter,
|
|
573
|
+
rf as TableHead,
|
|
574
|
+
ef as TableHeader,
|
|
575
|
+
df as TableLineSm,
|
|
576
|
+
lf as TableLoader,
|
|
577
|
+
ff as TableLoaderGuard,
|
|
578
|
+
of as TableRow,
|
|
579
|
+
Tf as Tabs,
|
|
580
|
+
Cf as TabsContent,
|
|
581
|
+
Sf as TabsList,
|
|
582
|
+
bf as TabsTrigger,
|
|
583
|
+
Om as Td,
|
|
584
|
+
Df as TextButton,
|
|
585
|
+
If as Textarea,
|
|
586
|
+
_m as Th,
|
|
587
|
+
Vf as ThemeProvider,
|
|
588
|
+
kf as ThemeToggle,
|
|
589
|
+
vf as TimeToLiquidation,
|
|
590
|
+
Ef as TipCard,
|
|
591
|
+
na as TipWrap,
|
|
592
|
+
Hf as Toggle,
|
|
593
|
+
Of as TokenIcon,
|
|
594
|
+
Wf as TokenSymbol,
|
|
595
|
+
Zf as TokenTemplate,
|
|
596
|
+
Kf as Tooltip,
|
|
597
|
+
jf as TooltipContent,
|
|
598
|
+
Jf as TooltipProvider,
|
|
599
|
+
$f as TooltipTrigger,
|
|
600
|
+
tx as TradingView,
|
|
601
|
+
lx as Typography,
|
|
602
|
+
gf as UpdatedValue,
|
|
603
|
+
Tx as VSpace,
|
|
604
|
+
Ot as VertLine,
|
|
605
|
+
xx as VerticalIndicator,
|
|
606
|
+
ux as VerticalList,
|
|
607
|
+
Qn as VerticalTimeline,
|
|
608
|
+
Q as WalletUIProvider,
|
|
609
|
+
Sx as WithCopy,
|
|
610
|
+
Lx as WithFilterButton,
|
|
611
|
+
Sn as WithSearchLine,
|
|
612
|
+
Ax as WithTitle,
|
|
613
|
+
Kd as Z_INDEX,
|
|
614
|
+
jd as Z_INDEX_VALUES,
|
|
615
|
+
l as alertBadgeVariants,
|
|
616
|
+
ed as allLoaded,
|
|
617
|
+
dr as backButtonVariants,
|
|
618
|
+
or as badgeVariants,
|
|
619
|
+
cs as bnToInputView,
|
|
620
|
+
ud as bnToLiquidationPriceView,
|
|
621
|
+
Cs as bnToPrettyView,
|
|
622
|
+
cr as buttonVariants,
|
|
623
|
+
Pr as cardGridVariants,
|
|
624
|
+
bs as cn,
|
|
625
|
+
ie as coloredTextVariants,
|
|
626
|
+
ks as convertPercent,
|
|
627
|
+
Fs as copyToClipboard,
|
|
628
|
+
Ri as createGearboxAppConfig,
|
|
629
|
+
Ni as createLegalAgreementConfig,
|
|
630
|
+
Oi as createPermissionlessInterfaceConfig,
|
|
631
|
+
_i as createPermissionlessSafeConfig,
|
|
632
|
+
wd as createTokenSearchFilter,
|
|
633
|
+
id as decimalsToStep,
|
|
634
|
+
hx as designTokens,
|
|
635
|
+
Id as extractTextFromLabel,
|
|
636
|
+
Ta as faArrowDown,
|
|
637
|
+
Ca as faArrowLeft,
|
|
638
|
+
Sa as faArrowRight,
|
|
639
|
+
ba as faArrowUp,
|
|
640
|
+
La as faArrowsUpDown,
|
|
641
|
+
Da as faBars,
|
|
642
|
+
Aa as faBolt,
|
|
643
|
+
Ia as faCaretDown,
|
|
644
|
+
ha as faCaretLeft,
|
|
645
|
+
Ba as faCaretRight,
|
|
646
|
+
Va as faCaretUp,
|
|
647
|
+
Fa as faCheck,
|
|
648
|
+
wa as faChevronLeft,
|
|
649
|
+
ka as faChevronRight,
|
|
650
|
+
Pa as faCircle,
|
|
651
|
+
va as faCircleCheck,
|
|
652
|
+
Ma as faCircleExclamation,
|
|
653
|
+
Ea as faCirclePlus,
|
|
654
|
+
Ga as faCircleQuestion,
|
|
655
|
+
ya as faCloud,
|
|
656
|
+
Ha as faCog,
|
|
657
|
+
Ra as faCreditCard,
|
|
658
|
+
Na as faEllipsisVertical,
|
|
659
|
+
Oa as faEnvelope,
|
|
660
|
+
_a as faKeyboard,
|
|
661
|
+
Ua as faLifeRing,
|
|
662
|
+
Wa as faMagnifyingGlass,
|
|
663
|
+
qa as faMessage,
|
|
664
|
+
Xa as faPlus,
|
|
665
|
+
Za as faRightFromBracket,
|
|
666
|
+
za as faTrash,
|
|
667
|
+
Qa as faTriangleExclamation,
|
|
668
|
+
Ya as faUser,
|
|
669
|
+
Ka as faUserPlus,
|
|
670
|
+
ja as faUsers,
|
|
671
|
+
Ja as faWallet,
|
|
672
|
+
$a as faXmark,
|
|
673
673
|
mt as filterBlockVariants,
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
674
|
+
pd as findClosestPoint,
|
|
675
|
+
Hs as formatAssetAmount,
|
|
676
|
+
nu as formatAxisLabel,
|
|
677
|
+
lu as formatAxisTipLabel,
|
|
678
678
|
mu as formatAxisTipPrice,
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
679
|
+
Ps as formatBytecodeSize,
|
|
680
|
+
vs as formatBytecodeVersion,
|
|
681
|
+
Ns as formatMoney,
|
|
682
|
+
Os as formatMoneyAmount,
|
|
683
|
+
Zs as formatNumberWithSuffix,
|
|
684
|
+
_s as formatPercentAmount,
|
|
685
|
+
zs as formatPrice,
|
|
686
|
+
Ms as formatTimestamp,
|
|
687
|
+
nd as formatWithDecimals,
|
|
688
|
+
ld as formatWithoutDecimals,
|
|
689
|
+
Ds as generateColorsFromBase,
|
|
690
|
+
ds as generateId,
|
|
691
|
+
Qs as getAdaptiveDecimals,
|
|
692
|
+
Dd as getAvailableRanges,
|
|
693
|
+
As as getCSSVariable,
|
|
694
|
+
fu as getCellClass,
|
|
695
|
+
Ct as getDefaultOptions,
|
|
696
|
+
St as getDefaultSeries,
|
|
697
|
+
bt as getDefaultVerticalLine,
|
|
698
|
+
Jt as getHFZones,
|
|
699
|
+
Al as getIntervalBounds,
|
|
700
|
+
sd as getNetworkIcon,
|
|
701
|
+
fe as getRewardTokenSymbol,
|
|
702
|
+
Ft as getSeriesColorPalette,
|
|
703
|
+
Ox as getSortForField,
|
|
704
|
+
qf as getSymbolOrIcon,
|
|
705
|
+
Wd as getTTLZones,
|
|
706
|
+
Il as getThumbInBoundsOffset,
|
|
707
|
+
wt as getVerticalLineTooltipContent,
|
|
708
|
+
Dt as getXFormatter,
|
|
709
|
+
At as getXFormatters,
|
|
710
|
+
It as getYFormatter,
|
|
711
|
+
Ht as graphViewVariants,
|
|
712
|
+
Um as gridTableCellVariants,
|
|
713
|
+
Wm as gridTableHeadVariants,
|
|
714
|
+
qm as gridTableVariants,
|
|
715
|
+
Is as hexToRgba,
|
|
716
|
+
tn as hfToBarIndex,
|
|
717
|
+
hs as hslToHex,
|
|
718
|
+
ga as iconButtonVariants,
|
|
719
|
+
ai as inputVariants,
|
|
720
|
+
Vx as interactiveVariants,
|
|
721
|
+
Ys as isBelowDisplayThreshold,
|
|
722
|
+
Ks as isEffectivelyZero,
|
|
723
|
+
Ed as isLongString,
|
|
724
|
+
xu as isPointInCell,
|
|
725
|
+
gd as isPositiveFloat,
|
|
726
|
+
ni as labelVariants,
|
|
727
|
+
od as loadingProgress,
|
|
728
|
+
Tl as makeMarkerPoints,
|
|
729
|
+
Pl as makeSliderTokenMarkerPoints,
|
|
730
|
+
vl as mergeCloseMarkers,
|
|
731
|
+
dp as navbarVariants,
|
|
732
|
+
Bp as navitemVariants,
|
|
733
|
+
Hd as negativeTokenTemplate,
|
|
734
|
+
Qd as openInNewWindow,
|
|
735
|
+
Fx as paddingVariants,
|
|
736
|
+
_p as pageTitleRootVariants,
|
|
737
|
+
Up as pageTitleVariants,
|
|
738
|
+
cd as parseInputToBN,
|
|
739
|
+
Td as parseSmallNumber,
|
|
740
|
+
Us as percentTemplate,
|
|
741
|
+
Ws as percentageTemplate,
|
|
742
|
+
Sd as pluralize,
|
|
743
|
+
_f as preloadTokenIcons,
|
|
744
|
+
Bs as resolveCSSColor,
|
|
745
|
+
hl as resolveColor,
|
|
746
|
+
td as round5,
|
|
747
|
+
Vd as searchInString,
|
|
748
|
+
kd as searchInToken,
|
|
749
|
+
bn as searchLineInputVariants,
|
|
750
|
+
Ln as searchLineVariants,
|
|
751
|
+
In as segmentedControlVariants,
|
|
752
|
+
bd as selectPluralString,
|
|
753
|
+
yn as selectTriggerVariants,
|
|
754
|
+
hd as serializeValue,
|
|
755
|
+
vd as shortSHA,
|
|
756
|
+
Es as shortenHash,
|
|
757
|
+
Gd as shortenString,
|
|
758
|
+
Gs as significantTrunc,
|
|
759
|
+
wx as sizeVariants,
|
|
760
|
+
al as skeletonVariants,
|
|
761
|
+
$s as slippageTemplate,
|
|
762
762
|
md as splitInterval,
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
763
|
+
zl as statBadgeContentVariants,
|
|
764
|
+
Ql as statBadgeGridVariants,
|
|
765
|
+
Yl as statBadgeTitleVariants,
|
|
766
|
+
Kl as statBadgeVariants,
|
|
767
|
+
kx as stateVariants,
|
|
768
|
+
$l as statusDotVariants,
|
|
769
|
+
tf as tableCellVariants,
|
|
770
|
+
af as tableHeadVariants,
|
|
771
|
+
pf as tableVariants,
|
|
772
|
+
hf as textareaVariants,
|
|
773
|
+
Gf as tipCardVariants,
|
|
774
|
+
js as toSignificantDigits,
|
|
775
|
+
Rf as toggleTrackVariants,
|
|
776
|
+
Rd as tokenTemplate,
|
|
777
|
+
Nd as tokenTemplateNumber,
|
|
778
|
+
Od as tokenTemplateString,
|
|
779
|
+
qd as ttlFromTimestamp,
|
|
780
|
+
Xd as ttlLeft,
|
|
781
|
+
Zd as ttlLeftHuman,
|
|
782
782
|
mx as typographyVariants,
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
783
|
+
su as useAxis,
|
|
784
|
+
vx as useCheckboxSelect,
|
|
785
|
+
Ex as useControllableState,
|
|
786
|
+
yx as useDebounce,
|
|
787
|
+
Rx as useDebounceCall,
|
|
788
|
+
Qx as useEditPriceManually,
|
|
789
|
+
_x as useFilterAllSelected,
|
|
790
|
+
du as useFixedAssets,
|
|
791
|
+
us as useFormFieldIds,
|
|
792
|
+
Rt as useGraphAside,
|
|
793
|
+
Zx as useHF,
|
|
794
|
+
um as useHashTabs,
|
|
795
|
+
px as useIntlTyped,
|
|
796
|
+
uu as useIsAxisInRelativeUnits,
|
|
797
|
+
Jx as useIsDesktop,
|
|
798
|
+
$x as useIsExtraSmall,
|
|
799
|
+
rs as useIsMedium,
|
|
800
|
+
es as useIsMobile,
|
|
801
|
+
os as useIsTablet,
|
|
802
|
+
gu as useLiquidationGraphActivePrice,
|
|
803
|
+
cu as useLiquidationGraphCurrentActiveValue,
|
|
804
|
+
Yx as useLiquidationGraphParams,
|
|
805
|
+
Kx as useLiquidationHeatmap,
|
|
806
|
+
ts as useMediaQuery,
|
|
807
|
+
Bi as useMobileMenu,
|
|
808
|
+
cp as useNavbarIndicator,
|
|
809
|
+
Ap as useNavigationAdapter,
|
|
810
|
+
is as useOpenedState,
|
|
811
|
+
ns as usePrevious,
|
|
812
|
+
Tu as usePriceInNumber,
|
|
813
|
+
Ux as useRangeFilter,
|
|
814
|
+
gm as useSectionTab,
|
|
815
|
+
Wx as useSelectFilter,
|
|
816
|
+
xl as useSliderContext,
|
|
817
817
|
ms as useSmartNumberInput,
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
818
|
+
qx as useSort,
|
|
819
|
+
cm as useTabControl,
|
|
820
|
+
Ff as useTheme,
|
|
821
|
+
Y as useWalletUI,
|
|
822
|
+
Cu as useWithLiquidationGraphActivePrices,
|
|
823
|
+
Cl as validateMarkerPoints,
|
|
824
|
+
fd as validateMinMax,
|
|
825
|
+
sx as verticalIndicatorVariants,
|
|
826
|
+
gx as verticalListVariants
|
|
826
827
|
};
|