@mycause/ui 0.0.0-cf96d552 → 0.0.0-cfb95594
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-of-month/campaign-of-month.d.ts +4 -2
- package/dist/components/campaign-of-month/campaign-of-month.stories.d.ts +1 -1
- package/dist/components/donation-form/donation-form-v2/donation-form-v2.d.ts +6 -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 +16 -0
- package/dist/components/{featured-campain-card /featured-campain-card .stories.d.ts → featured-campaign-card/featured-campaign-card.stories.d.ts} +2 -2
- package/dist/components/{featured-campaign-card → featured-campaign-card}/index.d.ts +0 -0
- package/dist/components/index.d.ts +11 -0
- package/dist/components/info-procurator-campaign/index.d.ts +1 -0
- package/dist/components/info-procurator-campaign/info-procurator-campaign.d.ts +6 -0
- package/dist/components/info-procurator-campaign/info-procurator-campaign.stories.d.ts +12 -0
- 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/nav-expanded-charity.d.ts +13 -0
- package/dist/components/nav/nav-expanded.d.ts +4 -1
- package/dist/components/nav/nav-list.d.ts +2 -0
- package/dist/components/nav/nav-menu-control.d.ts +2 -1
- package/dist/components/nav/nav-menu.d.ts +1 -1
- package/dist/components/nav/nav-search-control.d.ts +2 -1
- package/dist/components/nav/nav-sign-in-control.d.ts +2 -1
- package/dist/components/nav/nav.d.ts +2 -1
- package/dist/components/tabs/nav-tabs.d.ts +18 -0
- package/dist/index.esm.js +1663 -25
- package/dist/index.js +1674 -24
- package/package.json +1 -1
- package/dist/components/campain-card/campain-card.d.ts +0 -9
- package/dist/components/campain-card/campain-card.stories.d.ts +0 -14
- package/dist/components/featured-campain-card /featured-campain-card.d.ts +0 -14
- package/dist/components/start-campain-card/start-campain-card.d.ts +0 -8
- package/dist/components/start-campain-card/start-campain-card.stories.d.ts +0 -14
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export interface CampainCardProps {
|
|
3
|
-
className?: string;
|
|
4
|
-
imageURL?: string;
|
|
5
|
-
title?: string;
|
|
6
|
-
description?: string;
|
|
7
|
-
}
|
|
8
|
-
declare const CampainCard: ({ className, imageURL, title, description, }: CampainCardProps) => JSX.Element;
|
|
9
|
-
export default CampainCard;
|
|
@@ -1,14 +0,0 @@
|
|
|
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("./campain-card").CampainCardProps) => JSX.Element;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
9
|
-
export declare const campaincard: {
|
|
10
|
-
(): JSX.Element;
|
|
11
|
-
story: {
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export interface FeaturedCampainCardProps {
|
|
3
|
-
className?: string;
|
|
4
|
-
imageURL?: string;
|
|
5
|
-
title?: string;
|
|
6
|
-
description?: string;
|
|
7
|
-
completed?: number;
|
|
8
|
-
width?: number;
|
|
9
|
-
donation?: number;
|
|
10
|
-
raised?: number;
|
|
11
|
-
goal?: number;
|
|
12
|
-
}
|
|
13
|
-
declare const FeaturedCampainCard: ({ className, imageURL, title, donation, raised, goal, completed, width, }: FeaturedCampainCardProps) => JSX.Element;
|
|
14
|
-
export default FeaturedCampainCard;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export interface StartCampainCardProps {
|
|
3
|
-
className?: string;
|
|
4
|
-
title?: string;
|
|
5
|
-
description?: string;
|
|
6
|
-
}
|
|
7
|
-
declare const StartCampainCard: ({ className, title, description, }: StartCampainCardProps) => JSX.Element;
|
|
8
|
-
export default StartCampainCard;
|
|
@@ -1,14 +0,0 @@
|
|
|
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("./start-campain-card").StartCampainCardProps) => JSX.Element;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
9
|
-
export declare const startcampaincard: {
|
|
10
|
-
(): JSX.Element;
|
|
11
|
-
story: {
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
};
|