zebpay-ui 0.0.33 → 0.0.35

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 CHANGED
@@ -1,6 +1,12 @@
1
- # znew.design.system
1
+ # zebpay-ui
2
2
 
3
- A Component Library and Design System created using React for ZebPay.
3
+ A lightweight component and utilities library Design System created using React for ZebPay. Used in the new [Global Exchage](https://zebpay.com/exchange), [OTC](https://zebpay.com/otc), [User App](https://zebpay.com/app)
4
+
5
+ ### Development
6
+
7
+ ```
8
+ yarn; yarn build:icons; yarn storybook;
9
+ ```
4
10
 
5
11
  ### Steps to add a new icon:
6
12
 
@@ -11,6 +11,9 @@ export declare type PinInputProps = {
11
11
  onComplete?: (values: string[]) => void;
12
12
  invalid?: boolean;
13
13
  style?: SerializedStyles;
14
+ labelStyle?: SerializedStyles;
15
+ inputContainerStyle?: SerializedStyles;
16
+ inputFieldStyle?: SerializedStyles;
14
17
  } & Pick<React.InputHTMLAttributes<HTMLInputElement>, "disabled" | "id" | "inputMode" | "onBlur" | "onFocus" | "onKeyDown" | "placeholder">;
15
18
  export declare type PinInputFieldProps = {
16
19
  index: number;