@mycause/ui 0.0.0-c243451b → 0.0.0-c2664a6d

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,34 @@
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
+
19
+ ## 0.18.1
20
+
21
+ ###### Wed, 23 Aug 2023
22
+
23
+ - Create modal show image
24
+
25
+ ## 0.18.0
26
+
27
+ ###### Wed, 23 Aug 2023
28
+
29
+ - Nav
30
+ - Add props for login button under "I'm A Charity" menu
31
+
1
32
  ## 0.17.9
2
33
 
3
34
  - 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,4 @@ 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";
@@ -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;
@@ -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;
@@ -7,7 +7,7 @@ export declare type SelectOption = {
7
7
  export interface SelectProps {
8
8
  label?: string;
9
9
  value: string | number;
10
- onChange: (e: React.FormEvent) => void;
10
+ onChange: (value: string) => void;
11
11
  externalLabel?: boolean;
12
12
  large?: boolean;
13
13
  options: Array<SelectOption>;
@@ -20,6 +20,7 @@ export interface SelectProps {
20
20
  itemHoverColor?: string;
21
21
  error?: boolean | string;
22
22
  trailingIcon?: React.ReactElement;
23
+ bgColor?: string;
23
24
  }
24
- declare const SelectV2: ({ options, value, onChange, color, itemHoverColor, noArrow, trailingIcon, }: SelectProps) => JSX.Element;
25
+ declare const SelectV2: ({ options, value, onChange, color, itemHoverColor, noArrow, trailingIcon, bgColor, }: SelectProps) => JSX.Element;
25
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;
@@ -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: {