@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 +31 -0
- package/dist/components/date-picker/index.d.ts +1 -0
- package/dist/components/date-picker/single-date-picker-custom-header.d.ts +4 -3
- package/dist/components/index.d.ts +1 -6
- package/dist/components/input/InputDefault.d.ts +2 -2
- package/dist/components/my-account-stats-raised/my-account-stats-raised.d.ts +1 -2
- package/dist/components/select/select-v2.d.ts +3 -2
- package/dist/components/select/select.d.ts +1 -1
- package/dist/components/toast/Icons.d.ts +7 -0
- package/dist/components/toast/index.d.ts +1 -0
- package/dist/components/toast/toast.d.ts +8 -0
- package/dist/components/toast/toast.stories.d.ts +12 -0
- package/dist/components/transaction-card/transaction-card.d.ts +2 -1
- package/dist/components/transaction-card/transaction-card.stories.d.ts +1 -1
- package/dist/index.esm.js +25046 -24866
- package/dist/index.js +25046 -24864
- package/package.json +2 -1
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
|
|
@@ -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
|
|
31
|
-
export default
|
|
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,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,
|
|
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: (
|
|
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, "
|
|
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 @@
|
|
|
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;
|
|
@@ -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: {
|