@mycause/ui 0.18.9 → 0.18.10
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 +6 -0
- package/dist/components/credit-card-form/CreditCardForm.d.ts +13 -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/index.d.ts +2 -2
- 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/modal/modal.stories.d.ts +2 -2
- package/dist/components/my-account-sidebar/my-account-sidebar.d.ts +2 -3
- package/dist/components/switch/switch-v2.d.ts +8 -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 +277 -275
- package/dist/index.js +277 -275
- package/package.json +1 -1
- package/dist/components/select/SelectV2.d.ts +0 -24
package/CHANGELOG.md
CHANGED
|
@@ -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";
|
|
@@ -47,6 +47,8 @@ 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 "./input";
|
|
51
|
+
export * from "./toast";
|
|
50
52
|
export * from "./my-account-start-fundraise-card";
|
|
51
53
|
export * from "./my-account-choose-charity-card";
|
|
52
54
|
export * from "./favorite-charity-item";
|
|
@@ -54,7 +56,5 @@ export * from "./my-account-sidebar";
|
|
|
54
56
|
export * from "./my-account-frp-preview";
|
|
55
57
|
export * from "./my-account-stats-donated";
|
|
56
58
|
export * from "./my-account-stats-raised";
|
|
57
|
-
export * from "./input";
|
|
58
59
|
export * from "./my-account-frp-closed";
|
|
59
60
|
export * from "./transaction-card";
|
|
60
|
-
export * from "./toast";
|
|
@@ -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";
|
|
@@ -29,13 +29,13 @@ export declare const ModalStoriesMinimal: {
|
|
|
29
29
|
name: string;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
|
-
export declare const
|
|
32
|
+
export declare const ModalConfirmation: {
|
|
33
33
|
(): JSX.Element;
|
|
34
34
|
story: {
|
|
35
35
|
name: string;
|
|
36
36
|
};
|
|
37
37
|
};
|
|
38
|
-
export declare const
|
|
38
|
+
export declare const ModalStoriesImage: {
|
|
39
39
|
(): JSX.Element;
|
|
40
40
|
story: {
|
|
41
41
|
name: string;
|
|
@@ -2,11 +2,10 @@
|
|
|
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;
|
|
10
9
|
}
|
|
11
10
|
declare type ItemMenu = {
|
|
12
11
|
id: string;
|
|
@@ -15,5 +14,5 @@ declare type ItemMenu = {
|
|
|
15
14
|
href?: string;
|
|
16
15
|
items?: Array<ItemMenu>;
|
|
17
16
|
};
|
|
18
|
-
declare const MyAccountSidebar: ({ listMenu, dashboard, account, contract, handleSetOverlay, activeMenu,
|
|
17
|
+
declare const MyAccountSidebar: ({ listMenu, dashboard, account, contract, handleSetOverlay, activeMenu, }: MyAccountSidebarProps) => JSX.Element;
|
|
19
18
|
export default MyAccountSidebar;
|
|
@@ -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,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;
|