@gearbox-protocol/permissionless-ui 1.22.0-next.41 → 1.22.0-next.43
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/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/complex-input/index.cjs +1 -1
- package/dist/cjs/components/currency-button/currency-button.cjs +1 -1
- package/dist/cjs/components/help-tip/help-tip.cjs +1 -1
- package/dist/cjs/components/index.cjs +1 -1
- package/dist/cjs/components/smart-number-input/balance-indicator.cjs +1 -0
- package/dist/cjs/components/smart-number-input/index.cjs +1 -1
- package/dist/cjs/components/smart-number-input/smart-number-input.cjs +1 -1
- package/dist/cjs/hooks/index.cjs +1 -1
- package/dist/cjs/hooks/use-debounce-call.cjs +1 -1
- package/dist/cjs/hooks/use-hf.cjs +1 -1
- package/dist/cjs/hooks/use-media-query.cjs +1 -1
- package/dist/cjs/hooks/use-smart-number-input.cjs +1 -0
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/utils/format-money.cjs +1 -1
- package/dist/esm/components/block-sync/block-sync.js +7 -5
- package/dist/esm/components/checkbox/checkbox-labeled.js +5 -3
- package/dist/esm/components/client-adapters/styled-rounded-image/styled-rounded-image.js +5 -3
- package/dist/esm/components/complex-input/complex-input.js +57 -102
- package/dist/esm/components/complex-input/index.js +2 -3
- package/dist/esm/components/currency-button/currency-button.js +96 -74
- package/dist/esm/components/help-tip/help-tip.js +19 -19
- package/dist/esm/components/index.js +456 -455
- package/dist/esm/components/smart-number-input/balance-indicator.js +60 -0
- package/dist/esm/components/smart-number-input/index.js +4 -2
- package/dist/esm/components/smart-number-input/smart-number-input.js +139 -146
- package/dist/esm/hooks/index.js +38 -35
- package/dist/esm/hooks/use-debounce-call.js +7 -14
- package/dist/esm/hooks/use-hf.js +33 -25
- package/dist/esm/hooks/use-media-query.js +12 -11
- package/dist/esm/hooks/use-smart-number-input.js +10 -0
- package/dist/esm/index.js +590 -586
- package/dist/esm/utils/format-money.js +3 -5
- package/dist/globals.css +1 -1
- package/dist/types/components/complex-input/complex-input.d.ts +1 -33
- package/dist/types/components/currency-button/currency-button.d.ts +26 -61
- package/dist/types/components/smart-number-input/balance-indicator.d.ts +41 -0
- package/dist/types/components/smart-number-input/index.d.ts +1 -0
- package/dist/types/components/smart-number-input/smart-number-input.d.ts +29 -102
- package/dist/types/components/token-template/token-template.d.ts +2 -5
- package/dist/types/hooks/index.d.ts +1 -0
- package/dist/types/hooks/use-debounce-call.d.ts +1 -19
- package/dist/types/hooks/use-hf.d.ts +2 -1
- package/dist/types/hooks/use-media-query.d.ts +4 -0
- package/dist/types/hooks/use-smart-number-input.d.ts +1 -0
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { AssetsListCell as w } from "./components/assets-list-cell/assets-list-c
|
|
|
9
9
|
import { AssetsRatio as E } from "./components/assets-ratio/assets-ratio.js";
|
|
10
10
|
import { ConnectRequired as v } from "./components/auth/connect-required.js";
|
|
11
11
|
import { SignInRequired as y } from "./components/auth/signin-required.js";
|
|
12
|
-
import { SIWEClientProvider as
|
|
12
|
+
import { SIWEClientProvider as N } from "./components/auth/siwe-provider.js";
|
|
13
13
|
import { Avatar as O, AvatarFallback as _, AvatarImage as q } from "./components/avatar/avatar.js";
|
|
14
14
|
import { Badge as W, badgeVariants as z } from "./components/badge/badge.js";
|
|
15
15
|
import { BaseLink as Z } from "./components/base-link/base-link.js";
|
|
@@ -31,218 +31,220 @@ import { ExpandablCall as Pr } from "./components/cards/expandable-call/expandab
|
|
|
31
31
|
import { ExpandableCard as kr } from "./components/cards/expandable-card/expandable-card.js";
|
|
32
32
|
import { Carousel as Mr } from "./components/carousel/carousel.js";
|
|
33
33
|
import { Checkbox as Hr } from "./components/checkbox/checkbox.js";
|
|
34
|
-
import { CheckboxLabeled as
|
|
34
|
+
import { CheckboxLabeled as Rr } from "./components/checkbox/checkbox-labeled.js";
|
|
35
35
|
import { StyledButton as _r } from "./components/client-adapters/styled-button/styled-button.js";
|
|
36
36
|
import { StyledDialogContainer as Ur } from "./components/client-adapters/styled-dialog-container/styled-dialog-container.js";
|
|
37
37
|
import { StyledRoundedImage as zr } from "./components/client-adapters/styled-rounded-image/styled-rounded-image.js";
|
|
38
38
|
import { ColoredText as Zr, coloredTextVariants as Yr } from "./components/colored-text/colored-text.js";
|
|
39
|
-
import {
|
|
40
|
-
import { CompoundAPY as
|
|
41
|
-
import { ConfirmMenu as
|
|
42
|
-
import { CreditSessionStatus as
|
|
43
|
-
import { CurrencyButton as
|
|
44
|
-
import { Description as
|
|
45
|
-
import { DetailedApy as
|
|
46
|
-
import { DetailedPageTitle as
|
|
47
|
-
import { Modal as
|
|
48
|
-
import { Dialog as
|
|
49
|
-
import { DialogContainer as
|
|
50
|
-
import { DialogContent as
|
|
51
|
-
import { DialogDescription as
|
|
52
|
-
import { DialogFooter as
|
|
53
|
-
import { DialogForm as
|
|
54
|
-
import { DialogHeader as
|
|
55
|
-
import { DialogModalContainer as
|
|
56
|
-
import { DialogOverlay as
|
|
57
|
-
import { DialogTitle as
|
|
58
|
-
import { OneFieldDialog as
|
|
39
|
+
import { ComplexInput as Kr } from "./components/complex-input/complex-input.js";
|
|
40
|
+
import { CompoundAPY as Jr } from "./components/compound-apy/compound-apy.js";
|
|
41
|
+
import { ConfirmMenu as re } from "./components/confirm-menu/confirm-menu.js";
|
|
42
|
+
import { CreditSessionStatus as oe } from "./components/credit-session-status/credit-session-status.js";
|
|
43
|
+
import { CurrencyButton as ae } from "./components/currency-button/currency-button.js";
|
|
44
|
+
import { Description as pe } from "./components/description/description.js";
|
|
45
|
+
import { DetailedApy as me } from "./components/detailed-apy/detailed-apy.js";
|
|
46
|
+
import { DetailedPageTitle as fe } from "./components/detailed-page-title/detailed-page-title.js";
|
|
47
|
+
import { Modal as se } from "./components/modal/modal.js";
|
|
48
|
+
import { Dialog as ue, DialogPortal as Te, DialogTrigger as ge } from "./components/dialog/dialog.js";
|
|
49
|
+
import { DialogContainer as be } from "./components/dialog/dialog-container.js";
|
|
50
|
+
import { DialogContent as Ce } from "./components/dialog/dialog-content.js";
|
|
51
|
+
import { DialogDescription as De } from "./components/dialog/dialog-description.js";
|
|
52
|
+
import { DialogFooter as Ie } from "./components/dialog/dialog-footer.js";
|
|
53
|
+
import { DialogForm as he } from "./components/dialog/dialog-form.js";
|
|
54
|
+
import { DialogHeader as Be } from "./components/dialog/dialog-header.js";
|
|
55
|
+
import { DialogModalContainer as we } from "./components/dialog/dialog-modal-container.js";
|
|
56
|
+
import { DialogOverlay as Ee } from "./components/dialog/dialog-overlay.js";
|
|
57
|
+
import { DialogTitle as ve } from "./components/dialog/dialog-title.js";
|
|
58
|
+
import { OneFieldDialog as ye } from "./components/dialog/one-field-dialog.js";
|
|
59
59
|
import { DefaultDropdownLabel as Ne } from "./components/dropdown-label/dropdown-label.js";
|
|
60
|
-
import { DropdownMenu as
|
|
61
|
-
import { DropdownMenuCheckboxItem as
|
|
62
|
-
import { DropdownMenuContent as
|
|
63
|
-
import { DropdownMenuItem as
|
|
64
|
-
import { DropdownMenuLabel as
|
|
65
|
-
import { DropdownMenuRadioItem as
|
|
66
|
-
import { DropdownMenuSeparator as
|
|
67
|
-
import { DropdownMenuShortcut as
|
|
68
|
-
import { DropdownMenuSubContent as
|
|
69
|
-
import { DropdownMenuSubTrigger as
|
|
70
|
-
import { EditInput as
|
|
71
|
-
import { ErrorLineMessage as
|
|
72
|
-
import { ErrorMessage as
|
|
73
|
-
import { ErrorView as
|
|
74
|
-
import { ExplorerLinksDropdown as
|
|
75
|
-
import { FadeoutLoading as
|
|
76
|
-
import { FilterBlock as
|
|
77
|
-
import { FilterCheckboxItem as
|
|
78
|
-
import { FilterChip as
|
|
79
|
-
import { FilterChips as
|
|
80
|
-
import { FilterDropdownItem as
|
|
81
|
-
import { FilterGroup as
|
|
82
|
-
import { FilterLabel as
|
|
60
|
+
import { DropdownMenu as Oe, DropdownMenuGroup as _e, DropdownMenuPortal as qe, DropdownMenuRadioGroup as Ue, DropdownMenuSub as We, DropdownMenuTrigger as ze } from "./components/dropdown-menu/dropdown-menu.js";
|
|
61
|
+
import { DropdownMenuCheckboxItem as Ze } from "./components/dropdown-menu/dropdown-menu-checkbox-item.js";
|
|
62
|
+
import { DropdownMenuContent as Qe } from "./components/dropdown-menu/dropdown-menu-content.js";
|
|
63
|
+
import { DropdownMenuItem as je } from "./components/dropdown-menu/dropdown-menu-item.js";
|
|
64
|
+
import { DropdownMenuLabel as $e } from "./components/dropdown-menu/dropdown-menu-label.js";
|
|
65
|
+
import { DropdownMenuRadioItem as eo } from "./components/dropdown-menu/dropdown-menu-radio-item.js";
|
|
66
|
+
import { DropdownMenuSeparator as to } from "./components/dropdown-menu/dropdown-menu-separator.js";
|
|
67
|
+
import { DropdownMenuShortcut as io } from "./components/dropdown-menu/dropdown-menu-shortcut.js";
|
|
68
|
+
import { DropdownMenuSubContent as no } from "./components/dropdown-menu/dropdown-menu-sub-content.js";
|
|
69
|
+
import { DropdownMenuSubTrigger as lo } from "./components/dropdown-menu/dropdown-menu-sub-trigger.js";
|
|
70
|
+
import { EditInput as xo } from "./components/edit-input/edit-input.js";
|
|
71
|
+
import { ErrorLineMessage as uo } from "./components/error-message/error-line-message.js";
|
|
72
|
+
import { ErrorMessage as go } from "./components/error-message/error-message.js";
|
|
73
|
+
import { ErrorView as bo } from "./components/error-view/error-view.js";
|
|
74
|
+
import { ExplorerLinksDropdown as Co } from "./components/explorer-links-dropdown/explorer-links-dropdown.js";
|
|
75
|
+
import { FadeoutLoading as Do } from "./components/fadeout-loading/fadeout-loading.js";
|
|
76
|
+
import { FilterBlock as Io } from "./components/filter/filter-block.js";
|
|
77
|
+
import { FilterCheckboxItem as ho } from "./components/filter/filter-checkbox-item.js";
|
|
78
|
+
import { FilterChip as Bo } from "./components/filter/filter-chip.js";
|
|
79
|
+
import { FilterChips as wo } from "./components/filter/filter-chips.js";
|
|
80
|
+
import { FilterDropdownItem as Eo } from "./components/filter/filter-dropdown-item.js";
|
|
81
|
+
import { FilterGroup as vo } from "./components/filter/filter-group.js";
|
|
82
|
+
import { FilterLabel as yo } from "./components/filter/filter-label.js";
|
|
83
83
|
import { FilterModal as No } from "./components/filter/filter-modal.js";
|
|
84
|
-
import { FilterModalItem as
|
|
85
|
-
import { FilterRadioItem as
|
|
86
|
-
import { FilterSeparator as
|
|
87
|
-
import { filterBlockVariants as
|
|
88
|
-
import { FormField as
|
|
89
|
-
import { FormattedNumberString as
|
|
90
|
-
import { GeneralAssetList as
|
|
91
|
-
import { GeneralSelect as
|
|
92
|
-
import { DEFAULT_AREA_SERIES as
|
|
93
|
-
import { getXFormatter as
|
|
94
|
-
import { DEFAULT_SERIES_COLORS as
|
|
95
|
-
import { GraphCurrentValue as
|
|
96
|
-
import { GraphTooltip as
|
|
97
|
-
import { GraphView as
|
|
98
|
-
import { VertLine as
|
|
99
|
-
import { GridTDCell as
|
|
100
|
-
import { Guard as
|
|
101
|
-
import { HeadCell as
|
|
102
|
-
import { BAD_HF as
|
|
84
|
+
import { FilterModalItem as Oo } from "./components/filter/filter-modal-item.js";
|
|
85
|
+
import { FilterRadioItem as qo } from "./components/filter/filter-radio-item.js";
|
|
86
|
+
import { FilterSeparator as Wo } from "./components/filter/filter-separator.js";
|
|
87
|
+
import { filterBlockVariants as Xo } from "./components/filter/variants.js";
|
|
88
|
+
import { FormField as Yo } from "./components/form/form-field.js";
|
|
89
|
+
import { FormattedNumberString as Ko } from "./components/formatted-number/formatted-number.js";
|
|
90
|
+
import { GeneralAssetList as Jo } from "./components/general-asset-list/general-asset-list.js";
|
|
91
|
+
import { GeneralSelect as rt } from "./components/general-select/general-select.js";
|
|
92
|
+
import { DEFAULT_AREA_SERIES as ot, DEFAULT_OPTIONS as tt, DEFAULT_VERTICAL_LINE as at, getDefaultOptions as it, getDefaultSeries as pt, getDefaultVerticalLine as nt } from "./components/graph/default-config.js";
|
|
93
|
+
import { getXFormatter as lt, getYFormatter as ft } from "./components/graph/formatters.js";
|
|
94
|
+
import { DEFAULT_SERIES_COLORS as st, Graph as dt } from "./components/graph/graph.js";
|
|
95
|
+
import { GraphCurrentValue as Tt } from "./components/graph/graph-current-value.js";
|
|
96
|
+
import { GraphTooltip as ct } from "./components/graph/graph-tooltip.js";
|
|
97
|
+
import { GraphView as St, GraphViewWithData as Ct, graphViewVariants as Lt, useGraphAside as Dt } from "./components/graph/graph-view.js";
|
|
98
|
+
import { VertLine as It } from "./components/graph/plugins/vertical-line.js";
|
|
99
|
+
import { GridTDCell as ht } from "./components/grid-td-cell/grid-td-cell.js";
|
|
100
|
+
import { Guard as Bt } from "./components/guard/guard.js";
|
|
101
|
+
import { HeadCell as wt, SimpleHeadCell as Pt } from "./components/head-cell/head-cell.js";
|
|
102
|
+
import { BAD_HF as kt, GOOD_HF as vt, HealthFactor as Mt, getHFZones as yt } from "./components/health-factor/health-factor.js";
|
|
103
103
|
import { HelpCenterContainer as Nt } from "./components/help-center-container/help-center-container.js";
|
|
104
|
-
import { HelpSection as
|
|
105
|
-
import { HelpTip as
|
|
106
|
-
import { HideOn as
|
|
107
|
-
import { HorizontalIndicator as
|
|
108
|
-
import { IconButton as
|
|
109
|
-
import { Input as
|
|
110
|
-
import { Label as
|
|
111
|
-
import { AppLogo as
|
|
112
|
-
import { Block as
|
|
113
|
-
import { Col as
|
|
114
|
-
import { Container as
|
|
115
|
-
import { Footer as
|
|
116
|
-
import { Grid as
|
|
117
|
-
import { Header as
|
|
118
|
-
import { Layout as
|
|
119
|
-
import { LegalDisclaimer as
|
|
120
|
-
import { PageLayout as
|
|
121
|
-
import { BlockedRegionDialog as
|
|
104
|
+
import { HelpSection as Ot, HelpSections as _t } from "./components/help-sections/help-sections.js";
|
|
105
|
+
import { HelpTip as Ut, HelpTipIcon as Wt, TipWrap as zt } from "./components/help-tip/help-tip.js";
|
|
106
|
+
import { HideOn as Zt, ShowOn as Yt } from "./components/hide-on/hide-on.js";
|
|
107
|
+
import { HorizontalIndicator as Kt } from "./components/horizontal-indicator/horizontal-indicator.js";
|
|
108
|
+
import { IconButton as Jt, iconButtonVariants as $t } from "./components/icon-button/icon-button.js";
|
|
109
|
+
import { Input as ea, inputVariants as oa } from "./components/input/input.js";
|
|
110
|
+
import { Label as aa, labelVariants as ia } from "./components/label/label.js";
|
|
111
|
+
import { AppLogo as na } from "./components/layout/app-logo/app-logo.js";
|
|
112
|
+
import { Block as la } from "./components/layout/block/block.js";
|
|
113
|
+
import { Col as xa } from "./components/layout/col/col.js";
|
|
114
|
+
import { Container as da } from "./components/layout/container/container.js";
|
|
115
|
+
import { Footer as Ta, FooterLink as ga, FooterLinkSection as ca, GearboxFooter as ba } from "./components/layout/footer/footer.js";
|
|
116
|
+
import { Grid as Ca } from "./components/layout/grid/grid.js";
|
|
117
|
+
import { Header as Da, useMobileMenu as Aa } from "./components/layout/header/header.js";
|
|
118
|
+
import { Layout as Va } from "./components/layout/layout/layout.js";
|
|
119
|
+
import { LegalDisclaimer as Fa } from "./components/layout/legal-disclaimer/legal-disclaimer.js";
|
|
120
|
+
import { PageLayout as Ga } from "./components/layout/page-layout/page-layout.js";
|
|
121
|
+
import { BlockedRegionDialog as Pa, LegalAgreementDialog as Ea, createGearboxAppConfig as ka, createLegalAgreementConfig as va, createPermissionlessInterfaceConfig as Ma, createPermissionlessSafeConfig as ya } from "./components/legal-agreement/legal-agreement-dialog.js";
|
|
122
122
|
import { LiquidationModellingAssetsTable as Na } from "./components/liquidation/liquidation-assets-table/liquidation-assets-table.js";
|
|
123
|
-
import { LiquidationGraph as
|
|
124
|
-
import { LiquidationGraphLegend as
|
|
125
|
-
import { LiquidationGraphTip as
|
|
126
|
-
import { LiquidationPrice as
|
|
127
|
-
import { LoaderGuard as
|
|
128
|
-
import { MarkdownViewer as
|
|
129
|
-
import { Navbar as
|
|
130
|
-
import { NavbarIndicatorProvider as
|
|
131
|
-
import { NavBarLogo as
|
|
132
|
-
import { NavItem as
|
|
133
|
-
import { NetworkIcon as
|
|
134
|
-
import { NotFound as
|
|
135
|
-
import { OptionsItem as
|
|
136
|
-
import { Overflow as
|
|
137
|
-
import { OverflowContainer as
|
|
138
|
-
import { PageTitle as
|
|
139
|
-
import { PercentIndicator as
|
|
140
|
-
import { PointsIcon as
|
|
141
|
-
import { PoolAPYTooltip as
|
|
142
|
-
import { PoolIndicatorIcon as
|
|
143
|
-
import { PoolPointsIndicator as
|
|
144
|
-
import { Progress as
|
|
123
|
+
import { LiquidationGraph as Oa } from "./components/liquidation/liquidation-graph/liquidation-graph.js";
|
|
124
|
+
import { LiquidationGraphLegend as qa } from "./components/liquidation/liquidation-graph-legend/liquidation-graph-legend.js";
|
|
125
|
+
import { LiquidationGraphTip as Wa } from "./components/liquidation/liquidation-graph-tip/liquidation-graph-tip.js";
|
|
126
|
+
import { LiquidationPrice as Xa } from "./components/liquidation-price/liquidation-price.js";
|
|
127
|
+
import { LoaderGuard as Ya } from "./components/loader-guard/loader-guard.js";
|
|
128
|
+
import { MarkdownViewer as Ka } from "./components/markdown-viewer/markdown-viewer.js";
|
|
129
|
+
import { Navbar as Ja, NavbarNav as $a, navbarVariants as ri } from "./components/navbar/navbar.js";
|
|
130
|
+
import { NavbarIndicatorProvider as oi, useNavbarIndicator as ti } from "./components/navbar/navbar-indicator-context.js";
|
|
131
|
+
import { NavBarLogo as ii } from "./components/navbar-logo/navbar-logo.js";
|
|
132
|
+
import { NavItem as ni, navitemVariants as mi } from "./components/navitem/navitem.js";
|
|
133
|
+
import { NetworkIcon as fi } from "./components/network-icon/network-icon.js";
|
|
134
|
+
import { NotFound as si } from "./components/not-found/not-found.js";
|
|
135
|
+
import { OptionsItem as ui, OptionsList as Ti } from "./components/options-list/options-list.js";
|
|
136
|
+
import { Overflow as ci, OverflowWrap as bi } from "./components/overflow/overflow.js";
|
|
137
|
+
import { OverflowContainer as Ci } from "./components/overflow-container/overflow-container.js";
|
|
138
|
+
import { PageTitle as Di, pageTitleRootVariants as Ai, pageTitleVariants as Ii } from "./components/page-title/page-title.js";
|
|
139
|
+
import { PercentIndicator as hi } from "./components/percent-indicator/percent-indicator.js";
|
|
140
|
+
import { PointsIcon as Bi } from "./components/points-icon/points-icon.js";
|
|
141
|
+
import { PoolAPYTooltip as wi } from "./components/pool-apy-tooltip/pool-apy-tooltip.js";
|
|
142
|
+
import { PoolIndicatorIcon as Ei } from "./components/pool-indicator-icon/pool-indicator-icon.js";
|
|
143
|
+
import { PoolPointsIndicator as vi } from "./components/pool-points-indicator/pool-points-indicator.js";
|
|
144
|
+
import { Progress as yi } from "./components/progress/progress.js";
|
|
145
145
|
import { ProgressCircle as Ni } from "./components/progress-circle/progress-circle.js";
|
|
146
|
-
import { RadioGroup as
|
|
147
|
-
import { RoundedImage as
|
|
148
|
-
import { Row as
|
|
149
|
-
import { SearchBar as
|
|
150
|
-
import { SearchLine as
|
|
151
|
-
import { SegmentedControl as
|
|
152
|
-
import { Select as
|
|
153
|
-
import { Separator as
|
|
154
|
-
import { ShortString as
|
|
155
|
-
import { ConfirmationItem as
|
|
156
|
-
import { Identicon as
|
|
157
|
-
import { VerticalTimeline as
|
|
158
|
-
import { Skeleton as
|
|
159
|
-
import { SkeletonStack as
|
|
160
|
-
import { Slider as
|
|
161
|
-
import { SliderToken as
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
182
|
-
import {
|
|
183
|
-
import {
|
|
184
|
-
import {
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
146
|
+
import { RadioGroup as Oi, RadioGroupItem as _i, RadioOption as qi } from "./components/radio-group/radio-group.js";
|
|
147
|
+
import { RoundedImage as Wi } from "./components/rounded-image/rounded-image.js";
|
|
148
|
+
import { Row as Xi } from "./components/row/row.js";
|
|
149
|
+
import { SearchBar as Yi } from "./components/search-bar/search-bar.js";
|
|
150
|
+
import { SearchLine as Ki, WithSearchLine as ji, searchLineInputVariants as Ji, searchLineVariants as $i } from "./components/search-line/search-line.js";
|
|
151
|
+
import { SegmentedControl as ep, segmentedControlVariants as op } from "./components/segmented-control/segmented-control.js";
|
|
152
|
+
import { Select as ap, SelectContent as ip, SelectGroup as pp, SelectItem as np, SelectLabel as mp, SelectScrollDownButton as lp, SelectScrollUpButton as fp, SelectSeparator as xp, SelectTrigger as sp, SelectValue as dp, selectTriggerVariants as up } from "./components/select/select.js";
|
|
153
|
+
import { Separator as gp } from "./components/separator/separator.js";
|
|
154
|
+
import { ShortString as bp } from "./components/short-string/short-string.js";
|
|
155
|
+
import { ConfirmationItem as Cp } from "./components/signatures/confirmation-item.js";
|
|
156
|
+
import { Identicon as Dp } from "./components/signatures/identicon.js";
|
|
157
|
+
import { VerticalTimeline as Ip } from "./components/signatures/vertical-timeline.js";
|
|
158
|
+
import { Skeleton as hp, skeletonVariants as Fp } from "./components/skeleton/skeleton.js";
|
|
159
|
+
import { SkeletonStack as Gp } from "./components/skeleton/skeleton-stack.js";
|
|
160
|
+
import { Slider as Pp } from "./components/slider/slider.js";
|
|
161
|
+
import { SliderToken as kp } from "./components/slider-token/slider-token.js";
|
|
162
|
+
import { BalanceIndicator as Mp } from "./components/smart-number-input/balance-indicator.js";
|
|
163
|
+
import { SmartNumberInput as Hp } from "./components/smart-number-input/smart-number-input.js";
|
|
164
|
+
import { Spinner as Rp, SpinnerOverlay as Op } from "./components/spinner/spinner.js";
|
|
165
|
+
import { SplitList as qp } from "./components/split-list/split-list.js";
|
|
166
|
+
import { StatBadge as Wp, StatBadgeGrid as zp, statBadgeContentVariants as Xp, statBadgeGridVariants as Zp, statBadgeTitleVariants as Yp, statBadgeVariants as Qp } from "./components/stat-badge/stat-badge.js";
|
|
167
|
+
import { StatusDot as jp, statusDotVariants as Jp } from "./components/status-dot/status-dot.js";
|
|
168
|
+
import { HealthDot as rn, StatusBars as en } from "./components/status-elements/status-elements.js";
|
|
169
|
+
import { StatusTriangle as tn } from "./components/status-triangle/status-triangle.js";
|
|
170
|
+
import { Stepper as pn } from "./components/stepper/stepper.js";
|
|
171
|
+
import { StyledDropdown as mn } from "./components/styled-dropdown/styled-dropdown.js";
|
|
172
|
+
import { Switch as fn } from "./components/switch/switch.js";
|
|
173
|
+
import { TabControl as sn, TabItem as dn, useHashTabs as un, useSectionTab as Tn, useTabControl as gn } from "./components/tab-control/tab-control.js";
|
|
174
|
+
import { EditButton as bn } from "./components/table/edit-button.js";
|
|
175
|
+
import { GridTableCellAsset as Cn, GridTableCellUpdatable as Ln, GridTableEditable as Dn } from "./components/table/editable-grid-table.js";
|
|
176
|
+
import { TableCellAsset as In, TableCellUpdatable as Vn, TableEditable as hn } from "./components/table/editable-table.js";
|
|
177
|
+
import { GridErrorLine as Bn } from "./components/table/grid-error-line.js";
|
|
178
|
+
import { GridLoadingLine as wn } from "./components/table/grid-loading-line.js";
|
|
179
|
+
import { GridTable as En, GridTableBody as kn, GridTableCaption as vn, GridTableCell as Mn, GridTableFooter as yn, GridTableHead as Hn, GridTableHeader as Nn, GridTableRow as Rn, Td as On, Th as _n, gridTableCellVariants as qn, gridTableHeadVariants as Un, gridTableVariants as Wn } from "./components/table/grid-table.js";
|
|
180
|
+
import { GridTableLoader as Xn } from "./components/table/grid-table-loader.js";
|
|
181
|
+
import { SortableHeadCell as Yn } from "./components/table/sortable-head-cell.js";
|
|
182
|
+
import { SortingTableHead as Kn, Table as jn, TableBody as Jn, TableCaption as $n, TableCell as rm, TableFooter as em, TableHead as om, TableHeader as tm, TableRow as am, tableCellVariants as im, tableHeadVariants as pm, tableVariants as nm } from "./components/table/table.js";
|
|
183
|
+
import { TableLoader as lm } from "./components/table/table-loader.js";
|
|
184
|
+
import { TableLoaderGuard as xm } from "./components/table/table-loader-guard.js";
|
|
185
|
+
import { TableCellSm as dm, TableLineSm as um } from "./components/table/table-sm.js";
|
|
186
|
+
import { UpdatedValue as gm } from "./components/table/updated-value.js";
|
|
187
|
+
import { Tabs as bm, TabsContent as Sm, TabsList as Cm, TabsTrigger as Lm } from "./components/tabs/tabs.js";
|
|
188
|
+
import { TextButton as Am } from "./components/text-button/text-button.js";
|
|
189
|
+
import { Textarea as Vm, textareaVariants as hm } from "./components/textarea/textarea.js";
|
|
190
|
+
import { ThemeProvider as Bm, useTheme as Gm } from "./components/theme-provider.js";
|
|
191
|
+
import { ThemeToggle as Pm } from "./components/theme-toggle/theme-toggle.js";
|
|
192
|
+
import { TipCard as km, tipCardVariants as vm } from "./components/tip-card/tip-card.js";
|
|
193
|
+
import { TokenIcon as ym, preloadTokenIcons as Hm } from "./components/token-icon/token-icon.js";
|
|
193
194
|
import { TokenSymbol as Rm } from "./components/token-symbol/token-symbol.js";
|
|
194
|
-
import { TokenTemplate as
|
|
195
|
-
import { SimpleTooltip as
|
|
196
|
-
import { Tooltip as
|
|
197
|
-
import { GraphDropdown as
|
|
198
|
-
import { TradingView as
|
|
199
|
-
import { FormattedMessageTyped as
|
|
200
|
-
import { Typography as
|
|
201
|
-
import { VerticalIndicator as
|
|
202
|
-
import { VerticalList as
|
|
203
|
-
import { VSpace as
|
|
204
|
-
import { WithCopy as
|
|
205
|
-
import { WithFilterButton as
|
|
206
|
-
import { WithTitle as
|
|
207
|
-
import { designTokens as
|
|
208
|
-
import { interactiveVariants as
|
|
209
|
-
import { useCheckboxSelect as
|
|
210
|
-
import { useControllableState as
|
|
211
|
-
import { useDebounce as
|
|
212
|
-
import { useDebounceCall as
|
|
213
|
-
import { getSortForField as
|
|
214
|
-
import { useHF as
|
|
215
|
-
import { useEditPriceManually as
|
|
216
|
-
import { useIsDesktop as
|
|
217
|
-
import { useOpenedState as
|
|
218
|
-
import { usePrevious as
|
|
219
|
-
import {
|
|
220
|
-
import {
|
|
221
|
-
import {
|
|
222
|
-
import {
|
|
223
|
-
import {
|
|
224
|
-
import {
|
|
225
|
-
import {
|
|
226
|
-
import {
|
|
227
|
-
import {
|
|
228
|
-
import {
|
|
229
|
-
import {
|
|
230
|
-
import {
|
|
231
|
-
import {
|
|
232
|
-
import {
|
|
233
|
-
import {
|
|
234
|
-
import {
|
|
235
|
-
import {
|
|
236
|
-
import {
|
|
237
|
-
import {
|
|
238
|
-
import {
|
|
239
|
-
import {
|
|
240
|
-
import {
|
|
241
|
-
import {
|
|
242
|
-
import {
|
|
243
|
-
import {
|
|
244
|
-
import {
|
|
245
|
-
import {
|
|
195
|
+
import { TokenTemplate as _m } from "./components/token-template/token-template.js";
|
|
196
|
+
import { SimpleTooltip as Um } from "./components/tooltip/simple-tooltip.js";
|
|
197
|
+
import { Tooltip as zm, TooltipContent as Xm, TooltipProvider as Zm, TooltipTrigger as Ym } from "./components/tooltip/tooltip.js";
|
|
198
|
+
import { GraphDropdown as Km } from "./components/trading-view/graph-dropdown.js";
|
|
199
|
+
import { TradingView as Jm } from "./components/trading-view/trading-view.js";
|
|
200
|
+
import { FormattedMessageTyped as rl, useIntlTyped as el } from "./components/typed-intl/index.js";
|
|
201
|
+
import { Typography as tl, typographyVariants as al } from "./components/typography/typography.js";
|
|
202
|
+
import { VerticalIndicator as pl, verticalIndicatorVariants as nl } from "./components/vertical-indicator/vertical-indicator.js";
|
|
203
|
+
import { VerticalList as ll, verticalListVariants as fl } from "./components/vertical-list/vertical-list.js";
|
|
204
|
+
import { VSpace as sl } from "./components/vspace/vspace.js";
|
|
205
|
+
import { WithCopy as ul } from "./components/with-copy/with-copy.js";
|
|
206
|
+
import { WithFilterButton as gl } from "./components/with-filter-button/with-filter-button.js";
|
|
207
|
+
import { WithTitle as bl } from "./components/with-title/with-title.js";
|
|
208
|
+
import { designTokens as Cl } from "./configs/design-tokens.js";
|
|
209
|
+
import { interactiveVariants as Dl, paddingVariants as Al, sizeVariants as Il, stateVariants as Vl } from "./configs/variants.js";
|
|
210
|
+
import { useCheckboxSelect as Fl } from "./hooks/use-checkbox-select.js";
|
|
211
|
+
import { useControllableState as Gl } from "./hooks/use-controllable-state.js";
|
|
212
|
+
import { useDebounce as Pl } from "./hooks/use-debounce.js";
|
|
213
|
+
import { useDebounceCall as kl } from "./hooks/use-debounce-call.js";
|
|
214
|
+
import { getSortForField as Ml, useFilterAllSelected as yl, useRangeFilter as Hl, useSelectFilter as Nl, useSort as Rl } from "./hooks/use-filter.js";
|
|
215
|
+
import { useHF as _l } from "./hooks/use-hf.js";
|
|
216
|
+
import { useEditPriceManually as Ul, useLiquidationGraphParams as Wl, useLiquidationHeatmap as zl } from "./hooks/use-liquidation/index.js";
|
|
217
|
+
import { useIsDesktop as Zl, useIsExtraSmall as Yl, useIsMobile as Ql, useIsTablet as Kl, useMediaQuery as jl } from "./hooks/use-media-query.js";
|
|
218
|
+
import { useOpenedState as $l } from "./hooks/use-opened-state.js";
|
|
219
|
+
import { usePrevious as ef } from "./hooks/use-previous.js";
|
|
220
|
+
import { useSmartNumberInput as tf } from "./hooks/use-smart-number-input.js";
|
|
221
|
+
import { default as pf } from "./locale/en.json.js";
|
|
222
|
+
import { generateId as mf, useFormFieldIds as lf } from "./utils/a11y.js";
|
|
223
|
+
import { bnToInputView as xf } from "./utils/bn-to-input-view.js";
|
|
224
|
+
import { bnToPrettyView as df } from "./utils/bn-to-pretty-view.js";
|
|
225
|
+
import { cn as Tf } from "./utils/cn.js";
|
|
226
|
+
import { generateColorsFromBase as cf, getCSSVariable as bf, hexToRgba as Sf, resolveCSSColor as Cf } from "./utils/colors.js";
|
|
227
|
+
import { copyToClipboard as Df } from "./utils/copy.js";
|
|
228
|
+
import { convertPercent as If, formatBytecodeSize as Vf, formatBytecodeVersion as hf, formatTimestamp as Ff, shortenHash as Bf, significantTrunc as Gf } from "./utils/format.js";
|
|
229
|
+
import { formatAssetAmount as Pf } from "./utils/format-asset-amount.js";
|
|
230
|
+
import { formatMoney as kf, formatMoneyAmount as vf, formatPercentAmount as Mf, percentTemplate as yf, percentageTemplate as Hf } from "./utils/format-money.js";
|
|
231
|
+
import { FORMAT_CONSTANTS as Rf, formatNumberWithSuffix as Of, formatPrice as _f, getAdaptiveDecimals as qf, isBelowDisplayThreshold as Uf, isEffectivelyZero as Wf, toSignificantDigits as zf } from "./utils/format-number.js";
|
|
232
|
+
import { slippageTemplate as Zf } from "./utils/format-slippage.js";
|
|
233
|
+
import { allLoaded as Qf, loadingProgress as Kf, round5 as jf } from "./utils/loading.js";
|
|
234
|
+
import { getNetworkIcon as $f } from "./utils/network-icons.js";
|
|
235
|
+
import { bnToLiquidationPriceView as ex, isPositiveFloat as ox, parseInputToBN as tx, parseSmallNumber as ax } from "./utils/parse-input-to-bn.js";
|
|
236
|
+
import { pluralize as px, selectPluralString as nx } from "./utils/plural.js";
|
|
237
|
+
import { getAvailableRanges as lx } from "./utils/ranges.js";
|
|
238
|
+
import { extractTextFromLabel as xx, serializeValue as sx } from "./utils/react.js";
|
|
239
|
+
import { searchInString as ux } from "./utils/search.js";
|
|
240
|
+
import { createTokenSearchFilter as gx, searchInToken as cx } from "./utils/search-in-token.js";
|
|
241
|
+
import { shortSHA as Sx } from "./utils/short-sha.js";
|
|
242
|
+
import { isLongString as Lx, shortenString as Dx } from "./utils/shorten-string.js";
|
|
243
|
+
import { negativeTokenTemplate as Ix, tokenTemplate as Vx, tokenTemplateNumber as hx, tokenTemplateString as Fx } from "./utils/templates.js";
|
|
244
|
+
import { TTL_CONSTANTS as Gx, getTTLZone as wx, ttlFromTimestamp as Px, ttlLeft as Ex, ttlLeftParsed as kx } from "./utils/ttl.js";
|
|
245
|
+
import { openInNewWindow as Mx } from "./utils/window.js";
|
|
246
|
+
import { Z_INDEX as Hx } from "./utils/z-index.js";
|
|
247
|
+
import { CELL_BAD as Rx, CELL_CURRENT as Ox, CELL_GOOD as _x, CELL_HOVERED as qx, CELL_LIQUIDATION as Ux, CELL_OK as Wx, DEFAULT_AXIS_MAX as zx, DEFAULT_AXIS_MIN as Xx, formatAxisLabel as Zx, formatAxisTipLabel as Yx, formatAxisTipPrice as Qx, getCellClass as Kx, isPointInCell as jx, useAxis as Jx, useFixedAssets as $x, useIsAxisInRelativeUnits as rs, useLiquidationGraphActivePrice as es, useLiquidationGraphCurrentActiveValue as os, usePriceInNumber as ts, useWithLiquidationGraphActivePrices as as } from "./hooks/use-liquidation/utils.js";
|
|
246
248
|
export {
|
|
247
249
|
o as Accordion,
|
|
248
250
|
t as AccordionContent,
|
|
@@ -261,7 +263,7 @@ export {
|
|
|
261
263
|
S as AlertDialogTitle,
|
|
262
264
|
C as AlertDialogTrigger,
|
|
263
265
|
D as AlertModal,
|
|
264
|
-
|
|
266
|
+
na as AppLogo,
|
|
265
267
|
I as Apy,
|
|
266
268
|
h as ArcLoader,
|
|
267
269
|
B as AssetLine,
|
|
@@ -270,23 +272,23 @@ export {
|
|
|
270
272
|
O as Avatar,
|
|
271
273
|
_ as AvatarFallback,
|
|
272
274
|
q as AvatarImage,
|
|
273
|
-
|
|
275
|
+
kt as BAD_HF,
|
|
274
276
|
er as BackButton,
|
|
275
277
|
W as Badge,
|
|
276
|
-
|
|
278
|
+
Mp as BalanceIndicator,
|
|
277
279
|
Z as BaseLink,
|
|
278
|
-
|
|
280
|
+
la as Block,
|
|
279
281
|
Q as BlockSync,
|
|
280
|
-
|
|
282
|
+
Pa as BlockedRegionDialog,
|
|
281
283
|
j as BreadCrumbs,
|
|
282
284
|
ar as Button,
|
|
283
285
|
$ as ButtonCheckbox,
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
286
|
+
Rx as CELL_BAD,
|
|
287
|
+
Ox as CELL_CURRENT,
|
|
288
|
+
_x as CELL_GOOD,
|
|
289
|
+
qx as CELL_HOVERED,
|
|
290
|
+
Ux as CELL_LIQUIDATION,
|
|
291
|
+
Wx as CELL_OK,
|
|
290
292
|
Dr as Card,
|
|
291
293
|
Ar as CardContent,
|
|
292
294
|
Ir as CardDescription,
|
|
@@ -296,406 +298,408 @@ export {
|
|
|
296
298
|
Fr as CardTitle,
|
|
297
299
|
Mr as Carousel,
|
|
298
300
|
Hr as Checkbox,
|
|
299
|
-
|
|
300
|
-
|
|
301
|
+
Rr as CheckboxLabeled,
|
|
302
|
+
xa as Col,
|
|
301
303
|
Zr as ColoredText,
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
304
|
+
Kr as ComplexInput,
|
|
305
|
+
Jr as CompoundAPY,
|
|
306
|
+
re as ConfirmMenu,
|
|
307
|
+
Cp as ConfirmationItem,
|
|
306
308
|
v as ConnectRequired,
|
|
307
|
-
|
|
309
|
+
da as Container,
|
|
308
310
|
nr as CopyButton,
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
311
|
+
oe as CreditSessionStatus,
|
|
312
|
+
ae as CurrencyButton,
|
|
313
|
+
ot as DEFAULT_AREA_SERIES,
|
|
314
|
+
zx as DEFAULT_AXIS_MAX,
|
|
315
|
+
Xx as DEFAULT_AXIS_MIN,
|
|
316
|
+
tt as DEFAULT_OPTIONS,
|
|
317
|
+
st as DEFAULT_SERIES_COLORS,
|
|
318
|
+
at as DEFAULT_VERTICAL_LINE,
|
|
317
319
|
Gr as DangerZone,
|
|
318
320
|
Ne as DefaultDropdownLabel,
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
321
|
+
pe as Description,
|
|
322
|
+
me as DetailedApy,
|
|
323
|
+
fe as DetailedPageTitle,
|
|
324
|
+
ue as Dialog,
|
|
325
|
+
be as DialogContainer,
|
|
326
|
+
Ce as DialogContent,
|
|
327
|
+
De as DialogDescription,
|
|
328
|
+
Ie as DialogFooter,
|
|
329
|
+
he as DialogForm,
|
|
330
|
+
Be as DialogHeader,
|
|
331
|
+
we as DialogModalContainer,
|
|
332
|
+
Ee as DialogOverlay,
|
|
333
|
+
Te as DialogPortal,
|
|
334
|
+
ve as DialogTitle,
|
|
335
|
+
ge as DialogTrigger,
|
|
336
|
+
Oe as DropdownMenu,
|
|
337
|
+
Ze as DropdownMenuCheckboxItem,
|
|
338
|
+
Qe as DropdownMenuContent,
|
|
339
|
+
_e as DropdownMenuGroup,
|
|
340
|
+
je as DropdownMenuItem,
|
|
341
|
+
$e as DropdownMenuLabel,
|
|
342
|
+
qe as DropdownMenuPortal,
|
|
343
|
+
Ue as DropdownMenuRadioGroup,
|
|
344
|
+
eo as DropdownMenuRadioItem,
|
|
345
|
+
to as DropdownMenuSeparator,
|
|
346
|
+
io as DropdownMenuShortcut,
|
|
347
|
+
We as DropdownMenuSub,
|
|
348
|
+
no as DropdownMenuSubContent,
|
|
349
|
+
lo as DropdownMenuSubTrigger,
|
|
350
|
+
ze as DropdownMenuTrigger,
|
|
351
|
+
bn as EditButton,
|
|
352
|
+
xo as EditInput,
|
|
353
|
+
pf as EnglishLocale,
|
|
354
|
+
uo as ErrorLineMessage,
|
|
355
|
+
go as ErrorMessage,
|
|
356
|
+
bo as ErrorView,
|
|
355
357
|
Pr as ExpandablCall,
|
|
356
358
|
kr as ExpandableCard,
|
|
357
|
-
|
|
359
|
+
Co as ExplorerLinksDropdown,
|
|
358
360
|
lr as ExternalButton,
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
361
|
+
Rf as FORMAT_CONSTANTS,
|
|
362
|
+
Do as FadeoutLoading,
|
|
363
|
+
Io as FilterBlock,
|
|
362
364
|
xr as FilterButton,
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
365
|
+
ho as FilterCheckboxItem,
|
|
366
|
+
Bo as FilterChip,
|
|
367
|
+
wo as FilterChips,
|
|
368
|
+
Eo as FilterDropdownItem,
|
|
369
|
+
vo as FilterGroup,
|
|
370
|
+
yo as FilterLabel,
|
|
369
371
|
No as FilterModal,
|
|
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
|
-
|
|
372
|
+
Oo as FilterModalItem,
|
|
373
|
+
qo as FilterRadioItem,
|
|
374
|
+
Wo as FilterSeparator,
|
|
375
|
+
Ta as Footer,
|
|
376
|
+
ga as FooterLink,
|
|
377
|
+
ca as FooterLinkSection,
|
|
378
|
+
Yo as FormField,
|
|
379
|
+
rl as FormattedMessageTyped,
|
|
380
|
+
Ko as FormattedNumberString,
|
|
381
|
+
vt as GOOD_HF,
|
|
382
|
+
ba as GearboxFooter,
|
|
383
|
+
Jo as GeneralAssetList,
|
|
384
|
+
rt as GeneralSelect,
|
|
385
|
+
dt as Graph,
|
|
386
|
+
Tt as GraphCurrentValue,
|
|
387
|
+
Km as GraphDropdown,
|
|
388
|
+
ct as GraphTooltip,
|
|
389
|
+
St as GraphView,
|
|
390
|
+
Ct as GraphViewWithData,
|
|
391
|
+
Ca as Grid,
|
|
392
|
+
Bn as GridErrorLine,
|
|
393
|
+
wn as GridLoadingLine,
|
|
394
|
+
ht as GridTDCell,
|
|
395
|
+
En as GridTable,
|
|
396
|
+
kn as GridTableBody,
|
|
397
|
+
vn as GridTableCaption,
|
|
398
|
+
Mn as GridTableCell,
|
|
399
|
+
Cn as GridTableCellAsset,
|
|
400
|
+
Ln as GridTableCellUpdatable,
|
|
401
|
+
Dn as GridTableEditable,
|
|
402
|
+
yn as GridTableFooter,
|
|
403
|
+
Hn as GridTableHead,
|
|
404
|
+
Nn as GridTableHeader,
|
|
405
|
+
Xn as GridTableLoader,
|
|
404
406
|
Rn as GridTableRow,
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
407
|
+
Bt as Guard,
|
|
408
|
+
wt as HeadCell,
|
|
409
|
+
Da as Header,
|
|
410
|
+
rn as HealthDot,
|
|
411
|
+
Mt as HealthFactor,
|
|
410
412
|
Nt as HelpCenterContainer,
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
413
|
+
Ot as HelpSection,
|
|
414
|
+
_t as HelpSections,
|
|
415
|
+
Ut as HelpTip,
|
|
416
|
+
Wt as HelpTipIcon,
|
|
417
|
+
Zt as HideOn,
|
|
418
|
+
Kt as HorizontalIndicator,
|
|
419
|
+
Jt as IconButton,
|
|
420
|
+
Dp as Identicon,
|
|
421
|
+
ea as Input,
|
|
422
|
+
aa as Label,
|
|
423
|
+
Va as Layout,
|
|
424
|
+
Ea as LegalAgreementDialog,
|
|
425
|
+
Fa as LegalDisclaimer,
|
|
426
|
+
Oa as LiquidationGraph,
|
|
427
|
+
qa as LiquidationGraphLegend,
|
|
428
|
+
Wa as LiquidationGraphTip,
|
|
427
429
|
Na as LiquidationModellingAssetsTable,
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
430
|
+
Xa as LiquidationPrice,
|
|
431
|
+
Ya as LoaderGuard,
|
|
432
|
+
Ka as MarkdownViewer,
|
|
433
|
+
se as Modal,
|
|
434
|
+
ii as NavBarLogo,
|
|
435
|
+
ni as NavItem,
|
|
436
|
+
Ja as Navbar,
|
|
437
|
+
oi as NavbarIndicatorProvider,
|
|
438
|
+
$a as NavbarNav,
|
|
437
439
|
dr as NavigationButton,
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
440
|
+
fi as NetworkIcon,
|
|
441
|
+
si as NotFound,
|
|
442
|
+
ye as OneFieldDialog,
|
|
443
|
+
ui as OptionsItem,
|
|
444
|
+
Ti as OptionsList,
|
|
445
|
+
ci as Overflow,
|
|
446
|
+
Ci as OverflowContainer,
|
|
447
|
+
bi as OverflowWrap,
|
|
448
|
+
Ga as PageLayout,
|
|
449
|
+
Di as PageTitle,
|
|
450
|
+
hi as PercentIndicator,
|
|
451
|
+
Bi as PointsIcon,
|
|
452
|
+
wi as PoolAPYTooltip,
|
|
453
|
+
Ei as PoolIndicatorIcon,
|
|
454
|
+
vi as PoolPointsIndicator,
|
|
455
|
+
yi as Progress,
|
|
454
456
|
Ni as ProgressCircle,
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
457
|
+
Oi as RadioGroup,
|
|
458
|
+
_i as RadioGroupItem,
|
|
459
|
+
qi as RadioOption,
|
|
458
460
|
Tr as RangeButtons,
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
461
|
+
Wi as RoundedImage,
|
|
462
|
+
Xi as Row,
|
|
463
|
+
N as SIWEClientProvider,
|
|
464
|
+
Yi as SearchBar,
|
|
465
|
+
Ki as SearchLine,
|
|
466
|
+
ep as SegmentedControl,
|
|
467
|
+
ap as Select,
|
|
468
|
+
ip as SelectContent,
|
|
469
|
+
pp as SelectGroup,
|
|
470
|
+
np as SelectItem,
|
|
471
|
+
mp as SelectLabel,
|
|
472
|
+
lp as SelectScrollDownButton,
|
|
473
|
+
fp as SelectScrollUpButton,
|
|
474
|
+
xp as SelectSeparator,
|
|
475
|
+
sp as SelectTrigger,
|
|
476
|
+
dp as SelectValue,
|
|
477
|
+
gp as Separator,
|
|
478
|
+
bp as ShortString,
|
|
479
|
+
Yt as ShowOn,
|
|
478
480
|
y as SignInRequired,
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
481
|
+
Pt as SimpleHeadCell,
|
|
482
|
+
Um as SimpleTooltip,
|
|
483
|
+
hp as Skeleton,
|
|
484
|
+
Gp as SkeletonStack,
|
|
485
|
+
Pp as Slider,
|
|
486
|
+
kp as SliderToken,
|
|
487
|
+
Hp as SmartNumberInput,
|
|
488
|
+
Yn as SortableHeadCell,
|
|
489
|
+
Kn as SortingTableHead,
|
|
488
490
|
Rp as Spinner,
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
491
|
+
Op as SpinnerOverlay,
|
|
492
|
+
qp as SplitList,
|
|
493
|
+
Wp as StatBadge,
|
|
494
|
+
zp as StatBadgeGrid,
|
|
495
|
+
en as StatusBars,
|
|
496
|
+
jp as StatusDot,
|
|
497
|
+
tn as StatusTriangle,
|
|
498
|
+
pn as Stepper,
|
|
497
499
|
_r as StyledButton,
|
|
498
500
|
Ur as StyledDialogContainer,
|
|
499
|
-
|
|
501
|
+
mn as StyledDropdown,
|
|
500
502
|
zr as StyledRoundedImage,
|
|
501
|
-
|
|
502
|
-
|
|
503
|
+
fn as Switch,
|
|
504
|
+
Gx as TTL_CONSTANTS,
|
|
503
505
|
cr as TabButton,
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
506
|
+
sn as TabControl,
|
|
507
|
+
dn as TabItem,
|
|
508
|
+
jn as Table,
|
|
509
|
+
Jn as TableBody,
|
|
510
|
+
$n as TableCaption,
|
|
511
|
+
rm as TableCell,
|
|
512
|
+
In as TableCellAsset,
|
|
513
|
+
dm as TableCellSm,
|
|
514
|
+
Vn as TableCellUpdatable,
|
|
515
|
+
hn as TableEditable,
|
|
516
|
+
em as TableFooter,
|
|
517
|
+
om as TableHead,
|
|
518
|
+
tm as TableHeader,
|
|
519
|
+
um as TableLineSm,
|
|
520
|
+
lm as TableLoader,
|
|
521
|
+
xm as TableLoaderGuard,
|
|
522
|
+
am as TableRow,
|
|
523
|
+
bm as Tabs,
|
|
524
|
+
Sm as TabsContent,
|
|
525
|
+
Cm as TabsList,
|
|
526
|
+
Lm as TabsTrigger,
|
|
527
|
+
On as Td,
|
|
528
|
+
Am as TextButton,
|
|
529
|
+
Vm as Textarea,
|
|
530
|
+
_n as Th,
|
|
531
|
+
Bm as ThemeProvider,
|
|
532
|
+
Pm as ThemeToggle,
|
|
533
|
+
km as TipCard,
|
|
534
|
+
zt as TipWrap,
|
|
535
|
+
ym as TokenIcon,
|
|
534
536
|
Rm as TokenSymbol,
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
537
|
+
_m as TokenTemplate,
|
|
538
|
+
zm as Tooltip,
|
|
539
|
+
Xm as TooltipContent,
|
|
540
|
+
Zm as TooltipProvider,
|
|
541
|
+
Ym as TooltipTrigger,
|
|
542
|
+
Jm as TradingView,
|
|
543
|
+
tl as Typography,
|
|
544
|
+
gm as UpdatedValue,
|
|
545
|
+
sl as VSpace,
|
|
546
|
+
It as VertLine,
|
|
547
|
+
pl as VerticalIndicator,
|
|
548
|
+
ll as VerticalList,
|
|
549
|
+
Ip as VerticalTimeline,
|
|
550
|
+
ul as WithCopy,
|
|
551
|
+
gl as WithFilterButton,
|
|
552
|
+
ji as WithSearchLine,
|
|
553
|
+
bl as WithTitle,
|
|
554
|
+
Hx as Z_INDEX,
|
|
553
555
|
m as alertBadgeVariants,
|
|
554
|
-
|
|
556
|
+
Qf as allLoaded,
|
|
555
557
|
or as backButtonVariants,
|
|
556
558
|
z as badgeVariants,
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
559
|
+
xf as bnToInputView,
|
|
560
|
+
ex as bnToLiquidationPriceView,
|
|
561
|
+
df as bnToPrettyView,
|
|
560
562
|
ir as buttonVariants,
|
|
561
563
|
Cr as cardGridVariants,
|
|
562
|
-
|
|
564
|
+
Tf as cn,
|
|
563
565
|
Yr as coloredTextVariants,
|
|
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
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
Wl as
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
$l as
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
566
|
+
If as convertPercent,
|
|
567
|
+
Df as copyToClipboard,
|
|
568
|
+
ka as createGearboxAppConfig,
|
|
569
|
+
va as createLegalAgreementConfig,
|
|
570
|
+
Ma as createPermissionlessInterfaceConfig,
|
|
571
|
+
ya as createPermissionlessSafeConfig,
|
|
572
|
+
gx as createTokenSearchFilter,
|
|
573
|
+
Cl as designTokens,
|
|
574
|
+
xx as extractTextFromLabel,
|
|
575
|
+
Xo as filterBlockVariants,
|
|
576
|
+
Pf as formatAssetAmount,
|
|
577
|
+
Zx as formatAxisLabel,
|
|
578
|
+
Yx as formatAxisTipLabel,
|
|
579
|
+
Qx as formatAxisTipPrice,
|
|
580
|
+
Vf as formatBytecodeSize,
|
|
581
|
+
hf as formatBytecodeVersion,
|
|
582
|
+
kf as formatMoney,
|
|
583
|
+
vf as formatMoneyAmount,
|
|
584
|
+
Of as formatNumberWithSuffix,
|
|
585
|
+
Mf as formatPercentAmount,
|
|
586
|
+
_f as formatPrice,
|
|
587
|
+
Ff as formatTimestamp,
|
|
588
|
+
cf as generateColorsFromBase,
|
|
589
|
+
mf as generateId,
|
|
590
|
+
qf as getAdaptiveDecimals,
|
|
591
|
+
lx as getAvailableRanges,
|
|
592
|
+
bf as getCSSVariable,
|
|
593
|
+
Kx as getCellClass,
|
|
594
|
+
it as getDefaultOptions,
|
|
595
|
+
pt as getDefaultSeries,
|
|
596
|
+
nt as getDefaultVerticalLine,
|
|
597
|
+
yt as getHFZones,
|
|
598
|
+
$f as getNetworkIcon,
|
|
599
|
+
Ml as getSortForField,
|
|
600
|
+
wx as getTTLZone,
|
|
601
|
+
lt as getXFormatter,
|
|
602
|
+
ft as getYFormatter,
|
|
603
|
+
Lt as graphViewVariants,
|
|
604
|
+
qn as gridTableCellVariants,
|
|
605
|
+
Un as gridTableHeadVariants,
|
|
606
|
+
Wn as gridTableVariants,
|
|
607
|
+
Sf as hexToRgba,
|
|
608
|
+
$t as iconButtonVariants,
|
|
609
|
+
oa as inputVariants,
|
|
610
|
+
Dl as interactiveVariants,
|
|
611
|
+
Uf as isBelowDisplayThreshold,
|
|
612
|
+
Wf as isEffectivelyZero,
|
|
613
|
+
Lx as isLongString,
|
|
614
|
+
jx as isPointInCell,
|
|
615
|
+
ox as isPositiveFloat,
|
|
616
|
+
ia as labelVariants,
|
|
617
|
+
Kf as loadingProgress,
|
|
618
|
+
ri as navbarVariants,
|
|
619
|
+
mi as navitemVariants,
|
|
620
|
+
Ix as negativeTokenTemplate,
|
|
621
|
+
Mx as openInNewWindow,
|
|
622
|
+
Al as paddingVariants,
|
|
623
|
+
Ai as pageTitleRootVariants,
|
|
624
|
+
Ii as pageTitleVariants,
|
|
625
|
+
tx as parseInputToBN,
|
|
626
|
+
ax as parseSmallNumber,
|
|
627
|
+
yf as percentTemplate,
|
|
628
|
+
Hf as percentageTemplate,
|
|
629
|
+
px as pluralize,
|
|
630
|
+
Hm as preloadTokenIcons,
|
|
631
|
+
Cf as resolveCSSColor,
|
|
632
|
+
jf as round5,
|
|
633
|
+
ux as searchInString,
|
|
634
|
+
cx as searchInToken,
|
|
635
|
+
Ji as searchLineInputVariants,
|
|
636
|
+
$i as searchLineVariants,
|
|
637
|
+
op as segmentedControlVariants,
|
|
638
|
+
nx as selectPluralString,
|
|
639
|
+
up as selectTriggerVariants,
|
|
640
|
+
sx as serializeValue,
|
|
641
|
+
Sx as shortSHA,
|
|
642
|
+
Bf as shortenHash,
|
|
643
|
+
Dx as shortenString,
|
|
644
|
+
Gf as significantTrunc,
|
|
645
|
+
Il as sizeVariants,
|
|
646
|
+
Fp as skeletonVariants,
|
|
647
|
+
Zf as slippageTemplate,
|
|
648
|
+
Xp as statBadgeContentVariants,
|
|
649
|
+
Zp as statBadgeGridVariants,
|
|
650
|
+
Yp as statBadgeTitleVariants,
|
|
651
|
+
Qp as statBadgeVariants,
|
|
652
|
+
Vl as stateVariants,
|
|
653
|
+
Jp as statusDotVariants,
|
|
654
|
+
im as tableCellVariants,
|
|
655
|
+
pm as tableHeadVariants,
|
|
656
|
+
nm as tableVariants,
|
|
657
|
+
hm as textareaVariants,
|
|
658
|
+
vm as tipCardVariants,
|
|
659
|
+
zf as toSignificantDigits,
|
|
660
|
+
Vx as tokenTemplate,
|
|
661
|
+
hx as tokenTemplateNumber,
|
|
662
|
+
Fx as tokenTemplateString,
|
|
663
|
+
Px as ttlFromTimestamp,
|
|
664
|
+
Ex as ttlLeft,
|
|
665
|
+
kx as ttlLeftParsed,
|
|
666
|
+
al as typographyVariants,
|
|
667
|
+
Jx as useAxis,
|
|
668
|
+
Fl as useCheckboxSelect,
|
|
669
|
+
Gl as useControllableState,
|
|
670
|
+
Pl as useDebounce,
|
|
671
|
+
kl as useDebounceCall,
|
|
672
|
+
Ul as useEditPriceManually,
|
|
673
|
+
yl as useFilterAllSelected,
|
|
674
|
+
$x as useFixedAssets,
|
|
675
|
+
lf as useFormFieldIds,
|
|
676
|
+
Dt as useGraphAside,
|
|
677
|
+
_l as useHF,
|
|
678
|
+
un as useHashTabs,
|
|
679
|
+
el as useIntlTyped,
|
|
680
|
+
rs as useIsAxisInRelativeUnits,
|
|
681
|
+
Zl as useIsDesktop,
|
|
682
|
+
Yl as useIsExtraSmall,
|
|
683
|
+
Ql as useIsMobile,
|
|
684
|
+
Kl as useIsTablet,
|
|
685
|
+
es as useLiquidationGraphActivePrice,
|
|
686
|
+
os as useLiquidationGraphCurrentActiveValue,
|
|
687
|
+
Wl as useLiquidationGraphParams,
|
|
688
|
+
zl as useLiquidationHeatmap,
|
|
689
|
+
jl as useMediaQuery,
|
|
690
|
+
Aa as useMobileMenu,
|
|
691
|
+
ti as useNavbarIndicator,
|
|
692
|
+
$l as useOpenedState,
|
|
693
|
+
ef as usePrevious,
|
|
694
|
+
ts as usePriceInNumber,
|
|
695
|
+
Hl as useRangeFilter,
|
|
696
|
+
Tn as useSectionTab,
|
|
697
|
+
Nl as useSelectFilter,
|
|
698
|
+
tf as useSmartNumberInput,
|
|
695
699
|
Rl as useSort,
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
700
|
+
gn as useTabControl,
|
|
701
|
+
Gm as useTheme,
|
|
702
|
+
as as useWithLiquidationGraphActivePrices,
|
|
703
|
+
nl as verticalIndicatorVariants,
|
|
704
|
+
fl as verticalListVariants
|
|
701
705
|
};
|