@mycause/ui 0.0.0-c957a5ae → 0.0.0-c997babb

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.
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from "react";
2
2
  export interface FavoriteCharityItemProps {
3
3
  className?: string;
4
4
  index?: number;
@@ -9,7 +9,7 @@ export interface FavoriteCharityItemProps {
9
9
  handleClickItem?: () => void;
10
10
  showHeartToggle?: boolean;
11
11
  charityTextLink?: string;
12
- width: string;
12
+ width?: string;
13
13
  }
14
- declare const FavoriteCharityItem: ({ className, index, charityLogoLink, charityName, charityFavorites, handleClick, handleClickItem, showHeartToggle, charityTextLink, width, }: FavoriteCharityItemProps) => JSX.Element;
14
+ declare const FavoriteCharityItem: React.FC<FavoriteCharityItemProps>;
15
15
  export default FavoriteCharityItem;
@@ -1,9 +1,9 @@
1
- /// <reference types="react" />
1
+ import React from "react";
2
2
  import CenterDecorator from "../../utils/center-decorator";
3
3
  declare const _default: {
4
4
  title: string;
5
5
  decorators: (typeof CenterDecorator)[];
6
- component: ({ className, index, charityLogoLink, charityName, charityFavorites, handleClick, handleClickItem, showHeartToggle, charityTextLink, width, }: import("./favorite-charity-item").FavoriteCharityItemProps) => JSX.Element;
6
+ component: React.FunctionComponent<import("./favorite-charity-item").FavoriteCharityItemProps>;
7
7
  };
8
8
  export default _default;
9
9
  export declare const favoriteCharityItemStory1: {
@@ -3,6 +3,7 @@ interface FieldLabelProps extends React.HTMLProps<HTMLLabelElement> {
3
3
  large?: boolean;
4
4
  children?: React.ReactNode;
5
5
  required?: boolean;
6
+ asteriskColor?: string;
6
7
  }
7
- declare function FieldLabel({ large, className, children, required, ...rest }: FieldLabelProps): JSX.Element;
8
+ declare function FieldLabel({ large, className, children, required, asteriskColor, ...rest }: FieldLabelProps): JSX.Element;
8
9
  export default FieldLabel;
@@ -60,3 +60,4 @@ export * from "./my-account-sidebar";
60
60
  export * from "./my-account-frp-preview";
61
61
  export * from "./my-account-stats-donated";
62
62
  export * from "./my-account-stats-raised";
63
+ export * from "./input";
@@ -3,6 +3,9 @@ interface InputDefaltProps {
3
3
  lable?: string;
4
4
  required?: boolean;
5
5
  placeholder?: string;
6
+ onChange: (value: string) => void;
7
+ value: string;
8
+ error?: string | null | boolean;
6
9
  }
7
- declare const Input: ({ lable, required, placeholder }: InputDefaltProps) => JSX.Element;
10
+ declare const Input: ({ lable, required, placeholder, value, onChange, error, }: InputDefaltProps) => JSX.Element;
8
11
  export default Input;
@@ -1 +1 @@
1
- export { default as HorizontalBar } from "./InputDefault";
1
+ export { default as Input } from "./InputDefault";
@@ -10,3 +10,9 @@ export declare const InputExample: {
10
10
  name: string;
11
11
  };
12
12
  };
13
+ export declare const InputV2: {
14
+ (): JSX.Element;
15
+ story: {
16
+ name: string;
17
+ };
18
+ };
@@ -10,6 +10,12 @@ export declare const MyAccountFrpPreviewStory: {
10
10
  name: string;
11
11
  };
12
12
  };
13
+ export declare const MyAccountFrpPreviewStoryV3: {
14
+ (): JSX.Element;
15
+ story: {
16
+ name: string;
17
+ };
18
+ };
13
19
  export declare const MyAccountFrpPreviewStoryV2: {
14
20
  (): JSX.Element;
15
21
  story: {
@@ -7,5 +7,7 @@ declare const Icons: {
7
7
  account: () => JSX.Element;
8
8
  support: () => JSX.Element;
9
9
  additional: () => JSX.Element;
10
+ menu: () => JSX.Element;
11
+ close: () => JSX.Element;
10
12
  };
11
13
  export default Icons;
@@ -4,6 +4,7 @@ export interface MyAccountSidebarProps {
4
4
  dashboard: ItemMenu;
5
5
  account?: ItemMenu;
6
6
  contract?: ItemMenu;
7
+ handleSetOverlay: (value: boolean) => void;
7
8
  }
8
9
  declare type ItemMenu = {
9
10
  id: string;
@@ -11,5 +12,5 @@ declare type ItemMenu = {
11
12
  label: string;
12
13
  href?: string;
13
14
  };
14
- declare const MyAccountSidebar: ({ listMenu, dashboard, account, contract, }: MyAccountSidebarProps) => JSX.Element;
15
+ declare const MyAccountSidebar: ({ listMenu, dashboard, account, contract, handleSetOverlay, }: MyAccountSidebarProps) => JSX.Element;
15
16
  export default MyAccountSidebar;
@@ -1,8 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  export interface MyAccountStatsDonatedProps {
3
- number: number;
3
+ amount: number;
4
4
  donations: number;
5
- campaigns: number;
5
+ viewDonationLink?: string;
6
6
  }
7
- declare const MyAccountStatsDonated: ({ number, donations, }: MyAccountStatsDonatedProps) => JSX.Element;
7
+ declare const MyAccountStatsDonated: ({ amount, donations, viewDonationLink, }: MyAccountStatsDonatedProps) => JSX.Element;
8
8
  export default MyAccountStatsDonated;
@@ -1,8 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  export interface MyAccountStatsRaisedProps {
3
- number: number;
3
+ amount: number;
4
4
  donations: number;
5
5
  campaigns: number;
6
6
  }
7
- declare const MyAccountStatsRaised: ({ number, donations, campaigns, }: MyAccountStatsRaisedProps) => JSX.Element;
7
+ declare const MyAccountStatsRaised: ({ amount, donations, campaigns, }: MyAccountStatsRaisedProps) => JSX.Element;
8
8
  export default MyAccountStatsRaised;
@@ -1,2 +1,3 @@
1
1
  export { default as PhoneNumberInput } from "./phone-number-input";
2
+ export { default as PhoneInput } from "./phone-number-input-v2";
2
3
  export * from "./util";
@@ -0,0 +1,18 @@
1
+ import React from "react";
2
+ import { CountryCode } from "libphonenumber-js";
3
+ declare type PhoneInputProps = {
4
+ values: {
5
+ number: string;
6
+ countryCallingCode: string;
7
+ country: string;
8
+ };
9
+ onChange: (value: string, name: string) => void;
10
+ label?: React.ReactNode;
11
+ error?: string | null;
12
+ required?: boolean;
13
+ defaultCountry?: CountryCode;
14
+ placeholder?: string;
15
+ color?: string;
16
+ };
17
+ declare function PhoneInput({ values, onChange, defaultCountry, label, required, placeholder, error, }: PhoneInputProps): JSX.Element;
18
+ export default PhoneInput;
@@ -11,3 +11,15 @@ export declare const PhoneNumberInputStory: {
11
11
  name: string;
12
12
  };
13
13
  };
14
+ export declare const PhoneInputStory: {
15
+ (): JSX.Element;
16
+ story: {
17
+ name: string;
18
+ };
19
+ };
20
+ export declare const PhoneNumberInputV2: {
21
+ (): JSX.Element;
22
+ story: {
23
+ name: string;
24
+ };
25
+ };
@@ -17,7 +17,9 @@ export interface SelectProps extends Omit<MDCSelectProps, "onEnhancedChange" | "
17
17
  isHelperTextPersistent?: boolean;
18
18
  noArrow?: boolean;
19
19
  color?: string;
20
+ asteriskColor?: string;
20
21
  error?: boolean | string;
22
+ customTrailingIcon?: boolean;
21
23
  }
22
- declare const Select: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, ...rest }: SelectProps) => JSX.Element;
24
+ declare const Select: ({ label, value, onChange, helperText, isHelperTextPersistent, externalLabel, id, className, options, large, required, leadingIcon, noArrow, error, color, asteriskColor, customTrailingIcon, ...rest }: SelectProps) => JSX.Element;
23
25
  export default Select;