@mycause/ui 0.0.0-cec05abe → 0.0.0-cef00fc9

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 (39) hide show
  1. package/CHANGELOG.md +61 -0
  2. package/dist/components/date-picker/index.d.ts +1 -0
  3. package/dist/components/date-picker/single-date-picker-custom-header.d.ts +4 -3
  4. package/dist/components/index.d.ts +2 -6
  5. package/dist/components/input/InputDefault.d.ts +2 -2
  6. package/dist/components/input-social/Icons.d.ts +5 -0
  7. package/dist/components/input-social/InputSocial.d.ts +12 -0
  8. package/dist/components/input-social/index.d.ts +1 -0
  9. package/dist/components/input-social/input-social.stories.d.ts +12 -0
  10. package/dist/components/my-account-sidebar/my-account-sidebar.d.ts +3 -2
  11. package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.d.ts +5 -3
  12. package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.stories.d.ts +7 -1
  13. package/dist/components/my-account-stats-raised/my-account-stats-raised.d.ts +1 -2
  14. package/dist/components/phone-number-input/phone-number-input.d.ts +2 -1
  15. package/dist/components/phone-number-input/phone-number-input.stories.d.ts +6 -0
  16. package/dist/components/select/SelectV2.d.ts +24 -0
  17. package/dist/components/select/index.d.ts +1 -0
  18. package/dist/components/select/select-v2.d.ts +26 -0
  19. package/dist/components/select/select.d.ts +1 -1
  20. package/dist/components/select/select.stories.d.ts +6 -0
  21. package/dist/components/switch/index.d.ts +1 -0
  22. package/dist/components/switch/switch-v2.d.ts +8 -0
  23. package/dist/components/switch/switch.stories.d.ts +6 -0
  24. package/dist/components/text-field/text-field-search.d.ts +2 -1
  25. package/dist/components/toast/Icons.d.ts +7 -0
  26. package/dist/components/toast/index.d.ts +1 -0
  27. package/dist/components/toast/toast.d.ts +8 -0
  28. package/dist/components/toast/toast.stories.d.ts +12 -0
  29. package/dist/components/transaction-card/transaction-card.d.ts +2 -1
  30. package/dist/components/transaction-card/transaction-card.stories.d.ts +1 -1
  31. package/dist/index.esm.js +25126 -24742
  32. package/dist/index.js +25129 -24740
  33. package/package.json +2 -1
  34. package/dist/components/donate-card copy/donate-card.d.ts +0 -8
  35. package/dist/components/donate-card copy/donate-card.stories.d.ts +0 -14
  36. package/dist/components/donate-card copy/index.d.ts +0 -1
  37. package/dist/components/transaction-card/donate-card.d.ts +0 -8
  38. package/dist/components/transaction-card/donate-card.stories.d.ts +0 -14
  39. package/dist/components/transaction-card/transaction-cardstories.d.ts +0 -14
package/CHANGELOG.md CHANGED
@@ -1,3 +1,64 @@
1
+ ## 0.18.8
2
+
3
+ ###### Fri, 15 Mar 2024
4
+
5
+ - MyAccountStartFundraiseCard
6
+ - Add new button
7
+
8
+ ## 0.18.7
9
+
10
+ ###### Tus, 4 Feb 2024
11
+
12
+ - Phone number input, Enhanced Select
13
+ - create new component
14
+
15
+ ## 0.18.6
16
+
17
+ ###### Tus, 4 Feb 2024
18
+
19
+ - Phone number input
20
+ - add disabled prop
21
+
22
+ ## 0.18.5
23
+
24
+ ###### Mon, 26 Feb 2024
25
+
26
+ - Input, Toast, Phone number input V2
27
+ - create new component
28
+ - Select
29
+ - Add asteriskColor, customTrailingIcon and onEnhancedChange props
30
+
31
+ ## 0.18.3
32
+
33
+ ###### Tues, 23 Jan 2024
34
+
35
+ - Update stats block
36
+
37
+ ## 0.18.2
38
+
39
+ ###### Mon, 22 Jan 2024
40
+
41
+ - Add new components for My Account:
42
+ - Sidebar
43
+ - Stats blocks
44
+ - Progressbar
45
+ - FRP preview card
46
+ - FRP closed card
47
+ - Favorite charities card
48
+
49
+ ## 0.18.1
50
+
51
+ ###### Wed, 23 Aug 2023
52
+
53
+ - Create modal show image
54
+
55
+ ## 0.18.0
56
+
57
+ ###### Wed, 23 Aug 2023
58
+
59
+ - Nav
60
+ - Add props for login button under "I'm A Charity" menu
61
+
1
62
  ## 0.17.9
2
63
 
3
64
  - Update UI component for new parter dashboard
@@ -1,2 +1,3 @@
1
1
  export { default as DatePicker } from "./date-picker";
2
2
  export { default as SingleDatePicker } from "./single-date-picker";
3
+ export { default as CustomHeaderSingleDatePicker, } from "./single-date-picker-custom-header";
@@ -22,10 +22,11 @@ export interface DatePickerProps {
22
22
  isOutsideRange?: () => boolean;
23
23
  renderCalendarInfo?: () => string | JSX.Element;
24
24
  calendarInfoPosition?: "before" | "after" | "top" | "bottom";
25
- renderCalendarInfoPosition?: "before" | "after";
26
25
  navPrev?: string | JSX.Element;
27
26
  navNext?: string | JSX.Element;
28
27
  showDefaultInputIcon?: boolean;
28
+ startYear?: number;
29
+ endYear?: number;
29
30
  }
30
- declare const CustomSingleDatePicker: ({ width, color, onDateChange, onFocusChange, numberOfMonths, error, label, focused, ...rest }: DatePickerProps) => JSX.Element;
31
- export default CustomSingleDatePicker;
31
+ declare const CustomHeaderSingleDatePicker: ({ width, color, onDateChange, onFocusChange, numberOfMonths, error, label, focused, startYear, endYear, ...rest }: DatePickerProps) => JSX.Element;
32
+ export default CustomHeaderSingleDatePicker;
@@ -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";
@@ -63,3 +57,5 @@ export * from "./my-account-stats-raised";
63
57
  export * from "./input";
64
58
  export * from "./my-account-frp-closed";
65
59
  export * from "./transaction-card";
60
+ export * from "./toast";
61
+ export * from "./input-social";
@@ -1,6 +1,6 @@
1
- /// <reference types="react" />
1
+ import React from "react";
2
2
  interface InputDefaltProps {
3
- label?: string;
3
+ label?: string | React.ReactNode;
4
4
  required?: boolean;
5
5
  placeholder?: string;
6
6
  onChange?: (value: string) => void;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ declare const Icons: {
3
+ facebook: (props: any) => JSX.Element;
4
+ };
5
+ export default Icons;
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ interface InputSocialProps {
3
+ placeholder?: string;
4
+ onChange?: (value: string) => void;
5
+ value?: string | Array<string> | number;
6
+ error?: string | null | boolean;
7
+ disable?: boolean;
8
+ name?: string;
9
+ icon?: React.ReactElement<React.HTMLProps<HTMLOrSVGElement>>;
10
+ }
11
+ declare const InputSocial: ({ placeholder, value, onChange, error, disable, name, icon, }: InputSocialProps) => JSX.Element;
12
+ export default InputSocial;
@@ -0,0 +1 @@
1
+ export { default as InputSocial } from "./InputSocial";
@@ -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 InputExample: {
8
+ (): JSX.Element;
9
+ story: {
10
+ name: string;
11
+ };
12
+ };
@@ -2,10 +2,11 @@
2
2
  export interface MyAccountSidebarProps {
3
3
  listMenu: Array<ItemMenu>;
4
4
  dashboard: ItemMenu;
5
- account?: ItemMenu;
5
+ account: ItemMenu;
6
6
  contract?: ItemMenu;
7
7
  handleSetOverlay: (value: boolean) => void;
8
8
  activeMenu: ItemMenu;
9
+ pathnameActive?: string;
9
10
  }
10
11
  declare type ItemMenu = {
11
12
  id: string;
@@ -14,5 +15,5 @@ declare type ItemMenu = {
14
15
  href?: string;
15
16
  items?: Array<ItemMenu>;
16
17
  };
17
- declare const MyAccountSidebar: ({ listMenu, dashboard, account, contract, handleSetOverlay, activeMenu, }: MyAccountSidebarProps) => JSX.Element;
18
+ declare const MyAccountSidebar: ({ listMenu, dashboard, account, contract, handleSetOverlay, activeMenu, pathnameActive, }: MyAccountSidebarProps) => JSX.Element;
18
19
  export default MyAccountSidebar;
@@ -3,9 +3,11 @@ export interface MyAccountStartFundraiseCardProps {
3
3
  className?: string;
4
4
  title?: string;
5
5
  description?: string;
6
- buttonText?: string;
7
- onClick?: () => void;
6
+ buttonText1?: string;
7
+ buttonText2?: string;
8
+ onClickButton1?: () => void;
9
+ onClickButton2?: () => void;
8
10
  width: string;
9
11
  }
10
- declare const MyAccountStartFundraiseCard: ({ className, title, buttonText, onClick, width, }: MyAccountStartFundraiseCardProps) => JSX.Element;
12
+ declare const MyAccountStartFundraiseCard: ({ className, title, buttonText1, buttonText2, onClickButton1, onClickButton2, width, }: MyAccountStartFundraiseCardProps) => JSX.Element;
11
13
  export default MyAccountStartFundraiseCard;
@@ -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, title, buttonText, onClick, width, }: import("./my-account-start-fundraise-card").MyAccountStartFundraiseCardProps) => JSX.Element;
6
+ component: ({ className, title, buttonText1, buttonText2, onClickButton1, onClickButton2, width, }: import("./my-account-start-fundraise-card").MyAccountStartFundraiseCardProps) => JSX.Element;
7
7
  };
8
8
  export default _default;
9
9
  export declare const startFundraiseStory: {
@@ -12,3 +12,9 @@ export declare const startFundraiseStory: {
12
12
  name: string;
13
13
  };
14
14
  };
15
+ export declare const startFundraiseStoryV2: {
16
+ (): JSX.Element;
17
+ story: {
18
+ name: string;
19
+ };
20
+ };
@@ -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;
@@ -20,6 +20,7 @@ declare type PhoneNumberInputProps = {
20
20
  defaultCountry?: CountryCode;
21
21
  placeholder?: string;
22
22
  color?: string;
23
+ disabled?: boolean;
23
24
  };
24
- declare function PhoneNumberInput({ onChange, values, names, error, onBlur, helperText, label, required, defaultCountry, placeholder, color, }: PhoneNumberInputProps): JSX.Element;
25
+ declare function PhoneNumberInput({ onChange, values, names, error, onBlur, helperText, label, required, defaultCountry, placeholder, color, disabled, }: PhoneNumberInputProps): JSX.Element;
25
26
  export default PhoneNumberInput;
@@ -11,6 +11,12 @@ export declare const PhoneNumberInputStory: {
11
11
  name: string;
12
12
  };
13
13
  };
14
+ export declare const PhoneNumberInputDisableStory: {
15
+ (): JSX.Element;
16
+ story: {
17
+ name: string;
18
+ };
19
+ };
14
20
  export declare const PhoneInputStory: {
15
21
  (): JSX.Element;
16
22
  story: {
@@ -0,0 +1,24 @@
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;
10
+ onChange: (e: React.FormEvent) => 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
+ }
23
+ declare const SelectV2: ({ options, value, onChange, color, itemHoverColor, noArrow, }: SelectProps) => JSX.Element;
24
+ export default SelectV2;
@@ -1,3 +1,4 @@
1
1
  export { default as Select } from "./select";
2
2
  export { default as SelectEnhanced } from "./select-enhanced";
3
3
  export { default as SelectHelperText } from "./select-helper-text";
4
+ export { default as SelectV2 } from "./select-v2";
@@ -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;
@@ -5,7 +5,7 @@ export declare type SelectOption = {
5
5
  label?: string;
6
6
  disabled?: boolean;
7
7
  };
8
- export interface SelectProps extends Omit<MDCSelectProps, "onEnhancedChange" | "ref" | "children" | "options" | "outlined" | "helperText" | "dense"> {
8
+ export interface SelectProps extends Omit<MDCSelectProps, "ref" | "children" | "options" | "outlined" | "helperText" | "dense"> {
9
9
  label?: string;
10
10
  value: string;
11
11
  onChange: (e: React.FormEvent) => void;
@@ -10,6 +10,12 @@ export declare const SelectStory: {
10
10
  name: string;
11
11
  };
12
12
  };
13
+ export declare const SelectStoryV2: {
14
+ (): JSX.Element;
15
+ story: {
16
+ name: string;
17
+ };
18
+ };
13
19
  export declare const SelectEnhancedStory: {
14
20
  (): JSX.Element;
15
21
  story: {
@@ -1 +1,2 @@
1
1
  export { default as Switch } from "./switch";
2
+ export { default as SwitchV2 } from "./switch-v2";
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ interface SwitchV2Props {
3
+ checked?: boolean;
4
+ onChange?: (e: React.FormEvent<HTMLInputElement>) => void;
5
+ color?: string;
6
+ }
7
+ declare const SwitchV2: ({ checked, onChange, color }: SwitchV2Props) => JSX.Element;
8
+ export default SwitchV2;
@@ -23,3 +23,9 @@ export declare const SwitchDisabled: {
23
23
  name: string;
24
24
  };
25
25
  };
26
+ export declare const SwitchV2Story: {
27
+ (): JSX.Element;
28
+ story: {
29
+ name: string;
30
+ };
31
+ };
@@ -4,6 +4,7 @@ interface TextFieldSearchProps {
4
4
  onChange: (value: string) => void;
5
5
  onSubmit: () => void;
6
6
  placeholder?: string;
7
+ isFocus?: boolean;
7
8
  }
8
- declare function TextFieldSearch({ value, onChange, onSubmit, placeholder, }: TextFieldSearchProps): JSX.Element;
9
+ declare function TextFieldSearch({ value, onChange, onSubmit, placeholder, isFocus, }: TextFieldSearchProps): JSX.Element;
9
10
  export default TextFieldSearch;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare const Icons: {
3
+ close: (props: any) => JSX.Element;
4
+ error: (props: any) => JSX.Element;
5
+ warning: () => JSX.Element;
6
+ };
7
+ export default Icons;
@@ -0,0 +1 @@
1
+ export { default as Toast } from "./toast";
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { ToastContainerProps } from "react-toastify";
3
+ import "react-toastify/dist/ReactToastify.css";
4
+ export interface ToastProps extends ToastContainerProps {
5
+ color?: string;
6
+ }
7
+ declare function Toast({ ...props }: ToastProps): JSX.Element;
8
+ export default Toast;
@@ -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 SwitchDefault: {
8
+ (): JSX.Element;
9
+ story: {
10
+ name: string;
11
+ };
12
+ };
@@ -8,6 +8,7 @@ export interface TransactionCardProps {
8
8
  tax?: string;
9
9
  date?: string;
10
10
  action?: React.ReactNode;
11
+ onClick?: () => void;
11
12
  }
12
- declare const TransactionCard: ({ className, amount, recipient, receiptNo, details, tax, date, action, }: TransactionCardProps) => JSX.Element;
13
+ declare const TransactionCard: ({ className, amount, recipient, receiptNo, details, tax, date, action, onClick, }: TransactionCardProps) => JSX.Element;
13
14
  export default TransactionCard;
@@ -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, amount, recipient, receiptNo, details, tax, date, action, }: import("./transaction-card").TransactionCardProps) => JSX.Element;
6
+ component: ({ className, amount, recipient, receiptNo, details, tax, date, action, onClick, }: import("./transaction-card").TransactionCardProps) => JSX.Element;
7
7
  };
8
8
  export default _default;
9
9
  export declare const TransactionCardStory: {