@mycause/ui 0.18.0 → 0.18.2

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.
Files changed (31) hide show
  1. package/CHANGELOG.md +24 -2
  2. package/dist/components/date-picker/single-date-picker-custom-header.d.ts +32 -0
  3. package/dist/components/donate-card copy/donate-card.d.ts +8 -0
  4. package/dist/components/donate-card copy/donate-card.stories.d.ts +14 -0
  5. package/dist/components/donate-card copy/index.d.ts +1 -0
  6. package/dist/components/field-helpers/field-label.d.ts +1 -2
  7. package/dist/components/index.d.ts +0 -7
  8. package/dist/components/input/InputDefault.d.ts +7 -5
  9. package/dist/components/input/input.stories.d.ts +6 -0
  10. package/dist/components/modal/modal.stories.d.ts +2 -2
  11. package/dist/components/my-account-frp-closed/frp-information.d.ts +4 -2
  12. package/dist/components/my-account-frp-closed/my-account-frp-closed.d.ts +4 -2
  13. package/dist/components/my-account-stats-raised/my-account-stats-raised.d.ts +1 -2
  14. package/dist/components/phone-number-input/index.d.ts +0 -1
  15. package/dist/components/phone-number-input/phone-number-input-v1.d.ts +25 -0
  16. package/dist/components/phone-number-input/phone-number-input-v2.d.ts +2 -1
  17. package/dist/components/phone-number-input/phone-number-input.stories.d.ts +0 -12
  18. package/dist/components/select/select-enhanced.d.ts +23 -0
  19. package/dist/components/select/select-v2.d.ts +26 -0
  20. package/dist/components/select/select.d.ts +1 -3
  21. package/dist/components/table/partner-monthly-table.d.ts +2 -1
  22. package/dist/components/transaction-card/Dot.d.ts +6 -0
  23. package/dist/components/transaction-card/donate-card.d.ts +8 -0
  24. package/dist/components/transaction-card/donate-card.stories.d.ts +14 -0
  25. package/dist/components/transaction-card/index.d.ts +1 -0
  26. package/dist/components/transaction-card/transaction-card.d.ts +13 -0
  27. package/dist/components/transaction-card/transaction-card.stories.d.ts +14 -0
  28. package/dist/components/transaction-card/transaction-cardstories.d.ts +14 -0
  29. package/dist/index.esm.js +460 -630
  30. package/dist/index.js +456 -628
  31. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,9 +1,31 @@
1
+ ## 0.18.1
2
+
3
+ ###### Mon, 22 Jan 2024
4
+
5
+ - Add new components for My Account:
6
+ - Sidebar
7
+ - Stats blocks
8
+ - Progressbar
9
+ - FRP preview card
10
+ - FRP closed card
11
+ - Favorite charities card
12
+
13
+ ## 0.18.1
14
+
15
+ ###### Wed, 23 Aug 2023
16
+
17
+ - Create modal show image
18
+
1
19
  ## 0.18.0
2
20
 
3
21
  ###### Wed, 23 Aug 2023
4
22
 
5
- - Nav
6
- - Add props for login button under "I'm A Charity" menu
23
+ - Nav
24
+ - Add props for login button under "I'm A Charity" menu
25
+
26
+ ## 0.17.9
27
+
28
+ - Update UI component for new parter dashboard
7
29
 
8
30
  ## 0.17.8
9
31
 
@@ -0,0 +1,32 @@
1
+ import React from "react";
2
+ import moment from "moment";
3
+ export interface DatePickerProps {
4
+ id: string;
5
+ date: moment.Moment | null;
6
+ onDateChange: (date: moment.Moment | null) => void;
7
+ onFocusChange: (arg: boolean | null) => void;
8
+ focused: boolean | null;
9
+ placeholder?: string;
10
+ disabled?: boolean;
11
+ color?: string;
12
+ required?: boolean;
13
+ numberOfMonths?: number;
14
+ inputIconPosition?: "before" | "after";
15
+ orientation?: "horizontal" | "vertical";
16
+ customInputIcon?: React.ReactElement<React.HTMLProps<HTMLOrSVGElement>>;
17
+ customCloseIcon?: React.ReactElement<React.HTMLProps<HTMLOrSVGElement>>;
18
+ displayFormat?: string;
19
+ error?: boolean;
20
+ label?: string;
21
+ width?: string;
22
+ isOutsideRange?: () => boolean;
23
+ renderCalendarInfo?: () => string | JSX.Element;
24
+ calendarInfoPosition?: "before" | "after" | "top" | "bottom";
25
+ navPrev?: string | JSX.Element;
26
+ navNext?: string | JSX.Element;
27
+ showDefaultInputIcon?: boolean;
28
+ startYear?: number;
29
+ endYear?: number;
30
+ }
31
+ declare const CustomHeaderSingleDatePicker: ({ width, color, onDateChange, onFocusChange, numberOfMonths, error, label, focused, startYear, endYear, ...rest }: DatePickerProps) => JSX.Element;
32
+ export default CustomHeaderSingleDatePicker;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ export interface DonateCardProps {
3
+ className?: string;
4
+ title?: string;
5
+ description?: string;
6
+ }
7
+ declare const DonateCard: ({ className, title, description, }: DonateCardProps) => JSX.Element;
8
+ export default DonateCard;
@@ -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";
@@ -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";
@@ -1,11 +1,13 @@
1
- /// <reference types="react" />
1
+ import React from "react";
2
2
  interface InputDefaltProps {
3
- lable?: string;
3
+ label?: string | React.ReactNode;
4
4
  required?: boolean;
5
5
  placeholder?: string;
6
- onChange: (value: string) => void;
7
- value: string;
6
+ onChange?: (value: string) => void;
7
+ value?: string | Array<string> | number;
8
8
  error?: string | null | boolean;
9
+ disable?: boolean;
10
+ name?: string;
9
11
  }
10
- declare const Input: ({ lable, required, placeholder, value, onChange, error, }: InputDefaltProps) => JSX.Element;
12
+ declare const Input: ({ label, required, placeholder, value, onChange, error, disable, name, }: InputDefaltProps) => JSX.Element;
11
13
  export default Input;
@@ -16,3 +16,9 @@ export declare const InputV2: {
16
16
  name: string;
17
17
  };
18
18
  };
19
+ export declare const InputV3: {
20
+ (): JSX.Element;
21
+ story: {
22
+ name: string;
23
+ };
24
+ };
@@ -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";
@@ -0,0 +1,25 @@
1
+ import React from "react";
2
+ import { CountryCode } from "libphonenumber-js";
3
+ declare type PhoneNumberInputProps = {
4
+ values: {
5
+ number: string;
6
+ countryCallingCode: string;
7
+ country: string;
8
+ };
9
+ names?: {
10
+ number: string;
11
+ countryCallingCode: string;
12
+ country: string;
13
+ };
14
+ onChange: (value: string, name: string) => void;
15
+ label?: React.ReactNode;
16
+ error?: string | null;
17
+ onBlur?: (e: React.FocusEvent) => void;
18
+ helperText?: React.ReactNode;
19
+ required?: boolean;
20
+ defaultCountry?: CountryCode;
21
+ placeholder?: string;
22
+ color?: string;
23
+ };
24
+ declare function PhoneNumberInputV1({ onChange, values, names, error, onBlur, helperText, label, required, defaultCountry, placeholder, color, }: PhoneNumberInputProps): JSX.Element;
25
+ export default PhoneNumberInputV1;
@@ -13,6 +13,7 @@ declare type PhoneInputProps = {
13
13
  defaultCountry?: CountryCode;
14
14
  placeholder?: string;
15
15
  color?: string;
16
+ name?: string;
16
17
  };
17
- declare function PhoneInput({ values, onChange, defaultCountry, label, required, placeholder, error, }: PhoneInputProps): JSX.Element;
18
+ declare function PhoneInput({ values, onChange, defaultCountry, label, required, placeholder, error, name, }: PhoneInputProps): JSX.Element;
18
19
  export default PhoneInput;
@@ -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
- };
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ import { SelectProps as MDCSelectProps, SelectHelperTextProps } from "@material/react-select";
3
+ export declare type SelectOption = {
4
+ value: string;
5
+ label?: string;
6
+ disabled?: boolean;
7
+ };
8
+ export interface SelectProps extends Omit<MDCSelectProps, "onEnhancedChange" | "ref" | "children" | "options" | "outlined" | "helperText" | "dense"> {
9
+ label?: string;
10
+ value: string;
11
+ onChange: (value: any) => void;
12
+ externalLabel?: boolean;
13
+ large?: boolean;
14
+ options: Array<string> | Array<SelectOption>;
15
+ leadingIcon?: React.ReactElement;
16
+ helperText?: string | React.ReactElement<SelectHelperTextProps> | null;
17
+ isHelperTextPersistent?: boolean;
18
+ noArrow?: boolean;
19
+ color?: string;
20
+ error?: boolean | string;
21
+ }
22
+ declare const SelectV2: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, ...rest }: SelectProps) => JSX.Element;
23
+ export default SelectV2;
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+ export declare type SelectOption = {
3
+ value: string;
4
+ label?: string;
5
+ disabled?: boolean;
6
+ };
7
+ export interface SelectProps {
8
+ label?: string;
9
+ value: string | number;
10
+ onChange: (value: string) => void;
11
+ externalLabel?: boolean;
12
+ large?: boolean;
13
+ options: Array<SelectOption>;
14
+ leadingIcon?: React.ReactElement;
15
+ helperText?: string | null;
16
+ isHelperTextPersistent?: boolean;
17
+ noArrow?: boolean;
18
+ color?: string;
19
+ asteriskColor?: string;
20
+ itemHoverColor?: string;
21
+ error?: boolean | string;
22
+ trailingIcon?: React.ReactElement;
23
+ bgColor?: string;
24
+ }
25
+ declare const SelectV2: ({ options, value, onChange, color, itemHoverColor, noArrow, trailingIcon, bgColor, }: SelectProps) => JSX.Element;
26
+ export default SelectV2;
@@ -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;
@@ -11,6 +11,7 @@ export interface PartnerMonthlyTableProps {
11
11
  data: Array<object>;
12
12
  title?: string;
13
13
  tooltip?: string;
14
+ customBottomRow?: React.ReactNode;
14
15
  }
15
- declare const PartnerMonthlyTable: ({ columns, data, title, tooltip, }: PartnerMonthlyTableProps) => JSX.Element;
16
+ declare const PartnerMonthlyTable: ({ columns, data, title, tooltip, customBottomRow, }: PartnerMonthlyTableProps) => JSX.Element;
16
17
  export default PartnerMonthlyTable;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ interface DotProps {
3
+ color: string;
4
+ }
5
+ export declare function Dot(props: DotProps): JSX.Element;
6
+ export {};
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ export interface DonateCardProps {
3
+ className?: string;
4
+ title?: string;
5
+ description?: string;
6
+ }
7
+ declare const DonateCard: ({ className, title, description, }: DonateCardProps) => JSX.Element;
8
+ export default DonateCard;
@@ -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("./transaction-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 TransactionCard } from "./transaction-card";
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ export interface TransactionCardProps {
3
+ className?: string;
4
+ amount?: string;
5
+ recipient?: string;
6
+ receiptNo?: string;
7
+ details?: string;
8
+ tax?: string;
9
+ date?: string;
10
+ action?: React.ReactNode;
11
+ }
12
+ declare const TransactionCard: ({ className, amount, recipient, receiptNo, details, tax, date, action, }: TransactionCardProps) => JSX.Element;
13
+ export default TransactionCard;
@@ -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, amount, recipient, receiptNo, details, tax, date, action, }: import("./transaction-card").TransactionCardProps) => JSX.Element;
7
+ };
8
+ export default _default;
9
+ export declare const TransactionCardStory: {
10
+ (): JSX.Element;
11
+ story: {
12
+ name: string;
13
+ };
14
+ };
@@ -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("./transaction-card").DonateCardProps) => JSX.Element;
7
+ };
8
+ export default _default;
9
+ export declare const donatecard: {
10
+ (): JSX.Element;
11
+ story: {
12
+ name: string;
13
+ };
14
+ };