@mycause/ui 0.0.0-cd93514f → 0.0.0-cdab8faf

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 CHANGED
@@ -1,3 +1,24 @@
1
+ ## 0.18.11
2
+
3
+ ###### Wed, 12 Jun 2024
4
+
5
+ - Create inputSocial
6
+ - Create switchV2
7
+
8
+ ## 0.18.10
9
+
10
+ ###### Mon, 03 Jun 2024
11
+
12
+ - Update transaction card.
13
+
14
+ ## 0.18.9
15
+
16
+ ###### Tue, 16 Apr 2024
17
+
18
+ - CustomHeaderSingleDatePicker
19
+ - custom single date picker with header select month, year
20
+ - Create select v2
21
+
1
22
  ## 0.18.8
2
23
 
3
24
  ###### Fri, 15 Mar 2024
@@ -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,7 @@
1
+ /// <reference types="react" />
2
+ declare const Icons: {
3
+ close: (props: any) => JSX.Element;
4
+ error: (props: any) => JSX.Element;
5
+ warning: () => JSX.Element;
6
+ };
7
+ export default Icons;
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ declare const _default: {
3
+ title: string;
4
+ decorators: ((...args: any) => any)[];
5
+ };
6
+ export default _default;
7
+ export declare const SwitchDefault: {
8
+ (): JSX.Element;
9
+ story: {
10
+ name: string;
11
+ };
12
+ };
@@ -0,0 +1 @@
1
+ export { default as CreditCardForm } from "./CreditCardForm";
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ declare const _default: {
3
+ title: string;
4
+ decorators: ((...args: any) => any)[];
5
+ };
6
+ export default _default;
7
+ export declare const SwitchDefault: {
8
+ (): JSX.Element;
9
+ story: {
10
+ name: string;
11
+ };
12
+ };
@@ -20,6 +20,7 @@ export interface DatePickerProps {
20
20
  label?: string;
21
21
  width?: string;
22
22
  isOutsideRange?: () => 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;
@@ -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;
@@ -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,7 @@ export interface PartnerMonthlyTableProps {
12
12
  title?: string;
13
13
  tooltip?: string;
14
14
  customBottomRow?: React.ReactNode;
15
+ onClickRow?: (item: any) => void;
15
16
  }
16
- declare const PartnerMonthlyTable: ({ columns, data, title, tooltip, customBottomRow, }: PartnerMonthlyTableProps) => JSX.Element;
17
+ declare const PartnerMonthlyTable: ({ columns, data, title, tooltip, customBottomRow, onClickRow, }: PartnerMonthlyTableProps) => JSX.Element;
17
18
  export default PartnerMonthlyTable;
@@ -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
- action?: React.ReactNode;
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,6 @@
1
+ /// <reference types="react" />
2
+ declare const Icons: {
3
+ upload: (props?: {}) => JSX.Element;
4
+ remove: (props?: {}) => JSX.Element;
5
+ };
6
+ export default Icons;
@@ -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;