@mycause/ui 0.18.1 → 0.18.4

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 CHANGED
@@ -1,3 +1,21 @@
1
+ ## 0.18.3
2
+
3
+ ###### Tues, 23 Jan 2024
4
+
5
+ - Update stats block
6
+
7
+ ## 0.18.2
8
+
9
+ ###### Mon, 22 Jan 2024
10
+
11
+ - Add new components for My Account:
12
+ - Sidebar
13
+ - Stats blocks
14
+ - Progressbar
15
+ - FRP preview card
16
+ - FRP closed card
17
+ - Favorite charities card
18
+
1
19
  ## 0.18.1
2
20
 
3
21
  ###### Wed, 23 Aug 2023
@@ -9,7 +27,11 @@
9
27
  ###### Wed, 23 Aug 2023
10
28
 
11
29
  - Nav
12
- - Add props for login button under "I'm A Charity" menu
30
+ - Add props for login button under "I'm A Charity" menu
31
+
32
+ ## 0.17.9
33
+
34
+ - Update UI component for new parter dashboard
13
35
 
14
36
  ## 0.17.8
15
37
 
@@ -3,7 +3,6 @@ interface FieldLabelProps extends React.HTMLProps<HTMLLabelElement> {
3
3
  large?: boolean;
4
4
  children?: React.ReactNode;
5
5
  required?: boolean;
6
- asteriskColor?: string;
7
6
  }
8
- declare function FieldLabel({ large, className, children, required, asteriskColor, ...rest }: FieldLabelProps): JSX.Element;
7
+ declare function FieldLabel({ large, className, children, required, ...rest }: FieldLabelProps): JSX.Element;
9
8
  export default FieldLabel;
@@ -47,12 +47,6 @@ export * from "./partner-chart-stats";
47
47
  export * from "./this-month-card";
48
48
  export * from "./partner-toggle-button";
49
49
  export * from "./footerV2";
50
- export * from "./partner-monthly-donations";
51
- export * from "./partner-monthly-stats";
52
- export * from "./table";
53
- export * from "./partner-chart-stats";
54
- export * from "./this-month-card";
55
- export * from "./partner-toggle-button";
56
50
  export * from "./my-account-start-fundraise-card";
57
51
  export * from "./my-account-choose-charity-card";
58
52
  export * from "./favorite-charity-item";
@@ -60,5 +54,4 @@ export * from "./my-account-sidebar";
60
54
  export * from "./my-account-frp-preview";
61
55
  export * from "./my-account-stats-donated";
62
56
  export * from "./my-account-stats-raised";
63
- export * from "./input";
64
57
  export * from "./my-account-frp-closed";
@@ -29,13 +29,13 @@ export declare const ModalStoriesMinimal: {
29
29
  name: string;
30
30
  };
31
31
  };
32
- export declare const ModalStoriesImage: {
32
+ export declare const ModalConfirmation: {
33
33
  (): JSX.Element;
34
34
  story: {
35
35
  name: string;
36
36
  };
37
37
  };
38
- export declare const ModalConfirmation: {
38
+ export declare const ModalStoriesImage: {
39
39
  (): JSX.Element;
40
40
  story: {
41
41
  name: string;
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from "react";
2
2
  interface FrpInfomationProps {
3
3
  donations: number;
4
4
  amountRaised: number;
@@ -6,6 +6,8 @@ interface FrpInfomationProps {
6
6
  sqSize: number;
7
7
  strokeWidth: number;
8
8
  closedDate?: string | undefined;
9
+ customRow?: React.ReactNode;
10
+ manageLink?: string;
9
11
  }
10
- declare const FrpInfomation: ({ donations, amountRaised, amountGoal, sqSize, strokeWidth, closedDate, }: FrpInfomationProps) => JSX.Element;
12
+ declare const FrpInfomation: ({ donations, amountRaised, amountGoal, sqSize, strokeWidth, closedDate, customRow, manageLink, }: FrpInfomationProps) => JSX.Element;
11
13
  export default FrpInfomation;
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from "react";
2
2
  export interface MyAccountFrpClosedProps {
3
3
  img?: string;
4
4
  link?: string;
@@ -10,6 +10,8 @@ export interface MyAccountFrpClosedProps {
10
10
  strokeWidth: number;
11
11
  frpColor?: string;
12
12
  closedDate?: string;
13
+ customRow?: React.ReactNode;
14
+ manageLink?: string;
13
15
  }
14
- declare const MyAccountFrpClosed: ({ img, link, title, amountGoal, amountRaised, donations, sqSize, strokeWidth, frpColor, closedDate, }: MyAccountFrpClosedProps) => JSX.Element;
16
+ declare const MyAccountFrpClosed: ({ img, link, title, amountGoal, amountRaised, donations, sqSize, strokeWidth, frpColor, closedDate, customRow, manageLink, }: MyAccountFrpClosedProps) => JSX.Element;
15
17
  export default MyAccountFrpClosed;
@@ -1,8 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  export interface MyAccountStatsRaisedProps {
3
3
  amount: number;
4
- donations: number;
5
4
  campaigns: number;
6
5
  }
7
- declare const MyAccountStatsRaised: ({ amount, donations, campaigns, }: MyAccountStatsRaisedProps) => JSX.Element;
6
+ declare const MyAccountStatsRaised: ({ amount, campaigns, }: MyAccountStatsRaisedProps) => JSX.Element;
8
7
  export default MyAccountStatsRaised;
@@ -1,3 +1,2 @@
1
1
  export { default as PhoneNumberInput } from "./phone-number-input";
2
- export { default as PhoneInput } from "./phone-number-input-v2";
3
2
  export * from "./util";
@@ -11,15 +11,3 @@ 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
- };
@@ -17,9 +17,7 @@ export interface SelectProps extends Omit<MDCSelectProps, "onEnhancedChange" | "
17
17
  isHelperTextPersistent?: boolean;
18
18
  noArrow?: boolean;
19
19
  color?: string;
20
- asteriskColor?: string;
21
20
  error?: boolean | string;
22
- customTrailingIcon?: boolean;
23
21
  }
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;
22
+ declare const Select: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, ...rest }: SelectProps) => JSX.Element;
25
23
  export default Select;