@mycause/ui 0.16.9 → 0.17.1
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/components/campaign-card/campaign-card.d.ts +9 -0
- package/dist/components/campaign-card/campaign-card.stories.d.ts +14 -0
- package/dist/components/campaign-card/index.d.ts +1 -0
- package/dist/components/campaign-of-month/campaign-of-month.d.ts +14 -0
- package/dist/components/campaign-of-month/campaign-of-month.stories.d.ts +14 -0
- package/dist/components/campaign-of-month/index.d.ts +1 -0
- package/dist/components/charity-card/charity-card.d.ts +7 -0
- package/dist/components/charity-card/charity-card.stories.d.ts +14 -0
- package/dist/components/charity-card/index.d.ts +1 -0
- package/dist/components/comment-section/comment-section-v2/comment-section-v2.d.ts +31 -0
- package/dist/components/comment-section/comment-section-v2/sub-comments-v2.d.ts +11 -0
- package/dist/components/comment-section/comment-section.d.ts +1 -0
- package/dist/components/comment-section/comment-section.stories.d.ts +6 -0
- package/dist/components/comment-section/index.d.ts +1 -0
- package/dist/components/donate-card/donate-card.d.ts +8 -0
- package/dist/components/donate-card/donate-card.stories.d.ts +14 -0
- package/dist/components/donate-card/index.d.ts +1 -0
- package/dist/components/donation-form/donation-form-v2/donation-form-v2.d.ts +13 -0
- package/dist/components/donation-form/donation-form.stories.d.ts +6 -0
- package/dist/components/donation-form/index.d.ts +1 -0
- package/dist/components/featured-campaign-card/featured-campaign-card.d.ts +17 -0
- package/dist/components/featured-campaign-card/featured-campaign-card.stories.d.ts +14 -0
- package/dist/components/featured-campaign-card/index.d.ts +1 -0
- package/dist/components/fundraising-section/fundraising-section.d.ts +9 -0
- package/dist/components/fundraising-section/fundraising-section.stories.d.ts +14 -0
- package/dist/components/fundraising-section/index.d.ts +1 -0
- package/dist/components/hero-banner/hero-banner.d.ts +9 -0
- package/dist/components/hero-banner/hero-banner.stories.d.ts +14 -0
- package/dist/components/hero-banner/index.d.ts +1 -0
- package/dist/components/horizontalbar/horizontalbar.d.ts +11 -0
- package/dist/components/horizontalbar/horizontalbar.stories.d.ts +26 -0
- package/dist/components/horizontalbar/index.d.ts +1 -0
- package/dist/components/icon/{toggle-button.d.ts → heart-toggle.d.ts} +3 -3
- package/dist/components/icon/{toggle-button.stories.d.ts → heart-toggle.stories.d.ts} +1 -1
- package/dist/components/icon/index.d.ts +1 -1
- package/dist/components/index.d.ts +12 -0
- package/dist/components/info-represent-campaign/index.d.ts +1 -0
- package/dist/components/info-represent-campaign/info-represent-campaign.d.ts +11 -0
- package/dist/components/info-represent-campaign/info-represent-campaign.stories.d.ts +12 -0
- package/dist/components/list/list.d.ts +7 -2
- package/dist/components/list/list.stories.d.ts +2 -2
- package/dist/components/logo/logo-type.d.ts +2 -1
- package/dist/components/nav/icons/IconBigger.d.ts +5 -0
- package/dist/components/nav/icons/IconSmaller.d.ts +5 -0
- package/dist/components/nav/index.d.ts +1 -0
- package/dist/components/nav/nav-actions.d.ts +5 -0
- package/dist/components/nav/nav-bar.d.ts +7 -0
- package/dist/components/nav/nav-call-to-action.d.ts +5 -0
- package/dist/components/nav/nav-expanded-charity.d.ts +13 -0
- package/dist/components/nav/nav-expanded.d.ts +14 -0
- package/dist/components/nav/nav-list.d.ts +29 -0
- package/dist/components/nav/nav-menu-control.d.ts +8 -0
- package/dist/components/nav/nav-menu.d.ts +12 -0
- package/dist/components/nav/nav-search-control.d.ts +8 -0
- package/dist/components/nav/nav-search.d.ts +10 -0
- package/dist/components/nav/nav-sign-in-control.d.ts +12 -0
- package/dist/components/nav/nav-user-menu-items.d.ts +20 -0
- package/dist/components/nav/nav-user-menu.d.ts +18 -0
- package/dist/components/nav/nav.d.ts +56 -0
- package/dist/components/nav/nav.stories.d.ts +11 -0
- package/dist/components/popup/index.d.ts +1 -0
- package/dist/components/popup/popup.d.ts +8 -0
- package/dist/components/popup/popup.stories.d.ts +14 -0
- package/dist/components/progressbar/index.d.ts +1 -0
- package/dist/components/progressbar/progressbar.d.ts +8 -0
- package/dist/components/progressbar/progressbar.stories.d.ts +14 -0
- package/dist/components/start-campaign-card/index.d.ts +1 -0
- package/dist/components/start-campaign-card/start-campaign-card.d.ts +8 -0
- package/dist/components/start-campaign-card/start-campaign-card.stories.d.ts +14 -0
- package/dist/components/tabs/nav-tabs.d.ts +18 -0
- package/dist/index.esm.js +2011 -61
- package/dist/index.js +2025 -61
- package/dist/theme/theme.d.ts +4 -0
- package/package.json +1 -1
- package/styles/index.css +4 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface CampaignCardProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
imageURL?: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const CampaignCard: ({ className, imageURL, title, description, }: CampaignCardProps) => JSX.Element;
|
|
9
|
+
export default CampaignCard;
|
|
@@ -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, imageURL, title, description, }: import("./campaign-card").CampaignCardProps) => JSX.Element;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const campaincard: {
|
|
10
|
+
(): JSX.Element;
|
|
11
|
+
story: {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CampaignCard } from "./campaign-card";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface CampaignOfMonthProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
text?: string;
|
|
6
|
+
imageUrl?: string;
|
|
7
|
+
rised?: number;
|
|
8
|
+
donation?: number;
|
|
9
|
+
goal?: number;
|
|
10
|
+
btnText?: string;
|
|
11
|
+
onClick?: (e: React.MouseEvent<HTMLButtonElement>) => void;
|
|
12
|
+
}
|
|
13
|
+
declare const CampaignOfMonth: ({ className, title, text, imageUrl, rised, donation, goal, btnText, onClick, }: CampaignOfMonthProps) => JSX.Element;
|
|
14
|
+
export default CampaignOfMonth;
|
|
@@ -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, text, imageUrl, rised, donation, goal, btnText, onClick, }: import("./campaign-of-month").CampaignOfMonthProps) => JSX.Element;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const campaignofmonth: {
|
|
10
|
+
(): JSX.Element;
|
|
11
|
+
story: {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CampaignOfMonth } from "./campaign-of-month";
|
|
@@ -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 }: import("./charity-card").CharityCardProps) => JSX.Element;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const charitycard: {
|
|
10
|
+
(): JSX.Element;
|
|
11
|
+
story: {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CharityCard } from "./charity-card";
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SubCommentsV2Props } from "./sub-comments-v2";
|
|
3
|
+
export declare type CommentTypeV2 = {
|
|
4
|
+
amount?: number | string;
|
|
5
|
+
claps?: 0 | 1;
|
|
6
|
+
comment?: string | null;
|
|
7
|
+
donationDate?: string | number;
|
|
8
|
+
firstName?: string;
|
|
9
|
+
id?: number;
|
|
10
|
+
isAnonymous?: boolean;
|
|
11
|
+
kisses?: 0 | 1;
|
|
12
|
+
lastName?: string;
|
|
13
|
+
likes?: 0 | 1;
|
|
14
|
+
message?: string;
|
|
15
|
+
prays?: 1 | 0;
|
|
16
|
+
profileImage?: string | null;
|
|
17
|
+
tears?: 0 | 1;
|
|
18
|
+
thumbs?: 0 | 1;
|
|
19
|
+
userId?: number | string | null;
|
|
20
|
+
campaignCreator?: string;
|
|
21
|
+
subComment?: Array<SubCommentsV2Props>;
|
|
22
|
+
};
|
|
23
|
+
export declare const checkLastElement: (key: number, itemLength: number) => boolean;
|
|
24
|
+
interface ComboFieldProps {
|
|
25
|
+
comments: Array<CommentTypeV2 & {
|
|
26
|
+
subComment?: Array<CommentTypeV2>;
|
|
27
|
+
}>;
|
|
28
|
+
showMore?: () => void;
|
|
29
|
+
}
|
|
30
|
+
declare const CommentSectionV2: ({ comments, showMore }: ComboFieldProps) => JSX.Element;
|
|
31
|
+
export default CommentSectionV2;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare type SubCommentsV2Props = {
|
|
3
|
+
profileImage: string;
|
|
4
|
+
firstName?: string;
|
|
5
|
+
lastName?: string;
|
|
6
|
+
comment: string;
|
|
7
|
+
};
|
|
8
|
+
declare const SubCommentsV2: ({ comments, }: {
|
|
9
|
+
comments: SubCommentsV2Props[];
|
|
10
|
+
}) => JSX.Element;
|
|
11
|
+
export default SubCommentsV2;
|
|
@@ -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, description, }: import("./donate-card").DonateCardProps) => JSX.Element;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const donatecard: {
|
|
10
|
+
(): JSX.Element;
|
|
11
|
+
story: {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as DonateCard } from "./donate-card";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { DonationOptionsProps } from "../donation-form";
|
|
3
|
+
export interface DonationCampaignFormProps {
|
|
4
|
+
id?: string;
|
|
5
|
+
donationOption: Array<DonationOptionsProps>;
|
|
6
|
+
rised: number;
|
|
7
|
+
donation: number;
|
|
8
|
+
target: number;
|
|
9
|
+
clickOnShare: () => void;
|
|
10
|
+
clickOnDonation: () => void;
|
|
11
|
+
}
|
|
12
|
+
declare const DonationFormV2: ({ donationOption, rised, donation, target, clickOnShare, clickOnDonation, }: DonationCampaignFormProps) => JSX.Element;
|
|
13
|
+
export default DonationFormV2;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface FeaturedCampaignCardProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
imageURL?: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
completed?: number;
|
|
8
|
+
maxWidth?: number;
|
|
9
|
+
donation?: number;
|
|
10
|
+
raised?: number;
|
|
11
|
+
goal?: number;
|
|
12
|
+
onClick: () => void;
|
|
13
|
+
fundraisingText: string;
|
|
14
|
+
handleImageError?: () => void;
|
|
15
|
+
}
|
|
16
|
+
declare const FeaturedCampaignCard: ({ className, imageURL, title, donation, raised, goal, completed, maxWidth, onClick, fundraisingText, handleImageError, }: FeaturedCampaignCardProps) => JSX.Element;
|
|
17
|
+
export default FeaturedCampaignCard;
|
|
@@ -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, imageURL, title, donation, raised, goal, completed, maxWidth, onClick, fundraisingText, handleImageError, }: import("./featured-campaign-card").FeaturedCampaignCardProps) => JSX.Element;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const featuredcampaigncard: {
|
|
10
|
+
(): JSX.Element;
|
|
11
|
+
story: {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as FeaturedCampaignCard } from "./featured-campaign-card";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface FundraisingSectionProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
imageUrl?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const FundraisingSection: ({ className, title, description, imageUrl, }: FundraisingSectionProps) => JSX.Element;
|
|
9
|
+
export default FundraisingSection;
|
|
@@ -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, description, imageUrl, }: import("./fundraising-section").FundraisingSectionProps) => JSX.Element;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const fundraisingsection: {
|
|
10
|
+
(): JSX.Element;
|
|
11
|
+
story: {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as FundraisingSection } from "./fundraising-section";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface HeroBannerProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
imageUrl?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const HeroBnner: ({ className, title, description, imageUrl, }: HeroBannerProps) => JSX.Element;
|
|
9
|
+
export default HeroBnner;
|
|
@@ -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, description, imageUrl, }: import("./hero-banner").HeroBannerProps) => JSX.Element;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const herobanner: {
|
|
10
|
+
(): JSX.Element;
|
|
11
|
+
story: {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as HeroBanner } from "./hero-banner";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface HorizontalBarProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
barColor?: string;
|
|
5
|
+
dotColor?: string;
|
|
6
|
+
width?: number;
|
|
7
|
+
height?: number;
|
|
8
|
+
marginLeft?: number;
|
|
9
|
+
}
|
|
10
|
+
declare const HorizontalBar: ({ className, width, height, barColor, dotColor, marginLeft, }: HorizontalBarProps) => JSX.Element;
|
|
11
|
+
export default HorizontalBar;
|
|
@@ -0,0 +1,26 @@
|
|
|
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, width, height, barColor, dotColor, marginLeft, }: import("./horizontalbar").HorizontalBarProps) => JSX.Element;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const horizontalbar: {
|
|
10
|
+
(): JSX.Element;
|
|
11
|
+
story: {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export declare const horizontalbar2: {
|
|
16
|
+
(): JSX.Element;
|
|
17
|
+
story: {
|
|
18
|
+
name: string;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
export declare const horizontalbar3: {
|
|
22
|
+
(): JSX.Element;
|
|
23
|
+
story: {
|
|
24
|
+
name: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as HorizontalBar } from "./horizontalbar";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { IconButtonProps as MDCIconButtonProps } from "@material/react-icon-button";
|
|
3
3
|
declare type IconButtonTypes = HTMLButtonElement | HTMLAnchorElement;
|
|
4
|
-
export interface
|
|
4
|
+
export interface HeartToggleProps extends Omit<MDCIconButtonProps<IconButtonTypes>, "onChange" | "value" | "ref" | "children"> {
|
|
5
5
|
active: React.ReactNode;
|
|
6
6
|
inactive: React.ReactNode;
|
|
7
7
|
onChange?: (value: boolean) => void;
|
|
8
8
|
value: boolean;
|
|
9
9
|
}
|
|
10
|
-
declare const
|
|
11
|
-
export default
|
|
10
|
+
declare const HeartToggle: React.ForwardRefExoticComponent<HeartToggleProps & React.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
11
|
+
export default HeartToggle;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { default as Icon } from "./icon";
|
|
2
2
|
export { default as IconButton } from "./icon-button";
|
|
3
3
|
export { default as IconButtonGroup } from "./icon-button-group";
|
|
4
|
-
export { default as
|
|
4
|
+
export { default as HeartToggle } from "./heart-toggle";
|
|
@@ -28,3 +28,15 @@ export * from "./tabs";
|
|
|
28
28
|
export * from "./text-field";
|
|
29
29
|
export * from "./text";
|
|
30
30
|
export * from "./uploader";
|
|
31
|
+
export * from "./campaign-card";
|
|
32
|
+
export * from "./campaign-of-month";
|
|
33
|
+
export * from "./charity-card";
|
|
34
|
+
export * from "./donate-card";
|
|
35
|
+
export * from "./featured-campaign-card";
|
|
36
|
+
export * from "./fundraising-section";
|
|
37
|
+
export * from "./hero-banner";
|
|
38
|
+
export * from "./horizontalbar";
|
|
39
|
+
export * from "./progressbar";
|
|
40
|
+
export * from "./start-campaign-card";
|
|
41
|
+
export * from "./nav";
|
|
42
|
+
export * from "./popup";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as InfoRepresentCampaign } from "./info-represent-campaign";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface InfoRepresentCampaignProps {
|
|
3
|
+
id?: string;
|
|
4
|
+
campaignCreator: string;
|
|
5
|
+
rasingFundsFor: string;
|
|
6
|
+
fundsBankedTo: string;
|
|
7
|
+
avatar: string;
|
|
8
|
+
clickOnFollow: () => void;
|
|
9
|
+
}
|
|
10
|
+
declare const InfoRepresentCampaign: ({ campaignCreator, rasingFundsFor, fundsBankedTo, avatar, clickOnFollow, }: InfoRepresentCampaignProps) => JSX.Element;
|
|
11
|
+
export default InfoRepresentCampaign;
|
|
@@ -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 InforRepresentCampaignStories: {
|
|
8
|
+
(): JSX.Element;
|
|
9
|
+
story: {
|
|
10
|
+
name: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -4,7 +4,11 @@ import { ColorSpecifier } from "../../theme/theme";
|
|
|
4
4
|
export declare type ItemType = {
|
|
5
5
|
id?: string;
|
|
6
6
|
metanospace?: boolean;
|
|
7
|
-
icon?: IconProps
|
|
7
|
+
icon?: IconProps & {
|
|
8
|
+
tooltip?: string;
|
|
9
|
+
tooltipheight?: number;
|
|
10
|
+
arrow?: string;
|
|
11
|
+
};
|
|
8
12
|
primarytext?: string;
|
|
9
13
|
primarytextcolor?: ColorSpecifier;
|
|
10
14
|
secondarytext?: string;
|
|
@@ -32,6 +36,7 @@ export declare type ListProps = {
|
|
|
32
36
|
showToggleMeta?: boolean;
|
|
33
37
|
setItems?: (e: Array<ItemType>) => void;
|
|
34
38
|
items: Array<ItemType>;
|
|
39
|
+
tooltipArrow?: number;
|
|
35
40
|
};
|
|
36
|
-
declare const List: ({ items, divider, fullWidth, iconWidth, centerText, itemHeight, overflowHidden, breakspaces, iconsNotRounded, style, textGap, setItems, showToggleMeta, }: ListProps) => JSX.Element;
|
|
41
|
+
declare const List: ({ items, divider, fullWidth, iconWidth, centerText, itemHeight, overflowHidden, breakspaces, iconsNotRounded, style, textGap, setItems, showToggleMeta, tooltipArrow, }: ListProps) => JSX.Element;
|
|
37
42
|
export default List;
|
|
@@ -17,13 +17,13 @@ export declare const ListDisabledtStory: {
|
|
|
17
17
|
name: string;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
-
export declare const
|
|
20
|
+
export declare const ListNoDividerStory: {
|
|
21
21
|
(): JSX.Element;
|
|
22
22
|
story: {
|
|
23
23
|
name: string;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
-
export declare const
|
|
26
|
+
export declare const ListWithIconTooltipStory: {
|
|
27
27
|
(): JSX.Element;
|
|
28
28
|
story: {
|
|
29
29
|
name: string;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare type LogoTypeProps = {
|
|
3
3
|
size?: "large";
|
|
4
|
+
isDark?: boolean;
|
|
4
5
|
};
|
|
5
6
|
/**
|
|
6
7
|
* A dummy mycause logo
|
|
7
8
|
*/
|
|
8
|
-
declare function LogoType({ size }: LogoTypeProps): JSX.Element;
|
|
9
|
+
declare function LogoType({ size, isDark }: LogoTypeProps): JSX.Element;
|
|
9
10
|
export default LogoType;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Nav } from "./nav";
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ButtonProps } from "../button/button";
|
|
3
|
+
declare type NavigationCallToActionProps = Omit<ButtonProps, "color">;
|
|
4
|
+
declare function NavigationCallToAction(props: NavigationCallToActionProps): JSX.Element;
|
|
5
|
+
export default NavigationCallToAction;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { HybridNavigationLink } from "./nav-list";
|
|
3
|
+
export declare type NavigationExpandedCharityProps = {
|
|
4
|
+
links?: Array<HybridNavigationLink>;
|
|
5
|
+
children?: React.ReactNode;
|
|
6
|
+
banner?: React.ReactNode;
|
|
7
|
+
onRequestClose: () => void;
|
|
8
|
+
className?: string;
|
|
9
|
+
action: HybridNavigationLink | null;
|
|
10
|
+
actionRaised?: HybridNavigationLink | null;
|
|
11
|
+
};
|
|
12
|
+
declare function NavigationExpandedCharity({ children, onRequestClose, className, banner, action, actionRaised, }: NavigationExpandedCharityProps): JSX.Element;
|
|
13
|
+
export default NavigationExpandedCharity;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { HybridNavigationLink } from "./nav-list";
|
|
3
|
+
export declare type NavigationExpandedProps = {
|
|
4
|
+
links?: Array<HybridNavigationLink>;
|
|
5
|
+
children?: React.ReactNode;
|
|
6
|
+
banner?: React.ReactNode;
|
|
7
|
+
onRequestClose: () => void;
|
|
8
|
+
className?: string;
|
|
9
|
+
action: HybridNavigationLink | null;
|
|
10
|
+
actionRaised?: HybridNavigationLink | null;
|
|
11
|
+
isSubMenu?: boolean;
|
|
12
|
+
};
|
|
13
|
+
declare function NavigationExpanded({ links, children, onRequestClose, className, banner, action, actionRaised, isSubMenu, }: NavigationExpandedProps): JSX.Element;
|
|
14
|
+
export default NavigationExpanded;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare type HrefNavigationLink = {
|
|
3
|
+
href: string;
|
|
4
|
+
label: React.ReactNode;
|
|
5
|
+
subLabel: string;
|
|
6
|
+
analyticsId?: string;
|
|
7
|
+
icon?: string;
|
|
8
|
+
};
|
|
9
|
+
export declare type ClickNavigationLink = {
|
|
10
|
+
onClick?: () => void;
|
|
11
|
+
id: string;
|
|
12
|
+
label: React.ReactNode;
|
|
13
|
+
subLabel: string;
|
|
14
|
+
more?: boolean;
|
|
15
|
+
analyticsId?: string;
|
|
16
|
+
icon?: string;
|
|
17
|
+
};
|
|
18
|
+
export declare type HybridNavigationLink = HrefNavigationLink | ClickNavigationLink;
|
|
19
|
+
export declare type NavigationListItem = HybridNavigationLink & {
|
|
20
|
+
children?: React.ReactNode;
|
|
21
|
+
};
|
|
22
|
+
export declare type NavigationMenuListProps = {
|
|
23
|
+
items: Array<NavigationListItem>;
|
|
24
|
+
onClickItem?: (id: string) => void;
|
|
25
|
+
size?: "normal" | "large" | "long";
|
|
26
|
+
active?: string | null;
|
|
27
|
+
};
|
|
28
|
+
declare function NavigationList({ items, onClickItem, active, size, }: NavigationMenuListProps): JSX.Element;
|
|
29
|
+
export default NavigationList;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface NavigationMenuControlProps extends React.HTMLProps<HTMLDivElement> {
|
|
3
|
+
isMenuOpen: boolean;
|
|
4
|
+
onChangeMenuOpen: (isOpen: boolean) => void;
|
|
5
|
+
isDark?: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare function NavigationMenuControl({ isMenuOpen, onChangeMenuOpen, className, isDark, ...rest }: NavigationMenuControlProps): JSX.Element;
|
|
8
|
+
export default NavigationMenuControl;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { HybridNavigationLink } from "./nav-list";
|
|
3
|
+
export declare type NavigationMenuProps = {
|
|
4
|
+
links: Array<HybridNavigationLink>;
|
|
5
|
+
onClickItem: (id: string) => void;
|
|
6
|
+
sublinks: Array<HybridNavigationLink> | null;
|
|
7
|
+
action: HybridNavigationLink | null;
|
|
8
|
+
actionRaised?: HybridNavigationLink | null;
|
|
9
|
+
active: string | null;
|
|
10
|
+
};
|
|
11
|
+
export declare function NavigationMenu({ links, sublinks, active, onClickItem, }: NavigationMenuProps): JSX.Element;
|
|
12
|
+
export default NavigationMenu;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface NavigationSearchControlProps {
|
|
3
|
+
onChangeSearchOpen: (isOpen: boolean) => void;
|
|
4
|
+
analyticsId?: string;
|
|
5
|
+
isDark?: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare function NavigationSearchControl({ onChangeSearchOpen, analyticsId, isDark, }: NavigationSearchControlProps): JSX.Element;
|
|
8
|
+
export default NavigationSearchControl;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface NavigationSearchProps {
|
|
3
|
+
value: string;
|
|
4
|
+
onChange: (value: string) => void;
|
|
5
|
+
onSubmit: () => void;
|
|
6
|
+
onCancel: () => void;
|
|
7
|
+
isDark?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare function NavigationSearch({ value, onChange, onSubmit, onCancel, isDark, }: NavigationSearchProps): JSX.Element;
|
|
10
|
+
export default NavigationSearch;
|