@mycause/ui 0.0.0-ca5358d9 → 0.0.0-ca6f005f

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.
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ export interface DonationCampaignFormProps {
3
+ id?: string;
4
+ }
5
+ declare const DonationFormV2: ({ id }: DonationCampaignFormProps) => JSX.Element;
6
+ export default DonationFormV2;
@@ -10,3 +10,9 @@ export declare const DonationFormStories: {
10
10
  name: string;
11
11
  };
12
12
  };
13
+ export declare const DonationCampaignFormStories: {
14
+ (): JSX.Element;
15
+ story: {
16
+ name: string;
17
+ };
18
+ };
@@ -1 +1,2 @@
1
1
  export { default as DonationForm } from "./donation-form";
2
+ export { default as DonationFormV2 } from "./donation-form-v2/donation-form-v2";
@@ -9,6 +9,8 @@ export interface FeaturedCampaignCardProps {
9
9
  donation?: number;
10
10
  raised?: number;
11
11
  goal?: number;
12
+ onClick: () => void;
13
+ fundraisingText: string;
12
14
  }
13
- declare const FeaturedCampaignCard: ({ className, imageURL, title, donation, raised, goal, completed, width, }: FeaturedCampaignCardProps) => JSX.Element;
15
+ declare const FeaturedCampaignCard: ({ className, imageURL, title, donation, raised, goal, completed, width, onClick, fundraisingText, }: FeaturedCampaignCardProps) => JSX.Element;
14
16
  export default FeaturedCampaignCard;
@@ -3,7 +3,7 @@ import CenterDecorator from "../../utils/center-decorator";
3
3
  declare const _default: {
4
4
  title: string;
5
5
  decorators: (typeof CenterDecorator)[];
6
- component: ({ className, imageURL, title, donation, raised, goal, completed, width, }: import("./featured-campaign-card").FeaturedCampaignCardProps) => JSX.Element;
6
+ component: ({ className, imageURL, title, donation, raised, goal, completed, width, onClick, fundraisingText, }: import("./featured-campaign-card").FeaturedCampaignCardProps) => JSX.Element;
7
7
  };
8
8
  export default _default;
9
9
  export declare const featuredcampaigncard: {
@@ -0,0 +1 @@
1
+ export { default as InfoInsteadCampaign } from "./info-procurator-campaign";
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ export interface DonationCampaignFormProps {
3
+ id?: string;
4
+ }
5
+ declare const InfoProcuratorCampaign: ({ id }: DonationCampaignFormProps) => JSX.Element;
6
+ export default InfoProcuratorCampaign;
@@ -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 InfoInsteadCampaignStories: {
8
+ (): JSX.Element;
9
+ story: {
10
+ name: string;
11
+ };
12
+ };