@mycause/ui 0.0.0-cadf499b → 0.0.0-caeb6a4f
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/CHANGELOG.md +7 -0
- package/dist/components/date-picker/date-picker.stories.d.ts +6 -0
- package/dist/components/date-picker/index.d.ts +1 -0
- package/dist/components/date-picker/single-date-picker-custom-header.d.ts +32 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/input/InputDefault.d.ts +7 -5
- package/dist/components/input/input.stories.d.ts +6 -0
- package/dist/components/my-account-frp-closed/Icon.d.ts +5 -0
- package/dist/components/my-account-frp-closed/frp-closed-img.d.ts +9 -0
- package/dist/components/my-account-frp-closed/frp-information.d.ts +13 -0
- package/dist/components/my-account-frp-closed/index.d.ts +1 -0
- package/dist/components/my-account-frp-closed/my-account-frp-closed.d.ts +17 -0
- package/dist/components/my-account-frp-closed/my-account-frp-closed.stories.d.ts +24 -0
- package/dist/components/my-account-frp-preview/frp-information.d.ts +2 -1
- package/dist/components/my-account-frp-preview/frp-preview-img.d.ts +2 -1
- package/dist/components/my-account-frp-preview/my-account-frp-preview.d.ts +3 -1
- package/dist/components/my-account-sidebar/Icon.d.ts +2 -0
- package/dist/components/my-account-sidebar/my-account-sidebar.d.ts +2 -1
- package/dist/components/nav/index.d.ts +1 -0
- package/dist/components/nav/nav-expanded-charity.d.ts +2 -1
- package/dist/components/nav/nav-myaccount.d.ts +22 -0
- package/dist/components/nav/nav.d.ts +1 -0
- package/dist/components/nav/nav.stories.d.ts +6 -0
- package/dist/components/phone-number-input/index.d.ts +1 -0
- package/dist/components/phone-number-input/phone-number-input-v1.d.ts +25 -0
- package/dist/components/phone-number-input/phone-number-input-v2.d.ts +2 -1
- package/dist/components/phone-number-input/phone-number-input.stories.d.ts +6 -0
- package/dist/components/select/SelectV2.d.ts +24 -0
- package/dist/components/select/index.d.ts +2 -0
- package/dist/components/select/select-enhanced.d.ts +23 -0
- package/dist/components/select/select-v2.d.ts +26 -0
- package/dist/components/select/select.d.ts +1 -1
- package/dist/components/select/select.stories.d.ts +12 -0
- package/dist/components/table/partner-monthly-table.d.ts +2 -1
- package/dist/components/transaction-card/Dot.d.ts +6 -0
- package/dist/components/transaction-card/index.d.ts +1 -0
- package/dist/components/transaction-card/transaction-card.d.ts +13 -0
- package/dist/components/{start-fundraise-card/start-fundraise-card.stories.d.ts → transaction-card/transaction-card.stories.d.ts} +2 -2
- package/dist/index.esm.js +5891 -154
- package/dist/index.js +5896 -152
- package/package.json +1 -1
- package/dist/components/choose-charity-card/choose-charity-card.d.ts +0 -10
- package/dist/components/choose-charity-card/choose-charity-card.stories.d.ts +0 -14
- package/dist/components/choose-charity-card/index.d.ts +0 -1
- package/dist/components/green-dashboard-sidebar/Icon.d.ts +0 -11
- package/dist/components/green-dashboard-sidebar/green-dashboard-sidebar.d.ts +0 -15
- package/dist/components/green-dashboard-sidebar/green-dashboard-sidebar.stories.d.ts +0 -12
- package/dist/components/green-dashboard-sidebar/index.d.ts +0 -1
- package/dist/components/line-chart/index.d.ts +0 -2
- package/dist/components/line-chart/partner-line-chart-block.d.ts +0 -10
- package/dist/components/line-chart/partner-line-chart-block.stories.d.ts +0 -12
- package/dist/components/line-chart/partner-line-chart.d.ts +0 -3
- package/dist/components/modal/modalImage.d.ts +0 -8
- package/dist/components/partner-dashboard-chart/chart.d.ts +0 -3
- package/dist/components/partner-dashboard-chart/chart.stories.d.ts +0 -14
- package/dist/components/partner-dashboard-chart/index.d.ts +0 -1
- package/dist/components/start-fundraise-card/index.d.ts +0 -1
- package/dist/components/start-fundraise-card/start-fundraise-card.d.ts +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import moment from "moment";
|
|
3
|
+
export interface DatePickerProps {
|
|
4
|
+
id: string;
|
|
5
|
+
date: moment.Moment | null;
|
|
6
|
+
onDateChange: (date: moment.Moment | null) => void;
|
|
7
|
+
onFocusChange: (arg: boolean | null) => void;
|
|
8
|
+
focused: boolean | null;
|
|
9
|
+
placeholder?: string;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
color?: string;
|
|
12
|
+
required?: boolean;
|
|
13
|
+
numberOfMonths?: number;
|
|
14
|
+
inputIconPosition?: "before" | "after";
|
|
15
|
+
orientation?: "horizontal" | "vertical";
|
|
16
|
+
customInputIcon?: React.ReactElement<React.HTMLProps<HTMLOrSVGElement>>;
|
|
17
|
+
customCloseIcon?: React.ReactElement<React.HTMLProps<HTMLOrSVGElement>>;
|
|
18
|
+
displayFormat?: string;
|
|
19
|
+
error?: boolean;
|
|
20
|
+
label?: string;
|
|
21
|
+
width?: string;
|
|
22
|
+
isOutsideRange?: () => boolean;
|
|
23
|
+
renderCalendarInfo?: () => string | JSX.Element;
|
|
24
|
+
calendarInfoPosition?: "before" | "after" | "top" | "bottom";
|
|
25
|
+
navPrev?: string | JSX.Element;
|
|
26
|
+
navNext?: string | JSX.Element;
|
|
27
|
+
showDefaultInputIcon?: boolean;
|
|
28
|
+
startYear?: number;
|
|
29
|
+
endYear?: number;
|
|
30
|
+
}
|
|
31
|
+
declare const CustomHeaderSingleDatePicker: ({ width, color, onDateChange, onFocusChange, numberOfMonths, error, label, focused, startYear, endYear, ...rest }: DatePickerProps) => JSX.Element;
|
|
32
|
+
export default CustomHeaderSingleDatePicker;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
import React from "react";
|
|
2
2
|
interface InputDefaltProps {
|
|
3
|
-
|
|
3
|
+
label?: string | React.ReactNode;
|
|
4
4
|
required?: boolean;
|
|
5
5
|
placeholder?: string;
|
|
6
|
-
onChange
|
|
7
|
-
value
|
|
6
|
+
onChange?: (value: string) => void;
|
|
7
|
+
value?: string | Array<string> | number;
|
|
8
8
|
error?: string | null | boolean;
|
|
9
|
+
disable?: boolean;
|
|
10
|
+
name?: string;
|
|
9
11
|
}
|
|
10
|
-
declare const Input: ({
|
|
12
|
+
declare const Input: ({ label, required, placeholder, value, onChange, error, disable, name, }: InputDefaltProps) => JSX.Element;
|
|
11
13
|
export default Input;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface FrpClosedImgProps {
|
|
3
|
+
img?: string;
|
|
4
|
+
link?: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
frpColor?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const FrpClosedImg: ({ img, link, title, frpColor }: FrpClosedImgProps) => JSX.Element;
|
|
9
|
+
export default FrpClosedImg;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface FrpInfomationProps {
|
|
3
|
+
donations: number;
|
|
4
|
+
amountRaised: number;
|
|
5
|
+
amountGoal: number | null;
|
|
6
|
+
sqSize: number;
|
|
7
|
+
strokeWidth: number;
|
|
8
|
+
closedDate?: string | undefined;
|
|
9
|
+
customRow?: React.ReactNode;
|
|
10
|
+
manageLink?: string;
|
|
11
|
+
}
|
|
12
|
+
declare const FrpInfomation: ({ donations, amountRaised, amountGoal, sqSize, strokeWidth, closedDate, customRow, manageLink, }: FrpInfomationProps) => JSX.Element;
|
|
13
|
+
export default FrpInfomation;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as MyAccountFrpClosed } from "./my-account-frp-closed";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface MyAccountFrpClosedProps {
|
|
3
|
+
img?: string;
|
|
4
|
+
link?: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
donations: number;
|
|
7
|
+
amountRaised: number;
|
|
8
|
+
amountGoal: number | null;
|
|
9
|
+
sqSize: number;
|
|
10
|
+
strokeWidth: number;
|
|
11
|
+
frpColor?: string;
|
|
12
|
+
closedDate?: string;
|
|
13
|
+
customRow?: React.ReactNode;
|
|
14
|
+
manageLink?: string;
|
|
15
|
+
}
|
|
16
|
+
declare const MyAccountFrpClosed: ({ img, link, title, amountGoal, amountRaised, donations, sqSize, strokeWidth, frpColor, closedDate, customRow, manageLink, }: MyAccountFrpClosedProps) => JSX.Element;
|
|
17
|
+
export default MyAccountFrpClosed;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
decorators: ((...args: any) => any)[];
|
|
5
|
+
};
|
|
6
|
+
export default _default;
|
|
7
|
+
export declare const MyAccountFrpCloseStory: {
|
|
8
|
+
(): JSX.Element;
|
|
9
|
+
story: {
|
|
10
|
+
name: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export declare const MyAccountFrpArchiveStoryV3: {
|
|
14
|
+
(): JSX.Element;
|
|
15
|
+
story: {
|
|
16
|
+
name: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export declare const MyAccountFrpArchiveStoryV2: {
|
|
20
|
+
(): JSX.Element;
|
|
21
|
+
story: {
|
|
22
|
+
name: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -7,6 +7,7 @@ interface FrpInfomationProps {
|
|
|
7
7
|
amountGoal: number;
|
|
8
8
|
sqSize: number;
|
|
9
9
|
strokeWidth: number;
|
|
10
|
+
manageLink?: string;
|
|
10
11
|
}
|
|
11
|
-
declare const FrpInfomation: ({ amountOfweek, donations, daysToGo, amountRaised, amountGoal, sqSize, strokeWidth, }: FrpInfomationProps) => JSX.Element;
|
|
12
|
+
declare const FrpInfomation: ({ amountOfweek, donations, daysToGo, amountRaised, amountGoal, sqSize, strokeWidth, manageLink, }: FrpInfomationProps) => JSX.Element;
|
|
12
13
|
export default FrpInfomation;
|
|
@@ -3,6 +3,7 @@ export interface FrpPreviewImgProps {
|
|
|
3
3
|
img?: string;
|
|
4
4
|
link?: string;
|
|
5
5
|
title?: string;
|
|
6
|
+
frpColor?: string;
|
|
6
7
|
}
|
|
7
|
-
declare const FrpPreviewImg: ({ img, link, title }: FrpPreviewImgProps) => JSX.Element;
|
|
8
|
+
declare const FrpPreviewImg: ({ img, link, title, frpColor }: FrpPreviewImgProps) => JSX.Element;
|
|
8
9
|
export default FrpPreviewImg;
|
|
@@ -10,6 +10,8 @@ export interface MyAccountFrpPreviewProps {
|
|
|
10
10
|
amountGoal: number;
|
|
11
11
|
sqSize: number;
|
|
12
12
|
strokeWidth: number;
|
|
13
|
+
manageLink?: string;
|
|
14
|
+
frpColor?: string;
|
|
13
15
|
}
|
|
14
|
-
declare const MyAccountFrpPreview: ({ img, link, title, amountGoal, amountOfweek, amountRaised, donations, sqSize, strokeWidth, daysToGo, }: MyAccountFrpPreviewProps) => JSX.Element;
|
|
16
|
+
declare const MyAccountFrpPreview: ({ img, link, title, amountGoal, amountOfweek, amountRaised, donations, sqSize, strokeWidth, daysToGo, manageLink, frpColor, }: MyAccountFrpPreviewProps) => JSX.Element;
|
|
15
17
|
export default MyAccountFrpPreview;
|
|
@@ -9,9 +9,10 @@ export interface MyAccountSidebarProps {
|
|
|
9
9
|
}
|
|
10
10
|
declare type ItemMenu = {
|
|
11
11
|
id: string;
|
|
12
|
-
icon
|
|
12
|
+
icon?: any;
|
|
13
13
|
label: string;
|
|
14
14
|
href?: string;
|
|
15
|
+
items?: Array<ItemMenu>;
|
|
15
16
|
};
|
|
16
17
|
declare const MyAccountSidebar: ({ listMenu, dashboard, account, contract, handleSetOverlay, activeMenu, }: MyAccountSidebarProps) => JSX.Element;
|
|
17
18
|
export default MyAccountSidebar;
|
|
@@ -8,6 +8,7 @@ export declare type NavigationExpandedCharityProps = {
|
|
|
8
8
|
className?: string;
|
|
9
9
|
action: HybridNavigationLink | null;
|
|
10
10
|
actionRaised?: HybridNavigationLink | null;
|
|
11
|
+
loginRaised?: HybridNavigationLink | null;
|
|
11
12
|
};
|
|
12
|
-
declare function NavigationExpandedCharity({ children, onRequestClose, className, banner, action, actionRaised, }: NavigationExpandedCharityProps): JSX.Element;
|
|
13
|
+
declare function NavigationExpandedCharity({ children, onRequestClose, className, banner, action, actionRaised, loginRaised, }: NavigationExpandedCharityProps): JSX.Element;
|
|
13
14
|
export default NavigationExpandedCharity;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ColorSpecifier } from "../../theme/theme";
|
|
3
|
+
import { ButtonProps } from "../button/button";
|
|
4
|
+
import { UserData } from "./nav-user-menu";
|
|
5
|
+
import { UserMenuItemWithSubmenu } from "./nav-user-menu-items";
|
|
6
|
+
declare type LoginAction = {
|
|
7
|
+
analyticsId?: string;
|
|
8
|
+
onLogin: () => void;
|
|
9
|
+
color?: ColorSpecifier;
|
|
10
|
+
noIcon?: boolean;
|
|
11
|
+
};
|
|
12
|
+
export declare type NavigationProps = {
|
|
13
|
+
logo?: React.ReactNode;
|
|
14
|
+
cta?: ButtonProps | null;
|
|
15
|
+
user?: UserData | null;
|
|
16
|
+
login?: LoginAction | null;
|
|
17
|
+
isSticky?: boolean;
|
|
18
|
+
menuReverse?: boolean;
|
|
19
|
+
userMenu?: Array<UserMenuItemWithSubmenu>;
|
|
20
|
+
};
|
|
21
|
+
declare function Navigation({ logo, cta, user, login, isSticky, userMenu, }: NavigationProps): JSX.Element;
|
|
22
|
+
export default Navigation;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CountryCode } from "libphonenumber-js";
|
|
3
|
+
declare type PhoneNumberInputProps = {
|
|
4
|
+
values: {
|
|
5
|
+
number: string;
|
|
6
|
+
countryCallingCode: string;
|
|
7
|
+
country: string;
|
|
8
|
+
};
|
|
9
|
+
names?: {
|
|
10
|
+
number: string;
|
|
11
|
+
countryCallingCode: string;
|
|
12
|
+
country: string;
|
|
13
|
+
};
|
|
14
|
+
onChange: (value: string, name: string) => void;
|
|
15
|
+
label?: React.ReactNode;
|
|
16
|
+
error?: string | null;
|
|
17
|
+
onBlur?: (e: React.FocusEvent) => void;
|
|
18
|
+
helperText?: React.ReactNode;
|
|
19
|
+
required?: boolean;
|
|
20
|
+
defaultCountry?: CountryCode;
|
|
21
|
+
placeholder?: string;
|
|
22
|
+
color?: string;
|
|
23
|
+
};
|
|
24
|
+
declare function PhoneNumberInputV1({ onChange, values, names, error, onBlur, helperText, label, required, defaultCountry, placeholder, color, }: PhoneNumberInputProps): JSX.Element;
|
|
25
|
+
export default PhoneNumberInputV1;
|
|
@@ -13,6 +13,7 @@ declare type PhoneInputProps = {
|
|
|
13
13
|
defaultCountry?: CountryCode;
|
|
14
14
|
placeholder?: string;
|
|
15
15
|
color?: string;
|
|
16
|
+
name?: string;
|
|
16
17
|
};
|
|
17
|
-
declare function PhoneInput({ values, onChange, defaultCountry, label, required, placeholder, error, }: PhoneInputProps): JSX.Element;
|
|
18
|
+
declare function PhoneInput({ values, onChange, defaultCountry, label, required, placeholder, error, name, }: PhoneInputProps): JSX.Element;
|
|
18
19
|
export default PhoneInput;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare type SelectOption = {
|
|
3
|
+
value: string;
|
|
4
|
+
label?: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
};
|
|
7
|
+
export interface SelectProps {
|
|
8
|
+
label?: string;
|
|
9
|
+
value: string;
|
|
10
|
+
onChange: (e: React.FormEvent) => void;
|
|
11
|
+
externalLabel?: boolean;
|
|
12
|
+
large?: boolean;
|
|
13
|
+
options: Array<SelectOption>;
|
|
14
|
+
leadingIcon?: React.ReactElement;
|
|
15
|
+
helperText?: string | null;
|
|
16
|
+
isHelperTextPersistent?: boolean;
|
|
17
|
+
noArrow?: boolean;
|
|
18
|
+
color?: string;
|
|
19
|
+
asteriskColor?: string;
|
|
20
|
+
itemHoverColor?: string;
|
|
21
|
+
error?: boolean | string;
|
|
22
|
+
}
|
|
23
|
+
declare const SelectV2: ({ options, value, onChange, color, itemHoverColor, noArrow, }: SelectProps) => JSX.Element;
|
|
24
|
+
export default SelectV2;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { SelectProps as MDCSelectProps, SelectHelperTextProps } from "@material/react-select";
|
|
3
|
+
export declare type SelectOption = {
|
|
4
|
+
value: string;
|
|
5
|
+
label?: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
};
|
|
8
|
+
export interface SelectProps extends Omit<MDCSelectProps, "onEnhancedChange" | "ref" | "children" | "options" | "outlined" | "helperText" | "dense"> {
|
|
9
|
+
label?: string;
|
|
10
|
+
value: string;
|
|
11
|
+
onChange: (value: any) => void;
|
|
12
|
+
externalLabel?: boolean;
|
|
13
|
+
large?: boolean;
|
|
14
|
+
options: Array<string> | Array<SelectOption>;
|
|
15
|
+
leadingIcon?: React.ReactElement;
|
|
16
|
+
helperText?: string | React.ReactElement<SelectHelperTextProps> | null;
|
|
17
|
+
isHelperTextPersistent?: boolean;
|
|
18
|
+
noArrow?: boolean;
|
|
19
|
+
color?: string;
|
|
20
|
+
error?: boolean | string;
|
|
21
|
+
}
|
|
22
|
+
declare const SelectV2: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, ...rest }: SelectProps) => JSX.Element;
|
|
23
|
+
export default SelectV2;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare type SelectOption = {
|
|
3
|
+
value: string;
|
|
4
|
+
label?: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
};
|
|
7
|
+
export interface SelectProps {
|
|
8
|
+
label?: string;
|
|
9
|
+
value: string | number;
|
|
10
|
+
onChange: (value: string) => void;
|
|
11
|
+
externalLabel?: boolean;
|
|
12
|
+
large?: boolean;
|
|
13
|
+
options: Array<SelectOption>;
|
|
14
|
+
leadingIcon?: React.ReactElement;
|
|
15
|
+
helperText?: string | null;
|
|
16
|
+
isHelperTextPersistent?: boolean;
|
|
17
|
+
noArrow?: boolean;
|
|
18
|
+
color?: string;
|
|
19
|
+
asteriskColor?: string;
|
|
20
|
+
itemHoverColor?: string;
|
|
21
|
+
error?: boolean | string;
|
|
22
|
+
trailingIcon?: React.ReactElement;
|
|
23
|
+
bgColor?: string;
|
|
24
|
+
}
|
|
25
|
+
declare const SelectV2: ({ options, value, onChange, color, itemHoverColor, noArrow, trailingIcon, bgColor, }: SelectProps) => JSX.Element;
|
|
26
|
+
export default SelectV2;
|
|
@@ -5,7 +5,7 @@ export declare type SelectOption = {
|
|
|
5
5
|
label?: string;
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
};
|
|
8
|
-
export interface SelectProps extends Omit<MDCSelectProps, "
|
|
8
|
+
export interface SelectProps extends Omit<MDCSelectProps, "ref" | "children" | "options" | "outlined" | "helperText" | "dense"> {
|
|
9
9
|
label?: string;
|
|
10
10
|
value: string;
|
|
11
11
|
onChange: (e: React.FormEvent) => void;
|
|
@@ -10,3 +10,15 @@ export declare const SelectStory: {
|
|
|
10
10
|
name: string;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
+
export declare const SelectEnhancedStory: {
|
|
14
|
+
(): JSX.Element;
|
|
15
|
+
story: {
|
|
16
|
+
name: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export declare const SelectStoryV2: {
|
|
20
|
+
(): JSX.Element;
|
|
21
|
+
story: {
|
|
22
|
+
name: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -11,6 +11,7 @@ export interface PartnerMonthlyTableProps {
|
|
|
11
11
|
data: Array<object>;
|
|
12
12
|
title?: string;
|
|
13
13
|
tooltip?: string;
|
|
14
|
+
customBottomRow?: React.ReactNode;
|
|
14
15
|
}
|
|
15
|
-
declare const PartnerMonthlyTable: ({ columns, data, title, tooltip, }: PartnerMonthlyTableProps) => JSX.Element;
|
|
16
|
+
declare const PartnerMonthlyTable: ({ columns, data, title, tooltip, customBottomRow, }: PartnerMonthlyTableProps) => JSX.Element;
|
|
16
17
|
export default PartnerMonthlyTable;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TransactionCard } from "./transaction-card";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface TransactionCardProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
amount?: string;
|
|
5
|
+
recipient?: string;
|
|
6
|
+
receiptNo?: string;
|
|
7
|
+
details?: string;
|
|
8
|
+
tax?: string;
|
|
9
|
+
date?: string;
|
|
10
|
+
action?: React.ReactNode;
|
|
11
|
+
}
|
|
12
|
+
declare const TransactionCard: ({ className, amount, recipient, receiptNo, details, tax, date, action, }: TransactionCardProps) => JSX.Element;
|
|
13
|
+
export default TransactionCard;
|
|
@@ -3,10 +3,10 @@ import CenterDecorator from "../../utils/center-decorator";
|
|
|
3
3
|
declare const _default: {
|
|
4
4
|
title: string;
|
|
5
5
|
decorators: (typeof CenterDecorator)[];
|
|
6
|
-
component: ({ className,
|
|
6
|
+
component: ({ className, amount, recipient, receiptNo, details, tax, date, action, }: import("./transaction-card").TransactionCardProps) => JSX.Element;
|
|
7
7
|
};
|
|
8
8
|
export default _default;
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const TransactionCardStory: {
|
|
10
10
|
(): JSX.Element;
|
|
11
11
|
story: {
|
|
12
12
|
name: string;
|