@chainberry/ui-components 1.0.31 → 1.0.33

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/index.d.ts CHANGED
@@ -536,9 +536,11 @@ export declare namespace convertData {
536
536
  }
537
537
  }
538
538
 
539
- export declare function ConvertHistoryTable({ data, className, }: {
539
+ export declare function ConvertHistoryTable({ data, className, onRowClick, }: {
540
540
  data: ConversionRecord[];
541
541
  className?: string;
542
+ /** click a row to open its Activity details panel */
543
+ onRowClick?: (row: ConversionRecord) => void;
542
544
  }): JSX.Element;
543
545
 
544
546
  export declare function ConvertPanel({ currentUser, onSubmit, className, }: {
@@ -735,9 +737,11 @@ export declare namespace depositData {
735
737
  }
736
738
  }
737
739
 
738
- export declare function DepositHistoryTable({ data, className, }: {
740
+ export declare function DepositHistoryTable({ data, className, onRowClick, }: {
739
741
  data: DepositRecord[];
740
742
  className?: string;
743
+ /** click a row to open its Activity details panel */
744
+ onRowClick?: (row: DepositRecord) => void;
741
745
  }): JSX.Element;
742
746
 
743
747
  export declare function DepositPanel({ className }: {
@@ -1107,6 +1111,11 @@ export declare const ICONS: {
1107
1111
  }][] | readonly (readonly [string, {
1108
1112
  readonly [key: string]: string | number;
1109
1113
  }])[];
1114
+ company: [string, {
1115
+ [key: string]: string | number;
1116
+ }][] | readonly (readonly [string, {
1117
+ readonly [key: string]: string | number;
1118
+ }])[];
1110
1119
  users: [string, {
1111
1120
  [key: string]: string | number;
1112
1121
  }][] | readonly (readonly [string, {
@@ -1132,11 +1141,26 @@ export declare const ICONS: {
1132
1141
  }][] | readonly (readonly [string, {
1133
1142
  readonly [key: string]: string | number;
1134
1143
  }])[];
1144
+ coins02: [string, {
1145
+ [key: string]: string | number;
1146
+ }][] | readonly (readonly [string, {
1147
+ readonly [key: string]: string | number;
1148
+ }])[];
1135
1149
  safe: [string, {
1136
1150
  [key: string]: string | number;
1137
1151
  }][] | readonly (readonly [string, {
1138
1152
  readonly [key: string]: string | number;
1139
1153
  }])[];
1154
+ wallet03: [string, {
1155
+ [key: string]: string | number;
1156
+ }][] | readonly (readonly [string, {
1157
+ readonly [key: string]: string | number;
1158
+ }])[];
1159
+ arrowupright: [string, {
1160
+ [key: string]: string | number;
1161
+ }][] | readonly (readonly [string, {
1162
+ readonly [key: string]: string | number;
1163
+ }])[];
1140
1164
  useraccount: [string, {
1141
1165
  [key: string]: string | number;
1142
1166
  }][] | readonly (readonly [string, {
@@ -1240,6 +1264,11 @@ declare const icons: {
1240
1264
  }][] | readonly (readonly [string, {
1241
1265
  readonly [key: string]: string | number;
1242
1266
  }])[];
1267
+ company: [string, {
1268
+ [key: string]: string | number;
1269
+ }][] | readonly (readonly [string, {
1270
+ readonly [key: string]: string | number;
1271
+ }])[];
1243
1272
  users: [string, {
1244
1273
  [key: string]: string | number;
1245
1274
  }][] | readonly (readonly [string, {
@@ -1265,11 +1294,26 @@ declare const icons: {
1265
1294
  }][] | readonly (readonly [string, {
1266
1295
  readonly [key: string]: string | number;
1267
1296
  }])[];
1297
+ coins02: [string, {
1298
+ [key: string]: string | number;
1299
+ }][] | readonly (readonly [string, {
1300
+ readonly [key: string]: string | number;
1301
+ }])[];
1268
1302
  safe: [string, {
1269
1303
  [key: string]: string | number;
1270
1304
  }][] | readonly (readonly [string, {
1271
1305
  readonly [key: string]: string | number;
1272
1306
  }])[];
1307
+ wallet03: [string, {
1308
+ [key: string]: string | number;
1309
+ }][] | readonly (readonly [string, {
1310
+ readonly [key: string]: string | number;
1311
+ }])[];
1312
+ arrowupright: [string, {
1313
+ [key: string]: string | number;
1314
+ }][] | readonly (readonly [string, {
1315
+ readonly [key: string]: string | number;
1316
+ }])[];
1273
1317
  useraccount: [string, {
1274
1318
  [key: string]: string | number;
1275
1319
  }][] | readonly (readonly [string, {
@@ -1789,8 +1833,9 @@ export declare type RiskLevel = "low" | "medium" | "high";
1789
1833
 
1790
1834
  declare type RiskLevel_2 = 'low' | 'medium' | 'high';
1791
1835
 
1792
- export declare function RiskSignal({ level }: {
1836
+ export declare function RiskSignal({ level, score }: {
1793
1837
  level: RiskLevel;
1838
+ score?: number;
1794
1839
  }): JSX.Element;
1795
1840
 
1796
1841
  export declare const SAMPLE_NOTIFICATIONS: NotificationItemData[];
@@ -1810,9 +1855,10 @@ declare type SavedAddress = {
1810
1855
  address: string;
1811
1856
  };
1812
1857
 
1813
- export declare function SavedPresetsBar({ presets, activeId, getCount, onToggle, onDelete, onCreateView, onReset, resetDisabled, }: {
1858
+ export declare function SavedPresetsBar({ presets, activeId, onToggle, onDelete, onCreateView, onReset, resetDisabled, }: {
1814
1859
  presets: PresetDef[];
1815
1860
  activeId: string | null;
1861
+ /** reserved for the per-preset count badge (currently commented out below) */
1816
1862
  getCount: (preset: PresetDef) => number;
1817
1863
  onToggle: (id: string) => void;
1818
1864
  onDelete: (id: string) => void;
@@ -2577,9 +2623,11 @@ export declare namespace withdrawData {
2577
2623
  }
2578
2624
  }
2579
2625
 
2580
- export declare function WithdrawHistoryTable({ data, className, }: {
2626
+ export declare function WithdrawHistoryTable({ data, className, onRowClick, }: {
2581
2627
  data: WithdrawalRecord[];
2582
2628
  className?: string;
2629
+ /** click a row to open its Activity details panel */
2630
+ onRowClick?: (row: WithdrawalRecord) => void;
2583
2631
  }): JSX.Element;
2584
2632
 
2585
2633
  export declare function WithdrawPanel({ currentUser, onSubmit, className, }: {