@mycause/ui 0.0.0-c3910fbf → 0.0.0-c3aa5ce1
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 +0 -4
- package/dist/components/my-account-frp-closed/frp-information.d.ts +3 -2
- package/dist/components/my-account-frp-closed/my-account-frp-closed.d.ts +3 -2
- package/dist/components/nav/nav-expanded-charity.d.ts +2 -1
- package/dist/components/nav/nav.d.ts +1 -0
- package/dist/index.esm.js +261 -6211
- package/dist/index.js +269 -6232
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
interface FrpInfomationProps {
|
|
3
3
|
donations: number;
|
|
4
4
|
amountRaised: number;
|
|
5
|
-
amountGoal: number;
|
|
5
|
+
amountGoal: number | null;
|
|
6
6
|
sqSize: number;
|
|
7
7
|
strokeWidth: number;
|
|
8
|
+
closedDate?: string | undefined;
|
|
8
9
|
}
|
|
9
|
-
declare const FrpInfomation: ({ donations, amountRaised, amountGoal, sqSize, strokeWidth, }: FrpInfomationProps) => JSX.Element;
|
|
10
|
+
declare const FrpInfomation: ({ donations, amountRaised, amountGoal, sqSize, strokeWidth, closedDate, }: FrpInfomationProps) => JSX.Element;
|
|
10
11
|
export default FrpInfomation;
|
|
@@ -5,10 +5,11 @@ export interface MyAccountFrpClosedProps {
|
|
|
5
5
|
title?: string;
|
|
6
6
|
donations: number;
|
|
7
7
|
amountRaised: number;
|
|
8
|
-
amountGoal: number;
|
|
8
|
+
amountGoal: number | null;
|
|
9
9
|
sqSize: number;
|
|
10
10
|
strokeWidth: number;
|
|
11
11
|
frpColor?: string;
|
|
12
|
+
closedDate?: string;
|
|
12
13
|
}
|
|
13
|
-
declare const MyAccountFrpClosed: ({ img, link, title, amountGoal, amountRaised, donations, sqSize, strokeWidth, frpColor, }: MyAccountFrpClosedProps) => JSX.Element;
|
|
14
|
+
declare const MyAccountFrpClosed: ({ img, link, title, amountGoal, amountRaised, donations, sqSize, strokeWidth, frpColor, closedDate, }: MyAccountFrpClosedProps) => JSX.Element;
|
|
14
15
|
export default MyAccountFrpClosed;
|
|
@@ -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;
|