kaleido-ui 0.1.49 → 0.1.51

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.
@@ -1050,6 +1050,27 @@ interface FadeOverlayProps {
1050
1050
  }
1051
1051
  declare function FadeOverlay({ edge, heightClassName, className, }: FadeOverlayProps): react_jsx_runtime.JSX.Element;
1052
1052
 
1053
+ interface ExtensionPageFrameProps {
1054
+ children: ReactNode;
1055
+ header?: ReactNode;
1056
+ title?: PageHeaderProps['title'];
1057
+ subtitle?: PageHeaderProps['subtitle'];
1058
+ left?: PageHeaderProps['left'];
1059
+ right?: PageHeaderProps['right'];
1060
+ onBack?: PageHeaderProps['onBack'];
1061
+ backLabel?: PageHeaderProps['backLabel'];
1062
+ titleAlign?: PageHeaderProps['titleAlign'];
1063
+ bottomNav?: ReactNode;
1064
+ bottomFade?: boolean;
1065
+ scroll?: boolean;
1066
+ viewportAs?: 'div' | 'main';
1067
+ className?: string;
1068
+ contentClassName?: string;
1069
+ viewportClassName?: string;
1070
+ fadeClassName?: string;
1071
+ }
1072
+ declare function ExtensionPageFrame({ children, header, title, subtitle, left, right, onBack, backLabel, titleAlign, bottomNav, bottomFade, scroll, viewportAs, className, contentClassName, viewportClassName, fadeClassName, }: ExtensionPageFrameProps): react_jsx_runtime.JSX.Element;
1073
+
1053
1074
  interface SettingItemProps {
1054
1075
  icon?: string;
1055
1076
  iconSrc?: string;
@@ -1070,6 +1091,14 @@ interface SectionLabelProps {
1070
1091
  }
1071
1092
  declare function SectionLabel({ children, className }: SectionLabelProps): react_jsx_runtime.JSX.Element;
1072
1093
 
1094
+ interface SectionHeaderProps {
1095
+ children: ReactNode;
1096
+ right?: ReactNode;
1097
+ as?: 'h2' | 'h3' | 'p' | 'span';
1098
+ className?: string;
1099
+ }
1100
+ declare function SectionHeader({ children, right, as: Tag, className, }: SectionHeaderProps): react_jsx_runtime.JSX.Element;
1101
+
1073
1102
  declare const variantStyles: {
1074
1103
  readonly error: {
1075
1104
  readonly container: "bg-danger/40";
@@ -1100,6 +1129,16 @@ interface AlertBannerProps {
1100
1129
  }
1101
1130
  declare function AlertBanner({ variant, icon, children, className }: AlertBannerProps): react_jsx_runtime.JSX.Element;
1102
1131
 
1132
+ type InfoPanelTone = 'default' | 'primary' | 'info' | 'warning' | 'danger' | 'success';
1133
+ interface InfoPanelProps {
1134
+ tone?: InfoPanelTone;
1135
+ title?: ReactNode;
1136
+ icon?: IconName | ReactNode;
1137
+ children: ReactNode;
1138
+ className?: string;
1139
+ }
1140
+ declare function InfoPanel({ tone, title, icon, children, className, }: InfoPanelProps): react_jsx_runtime.JSX.Element;
1141
+
1103
1142
  interface Props {
1104
1143
  children: ReactNode;
1105
1144
  fallback?: ReactNode;
@@ -1127,6 +1166,155 @@ interface RecoveryPhraseCardProps {
1127
1166
  }
1128
1167
  declare function RecoveryPhraseCard({ words, revealed, onRevealChange, onCopy, title, emptyMessage, className, }: RecoveryPhraseCardProps): react_jsx_runtime.JSX.Element;
1129
1168
 
1169
+ interface SettingsSelectorRowProps {
1170
+ icon: ReactNode;
1171
+ title: string;
1172
+ description?: ReactNode;
1173
+ control: ReactNode;
1174
+ className?: string;
1175
+ iconClassName?: string;
1176
+ }
1177
+ declare function SettingsSelectorRow({ icon, title, description, control, className, iconClassName, }: SettingsSelectorRowProps): react_jsx_runtime.JSX.Element;
1178
+
1179
+ interface BottomSheetAction {
1180
+ label: ReactNode;
1181
+ onClick: () => void;
1182
+ disabled?: boolean;
1183
+ variant?: ButtonProps['variant'];
1184
+ icon?: IconName;
1185
+ }
1186
+ interface BottomSheetProps {
1187
+ open: boolean;
1188
+ title?: ReactNode;
1189
+ icon?: ReactNode;
1190
+ children: ReactNode;
1191
+ onClose?: () => void;
1192
+ closeOnBackdrop?: boolean;
1193
+ actions?: BottomSheetAction[];
1194
+ className?: string;
1195
+ contentClassName?: string;
1196
+ }
1197
+ declare function BottomSheet({ open, title, icon, children, onClose, closeOnBackdrop, actions, className, contentClassName, }: BottomSheetProps): react_jsx_runtime.JSX.Element | null;
1198
+
1199
+ interface DisclosureCardProps {
1200
+ title: ReactNode;
1201
+ children: ReactNode;
1202
+ open: boolean;
1203
+ onOpenChange: (open: boolean) => void;
1204
+ icon?: ReactNode;
1205
+ className?: string;
1206
+ triggerClassName?: string;
1207
+ contentClassName?: string;
1208
+ }
1209
+ declare function DisclosureCard({ title, children, open, onOpenChange, icon, className, triggerClassName, contentClassName, }: DisclosureCardProps): react_jsx_runtime.JSX.Element;
1210
+
1211
+ interface StepperNumberInputProps {
1212
+ value: number;
1213
+ onChange: (value: number) => void;
1214
+ min?: number;
1215
+ max?: number;
1216
+ step?: number;
1217
+ disabled?: boolean;
1218
+ className?: string;
1219
+ inputClassName?: string;
1220
+ ariaLabel?: string;
1221
+ }
1222
+ declare function StepperNumberInput({ value, onChange, min, max, step, disabled, className, inputClassName, ariaLabel, }: StepperNumberInputProps): react_jsx_runtime.JSX.Element;
1223
+
1224
+ interface MetricCardProps {
1225
+ label: ReactNode;
1226
+ value: ReactNode;
1227
+ description?: ReactNode;
1228
+ icon?: IconName | ReactNode;
1229
+ tone?: 'primary' | 'purple' | 'blue' | 'info' | 'warning' | 'success' | 'muted';
1230
+ className?: string;
1231
+ }
1232
+ declare function MetricCard({ label, value, description, icon, tone, className, }: MetricCardProps): react_jsx_runtime.JSX.Element;
1233
+
1234
+ interface FilterChipOption<TValue extends string = string> {
1235
+ value: TValue;
1236
+ label: ReactNode;
1237
+ count?: number;
1238
+ icon?: ReactNode;
1239
+ disabled?: boolean;
1240
+ }
1241
+ interface FilterChipGroupProps<TValue extends string = string> {
1242
+ options: readonly FilterChipOption<TValue>[];
1243
+ value: TValue;
1244
+ onChange: (value: TValue) => void;
1245
+ className?: string;
1246
+ }
1247
+ declare function FilterChipGroup<TValue extends string = string>({ options, value, onChange, className, }: FilterChipGroupProps<TValue>): react_jsx_runtime.JSX.Element;
1248
+
1249
+ interface ActivityRowProps {
1250
+ title: ReactNode;
1251
+ amount: ReactNode;
1252
+ direction?: 'inbound' | 'outbound' | 'swap' | 'neutral';
1253
+ status?: StatusType;
1254
+ timestamp?: ReactNode;
1255
+ networkBadge?: ReactNode;
1256
+ unit?: ReactNode;
1257
+ icon?: IconName | ReactNode;
1258
+ onClick?: () => void;
1259
+ className?: string;
1260
+ }
1261
+ declare function ActivityRow({ title, amount, direction, status, timestamp, networkBadge, unit, icon, onClick, className, }: ActivityRowProps): react_jsx_runtime.JSX.Element;
1262
+
1263
+ type SkeletonTone = 'primary' | 'secondary' | 'card';
1264
+ interface SkeletonProps {
1265
+ className?: string;
1266
+ tone?: SkeletonTone;
1267
+ }
1268
+ declare function Skeleton({ className, tone }: SkeletonProps): react_jsx_runtime.JSX.Element;
1269
+ interface ListSkeletonRowsProps {
1270
+ rows?: number;
1271
+ className?: string;
1272
+ rowClassName?: string;
1273
+ }
1274
+ declare function ListSkeletonRows({ rows, className, rowClassName }: ListSkeletonRowsProps): react_jsx_runtime.JSX.Element;
1275
+
1276
+ interface SecretRevealCardProps {
1277
+ value: ReactNode;
1278
+ revealed: boolean;
1279
+ onRevealChange: (revealed: boolean) => void;
1280
+ onCopy?: () => void;
1281
+ revealLabel?: string;
1282
+ hideLabel?: string;
1283
+ copyLabel?: string;
1284
+ className?: string;
1285
+ valueClassName?: string;
1286
+ }
1287
+ declare function SecretRevealCard({ value, revealed, onRevealChange, onCopy, revealLabel, hideLabel, copyLabel, className, valueClassName, }: SecretRevealCardProps): react_jsx_runtime.JSX.Element;
1288
+
1289
+ interface SettingsSectionCardProps {
1290
+ title: ReactNode;
1291
+ description?: ReactNode;
1292
+ badge?: ReactNode;
1293
+ children: ReactNode;
1294
+ className?: string;
1295
+ bodyClassName?: string;
1296
+ }
1297
+ declare function SettingsSectionCard({ title, description, badge, children, className, bodyClassName, }: SettingsSectionCardProps): react_jsx_runtime.JSX.Element;
1298
+ interface ToneBadgeProps {
1299
+ children: ReactNode;
1300
+ tone?: 'primary' | 'info' | 'warning' | 'danger' | 'success' | 'muted';
1301
+ className?: string;
1302
+ }
1303
+ declare function ToneBadge({ children, tone, className }: ToneBadgeProps): react_jsx_runtime.JSX.Element;
1304
+
1305
+ interface SelectableCardProps {
1306
+ selected?: boolean;
1307
+ onClick?: () => void;
1308
+ title: ReactNode;
1309
+ description?: ReactNode;
1310
+ badge?: ReactNode;
1311
+ preview?: ReactNode;
1312
+ indicator?: boolean;
1313
+ children?: ReactNode;
1314
+ className?: string;
1315
+ }
1316
+ declare function SelectableCard({ selected, onClick, title, description, badge, preview, indicator, children, className, }: SelectableCardProps): react_jsx_runtime.JSX.Element;
1317
+
1130
1318
  interface MobileHeroAnimationProps {
1131
1319
  size?: number;
1132
1320
  className?: string;
@@ -1492,4 +1680,4 @@ declare function getFallbackAssetIconUrl(seed: string): string;
1492
1680
  */
1493
1681
  declare function useAssetIcon(ticker: string, cdnBaseUrl?: string): string;
1494
1682
 
1495
- 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, type AmountDisplayOptions, type AmountDisplayUnit, 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 IconName, type IconProps, Icons, InlineAction, InlineSelector, type InlineSelectorOption, type InlineSelectorProps, Input, type InputProps, InvoiceStatusBanner, KaleidoScopeHeroAnimation, type KaleidoScopeHeroAnimationProps, Label, LightningNetworkIcon, LoadingCard, type LoadingCardProps, MethodChoiceChip, MobileHeroAnimation, type MobileHeroAnimationProps, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, NetworkStatusChip, type NetworkStatusChipProps, type NetworkType, NumberInput, type NumberInputProps, OptionSelector, type OptionSelectorOption, type OptionSelectorProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, RecoveryPhraseCard, type RecoveryPhraseCardProps, 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, formatDisplayAmountText, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
1683
+ 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, ActivityRow, type ActivityRowProps, type ActivityStatusOption, type ActivityTypeTabCounts, type ActivityTypeTabValue, ActivityTypeTabs, AlertBanner, type AmountDisplayOptions, type AmountDisplayUnit, 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, BottomSheet, type BottomSheetAction, type BottomSheetProps, 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, DisclosureCard, type DisclosureCardProps, DotPagination, type DotPaginationProps, type DotTone, ErrorBoundary, ErrorCard, type ErrorCardProps, ExpandIcon, ExtensionPageFrame, type ExtensionPageFrameProps, FadeOverlay, type FadeOverlayProps, FilterChipGroup, type FilterChipGroupProps, type FilterChipOption, FilterDropdown, type FilterDropdownOption, type FilterDropdownProps, HeadlineGradient, type HeadlineGradientProps, Icon, type IconName, type IconProps, Icons, InfoPanel, type InfoPanelProps, InlineAction, InlineSelector, type InlineSelectorOption, type InlineSelectorProps, Input, type InputProps, InvoiceStatusBanner, KaleidoScopeHeroAnimation, type KaleidoScopeHeroAnimationProps, Label, LightningNetworkIcon, ListSkeletonRows, type ListSkeletonRowsProps, LoadingCard, type LoadingCardProps, MethodChoiceChip, MetricCard, type MetricCardProps, MobileHeroAnimation, type MobileHeroAnimationProps, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, NetworkStatusChip, type NetworkStatusChipProps, type NetworkType, NumberInput, type NumberInputProps, OptionSelector, type OptionSelectorOption, type OptionSelectorProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, RecoveryPhraseCard, type RecoveryPhraseCardProps, ScrollArea, type ScrollAreaProps, SecretRevealCard, type SecretRevealCardProps, SectionHeader, type SectionHeaderProps, SectionLabel, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SelectableCard, type SelectableCardProps, SettingItem, SettingsActionButton, SettingsSectionCard, type SettingsSectionCardProps, SettingsSelectorRow, type SettingsSelectorRowProps, SettingsStatusPanel, SettingsTile, type SettingsTileProps, Skeleton, type SkeletonProps, type SkeletonTone, SparkNetworkIcon, StatusBadge, type StatusType, StepperNumberInput, type StepperNumberInputProps, SwapInputCard, type SwapInputCardProps, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, ToneBadge, type ToneBadgeProps, 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, formatDisplayAmountText, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
@@ -1050,6 +1050,27 @@ interface FadeOverlayProps {
1050
1050
  }
1051
1051
  declare function FadeOverlay({ edge, heightClassName, className, }: FadeOverlayProps): react_jsx_runtime.JSX.Element;
1052
1052
 
1053
+ interface ExtensionPageFrameProps {
1054
+ children: ReactNode;
1055
+ header?: ReactNode;
1056
+ title?: PageHeaderProps['title'];
1057
+ subtitle?: PageHeaderProps['subtitle'];
1058
+ left?: PageHeaderProps['left'];
1059
+ right?: PageHeaderProps['right'];
1060
+ onBack?: PageHeaderProps['onBack'];
1061
+ backLabel?: PageHeaderProps['backLabel'];
1062
+ titleAlign?: PageHeaderProps['titleAlign'];
1063
+ bottomNav?: ReactNode;
1064
+ bottomFade?: boolean;
1065
+ scroll?: boolean;
1066
+ viewportAs?: 'div' | 'main';
1067
+ className?: string;
1068
+ contentClassName?: string;
1069
+ viewportClassName?: string;
1070
+ fadeClassName?: string;
1071
+ }
1072
+ declare function ExtensionPageFrame({ children, header, title, subtitle, left, right, onBack, backLabel, titleAlign, bottomNav, bottomFade, scroll, viewportAs, className, contentClassName, viewportClassName, fadeClassName, }: ExtensionPageFrameProps): react_jsx_runtime.JSX.Element;
1073
+
1053
1074
  interface SettingItemProps {
1054
1075
  icon?: string;
1055
1076
  iconSrc?: string;
@@ -1070,6 +1091,14 @@ interface SectionLabelProps {
1070
1091
  }
1071
1092
  declare function SectionLabel({ children, className }: SectionLabelProps): react_jsx_runtime.JSX.Element;
1072
1093
 
1094
+ interface SectionHeaderProps {
1095
+ children: ReactNode;
1096
+ right?: ReactNode;
1097
+ as?: 'h2' | 'h3' | 'p' | 'span';
1098
+ className?: string;
1099
+ }
1100
+ declare function SectionHeader({ children, right, as: Tag, className, }: SectionHeaderProps): react_jsx_runtime.JSX.Element;
1101
+
1073
1102
  declare const variantStyles: {
1074
1103
  readonly error: {
1075
1104
  readonly container: "bg-danger/40";
@@ -1100,6 +1129,16 @@ interface AlertBannerProps {
1100
1129
  }
1101
1130
  declare function AlertBanner({ variant, icon, children, className }: AlertBannerProps): react_jsx_runtime.JSX.Element;
1102
1131
 
1132
+ type InfoPanelTone = 'default' | 'primary' | 'info' | 'warning' | 'danger' | 'success';
1133
+ interface InfoPanelProps {
1134
+ tone?: InfoPanelTone;
1135
+ title?: ReactNode;
1136
+ icon?: IconName | ReactNode;
1137
+ children: ReactNode;
1138
+ className?: string;
1139
+ }
1140
+ declare function InfoPanel({ tone, title, icon, children, className, }: InfoPanelProps): react_jsx_runtime.JSX.Element;
1141
+
1103
1142
  interface Props {
1104
1143
  children: ReactNode;
1105
1144
  fallback?: ReactNode;
@@ -1127,6 +1166,155 @@ interface RecoveryPhraseCardProps {
1127
1166
  }
1128
1167
  declare function RecoveryPhraseCard({ words, revealed, onRevealChange, onCopy, title, emptyMessage, className, }: RecoveryPhraseCardProps): react_jsx_runtime.JSX.Element;
1129
1168
 
1169
+ interface SettingsSelectorRowProps {
1170
+ icon: ReactNode;
1171
+ title: string;
1172
+ description?: ReactNode;
1173
+ control: ReactNode;
1174
+ className?: string;
1175
+ iconClassName?: string;
1176
+ }
1177
+ declare function SettingsSelectorRow({ icon, title, description, control, className, iconClassName, }: SettingsSelectorRowProps): react_jsx_runtime.JSX.Element;
1178
+
1179
+ interface BottomSheetAction {
1180
+ label: ReactNode;
1181
+ onClick: () => void;
1182
+ disabled?: boolean;
1183
+ variant?: ButtonProps['variant'];
1184
+ icon?: IconName;
1185
+ }
1186
+ interface BottomSheetProps {
1187
+ open: boolean;
1188
+ title?: ReactNode;
1189
+ icon?: ReactNode;
1190
+ children: ReactNode;
1191
+ onClose?: () => void;
1192
+ closeOnBackdrop?: boolean;
1193
+ actions?: BottomSheetAction[];
1194
+ className?: string;
1195
+ contentClassName?: string;
1196
+ }
1197
+ declare function BottomSheet({ open, title, icon, children, onClose, closeOnBackdrop, actions, className, contentClassName, }: BottomSheetProps): react_jsx_runtime.JSX.Element | null;
1198
+
1199
+ interface DisclosureCardProps {
1200
+ title: ReactNode;
1201
+ children: ReactNode;
1202
+ open: boolean;
1203
+ onOpenChange: (open: boolean) => void;
1204
+ icon?: ReactNode;
1205
+ className?: string;
1206
+ triggerClassName?: string;
1207
+ contentClassName?: string;
1208
+ }
1209
+ declare function DisclosureCard({ title, children, open, onOpenChange, icon, className, triggerClassName, contentClassName, }: DisclosureCardProps): react_jsx_runtime.JSX.Element;
1210
+
1211
+ interface StepperNumberInputProps {
1212
+ value: number;
1213
+ onChange: (value: number) => void;
1214
+ min?: number;
1215
+ max?: number;
1216
+ step?: number;
1217
+ disabled?: boolean;
1218
+ className?: string;
1219
+ inputClassName?: string;
1220
+ ariaLabel?: string;
1221
+ }
1222
+ declare function StepperNumberInput({ value, onChange, min, max, step, disabled, className, inputClassName, ariaLabel, }: StepperNumberInputProps): react_jsx_runtime.JSX.Element;
1223
+
1224
+ interface MetricCardProps {
1225
+ label: ReactNode;
1226
+ value: ReactNode;
1227
+ description?: ReactNode;
1228
+ icon?: IconName | ReactNode;
1229
+ tone?: 'primary' | 'purple' | 'blue' | 'info' | 'warning' | 'success' | 'muted';
1230
+ className?: string;
1231
+ }
1232
+ declare function MetricCard({ label, value, description, icon, tone, className, }: MetricCardProps): react_jsx_runtime.JSX.Element;
1233
+
1234
+ interface FilterChipOption<TValue extends string = string> {
1235
+ value: TValue;
1236
+ label: ReactNode;
1237
+ count?: number;
1238
+ icon?: ReactNode;
1239
+ disabled?: boolean;
1240
+ }
1241
+ interface FilterChipGroupProps<TValue extends string = string> {
1242
+ options: readonly FilterChipOption<TValue>[];
1243
+ value: TValue;
1244
+ onChange: (value: TValue) => void;
1245
+ className?: string;
1246
+ }
1247
+ declare function FilterChipGroup<TValue extends string = string>({ options, value, onChange, className, }: FilterChipGroupProps<TValue>): react_jsx_runtime.JSX.Element;
1248
+
1249
+ interface ActivityRowProps {
1250
+ title: ReactNode;
1251
+ amount: ReactNode;
1252
+ direction?: 'inbound' | 'outbound' | 'swap' | 'neutral';
1253
+ status?: StatusType;
1254
+ timestamp?: ReactNode;
1255
+ networkBadge?: ReactNode;
1256
+ unit?: ReactNode;
1257
+ icon?: IconName | ReactNode;
1258
+ onClick?: () => void;
1259
+ className?: string;
1260
+ }
1261
+ declare function ActivityRow({ title, amount, direction, status, timestamp, networkBadge, unit, icon, onClick, className, }: ActivityRowProps): react_jsx_runtime.JSX.Element;
1262
+
1263
+ type SkeletonTone = 'primary' | 'secondary' | 'card';
1264
+ interface SkeletonProps {
1265
+ className?: string;
1266
+ tone?: SkeletonTone;
1267
+ }
1268
+ declare function Skeleton({ className, tone }: SkeletonProps): react_jsx_runtime.JSX.Element;
1269
+ interface ListSkeletonRowsProps {
1270
+ rows?: number;
1271
+ className?: string;
1272
+ rowClassName?: string;
1273
+ }
1274
+ declare function ListSkeletonRows({ rows, className, rowClassName }: ListSkeletonRowsProps): react_jsx_runtime.JSX.Element;
1275
+
1276
+ interface SecretRevealCardProps {
1277
+ value: ReactNode;
1278
+ revealed: boolean;
1279
+ onRevealChange: (revealed: boolean) => void;
1280
+ onCopy?: () => void;
1281
+ revealLabel?: string;
1282
+ hideLabel?: string;
1283
+ copyLabel?: string;
1284
+ className?: string;
1285
+ valueClassName?: string;
1286
+ }
1287
+ declare function SecretRevealCard({ value, revealed, onRevealChange, onCopy, revealLabel, hideLabel, copyLabel, className, valueClassName, }: SecretRevealCardProps): react_jsx_runtime.JSX.Element;
1288
+
1289
+ interface SettingsSectionCardProps {
1290
+ title: ReactNode;
1291
+ description?: ReactNode;
1292
+ badge?: ReactNode;
1293
+ children: ReactNode;
1294
+ className?: string;
1295
+ bodyClassName?: string;
1296
+ }
1297
+ declare function SettingsSectionCard({ title, description, badge, children, className, bodyClassName, }: SettingsSectionCardProps): react_jsx_runtime.JSX.Element;
1298
+ interface ToneBadgeProps {
1299
+ children: ReactNode;
1300
+ tone?: 'primary' | 'info' | 'warning' | 'danger' | 'success' | 'muted';
1301
+ className?: string;
1302
+ }
1303
+ declare function ToneBadge({ children, tone, className }: ToneBadgeProps): react_jsx_runtime.JSX.Element;
1304
+
1305
+ interface SelectableCardProps {
1306
+ selected?: boolean;
1307
+ onClick?: () => void;
1308
+ title: ReactNode;
1309
+ description?: ReactNode;
1310
+ badge?: ReactNode;
1311
+ preview?: ReactNode;
1312
+ indicator?: boolean;
1313
+ children?: ReactNode;
1314
+ className?: string;
1315
+ }
1316
+ declare function SelectableCard({ selected, onClick, title, description, badge, preview, indicator, children, className, }: SelectableCardProps): react_jsx_runtime.JSX.Element;
1317
+
1130
1318
  interface MobileHeroAnimationProps {
1131
1319
  size?: number;
1132
1320
  className?: string;
@@ -1492,4 +1680,4 @@ declare function getFallbackAssetIconUrl(seed: string): string;
1492
1680
  */
1493
1681
  declare function useAssetIcon(ticker: string, cdnBaseUrl?: string): string;
1494
1682
 
1495
- 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, type AmountDisplayOptions, type AmountDisplayUnit, 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 IconName, type IconProps, Icons, InlineAction, InlineSelector, type InlineSelectorOption, type InlineSelectorProps, Input, type InputProps, InvoiceStatusBanner, KaleidoScopeHeroAnimation, type KaleidoScopeHeroAnimationProps, Label, LightningNetworkIcon, LoadingCard, type LoadingCardProps, MethodChoiceChip, MobileHeroAnimation, type MobileHeroAnimationProps, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, NetworkStatusChip, type NetworkStatusChipProps, type NetworkType, NumberInput, type NumberInputProps, OptionSelector, type OptionSelectorOption, type OptionSelectorProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, RecoveryPhraseCard, type RecoveryPhraseCardProps, 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, formatDisplayAmountText, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };
1683
+ 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, ActivityRow, type ActivityRowProps, type ActivityStatusOption, type ActivityTypeTabCounts, type ActivityTypeTabValue, ActivityTypeTabs, AlertBanner, type AmountDisplayOptions, type AmountDisplayUnit, 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, BottomSheet, type BottomSheetAction, type BottomSheetProps, 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, DisclosureCard, type DisclosureCardProps, DotPagination, type DotPaginationProps, type DotTone, ErrorBoundary, ErrorCard, type ErrorCardProps, ExpandIcon, ExtensionPageFrame, type ExtensionPageFrameProps, FadeOverlay, type FadeOverlayProps, FilterChipGroup, type FilterChipGroupProps, type FilterChipOption, FilterDropdown, type FilterDropdownOption, type FilterDropdownProps, HeadlineGradient, type HeadlineGradientProps, Icon, type IconName, type IconProps, Icons, InfoPanel, type InfoPanelProps, InlineAction, InlineSelector, type InlineSelectorOption, type InlineSelectorProps, Input, type InputProps, InvoiceStatusBanner, KaleidoScopeHeroAnimation, type KaleidoScopeHeroAnimationProps, Label, LightningNetworkIcon, ListSkeletonRows, type ListSkeletonRowsProps, LoadingCard, type LoadingCardProps, MethodChoiceChip, MetricCard, type MetricCardProps, MobileHeroAnimation, type MobileHeroAnimationProps, NETWORK_CONFIG, NetworkBadge, type NetworkBadgeProps, type NetworkIconProps, NetworkInfoDisclosure, NetworkStatusChip, type NetworkStatusChipProps, type NetworkType, NumberInput, type NumberInputProps, OptionSelector, type OptionSelectorOption, type OptionSelectorProps, PageHeader, type PageHeaderProps, PageShell, type PageShellProps, PaidOverlay, QrCode, type QrCodeProps, RecoveryPhraseCard, type RecoveryPhraseCardProps, ScrollArea, type ScrollAreaProps, SecretRevealCard, type SecretRevealCardProps, SectionHeader, type SectionHeaderProps, SectionLabel, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, SelectableCard, type SelectableCardProps, SettingItem, SettingsActionButton, SettingsSectionCard, type SettingsSectionCardProps, SettingsSelectorRow, type SettingsSelectorRowProps, SettingsStatusPanel, SettingsTile, type SettingsTileProps, Skeleton, type SkeletonProps, type SkeletonTone, SparkNetworkIcon, StatusBadge, type StatusType, StepperNumberInput, type StepperNumberInputProps, SwapInputCard, type SwapInputCardProps, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, ToneBadge, type ToneBadgeProps, 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, formatDisplayAmountText, getAccountNetworkLabel, getAccountNetworkUi, getAccountStatusUi, getActivityNetworkFilterIcon, getAssetIconUrl, getFallbackAssetIconUrl, toast, useAssetIcon, useToast };