@layerfi/components 0.1.17 → 0.1.18
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/LICENSE +21 -0
- package/README.md +15 -5
- package/dist/esm/index.js +531 -517
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +14 -0
- package/dist/index.js +662 -647
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +23 -12
- package/dist/styles/index.css.map +2 -2
- package/package.json +2 -2
- package/image.png +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -982,6 +982,19 @@ declare module '@layerfi/components/components/ExpandedBankTransactionRow/Expand
|
|
|
982
982
|
declare module '@layerfi/components/components/ExpandedBankTransactionRow/index' {
|
|
983
983
|
export { ExpandedBankTransactionRow } from '@layerfi/components/components/ExpandedBankTransactionRow/ExpandedBankTransactionRow';
|
|
984
984
|
|
|
985
|
+
}
|
|
986
|
+
declare module '@layerfi/components/components/Hello/Hello' {
|
|
987
|
+
import React from 'react';
|
|
988
|
+
type Props = {
|
|
989
|
+
user?: string | undefined;
|
|
990
|
+
};
|
|
991
|
+
export const Hello: ({ user }: Props) => React.JSX.Element;
|
|
992
|
+
export {};
|
|
993
|
+
|
|
994
|
+
}
|
|
995
|
+
declare module '@layerfi/components/components/Hello/index' {
|
|
996
|
+
export { Hello } from '@layerfi/components/components/Hello/Hello';
|
|
997
|
+
|
|
985
998
|
}
|
|
986
999
|
declare module '@layerfi/components/components/HoverMenu/HoverMenu' {
|
|
987
1000
|
import React, { ReactNode } from 'react';
|
|
@@ -2690,6 +2703,7 @@ declare module '@layerfi/components/icons/types' {
|
|
|
2690
2703
|
declare module '@layerfi/components/index' {
|
|
2691
2704
|
export { BalanceSheet } from '@layerfi/components/components/BalanceSheet/index';
|
|
2692
2705
|
export { BankTransactions } from '@layerfi/components/components/BankTransactions/index';
|
|
2706
|
+
export { Hello } from '@layerfi/components/components/Hello/index';
|
|
2693
2707
|
export { LinkedAccounts } from '@layerfi/components/components/LinkedAccounts/index';
|
|
2694
2708
|
export { ProfitAndLoss } from '@layerfi/components/components/ProfitAndLoss/index';
|
|
2695
2709
|
export { ProfitAndLossView } from '@layerfi/components/components/ProfitAndLossView/index';
|