@layerfi/components 0.1.46 → 0.1.48

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
@@ -940,13 +940,14 @@ declare module '@layerfi/components/components/BankTransactionMobileList/BankTra
940
940
  removeTransaction: (bt: BankTransaction) => void;
941
941
  initialLoad?: boolean;
942
942
  mode: BankTransactionsMode;
943
+ isFirstItem?: boolean;
943
944
  }
944
945
  export enum Purpose {
945
946
  business = "business",
946
947
  personal = "personal",
947
948
  more = "more"
948
949
  }
949
- export const BankTransactionMobileListItem: ({ index, bankTransaction, removeTransaction, editable, mode, initialLoad, }: BankTransactionMobileListItemProps) => React.JSX.Element;
950
+ export const BankTransactionMobileListItem: ({ index, bankTransaction, removeTransaction, editable, mode, initialLoad, isFirstItem, }: BankTransactionMobileListItemProps) => React.JSX.Element;
950
951
 
951
952
  }
952
953
  declare module '@layerfi/components/components/BankTransactionMobileList/BusinessCategories' {
@@ -1316,6 +1317,7 @@ declare module '@layerfi/components/components/Button/RetryButton' {
1316
1317
  disabled?: boolean;
1317
1318
  error: string;
1318
1319
  fullWidth?: boolean;
1320
+ iconOnly?: boolean;
1319
1321
  }
1320
1322
  export const RetryButton: ({ className, processing, disabled, error, children, ...props }: RetryButtonProps) => React.JSX.Element;
1321
1323