@mycause/ui 0.18.6 → 0.18.7
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 +7 -0
- package/dist/components/date-picker/date-picker.stories.d.ts +0 -6
- package/dist/components/date-picker/index.d.ts +0 -1
- package/dist/components/index.d.ts +6 -2
- package/dist/components/input/InputDefault.d.ts +2 -2
- package/dist/components/my-account-frp-closed/frp-information.d.ts +1 -2
- package/dist/components/my-account-frp-closed/my-account-frp-closed.d.ts +1 -2
- package/dist/components/my-account-stats-raised/my-account-stats-raised.d.ts +2 -1
- package/dist/components/phone-number-input/phone-number-input.d.ts +1 -2
- package/dist/components/phone-number-input/phone-number-input.stories.d.ts +0 -6
- package/dist/components/select/index.d.ts +0 -1
- package/dist/components/select/select-v2.d.ts +7 -10
- package/dist/components/select/select.d.ts +1 -1
- package/dist/components/select/select.stories.d.ts +0 -6
- package/dist/index.esm.js +24315 -24709
- package/dist/index.js +24313 -24711
- package/package.json +1 -1
- package/dist/components/date-picker/single-date-picker-custom-header.d.ts +0 -32
- package/dist/components/select/SelectV2.d.ts +0 -24
- package/dist/components/toast/Icons.d.ts +0 -7
- package/dist/components/toast/index.d.ts +0 -1
- package/dist/components/toast/toast.d.ts +0 -8
- package/dist/components/toast/toast.stories.d.ts +0 -12
- package/dist/components/transaction-card/Dot.d.ts +0 -6
- package/dist/components/transaction-card/index.d.ts +0 -1
- package/dist/components/transaction-card/transaction-card.d.ts +0 -14
- package/dist/components/transaction-card/transaction-card.stories.d.ts +0 -14
package/CHANGELOG.md
CHANGED
|
@@ -47,6 +47,12 @@ 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";
|
|
50
56
|
export * from "./my-account-start-fundraise-card";
|
|
51
57
|
export * from "./my-account-choose-charity-card";
|
|
52
58
|
export * from "./favorite-charity-item";
|
|
@@ -56,5 +62,3 @@ export * from "./my-account-stats-donated";
|
|
|
56
62
|
export * from "./my-account-stats-raised";
|
|
57
63
|
export * from "./input";
|
|
58
64
|
export * from "./my-account-frp-closed";
|
|
59
|
-
export * from "./transaction-card";
|
|
60
|
-
export * from "./toast";
|
|
@@ -7,7 +7,6 @@ interface FrpInfomationProps {
|
|
|
7
7
|
strokeWidth: number;
|
|
8
8
|
closedDate?: string | undefined;
|
|
9
9
|
customRow?: React.ReactNode;
|
|
10
|
-
manageLink?: string;
|
|
11
10
|
}
|
|
12
|
-
declare const FrpInfomation: ({ donations, amountRaised, amountGoal, sqSize, strokeWidth, closedDate, customRow,
|
|
11
|
+
declare const FrpInfomation: ({ donations, amountRaised, amountGoal, sqSize, strokeWidth, closedDate, customRow, }: FrpInfomationProps) => JSX.Element;
|
|
13
12
|
export default FrpInfomation;
|
|
@@ -11,7 +11,6 @@ export interface MyAccountFrpClosedProps {
|
|
|
11
11
|
frpColor?: string;
|
|
12
12
|
closedDate?: string;
|
|
13
13
|
customRow?: React.ReactNode;
|
|
14
|
-
manageLink?: string;
|
|
15
14
|
}
|
|
16
|
-
declare const MyAccountFrpClosed: ({ img, link, title, amountGoal, amountRaised, donations, sqSize, strokeWidth, frpColor, closedDate, customRow,
|
|
15
|
+
declare const MyAccountFrpClosed: ({ img, link, title, amountGoal, amountRaised, donations, sqSize, strokeWidth, frpColor, closedDate, customRow, }: MyAccountFrpClosedProps) => JSX.Element;
|
|
17
16
|
export default MyAccountFrpClosed;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export interface MyAccountStatsRaisedProps {
|
|
3
3
|
amount: number;
|
|
4
|
+
donations: number;
|
|
4
5
|
campaigns: number;
|
|
5
6
|
}
|
|
6
|
-
declare const MyAccountStatsRaised: ({ amount, campaigns, }: MyAccountStatsRaisedProps) => JSX.Element;
|
|
7
|
+
declare const MyAccountStatsRaised: ({ amount, donations, campaigns, }: MyAccountStatsRaisedProps) => JSX.Element;
|
|
7
8
|
export default MyAccountStatsRaised;
|
|
@@ -20,7 +20,6 @@ declare type PhoneNumberInputProps = {
|
|
|
20
20
|
defaultCountry?: CountryCode;
|
|
21
21
|
placeholder?: string;
|
|
22
22
|
color?: string;
|
|
23
|
-
disabled?: boolean;
|
|
24
23
|
};
|
|
25
|
-
declare function PhoneNumberInput({ onChange, values, names, error, onBlur, helperText, label, required, defaultCountry, placeholder, color,
|
|
24
|
+
declare function PhoneNumberInput({ onChange, values, names, error, onBlur, helperText, label, required, defaultCountry, placeholder, color, }: PhoneNumberInputProps): JSX.Element;
|
|
26
25
|
export default PhoneNumberInput;
|
|
@@ -11,12 +11,6 @@ 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
|
-
};
|
|
20
14
|
export declare const PhoneInputStory: {
|
|
21
15
|
(): JSX.Element;
|
|
22
16
|
story: {
|
|
@@ -1,26 +1,23 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
+
import { SelectProps as MDCSelectProps, SelectHelperTextProps } from "@material/react-select";
|
|
2
3
|
export declare type SelectOption = {
|
|
3
4
|
value: string;
|
|
4
5
|
label?: string;
|
|
5
6
|
disabled?: boolean;
|
|
6
7
|
};
|
|
7
|
-
export interface SelectProps {
|
|
8
|
+
export interface SelectProps extends Omit<MDCSelectProps, "onEnhancedChange" | "ref" | "children" | "options" | "outlined" | "helperText" | "dense"> {
|
|
8
9
|
label?: string;
|
|
9
|
-
value: string
|
|
10
|
-
onChange: (value:
|
|
10
|
+
value: string;
|
|
11
|
+
onChange: (value: any) => void;
|
|
11
12
|
externalLabel?: boolean;
|
|
12
13
|
large?: boolean;
|
|
13
|
-
options: Array<SelectOption>;
|
|
14
|
+
options: Array<string> | Array<SelectOption>;
|
|
14
15
|
leadingIcon?: React.ReactElement;
|
|
15
|
-
helperText?: string | null;
|
|
16
|
+
helperText?: string | React.ReactElement<SelectHelperTextProps> | null;
|
|
16
17
|
isHelperTextPersistent?: boolean;
|
|
17
18
|
noArrow?: boolean;
|
|
18
19
|
color?: string;
|
|
19
|
-
asteriskColor?: string;
|
|
20
|
-
itemHoverColor?: string;
|
|
21
20
|
error?: boolean | string;
|
|
22
|
-
trailingIcon?: React.ReactElement;
|
|
23
|
-
bgColor?: string;
|
|
24
21
|
}
|
|
25
|
-
declare const SelectV2: ({
|
|
22
|
+
declare const SelectV2: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, ...rest }: SelectProps) => JSX.Element;
|
|
26
23
|
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, "ref" | "children" | "options" | "outlined" | "helperText" | "dense"> {
|
|
8
|
+
export interface SelectProps extends Omit<MDCSelectProps, "onEnhancedChange" | "ref" | "children" | "options" | "outlined" | "helperText" | "dense"> {
|
|
9
9
|
label?: string;
|
|
10
10
|
value: string;
|
|
11
11
|
onChange: (e: React.FormEvent) => void;
|