kaleido-ui 0.1.4 → 0.1.6
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/css/kaleido-ui.css +41 -5
- package/dist/native/index.cjs +20 -5
- package/dist/native/index.d.cts +20 -5
- package/dist/native/index.d.ts +20 -5
- package/dist/native/index.js +20 -5
- package/dist/tokens/index.cjs +39 -5
- package/dist/tokens/index.d.cts +40 -6
- package/dist/tokens/index.d.ts +40 -6
- package/dist/tokens/index.js +37 -5
- package/dist/web/index.cjs +1390 -1155
- package/dist/web/index.d.cts +39 -5
- package/dist/web/index.d.ts +39 -5
- package/dist/web/index.js +1376 -1138
- package/package.json +1 -1
package/dist/web/index.d.cts
CHANGED
|
@@ -13,7 +13,7 @@ import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
|
13
13
|
declare function cn(...inputs: ClassValue[]): string;
|
|
14
14
|
|
|
15
15
|
declare const buttonVariants: (props?: ({
|
|
16
|
-
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "glow" | "surface" | "cta" | "cta-gradient" | "danger-subtle" | "hyperlink" | null | undefined;
|
|
16
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "glow" | "surface" | "cta" | "cta-gradient" | "danger-subtle" | "hyperlink" | "h1" | "h2" | "h3" | null | undefined;
|
|
17
17
|
size?: "default" | "cta" | "xs" | "sm" | "lg" | "xl" | "cta-lg" | "icon" | "icon-lg" | "icon-xl" | null | undefined;
|
|
18
18
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19
19
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -161,6 +161,16 @@ declare const Icons: {
|
|
|
161
161
|
Progress: (props: Omit<IconProps, "name">) => react_jsx_runtime.JSX.Element;
|
|
162
162
|
};
|
|
163
163
|
|
|
164
|
+
type DotTone = 'primary' | 'warning';
|
|
165
|
+
interface DotPaginationProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onSelect'> {
|
|
166
|
+
count: number;
|
|
167
|
+
index: number;
|
|
168
|
+
tone?: DotTone;
|
|
169
|
+
onSelect?: (index: number) => void;
|
|
170
|
+
ariaLabel?: string;
|
|
171
|
+
}
|
|
172
|
+
declare const DotPagination: React$1.ForwardRefExoticComponent<DotPaginationProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
173
|
+
|
|
164
174
|
type StatusType = 'success' | 'pending' | 'failed' | 'completed' | 'error';
|
|
165
175
|
interface StatusBadgeProps {
|
|
166
176
|
status: StatusType;
|
|
@@ -269,6 +279,24 @@ interface AppIconProps extends Omit<IconProps, 'name'> {
|
|
|
269
279
|
}
|
|
270
280
|
declare function AppIcon({ name, strokeWidth: _strokeWidth, ...props }: AppIconProps): react_jsx_runtime.JSX.Element;
|
|
271
281
|
|
|
282
|
+
type ScrollViewportElement = 'div' | 'main';
|
|
283
|
+
interface ScrollAreaProps extends HTMLAttributes<HTMLDivElement> {
|
|
284
|
+
children?: any;
|
|
285
|
+
viewportClassName?: string;
|
|
286
|
+
thumbClassName?: string;
|
|
287
|
+
viewportAs?: ScrollViewportElement;
|
|
288
|
+
}
|
|
289
|
+
declare function ScrollArea({ children, className, viewportClassName, thumbClassName, viewportAs: Viewport, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
|
|
290
|
+
|
|
291
|
+
interface NetworkStatusChipProps {
|
|
292
|
+
icon: ReactNode;
|
|
293
|
+
dotClassName?: string;
|
|
294
|
+
onClick?: () => void;
|
|
295
|
+
ariaLabel?: string;
|
|
296
|
+
className?: string;
|
|
297
|
+
}
|
|
298
|
+
declare function NetworkStatusChip({ icon, dotClassName, onClick, ariaLabel, className, }: NetworkStatusChipProps): react_jsx_runtime.JSX.Element;
|
|
299
|
+
|
|
272
300
|
interface NetworkIconProps {
|
|
273
301
|
className?: string;
|
|
274
302
|
alt?: string;
|
|
@@ -478,13 +506,15 @@ interface WalletAssetListProps {
|
|
|
478
506
|
items: WalletAssetListItem[];
|
|
479
507
|
title?: string;
|
|
480
508
|
amountLabel?: string;
|
|
509
|
+
/** When true, suppress the title/amount header row (caller renders its own). */
|
|
510
|
+
hideHeader?: boolean;
|
|
481
511
|
isLoading?: boolean;
|
|
482
512
|
loadingRows?: number;
|
|
483
513
|
emptyStates?: WalletAssetListEmptyState[];
|
|
484
514
|
bottomSpacer?: boolean;
|
|
485
515
|
className?: string;
|
|
486
516
|
}
|
|
487
|
-
declare function WalletAssetList({ items, title, amountLabel, isLoading, loadingRows, emptyStates, bottomSpacer, className, }: WalletAssetListProps): react_jsx_runtime.JSX.Element;
|
|
517
|
+
declare function WalletAssetList({ items, title, amountLabel, hideHeader, isLoading, loadingRows, emptyStates, bottomSpacer, className, }: WalletAssetListProps): react_jsx_runtime.JSX.Element;
|
|
488
518
|
|
|
489
519
|
interface BalanceBreakdownAsset {
|
|
490
520
|
asset_id: string;
|
|
@@ -827,12 +857,16 @@ declare function WithdrawSuccess({ displayAmount, selectedAssetId, selectedAsset
|
|
|
827
857
|
interface PageHeaderProps {
|
|
828
858
|
left?: ReactNode;
|
|
829
859
|
title?: string;
|
|
860
|
+
subtitle?: ReactNode;
|
|
830
861
|
right?: ReactNode;
|
|
831
862
|
className?: string;
|
|
832
|
-
|
|
863
|
+
titleAlign?: 'center' | 'start';
|
|
864
|
+
onBack?: () => void;
|
|
865
|
+
backLabel?: string;
|
|
866
|
+
/** @deprecated Headers no longer render a border by default. Passing this opts back into a bottom border. */
|
|
833
867
|
borderClassName?: string;
|
|
834
868
|
}
|
|
835
|
-
declare function PageHeader({ left, title, right, className, borderClassName }: PageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
869
|
+
declare function PageHeader({ left, title, subtitle, right, className, titleAlign, onBack, backLabel, borderClassName, }: PageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
836
870
|
|
|
837
871
|
/**
|
|
838
872
|
* Full-bleed page shell that paints the brand radial-gradient backdrop and
|
|
@@ -1228,4 +1262,4 @@ declare function getFallbackAssetIconUrl(seed: string): string;
|
|
|
1228
1262
|
*/
|
|
1229
1263
|
declare function useAssetIcon(ticker: string, cdnBaseUrl?: string): string;
|
|
1230
1264
|
|
|
1231
|
-
export { AccountCapabilitiesCard, type AccountCapabilitiesCardProps, AccountChoiceChip, AccountHeaderIcons, AccountInfoGrid, AccountNetworkNotice, AccountNetworkPicker, AccountNetworkSelector, AccountNotice, type AccountSettingsNetwork, type AccountSettingsProtocol, AccountSettingsRow, AccountSettingsShell, AccountStatusPills, type AccountStatusTabItem, AccountStatusTabs, type AccountStatusTabsProps, ActionTile, type ActionTileProps, ActivityDetailRow, type ActivityDetailRowProps, ActivityFilterBar, type ActivityFilterBarProps, ActivityList, type ActivityListItem, type ActivityListProps, type ActivityNetworkFilterOption, type ActivityNetworkFilterValue, ActivityNetworkFilters, type ActivityNetworkFiltersProps, type ActivityStatusOption, type ActivityTypeTabCounts, type ActivityTypeTabValue, ActivityTypeTabs, AlertBanner, AppIcon, type AppIconName, type AppIconProps, ArkadeNetworkIcon, AssetCard, type AssetCardProps, AssetIcon, AssetSelector, type AssetSelectorCategory, type AssetSelectorOption, type AssetSelectorProps, BalanceBreakdown, type BalanceBreakdownAccounts, type BalanceBreakdownAsset, type BalanceBreakdownNodeInfo, type BalanceBreakdownProps, BottomNav, type BottomNavItem, type BottomNavProps, BtcUnifiedReceive, type BtcUnifiedReceiveAddress, type BtcUnifiedReceiveProps, type BtcUnifiedReceiveResult, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CopyIcon, type DepositAccountId, DepositAssetSelection, type DepositAssetSelectionProps, type DepositGeneratedAsset, DepositGeneratedView, type DepositGeneratedViewProps, type DepositGenerationController, type DepositInvoiceAsset, DepositInvoiceGeneration, type DepositInvoiceGenerationProps, type DepositNetworkConfigEntry, DepositNetworkDefaultModal, type DepositNetworkDefaultModalProps, type DepositNetworkKey, type DepositNetworkOption, DepositPreGeneration, type DepositPreGenerationAsset, type DepositPreGenerationProps, type DepositSelectionAsset, DepositSuccessScreen, type DepositSuccessScreenProps, type DepositTransferMethod, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, ErrorBoundary, ErrorCard, type ErrorCardProps, ExpandIcon, FadeOverlay, type FadeOverlayProps, FilterDropdown, type FilterDropdownOption, type FilterDropdownProps, HeadlineGradient, type HeadlineGradientProps, Icon, type IconProps, Icons, InlineAction, Input, type InputProps, InvoiceStatusBanner, Label, LightningNetworkIcon, LoadingCard, type LoadingCardProps, MethodChoiceChip, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, type NetworkType, NumberInput, type NumberInputProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, SectionLabel, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SettingItem, SettingsActionButton, SettingsStatusPanel, SettingsTile, type SettingsTileProps, SparkNetworkIcon, StatusBadge, type StatusType, SwapInputCard, type SwapInputCardProps, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, TransactionCard, type TransactionCardProps, TransferRouteCard, WalletAssetList, type WalletAssetListEmptyState, type WalletAssetListItem, type WalletAssetListProps, type WithdrawAddressType, WithdrawAmountInput, type WithdrawAmountInputProps, WithdrawConfirmation, type WithdrawConfirmationProps, type WithdrawConfirmationRgbInvoice, type WithdrawDecodedLnInvoice, type WithdrawDecodedRgbInvoice, WithdrawDestinationInput, type WithdrawDestinationInputProps, type WithdrawInvoiceAsset, WithdrawInvoiceInfo, type WithdrawInvoiceInfoLnInvoice, type WithdrawInvoiceInfoProps, type WithdrawInvoiceInfoRgbInvoice, type WithdrawLnurlPayData, type WithdrawRouteOption, WithdrawRouteSelector, type WithdrawRouteSelectorProps, type WithdrawRouteSummary, WithdrawSuccess, type WithdrawSuccessProps, buttonVariants, cn, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
|
|
1265
|
+
export { AccountCapabilitiesCard, type AccountCapabilitiesCardProps, AccountChoiceChip, AccountHeaderIcons, AccountInfoGrid, AccountNetworkNotice, AccountNetworkPicker, AccountNetworkSelector, AccountNotice, type AccountSettingsNetwork, type AccountSettingsProtocol, AccountSettingsRow, AccountSettingsShell, AccountStatusPills, type AccountStatusTabItem, AccountStatusTabs, type AccountStatusTabsProps, ActionTile, type ActionTileProps, ActivityDetailRow, type ActivityDetailRowProps, ActivityFilterBar, type ActivityFilterBarProps, ActivityList, type ActivityListItem, type ActivityListProps, type ActivityNetworkFilterOption, type ActivityNetworkFilterValue, ActivityNetworkFilters, type ActivityNetworkFiltersProps, type ActivityStatusOption, type ActivityTypeTabCounts, type ActivityTypeTabValue, ActivityTypeTabs, AlertBanner, AppIcon, type AppIconName, type AppIconProps, ArkadeNetworkIcon, AssetCard, type AssetCardProps, AssetIcon, AssetSelector, type AssetSelectorCategory, type AssetSelectorOption, type AssetSelectorProps, BalanceBreakdown, type BalanceBreakdownAccounts, type BalanceBreakdownAsset, type BalanceBreakdownNodeInfo, type BalanceBreakdownProps, BottomNav, type BottomNavItem, type BottomNavProps, BtcUnifiedReceive, type BtcUnifiedReceiveAddress, type BtcUnifiedReceiveProps, type BtcUnifiedReceiveResult, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CopyIcon, type DepositAccountId, DepositAssetSelection, type DepositAssetSelectionProps, type DepositGeneratedAsset, DepositGeneratedView, type DepositGeneratedViewProps, type DepositGenerationController, type DepositInvoiceAsset, DepositInvoiceGeneration, type DepositInvoiceGenerationProps, type DepositNetworkConfigEntry, DepositNetworkDefaultModal, type DepositNetworkDefaultModalProps, type DepositNetworkKey, type DepositNetworkOption, DepositPreGeneration, type DepositPreGenerationAsset, type DepositPreGenerationProps, type DepositSelectionAsset, DepositSuccessScreen, type DepositSuccessScreenProps, type DepositTransferMethod, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DotPagination, type DotPaginationProps, type DotTone, ErrorBoundary, ErrorCard, type ErrorCardProps, ExpandIcon, FadeOverlay, type FadeOverlayProps, FilterDropdown, type FilterDropdownOption, type FilterDropdownProps, HeadlineGradient, type HeadlineGradientProps, Icon, type IconProps, Icons, InlineAction, Input, type InputProps, InvoiceStatusBanner, Label, LightningNetworkIcon, LoadingCard, type LoadingCardProps, MethodChoiceChip, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, NetworkStatusChip, type NetworkStatusChipProps, type NetworkType, NumberInput, type NumberInputProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, ScrollArea, type ScrollAreaProps, SectionLabel, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SettingItem, SettingsActionButton, SettingsStatusPanel, SettingsTile, type SettingsTileProps, SparkNetworkIcon, StatusBadge, type StatusType, SwapInputCard, type SwapInputCardProps, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, TransactionCard, type TransactionCardProps, TransferRouteCard, WalletAssetList, type WalletAssetListEmptyState, type WalletAssetListItem, type WalletAssetListProps, type WithdrawAddressType, WithdrawAmountInput, type WithdrawAmountInputProps, WithdrawConfirmation, type WithdrawConfirmationProps, type WithdrawConfirmationRgbInvoice, type WithdrawDecodedLnInvoice, type WithdrawDecodedRgbInvoice, WithdrawDestinationInput, type WithdrawDestinationInputProps, type WithdrawInvoiceAsset, WithdrawInvoiceInfo, type WithdrawInvoiceInfoLnInvoice, type WithdrawInvoiceInfoProps, type WithdrawInvoiceInfoRgbInvoice, type WithdrawLnurlPayData, type WithdrawRouteOption, WithdrawRouteSelector, type WithdrawRouteSelectorProps, type WithdrawRouteSummary, WithdrawSuccess, type WithdrawSuccessProps, buttonVariants, cn, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
|
package/dist/web/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
|
13
13
|
declare function cn(...inputs: ClassValue[]): string;
|
|
14
14
|
|
|
15
15
|
declare const buttonVariants: (props?: ({
|
|
16
|
-
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "glow" | "surface" | "cta" | "cta-gradient" | "danger-subtle" | "hyperlink" | null | undefined;
|
|
16
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "glow" | "surface" | "cta" | "cta-gradient" | "danger-subtle" | "hyperlink" | "h1" | "h2" | "h3" | null | undefined;
|
|
17
17
|
size?: "default" | "cta" | "xs" | "sm" | "lg" | "xl" | "cta-lg" | "icon" | "icon-lg" | "icon-xl" | null | undefined;
|
|
18
18
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19
19
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -161,6 +161,16 @@ declare const Icons: {
|
|
|
161
161
|
Progress: (props: Omit<IconProps, "name">) => react_jsx_runtime.JSX.Element;
|
|
162
162
|
};
|
|
163
163
|
|
|
164
|
+
type DotTone = 'primary' | 'warning';
|
|
165
|
+
interface DotPaginationProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onSelect'> {
|
|
166
|
+
count: number;
|
|
167
|
+
index: number;
|
|
168
|
+
tone?: DotTone;
|
|
169
|
+
onSelect?: (index: number) => void;
|
|
170
|
+
ariaLabel?: string;
|
|
171
|
+
}
|
|
172
|
+
declare const DotPagination: React$1.ForwardRefExoticComponent<DotPaginationProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
173
|
+
|
|
164
174
|
type StatusType = 'success' | 'pending' | 'failed' | 'completed' | 'error';
|
|
165
175
|
interface StatusBadgeProps {
|
|
166
176
|
status: StatusType;
|
|
@@ -269,6 +279,24 @@ interface AppIconProps extends Omit<IconProps, 'name'> {
|
|
|
269
279
|
}
|
|
270
280
|
declare function AppIcon({ name, strokeWidth: _strokeWidth, ...props }: AppIconProps): react_jsx_runtime.JSX.Element;
|
|
271
281
|
|
|
282
|
+
type ScrollViewportElement = 'div' | 'main';
|
|
283
|
+
interface ScrollAreaProps extends HTMLAttributes<HTMLDivElement> {
|
|
284
|
+
children?: any;
|
|
285
|
+
viewportClassName?: string;
|
|
286
|
+
thumbClassName?: string;
|
|
287
|
+
viewportAs?: ScrollViewportElement;
|
|
288
|
+
}
|
|
289
|
+
declare function ScrollArea({ children, className, viewportClassName, thumbClassName, viewportAs: Viewport, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
|
|
290
|
+
|
|
291
|
+
interface NetworkStatusChipProps {
|
|
292
|
+
icon: ReactNode;
|
|
293
|
+
dotClassName?: string;
|
|
294
|
+
onClick?: () => void;
|
|
295
|
+
ariaLabel?: string;
|
|
296
|
+
className?: string;
|
|
297
|
+
}
|
|
298
|
+
declare function NetworkStatusChip({ icon, dotClassName, onClick, ariaLabel, className, }: NetworkStatusChipProps): react_jsx_runtime.JSX.Element;
|
|
299
|
+
|
|
272
300
|
interface NetworkIconProps {
|
|
273
301
|
className?: string;
|
|
274
302
|
alt?: string;
|
|
@@ -478,13 +506,15 @@ interface WalletAssetListProps {
|
|
|
478
506
|
items: WalletAssetListItem[];
|
|
479
507
|
title?: string;
|
|
480
508
|
amountLabel?: string;
|
|
509
|
+
/** When true, suppress the title/amount header row (caller renders its own). */
|
|
510
|
+
hideHeader?: boolean;
|
|
481
511
|
isLoading?: boolean;
|
|
482
512
|
loadingRows?: number;
|
|
483
513
|
emptyStates?: WalletAssetListEmptyState[];
|
|
484
514
|
bottomSpacer?: boolean;
|
|
485
515
|
className?: string;
|
|
486
516
|
}
|
|
487
|
-
declare function WalletAssetList({ items, title, amountLabel, isLoading, loadingRows, emptyStates, bottomSpacer, className, }: WalletAssetListProps): react_jsx_runtime.JSX.Element;
|
|
517
|
+
declare function WalletAssetList({ items, title, amountLabel, hideHeader, isLoading, loadingRows, emptyStates, bottomSpacer, className, }: WalletAssetListProps): react_jsx_runtime.JSX.Element;
|
|
488
518
|
|
|
489
519
|
interface BalanceBreakdownAsset {
|
|
490
520
|
asset_id: string;
|
|
@@ -827,12 +857,16 @@ declare function WithdrawSuccess({ displayAmount, selectedAssetId, selectedAsset
|
|
|
827
857
|
interface PageHeaderProps {
|
|
828
858
|
left?: ReactNode;
|
|
829
859
|
title?: string;
|
|
860
|
+
subtitle?: ReactNode;
|
|
830
861
|
right?: ReactNode;
|
|
831
862
|
className?: string;
|
|
832
|
-
|
|
863
|
+
titleAlign?: 'center' | 'start';
|
|
864
|
+
onBack?: () => void;
|
|
865
|
+
backLabel?: string;
|
|
866
|
+
/** @deprecated Headers no longer render a border by default. Passing this opts back into a bottom border. */
|
|
833
867
|
borderClassName?: string;
|
|
834
868
|
}
|
|
835
|
-
declare function PageHeader({ left, title, right, className, borderClassName }: PageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
869
|
+
declare function PageHeader({ left, title, subtitle, right, className, titleAlign, onBack, backLabel, borderClassName, }: PageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
836
870
|
|
|
837
871
|
/**
|
|
838
872
|
* Full-bleed page shell that paints the brand radial-gradient backdrop and
|
|
@@ -1228,4 +1262,4 @@ declare function getFallbackAssetIconUrl(seed: string): string;
|
|
|
1228
1262
|
*/
|
|
1229
1263
|
declare function useAssetIcon(ticker: string, cdnBaseUrl?: string): string;
|
|
1230
1264
|
|
|
1231
|
-
export { AccountCapabilitiesCard, type AccountCapabilitiesCardProps, AccountChoiceChip, AccountHeaderIcons, AccountInfoGrid, AccountNetworkNotice, AccountNetworkPicker, AccountNetworkSelector, AccountNotice, type AccountSettingsNetwork, type AccountSettingsProtocol, AccountSettingsRow, AccountSettingsShell, AccountStatusPills, type AccountStatusTabItem, AccountStatusTabs, type AccountStatusTabsProps, ActionTile, type ActionTileProps, ActivityDetailRow, type ActivityDetailRowProps, ActivityFilterBar, type ActivityFilterBarProps, ActivityList, type ActivityListItem, type ActivityListProps, type ActivityNetworkFilterOption, type ActivityNetworkFilterValue, ActivityNetworkFilters, type ActivityNetworkFiltersProps, type ActivityStatusOption, type ActivityTypeTabCounts, type ActivityTypeTabValue, ActivityTypeTabs, AlertBanner, AppIcon, type AppIconName, type AppIconProps, ArkadeNetworkIcon, AssetCard, type AssetCardProps, AssetIcon, AssetSelector, type AssetSelectorCategory, type AssetSelectorOption, type AssetSelectorProps, BalanceBreakdown, type BalanceBreakdownAccounts, type BalanceBreakdownAsset, type BalanceBreakdownNodeInfo, type BalanceBreakdownProps, BottomNav, type BottomNavItem, type BottomNavProps, BtcUnifiedReceive, type BtcUnifiedReceiveAddress, type BtcUnifiedReceiveProps, type BtcUnifiedReceiveResult, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CopyIcon, type DepositAccountId, DepositAssetSelection, type DepositAssetSelectionProps, type DepositGeneratedAsset, DepositGeneratedView, type DepositGeneratedViewProps, type DepositGenerationController, type DepositInvoiceAsset, DepositInvoiceGeneration, type DepositInvoiceGenerationProps, type DepositNetworkConfigEntry, DepositNetworkDefaultModal, type DepositNetworkDefaultModalProps, type DepositNetworkKey, type DepositNetworkOption, DepositPreGeneration, type DepositPreGenerationAsset, type DepositPreGenerationProps, type DepositSelectionAsset, DepositSuccessScreen, type DepositSuccessScreenProps, type DepositTransferMethod, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, ErrorBoundary, ErrorCard, type ErrorCardProps, ExpandIcon, FadeOverlay, type FadeOverlayProps, FilterDropdown, type FilterDropdownOption, type FilterDropdownProps, HeadlineGradient, type HeadlineGradientProps, Icon, type IconProps, Icons, InlineAction, Input, type InputProps, InvoiceStatusBanner, Label, LightningNetworkIcon, LoadingCard, type LoadingCardProps, MethodChoiceChip, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, type NetworkType, NumberInput, type NumberInputProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, SectionLabel, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SettingItem, SettingsActionButton, SettingsStatusPanel, SettingsTile, type SettingsTileProps, SparkNetworkIcon, StatusBadge, type StatusType, SwapInputCard, type SwapInputCardProps, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, TransactionCard, type TransactionCardProps, TransferRouteCard, WalletAssetList, type WalletAssetListEmptyState, type WalletAssetListItem, type WalletAssetListProps, type WithdrawAddressType, WithdrawAmountInput, type WithdrawAmountInputProps, WithdrawConfirmation, type WithdrawConfirmationProps, type WithdrawConfirmationRgbInvoice, type WithdrawDecodedLnInvoice, type WithdrawDecodedRgbInvoice, WithdrawDestinationInput, type WithdrawDestinationInputProps, type WithdrawInvoiceAsset, WithdrawInvoiceInfo, type WithdrawInvoiceInfoLnInvoice, type WithdrawInvoiceInfoProps, type WithdrawInvoiceInfoRgbInvoice, type WithdrawLnurlPayData, type WithdrawRouteOption, WithdrawRouteSelector, type WithdrawRouteSelectorProps, type WithdrawRouteSummary, WithdrawSuccess, type WithdrawSuccessProps, buttonVariants, cn, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
|
|
1265
|
+
export { AccountCapabilitiesCard, type AccountCapabilitiesCardProps, AccountChoiceChip, AccountHeaderIcons, AccountInfoGrid, AccountNetworkNotice, AccountNetworkPicker, AccountNetworkSelector, AccountNotice, type AccountSettingsNetwork, type AccountSettingsProtocol, AccountSettingsRow, AccountSettingsShell, AccountStatusPills, type AccountStatusTabItem, AccountStatusTabs, type AccountStatusTabsProps, ActionTile, type ActionTileProps, ActivityDetailRow, type ActivityDetailRowProps, ActivityFilterBar, type ActivityFilterBarProps, ActivityList, type ActivityListItem, type ActivityListProps, type ActivityNetworkFilterOption, type ActivityNetworkFilterValue, ActivityNetworkFilters, type ActivityNetworkFiltersProps, type ActivityStatusOption, type ActivityTypeTabCounts, type ActivityTypeTabValue, ActivityTypeTabs, AlertBanner, AppIcon, type AppIconName, type AppIconProps, ArkadeNetworkIcon, AssetCard, type AssetCardProps, AssetIcon, AssetSelector, type AssetSelectorCategory, type AssetSelectorOption, type AssetSelectorProps, BalanceBreakdown, type BalanceBreakdownAccounts, type BalanceBreakdownAsset, type BalanceBreakdownNodeInfo, type BalanceBreakdownProps, BottomNav, type BottomNavItem, type BottomNavProps, BtcUnifiedReceive, type BtcUnifiedReceiveAddress, type BtcUnifiedReceiveProps, type BtcUnifiedReceiveResult, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CopyIcon, type DepositAccountId, DepositAssetSelection, type DepositAssetSelectionProps, type DepositGeneratedAsset, DepositGeneratedView, type DepositGeneratedViewProps, type DepositGenerationController, type DepositInvoiceAsset, DepositInvoiceGeneration, type DepositInvoiceGenerationProps, type DepositNetworkConfigEntry, DepositNetworkDefaultModal, type DepositNetworkDefaultModalProps, type DepositNetworkKey, type DepositNetworkOption, DepositPreGeneration, type DepositPreGenerationAsset, type DepositPreGenerationProps, type DepositSelectionAsset, DepositSuccessScreen, type DepositSuccessScreenProps, type DepositTransferMethod, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DotPagination, type DotPaginationProps, type DotTone, ErrorBoundary, ErrorCard, type ErrorCardProps, ExpandIcon, FadeOverlay, type FadeOverlayProps, FilterDropdown, type FilterDropdownOption, type FilterDropdownProps, HeadlineGradient, type HeadlineGradientProps, Icon, type IconProps, Icons, InlineAction, Input, type InputProps, InvoiceStatusBanner, Label, LightningNetworkIcon, LoadingCard, type LoadingCardProps, MethodChoiceChip, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, NetworkStatusChip, type NetworkStatusChipProps, type NetworkType, NumberInput, type NumberInputProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, ScrollArea, type ScrollAreaProps, SectionLabel, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SettingItem, SettingsActionButton, SettingsStatusPanel, SettingsTile, type SettingsTileProps, SparkNetworkIcon, StatusBadge, type StatusType, SwapInputCard, type SwapInputCardProps, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, TransactionCard, type TransactionCardProps, TransferRouteCard, WalletAssetList, type WalletAssetListEmptyState, type WalletAssetListItem, type WalletAssetListProps, type WithdrawAddressType, WithdrawAmountInput, type WithdrawAmountInputProps, WithdrawConfirmation, type WithdrawConfirmationProps, type WithdrawConfirmationRgbInvoice, type WithdrawDecodedLnInvoice, type WithdrawDecodedRgbInvoice, WithdrawDestinationInput, type WithdrawDestinationInputProps, type WithdrawInvoiceAsset, WithdrawInvoiceInfo, type WithdrawInvoiceInfoLnInvoice, type WithdrawInvoiceInfoProps, type WithdrawInvoiceInfoRgbInvoice, type WithdrawLnurlPayData, type WithdrawRouteOption, WithdrawRouteSelector, type WithdrawRouteSelectorProps, type WithdrawRouteSummary, WithdrawSuccess, type WithdrawSuccessProps, buttonVariants, cn, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
|