@layerfi/components 0.1.46 → 0.1.47
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/.idea/codeStyles/Project.xml +61 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/layer-react.iml +9 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/dist/esm/index.js +777 -884
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +3 -1
- package/dist/index.js +849 -956
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +23 -7
- package/dist/styles/index.css.map +2 -2
- package/package.json +1 -1
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
|
|