@mycause/ui 0.0.0-cd65c25d → 0.0.0-cd924884
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/README.md +17 -0
- package/dist/components/credit-card-form/CreditCardForm.d.ts +13 -0
- package/dist/components/credit-card-form/Icons.d.ts +7 -0
- package/dist/components/credit-card-form/credit-card.stories.d.ts +12 -0
- package/dist/components/credit-card-form/index.d.ts +1 -0
- package/dist/components/credit-card-form/toast.stories.d.ts +12 -0
- package/dist/components/date-picker/date-picker.stories.d.ts +1 -0
- package/dist/components/date-picker/single-date-picker-custom-header.d.ts +4 -4
- package/dist/components/date-picker/single-date-picker.d.ts +2 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/input-social/Icons.d.ts +5 -0
- package/dist/components/input-social/InputSocial.d.ts +12 -0
- package/dist/components/input-social/index.d.ts +1 -0
- package/dist/components/input-social/input-social.stories.d.ts +12 -0
- package/dist/components/my-account-sidebar/my-account-sidebar.d.ts +3 -2
- package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.d.ts +5 -3
- package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.stories.d.ts +7 -1
- package/dist/components/phone-number-input/phone-number-input-v1.d.ts +2 -1
- package/dist/components/phone-number-input/phone-number-input.d.ts +2 -1
- package/dist/components/phone-number-input/phone-number-input.stories.d.ts +12 -0
- package/dist/components/select/select-enhanced.d.ts +2 -1
- package/dist/components/select/select-v2.d.ts +2 -1
- package/dist/components/select/select.stories.d.ts +2 -2
- package/dist/components/spinner/spinner.d.ts +2 -1
- package/dist/components/spinner/spinner.stories.d.ts +6 -0
- package/dist/components/switch/index.d.ts +1 -0
- package/dist/components/switch/switch-v2.d.ts +8 -0
- package/dist/components/switch/switch.stories.d.ts +6 -0
- package/dist/components/table/partner-monthly-table.d.ts +4 -2
- package/dist/components/text-field/text-field-search.d.ts +2 -1
- package/dist/components/text-field/text-field.d.ts +1 -0
- package/dist/components/transaction-card/transaction-card.d.ts +10 -8
- package/dist/components/transaction-card/transaction-card.stories.d.ts +7 -1
- package/dist/components/uploader/Icons.d.ts +6 -0
- package/dist/components/uploader/uploadAndCropper.d.ts +13 -0
- package/dist/index.esm.js +809 -5273
- package/dist/index.js +810 -5272
- package/package.json +28 -18
- package/styles/index.css +7 -6
- package/styles/index.css.map +1 -0
- package/styles/reset.css.map +1 -0
- package/CHANGELOG.md +0 -638
package/README.md
CHANGED
|
@@ -5,6 +5,11 @@ Design system and UI components for mycause.
|
|
|
5
5
|
- [Documentation](https://mycause.atlassian.net/wiki/spaces/MU/overview)
|
|
6
6
|
- [Storybook](https://ui-test.mycause.com.au)
|
|
7
7
|
|
|
8
|
+
## Prerequisites
|
|
9
|
+
|
|
10
|
+
- Node.js (>= 22.x)
|
|
11
|
+
- Yarn (>= 1.22.22)
|
|
12
|
+
|
|
8
13
|
## Setup
|
|
9
14
|
|
|
10
15
|
Install the package:
|
|
@@ -50,6 +55,18 @@ Ensure you include these in your app, for example using the Google Fonts CDN:
|
|
|
50
55
|
/>
|
|
51
56
|
```
|
|
52
57
|
|
|
58
|
+
## Applying Patches with `patch-package`
|
|
59
|
+
|
|
60
|
+
This project uses `patch-package` to apply fixes to certain dependencies. This is necessary to address issues such as the `punycode` deprecation warning. Below are the steps to apply and manage these patches.
|
|
61
|
+
|
|
62
|
+
The following patches are applied:
|
|
63
|
+
|
|
64
|
+
- normalize-url: Replaced require('punycode') with require('punycode/')
|
|
65
|
+
- psl: Replaced require('punycode') with require('punycode/')
|
|
66
|
+
- unicode-length: Replaced require('punycode') with require('punycode/')
|
|
67
|
+
- url: Replaced require('punycode') with require('punycode/')
|
|
68
|
+
- tough-cookie: Replaced require('punycode') with require('punycode/')
|
|
69
|
+
|
|
53
70
|
## Local development
|
|
54
71
|
|
|
55
72
|
This project uses [Yarn](https://yarnpkg.com) for development dependencies.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare type FormValuesProps = {
|
|
3
|
+
number: string;
|
|
4
|
+
name: string;
|
|
5
|
+
expiry: string;
|
|
6
|
+
cvc: string;
|
|
7
|
+
};
|
|
8
|
+
declare type CreditCardFormProps = {
|
|
9
|
+
formValues: FormValuesProps;
|
|
10
|
+
setFormValues: (values: FormValuesProps) => void;
|
|
11
|
+
};
|
|
12
|
+
declare function CreditCardForm({ formValues, setFormValues }: CreditCardFormProps): JSX.Element;
|
|
13
|
+
export default CreditCardForm;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CreditCardForm } from "./CreditCardForm";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import
|
|
2
|
+
import { Moment } from "moment";
|
|
3
3
|
export interface DatePickerProps {
|
|
4
4
|
id: string;
|
|
5
|
-
date:
|
|
6
|
-
onDateChange: (date:
|
|
5
|
+
date: Moment | null;
|
|
6
|
+
onDateChange: (date: Moment | null) => void;
|
|
7
7
|
onFocusChange: (arg: boolean | null) => void;
|
|
8
8
|
focused: boolean | null;
|
|
9
9
|
placeholder?: string;
|
|
@@ -19,7 +19,7 @@ export interface DatePickerProps {
|
|
|
19
19
|
error?: boolean;
|
|
20
20
|
label?: string;
|
|
21
21
|
width?: string;
|
|
22
|
-
isOutsideRange?: () => boolean;
|
|
22
|
+
isOutsideRange?: (day: any) => boolean;
|
|
23
23
|
renderCalendarInfo?: () => string | JSX.Element;
|
|
24
24
|
calendarInfoPosition?: "before" | "after" | "top" | "bottom";
|
|
25
25
|
navPrev?: string | JSX.Element;
|
|
@@ -19,7 +19,8 @@ export interface DatePickerProps {
|
|
|
19
19
|
error?: boolean;
|
|
20
20
|
label?: string;
|
|
21
21
|
width?: string;
|
|
22
|
-
isOutsideRange?: () => boolean;
|
|
22
|
+
isOutsideRange?: (day: any) => boolean;
|
|
23
|
+
showDefaultInputIcon?: boolean;
|
|
23
24
|
}
|
|
24
25
|
declare const CustomSingleDatePicker: ({ width, color, onDateChange, onFocusChange, numberOfMonths, error, label, focused, ...rest }: DatePickerProps) => JSX.Element;
|
|
25
26
|
export default CustomSingleDatePicker;
|
|
@@ -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";
|
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
export interface MyAccountSidebarProps {
|
|
3
3
|
listMenu: Array<ItemMenu>;
|
|
4
4
|
dashboard: ItemMenu;
|
|
5
|
-
account
|
|
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;
|
package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.d.ts
CHANGED
|
@@ -3,9 +3,11 @@ export interface MyAccountStartFundraiseCardProps {
|
|
|
3
3
|
className?: string;
|
|
4
4
|
title?: string;
|
|
5
5
|
description?: string;
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
buttonText1?: string;
|
|
7
|
+
buttonText2?: string;
|
|
8
|
+
onClickButton1?: () => void;
|
|
9
|
+
onClickButton2?: () => void;
|
|
8
10
|
width: string;
|
|
9
11
|
}
|
|
10
|
-
declare const MyAccountStartFundraiseCard: ({ className, title,
|
|
12
|
+
declare const MyAccountStartFundraiseCard: ({ className, title, buttonText1, buttonText2, onClickButton1, onClickButton2, width, }: MyAccountStartFundraiseCardProps) => JSX.Element;
|
|
11
13
|
export default MyAccountStartFundraiseCard;
|
package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.stories.d.ts
CHANGED
|
@@ -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,
|
|
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
|
+
};
|
|
@@ -20,6 +20,7 @@ declare type PhoneNumberInputProps = {
|
|
|
20
20
|
defaultCountry?: CountryCode;
|
|
21
21
|
placeholder?: string;
|
|
22
22
|
color?: string;
|
|
23
|
+
isDisableCountries?: boolean;
|
|
23
24
|
};
|
|
24
|
-
declare function PhoneNumberInputV1({ onChange, values, names, error, onBlur, helperText, label, required, defaultCountry, placeholder, color, }: PhoneNumberInputProps): JSX.Element;
|
|
25
|
+
declare function PhoneNumberInputV1({ onChange, values, names, error, onBlur, helperText, label, required, defaultCountry, placeholder, color, isDisableCountries, }: PhoneNumberInputProps): JSX.Element;
|
|
25
26
|
export default PhoneNumberInputV1;
|
|
@@ -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: {
|
|
@@ -29,3 +35,9 @@ export declare const PhoneNumberInputStoryV1: {
|
|
|
29
35
|
name: string;
|
|
30
36
|
};
|
|
31
37
|
};
|
|
38
|
+
export declare const PhoneNumberInputIsDisableCountriesStoryV1: {
|
|
39
|
+
(): JSX.Element;
|
|
40
|
+
story: {
|
|
41
|
+
name: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
@@ -18,6 +18,7 @@ export interface SelectProps extends Omit<MDCSelectProps, "onEnhancedChange" | "
|
|
|
18
18
|
noArrow?: boolean;
|
|
19
19
|
color?: string;
|
|
20
20
|
error?: boolean | string;
|
|
21
|
+
outlined?: boolean;
|
|
21
22
|
}
|
|
22
|
-
declare const SelectV2: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, ...rest }: SelectProps) => JSX.Element;
|
|
23
|
+
declare const SelectV2: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, outlined, ...rest }: SelectProps) => JSX.Element;
|
|
23
24
|
export default SelectV2;
|
|
@@ -21,6 +21,7 @@ export interface SelectProps {
|
|
|
21
21
|
error?: boolean | string;
|
|
22
22
|
trailingIcon?: React.ReactElement;
|
|
23
23
|
bgColor?: string;
|
|
24
|
+
colorError?: string;
|
|
24
25
|
}
|
|
25
|
-
declare const SelectV2: ({ options, value, onChange, color, itemHoverColor, noArrow, trailingIcon, bgColor, }: SelectProps) => JSX.Element;
|
|
26
|
+
declare const SelectV2: ({ options, value, onChange, color, itemHoverColor, noArrow, trailingIcon, bgColor, error, colorError, }: SelectProps) => JSX.Element;
|
|
26
27
|
export default SelectV2;
|
|
@@ -10,13 +10,13 @@ export declare const SelectStory: {
|
|
|
10
10
|
name: string;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
-
export declare const
|
|
13
|
+
export declare const SelectStoryV2: {
|
|
14
14
|
(): JSX.Element;
|
|
15
15
|
story: {
|
|
16
16
|
name: string;
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
|
-
export declare const
|
|
19
|
+
export declare const SelectEnhancedStory: {
|
|
20
20
|
(): JSX.Element;
|
|
21
21
|
story: {
|
|
22
22
|
name: string;
|
|
@@ -3,6 +3,7 @@ export interface SpinnerProps {
|
|
|
3
3
|
id?: string;
|
|
4
4
|
className?: string;
|
|
5
5
|
style?: any;
|
|
6
|
+
type?: "default" | "orange";
|
|
6
7
|
}
|
|
7
|
-
declare const Spinner: ({ id, className, style, ...rest }: SpinnerProps) => JSX.Element;
|
|
8
|
+
declare const Spinner: ({ id, className, style, type, ...rest }: SpinnerProps) => JSX.Element;
|
|
8
9
|
export default Spinner;
|
|
@@ -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;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
export declare type ColumnTableProps = {
|
|
3
3
|
key: string;
|
|
4
|
-
label: string;
|
|
4
|
+
label: string | React.ReactNode;
|
|
5
5
|
align: "center" | "left" | "right";
|
|
6
6
|
rowPrefixIcon?: string;
|
|
7
7
|
renderCell: (item: any) => React.ReactNode;
|
|
@@ -12,6 +12,8 @@ export interface PartnerMonthlyTableProps {
|
|
|
12
12
|
title?: string;
|
|
13
13
|
tooltip?: string;
|
|
14
14
|
customBottomRow?: React.ReactNode;
|
|
15
|
+
onClickRow?: (item: any, rowIndex: number) => void;
|
|
16
|
+
getBackgroundRow?: (item: any, rowIndex: number) => string;
|
|
15
17
|
}
|
|
16
|
-
declare const PartnerMonthlyTable: ({ columns, data, title, tooltip, customBottomRow, }: PartnerMonthlyTableProps) => JSX.Element;
|
|
18
|
+
declare const PartnerMonthlyTable: ({ columns, data, title, tooltip, customBottomRow, onClickRow, getBackgroundRow, }: PartnerMonthlyTableProps) => JSX.Element;
|
|
17
19
|
export default PartnerMonthlyTable;
|
|
@@ -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;
|
|
@@ -20,6 +20,7 @@ export interface TextFieldProps extends Omit<React.HTMLProps<HTMLInputElement>,
|
|
|
20
20
|
className?: string;
|
|
21
21
|
required?: boolean;
|
|
22
22
|
color?: string;
|
|
23
|
+
outlined?: boolean;
|
|
23
24
|
onChange?: (e: React.FormEvent<HTMLInputElement>) => void;
|
|
24
25
|
}
|
|
25
26
|
declare const TextField: React.ForwardRefExoticComponent<TextFieldProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
export interface TransactionCardProps {
|
|
3
3
|
className?: string;
|
|
4
|
-
amount?: string;
|
|
5
|
-
recipient?: string;
|
|
6
|
-
receiptNo?: string;
|
|
7
|
-
details?: string;
|
|
8
|
-
tax?: string;
|
|
9
|
-
date?: string;
|
|
10
|
-
|
|
4
|
+
amount?: React.ReactNode | string;
|
|
5
|
+
recipient?: React.ReactNode | string;
|
|
6
|
+
receiptNo?: React.ReactNode | string;
|
|
7
|
+
details?: React.ReactNode | string;
|
|
8
|
+
tax?: React.ReactNode | string;
|
|
9
|
+
date?: React.ReactNode | string;
|
|
10
|
+
statusAsText?: React.ReactNode | string;
|
|
11
|
+
action?: React.ReactNode | string;
|
|
11
12
|
onClick?: () => void;
|
|
13
|
+
notShowIcon?: boolean;
|
|
12
14
|
}
|
|
13
|
-
declare const TransactionCard: ({ className, amount, recipient, receiptNo, details, tax, date, action, onClick, }: TransactionCardProps) => JSX.Element;
|
|
15
|
+
declare const TransactionCard: ({ className, amount, recipient, receiptNo, details, tax, date, statusAsText, action, onClick, notShowIcon, }: TransactionCardProps) => JSX.Element;
|
|
14
16
|
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, onClick, }: import("./transaction-card").TransactionCardProps) => JSX.Element;
|
|
6
|
+
component: ({ className, amount, recipient, receiptNo, details, tax, date, statusAsText, action, onClick, notShowIcon, }: import("./transaction-card").TransactionCardProps) => JSX.Element;
|
|
7
7
|
};
|
|
8
8
|
export default _default;
|
|
9
9
|
export declare const TransactionCardStory: {
|
|
@@ -12,3 +12,9 @@ export declare const TransactionCardStory: {
|
|
|
12
12
|
name: string;
|
|
13
13
|
};
|
|
14
14
|
};
|
|
15
|
+
export declare const RegistrationCard: {
|
|
16
|
+
(): JSX.Element;
|
|
17
|
+
story: {
|
|
18
|
+
name: string;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface UploadAndCropperProps {
|
|
3
|
+
imageDefault: string;
|
|
4
|
+
width?: number;
|
|
5
|
+
border?: number;
|
|
6
|
+
borderRadius?: number;
|
|
7
|
+
color?: Array<number> | undefined;
|
|
8
|
+
handleOnRemove?: () => void;
|
|
9
|
+
imagePreview?: string;
|
|
10
|
+
setImagePreview?: (e: any) => void;
|
|
11
|
+
}
|
|
12
|
+
declare const UploadAndCropper: ({ width, border, borderRadius, color, handleOnRemove, imagePreview, setImagePreview, }: UploadAndCropperProps) => JSX.Element;
|
|
13
|
+
export default UploadAndCropper;
|