@mycause/ui 0.0.0-cd5f92c2 → 0.0.0-cd9a6353
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 +4 -0
- package/dist/components/favorite-charity-item/favorite-charity-item.d.ts +15 -0
- package/dist/components/favorite-charity-item/favorite-charity-item.stories.d.ts +15 -0
- package/dist/components/favorite-charity-item/index.d.ts +1 -0
- package/dist/components/field-helpers/field-label.d.ts +2 -1
- package/dist/components/index.d.ts +15 -0
- package/dist/components/input/InputDefault.d.ts +4 -1
- package/dist/components/input/index.d.ts +1 -1
- package/dist/components/input/input.stories.d.ts +6 -0
- package/dist/components/modal/index.d.ts +1 -0
- package/dist/components/modal/{modalImage.d.ts → modal-image.d.ts} +2 -2
- package/dist/components/modal/modal.d.ts +3 -1
- package/dist/components/modal/modal.stories.d.ts +6 -0
- package/dist/components/my-account-choose-charity-card/index.d.ts +1 -0
- package/dist/components/my-account-choose-charity-card/my-account-choose-charity-card.d.ts +11 -0
- package/dist/components/{partner-dashboard-chart/chart.stories.d.ts → my-account-choose-charity-card/my-account-choose-charity-card.stories.d.ts} +2 -2
- 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 +11 -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 +15 -0
- package/dist/components/my-account-frp-closed/my-account-frp-closed.stories.d.ts +24 -0
- package/dist/components/my-account-frp-preview/Icon.d.ts +5 -0
- package/dist/components/my-account-frp-preview/frp-information.d.ts +13 -0
- package/dist/components/my-account-frp-preview/frp-preview-img.d.ts +9 -0
- package/dist/components/my-account-frp-preview/index.d.ts +1 -0
- package/dist/components/my-account-frp-preview/my-account-frp-preview.d.ts +17 -0
- package/dist/components/my-account-frp-preview/my-account-frp-preview.stories.d.ts +24 -0
- package/dist/components/my-account-sidebar/Icon.d.ts +15 -0
- package/dist/components/my-account-sidebar/index.d.ts +1 -0
- package/dist/components/my-account-sidebar/my-account-sidebar.d.ts +18 -0
- package/dist/components/{line-chart/partner-line-chart-block.stories.d.ts → my-account-sidebar/my-account-sidebar.stories.d.ts} +1 -1
- package/dist/components/my-account-start-fundraise-card/index.d.ts +1 -0
- package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.d.ts +11 -0
- package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.stories.d.ts +14 -0
- package/dist/components/my-account-stats-donated/index.d.ts +1 -0
- package/dist/components/my-account-stats-donated/my-account-stats-donated.d.ts +8 -0
- package/dist/components/my-account-stats-donated/my-account-stats-donated.stories.d.ts +12 -0
- package/dist/components/my-account-stats-raised/index.d.ts +1 -0
- package/dist/components/my-account-stats-raised/my-account-stats-raised.d.ts +8 -0
- package/dist/components/my-account-stats-raised/my-account-stats-raised.stories.d.ts +12 -0
- 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-v2.d.ts +18 -0
- package/dist/components/phone-number-input/phone-number-input.stories.d.ts +12 -0
- package/dist/components/progressbar/progress-bar-circle.d.ts +10 -0
- package/dist/components/progressbar/progressbar.stories.d.ts +6 -0
- package/dist/components/select/select.d.ts +3 -1
- package/dist/index.esm.js +7160 -1079
- package/dist/index.js +7179 -1085
- package/package.json +1 -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.d.ts +0 -3
- package/dist/components/partner-dashboard-chart/chart.d.ts +0 -3
- package/dist/components/partner-dashboard-chart/index.d.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface FavoriteCharityItemProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
index?: number;
|
|
5
|
+
charityLogoLink?: string;
|
|
6
|
+
charityName?: string;
|
|
7
|
+
charityFavorites?: boolean;
|
|
8
|
+
handleClick?: () => void;
|
|
9
|
+
handleClickItem?: () => void;
|
|
10
|
+
showHeartToggle?: boolean;
|
|
11
|
+
charityTextLink?: string;
|
|
12
|
+
width?: string;
|
|
13
|
+
}
|
|
14
|
+
declare const FavoriteCharityItem: React.FC<FavoriteCharityItemProps>;
|
|
15
|
+
export default FavoriteCharityItem;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import CenterDecorator from "../../utils/center-decorator";
|
|
3
|
+
declare const _default: {
|
|
4
|
+
title: string;
|
|
5
|
+
decorators: (typeof CenterDecorator)[];
|
|
6
|
+
component: React.FunctionComponent<import("./favorite-charity-item").FavoriteCharityItemProps>;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const favoriteCharityItemStory1: {
|
|
10
|
+
(): JSX.Element;
|
|
11
|
+
story: {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export declare const favoriteCharityItemStory: () => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as FavoriteCharityItem } from "./favorite-charity-item";
|
|
@@ -3,6 +3,7 @@ interface FieldLabelProps extends React.HTMLProps<HTMLLabelElement> {
|
|
|
3
3
|
large?: boolean;
|
|
4
4
|
children?: React.ReactNode;
|
|
5
5
|
required?: boolean;
|
|
6
|
+
asteriskColor?: string;
|
|
6
7
|
}
|
|
7
|
-
declare function FieldLabel({ large, className, children, required, ...rest }: FieldLabelProps): JSX.Element;
|
|
8
|
+
declare function FieldLabel({ large, className, children, required, asteriskColor, ...rest }: FieldLabelProps): JSX.Element;
|
|
8
9
|
export default FieldLabel;
|
|
@@ -40,6 +40,12 @@ export * from "./progressbar";
|
|
|
40
40
|
export * from "./start-campaign-card";
|
|
41
41
|
export * from "./nav";
|
|
42
42
|
export * from "./popup";
|
|
43
|
+
export * from "./partner-monthly-donations";
|
|
44
|
+
export * from "./partner-monthly-stats";
|
|
45
|
+
export * from "./table";
|
|
46
|
+
export * from "./partner-chart-stats";
|
|
47
|
+
export * from "./this-month-card";
|
|
48
|
+
export * from "./partner-toggle-button";
|
|
43
49
|
export * from "./footerV2";
|
|
44
50
|
export * from "./partner-monthly-donations";
|
|
45
51
|
export * from "./partner-monthly-stats";
|
|
@@ -47,3 +53,12 @@ export * from "./table";
|
|
|
47
53
|
export * from "./partner-chart-stats";
|
|
48
54
|
export * from "./this-month-card";
|
|
49
55
|
export * from "./partner-toggle-button";
|
|
56
|
+
export * from "./my-account-start-fundraise-card";
|
|
57
|
+
export * from "./my-account-choose-charity-card";
|
|
58
|
+
export * from "./favorite-charity-item";
|
|
59
|
+
export * from "./my-account-sidebar";
|
|
60
|
+
export * from "./my-account-frp-preview";
|
|
61
|
+
export * from "./my-account-stats-donated";
|
|
62
|
+
export * from "./my-account-stats-raised";
|
|
63
|
+
export * from "./input";
|
|
64
|
+
export * from "./my-account-frp-closed";
|
|
@@ -3,6 +3,9 @@ interface InputDefaltProps {
|
|
|
3
3
|
lable?: string;
|
|
4
4
|
required?: boolean;
|
|
5
5
|
placeholder?: string;
|
|
6
|
+
onChange: (value: string) => void;
|
|
7
|
+
value: string;
|
|
8
|
+
error?: string | null | boolean;
|
|
6
9
|
}
|
|
7
|
-
declare const Input: ({ lable, required, placeholder }: InputDefaltProps) => JSX.Element;
|
|
10
|
+
declare const Input: ({ lable, required, placeholder, value, onChange, error, }: InputDefaltProps) => JSX.Element;
|
|
8
11
|
export default Input;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as Input } from "./InputDefault";
|
|
@@ -4,5 +4,5 @@ export interface ModalImasgeProps {
|
|
|
4
4
|
modalImageSrc: string;
|
|
5
5
|
toggleModal: (arg: boolean) => void;
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
8
|
-
export default
|
|
7
|
+
declare const ModalImage: ({ isOpen, modalImageSrc, toggleModal, }: ModalImasgeProps) => JSX.Element;
|
|
8
|
+
export default ModalImage;
|
|
@@ -16,6 +16,8 @@ export interface ModalProps {
|
|
|
16
16
|
acceptText?: string;
|
|
17
17
|
cancelText?: string;
|
|
18
18
|
disableAcceptButton?: boolean;
|
|
19
|
+
isConfirmationMessage?: boolean;
|
|
20
|
+
onCancel?: () => void;
|
|
19
21
|
}
|
|
20
|
-
declare const Modal: ({ id, isOpen, toggleModal, modalContent, modalTitle, onAccept, setWidth, buttonAlign, buttonColor, noCancelButton, noCloseButton, acceptText, cancelText, disableAcceptButton, minimal, }: ModalProps) => JSX.Element;
|
|
22
|
+
declare const Modal: ({ id, isOpen, toggleModal, modalContent, modalTitle, onAccept, setWidth, buttonAlign, buttonColor, noCancelButton, noCloseButton, acceptText, cancelText, disableAcceptButton, minimal, isConfirmationMessage, onCancel, }: ModalProps) => JSX.Element;
|
|
21
23
|
export default Modal;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as MyAccountChooseCharityCard, } from "./my-account-choose-charity-card";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface MyAccountChooseCharityCardProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
buttonText?: string;
|
|
7
|
+
onClick?: () => void;
|
|
8
|
+
width: string;
|
|
9
|
+
}
|
|
10
|
+
declare const MyAccountChooseCharityCard: ({ className, title, buttonText, onClick, width, }: MyAccountChooseCharityCardProps) => JSX.Element;
|
|
11
|
+
export default MyAccountChooseCharityCard;
|
|
@@ -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: () => JSX.Element;
|
|
6
|
+
component: ({ className, title, buttonText, onClick, width, }: import("./my-account-choose-charity-card").MyAccountChooseCharityCardProps) => JSX.Element;
|
|
7
7
|
};
|
|
8
8
|
export default _default;
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const chooseCharityStory: {
|
|
10
10
|
(): JSX.Element;
|
|
11
11
|
story: {
|
|
12
12
|
name: string;
|
|
@@ -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,11 @@
|
|
|
1
|
+
/// <reference types="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
|
+
}
|
|
10
|
+
declare const FrpInfomation: ({ donations, amountRaised, amountGoal, sqSize, strokeWidth, closedDate, }: FrpInfomationProps) => JSX.Element;
|
|
11
|
+
export default FrpInfomation;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as MyAccountFrpClosed } from "./my-account-frp-closed";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="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
|
+
}
|
|
14
|
+
declare const MyAccountFrpClosed: ({ img, link, title, amountGoal, amountRaised, donations, sqSize, strokeWidth, frpColor, closedDate, }: MyAccountFrpClosedProps) => JSX.Element;
|
|
15
|
+
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
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface FrpInfomationProps {
|
|
3
|
+
amountOfweek: number;
|
|
4
|
+
donations: number;
|
|
5
|
+
daysToGo: number;
|
|
6
|
+
amountRaised: number;
|
|
7
|
+
amountGoal: number;
|
|
8
|
+
sqSize: number;
|
|
9
|
+
strokeWidth: number;
|
|
10
|
+
manageLink?: string;
|
|
11
|
+
}
|
|
12
|
+
declare const FrpInfomation: ({ amountOfweek, donations, daysToGo, amountRaised, amountGoal, sqSize, strokeWidth, manageLink, }: FrpInfomationProps) => JSX.Element;
|
|
13
|
+
export default FrpInfomation;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface FrpPreviewImgProps {
|
|
3
|
+
img?: string;
|
|
4
|
+
link?: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
frpColor?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const FrpPreviewImg: ({ img, link, title, frpColor }: FrpPreviewImgProps) => JSX.Element;
|
|
9
|
+
export default FrpPreviewImg;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as MyAccountFrpPreview } from "./my-account-frp-preview";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface MyAccountFrpPreviewProps {
|
|
3
|
+
img?: string;
|
|
4
|
+
link?: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
amountOfweek: number;
|
|
7
|
+
donations: number;
|
|
8
|
+
daysToGo: number;
|
|
9
|
+
amountRaised: number;
|
|
10
|
+
amountGoal: number;
|
|
11
|
+
sqSize: number;
|
|
12
|
+
strokeWidth: number;
|
|
13
|
+
manageLink?: string;
|
|
14
|
+
frpColor?: string;
|
|
15
|
+
}
|
|
16
|
+
declare const MyAccountFrpPreview: ({ img, link, title, amountGoal, amountOfweek, amountRaised, donations, sqSize, strokeWidth, daysToGo, manageLink, frpColor, }: MyAccountFrpPreviewProps) => JSX.Element;
|
|
17
|
+
export default MyAccountFrpPreview;
|
|
@@ -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 MyAccountFrpPreviewStory: {
|
|
8
|
+
(): JSX.Element;
|
|
9
|
+
story: {
|
|
10
|
+
name: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export declare const MyAccountFrpPreviewStoryV3: {
|
|
14
|
+
(): JSX.Element;
|
|
15
|
+
story: {
|
|
16
|
+
name: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export declare const MyAccountFrpPreviewStoryV2: {
|
|
20
|
+
(): JSX.Element;
|
|
21
|
+
story: {
|
|
22
|
+
name: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const Icons: {
|
|
3
|
+
dashboard: (props?: {}) => JSX.Element;
|
|
4
|
+
collapse: (props?: {}) => JSX.Element;
|
|
5
|
+
expand: () => JSX.Element;
|
|
6
|
+
donations: () => JSX.Element;
|
|
7
|
+
account: () => JSX.Element;
|
|
8
|
+
support: () => JSX.Element;
|
|
9
|
+
additional: () => JSX.Element;
|
|
10
|
+
minus: () => JSX.Element;
|
|
11
|
+
dot: () => JSX.Element;
|
|
12
|
+
menu: () => JSX.Element;
|
|
13
|
+
close: () => JSX.Element;
|
|
14
|
+
};
|
|
15
|
+
export default Icons;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as MyAccountSidebar } from "./my-account-sidebar";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface MyAccountSidebarProps {
|
|
3
|
+
listMenu: Array<ItemMenu>;
|
|
4
|
+
dashboard: ItemMenu;
|
|
5
|
+
account?: ItemMenu;
|
|
6
|
+
contract?: ItemMenu;
|
|
7
|
+
handleSetOverlay: (value: boolean) => void;
|
|
8
|
+
activeMenu: ItemMenu;
|
|
9
|
+
}
|
|
10
|
+
declare type ItemMenu = {
|
|
11
|
+
id: string;
|
|
12
|
+
icon?: any;
|
|
13
|
+
label: string;
|
|
14
|
+
href?: string;
|
|
15
|
+
items?: Array<ItemMenu>;
|
|
16
|
+
};
|
|
17
|
+
declare const MyAccountSidebar: ({ listMenu, dashboard, account, contract, handleSetOverlay, activeMenu, }: MyAccountSidebarProps) => JSX.Element;
|
|
18
|
+
export default MyAccountSidebar;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as MyAccountStartFundraiseCard, } from "./my-account-start-fundraise-card";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface MyAccountStartFundraiseCardProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
buttonText?: string;
|
|
7
|
+
onClick?: () => void;
|
|
8
|
+
width: string;
|
|
9
|
+
}
|
|
10
|
+
declare const MyAccountStartFundraiseCard: ({ className, title, buttonText, onClick, width, }: MyAccountStartFundraiseCardProps) => JSX.Element;
|
|
11
|
+
export default MyAccountStartFundraiseCard;
|
package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.stories.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import CenterDecorator from "../../utils/center-decorator";
|
|
3
|
+
declare const _default: {
|
|
4
|
+
title: string;
|
|
5
|
+
decorators: (typeof CenterDecorator)[];
|
|
6
|
+
component: ({ className, title, buttonText, onClick, width, }: import("./my-account-start-fundraise-card").MyAccountStartFundraiseCardProps) => JSX.Element;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const startFundraiseStory: {
|
|
10
|
+
(): JSX.Element;
|
|
11
|
+
story: {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as MyAccountStatsDonated } from "./my-account-stats-donated";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface MyAccountStatsDonatedProps {
|
|
3
|
+
amount: number;
|
|
4
|
+
donations: number;
|
|
5
|
+
viewDonationLink?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const MyAccountStatsDonated: ({ amount, donations, viewDonationLink, }: MyAccountStatsDonatedProps) => JSX.Element;
|
|
8
|
+
export default MyAccountStatsDonated;
|
|
@@ -0,0 +1,12 @@
|
|
|
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 MyAccountStatsDonatedStory: {
|
|
8
|
+
(): JSX.Element;
|
|
9
|
+
story: {
|
|
10
|
+
name: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as MyAccountStatsRaised } from "./my-account-stats-raised";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface MyAccountStatsRaisedProps {
|
|
3
|
+
amount: number;
|
|
4
|
+
donations: number;
|
|
5
|
+
campaigns: number;
|
|
6
|
+
}
|
|
7
|
+
declare const MyAccountStatsRaised: ({ amount, donations, campaigns, }: MyAccountStatsRaisedProps) => JSX.Element;
|
|
8
|
+
export default MyAccountStatsRaised;
|
|
@@ -0,0 +1,12 @@
|
|
|
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 MyAccountStatsRaisedStory: {
|
|
8
|
+
(): JSX.Element;
|
|
9
|
+
story: {
|
|
10
|
+
name: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -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,18 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CountryCode } from "libphonenumber-js";
|
|
3
|
+
declare type PhoneInputProps = {
|
|
4
|
+
values: {
|
|
5
|
+
number: string;
|
|
6
|
+
countryCallingCode: string;
|
|
7
|
+
country: string;
|
|
8
|
+
};
|
|
9
|
+
onChange: (value: string, name: string) => void;
|
|
10
|
+
label?: React.ReactNode;
|
|
11
|
+
error?: string | null;
|
|
12
|
+
required?: boolean;
|
|
13
|
+
defaultCountry?: CountryCode;
|
|
14
|
+
placeholder?: string;
|
|
15
|
+
color?: string;
|
|
16
|
+
};
|
|
17
|
+
declare function PhoneInput({ values, onChange, defaultCountry, label, required, placeholder, error, }: PhoneInputProps): JSX.Element;
|
|
18
|
+
export default PhoneInput;
|
|
@@ -11,3 +11,15 @@ export declare const PhoneNumberInputStory: {
|
|
|
11
11
|
name: string;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
+
export declare const PhoneInputStory: {
|
|
15
|
+
(): JSX.Element;
|
|
16
|
+
story: {
|
|
17
|
+
name: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export declare const PhoneNumberInputV2: {
|
|
21
|
+
(): JSX.Element;
|
|
22
|
+
story: {
|
|
23
|
+
name: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface CircularProgressProps {
|
|
3
|
+
percentage: number;
|
|
4
|
+
strokeWidth: number;
|
|
5
|
+
sqSize: number;
|
|
6
|
+
color: string;
|
|
7
|
+
centerContent?: JSX.Element;
|
|
8
|
+
}
|
|
9
|
+
declare const CircularProgress: ({ percentage, strokeWidth, sqSize, centerContent, color, }: CircularProgressProps) => JSX.Element;
|
|
10
|
+
export default CircularProgress;
|
|
@@ -17,7 +17,9 @@ export interface SelectProps extends Omit<MDCSelectProps, "onEnhancedChange" | "
|
|
|
17
17
|
isHelperTextPersistent?: boolean;
|
|
18
18
|
noArrow?: boolean;
|
|
19
19
|
color?: string;
|
|
20
|
+
asteriskColor?: string;
|
|
20
21
|
error?: boolean | string;
|
|
22
|
+
customTrailingIcon?: boolean;
|
|
21
23
|
}
|
|
22
|
-
declare const Select: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, ...rest }: SelectProps) => JSX.Element;
|
|
24
|
+
declare const Select: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, asteriskColor, customTrailingIcon, ...rest }: SelectProps) => JSX.Element;
|
|
23
25
|
export default Select;
|