zebpay-ui 0.0.32 → 0.0.34

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.
Files changed (50) hide show
  1. package/README.md +8 -2
  2. package/dist/cjs/components/PinInput/typing.d.ts +3 -0
  3. package/dist/cjs/index.js +1 -1
  4. package/dist/cjs/index.js.map +1 -1
  5. package/dist/esm/components/PinInput/typing.d.ts +3 -0
  6. package/dist/esm/index.js +1 -1
  7. package/dist/esm/index.js.map +1 -1
  8. package/package.json +8 -2
  9. package/storybook-static/0.0c565d7cbac7dd8ee3e7.manager.bundle.js +2 -0
  10. package/storybook-static/0.0c565d7cbac7dd8ee3e7.manager.bundle.js.LICENSE.txt +8 -0
  11. package/storybook-static/0.e89aef7e.iframe.bundle.js +3 -0
  12. package/storybook-static/0.e89aef7e.iframe.bundle.js.LICENSE.txt +8 -0
  13. package/storybook-static/0.e89aef7e.iframe.bundle.js.map +1 -0
  14. package/storybook-static/1.acc22fc1.iframe.bundle.js +3 -0
  15. package/storybook-static/1.acc22fc1.iframe.bundle.js.LICENSE.txt +14 -0
  16. package/storybook-static/1.acc22fc1.iframe.bundle.js.map +1 -0
  17. package/storybook-static/1.c409245f27aef9e70504.manager.bundle.js +1 -0
  18. package/storybook-static/10.c73a8dbd.iframe.bundle.js +3 -0
  19. package/storybook-static/10.c73a8dbd.iframe.bundle.js.LICENSE.txt +12 -0
  20. package/storybook-static/10.c73a8dbd.iframe.bundle.js.map +1 -0
  21. package/storybook-static/2.f6a01323.iframe.bundle.js +1 -0
  22. package/storybook-static/3.1f064d0b.iframe.bundle.js +1 -0
  23. package/storybook-static/5.c518804c068ae5cb7e7e.manager.bundle.js +2 -0
  24. package/storybook-static/5.c518804c068ae5cb7e7e.manager.bundle.js.LICENSE.txt +31 -0
  25. package/storybook-static/6.04fc6e11d2910d38c539.manager.bundle.js +1 -0
  26. package/storybook-static/7.1d695bd211fbb23c96d2.manager.bundle.js +1 -0
  27. package/storybook-static/7.6a0189c5.iframe.bundle.js +3 -0
  28. package/storybook-static/7.6a0189c5.iframe.bundle.js.LICENSE.txt +31 -0
  29. package/storybook-static/7.6a0189c5.iframe.bundle.js.map +1 -0
  30. package/storybook-static/8.3508c5121d2f48fe8efd.manager.bundle.js +2 -0
  31. package/storybook-static/8.3508c5121d2f48fe8efd.manager.bundle.js.LICENSE.txt +12 -0
  32. package/storybook-static/8.d94220da.iframe.bundle.js +1 -0
  33. package/storybook-static/9.c3051aa6.iframe.bundle.js +1 -0
  34. package/storybook-static/9.f938a82dbcf36bc59009.manager.bundle.js +1 -0
  35. package/storybook-static/favicon.ico +0 -0
  36. package/storybook-static/iframe.html +364 -0
  37. package/storybook-static/index.html +59 -0
  38. package/storybook-static/main.87e7ec50.iframe.bundle.js +1 -0
  39. package/storybook-static/main.d75d1c50cee2f421f173.manager.bundle.js +1 -0
  40. package/storybook-static/project.json +1 -0
  41. package/storybook-static/runtime~main.182a24d500fec02cdc8f.manager.bundle.js +1 -0
  42. package/storybook-static/runtime~main.1ca94aef.iframe.bundle.js +1 -0
  43. package/storybook-static/static/media/icons.a38a35ae.woff2 +0 -0
  44. package/storybook-static/static/media/icons.bc0a02f6.eot +0 -0
  45. package/storybook-static/static/media/icons.eea0a3fa.woff +0 -0
  46. package/storybook-static/vendors~main.d0f6ba62.iframe.bundle.js +3 -0
  47. package/storybook-static/vendors~main.d0f6ba62.iframe.bundle.js.LICENSE.txt +100 -0
  48. package/storybook-static/vendors~main.d0f6ba62.iframe.bundle.js.map +1 -0
  49. package/storybook-static/vendors~main.e812b4628120b96ad200.manager.bundle.js +2 -0
  50. package/storybook-static/vendors~main.e812b4628120b96ad200.manager.bundle.js.LICENSE.txt +104 -0
@@ -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;