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.
- package/README.md +8 -2
- package/dist/cjs/components/PinInput/typing.d.ts +3 -0
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/PinInput/typing.d.ts +3 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +8 -2
- package/storybook-static/0.0c565d7cbac7dd8ee3e7.manager.bundle.js +2 -0
- package/storybook-static/0.0c565d7cbac7dd8ee3e7.manager.bundle.js.LICENSE.txt +8 -0
- package/storybook-static/0.e89aef7e.iframe.bundle.js +3 -0
- package/storybook-static/0.e89aef7e.iframe.bundle.js.LICENSE.txt +8 -0
- package/storybook-static/0.e89aef7e.iframe.bundle.js.map +1 -0
- package/storybook-static/1.acc22fc1.iframe.bundle.js +3 -0
- package/storybook-static/1.acc22fc1.iframe.bundle.js.LICENSE.txt +14 -0
- package/storybook-static/1.acc22fc1.iframe.bundle.js.map +1 -0
- package/storybook-static/1.c409245f27aef9e70504.manager.bundle.js +1 -0
- package/storybook-static/10.c73a8dbd.iframe.bundle.js +3 -0
- package/storybook-static/10.c73a8dbd.iframe.bundle.js.LICENSE.txt +12 -0
- package/storybook-static/10.c73a8dbd.iframe.bundle.js.map +1 -0
- package/storybook-static/2.f6a01323.iframe.bundle.js +1 -0
- package/storybook-static/3.1f064d0b.iframe.bundle.js +1 -0
- package/storybook-static/5.c518804c068ae5cb7e7e.manager.bundle.js +2 -0
- package/storybook-static/5.c518804c068ae5cb7e7e.manager.bundle.js.LICENSE.txt +31 -0
- package/storybook-static/6.04fc6e11d2910d38c539.manager.bundle.js +1 -0
- package/storybook-static/7.1d695bd211fbb23c96d2.manager.bundle.js +1 -0
- package/storybook-static/7.6a0189c5.iframe.bundle.js +3 -0
- package/storybook-static/7.6a0189c5.iframe.bundle.js.LICENSE.txt +31 -0
- package/storybook-static/7.6a0189c5.iframe.bundle.js.map +1 -0
- package/storybook-static/8.3508c5121d2f48fe8efd.manager.bundle.js +2 -0
- package/storybook-static/8.3508c5121d2f48fe8efd.manager.bundle.js.LICENSE.txt +12 -0
- package/storybook-static/8.d94220da.iframe.bundle.js +1 -0
- package/storybook-static/9.c3051aa6.iframe.bundle.js +1 -0
- package/storybook-static/9.f938a82dbcf36bc59009.manager.bundle.js +1 -0
- package/storybook-static/favicon.ico +0 -0
- package/storybook-static/iframe.html +364 -0
- package/storybook-static/index.html +59 -0
- package/storybook-static/main.87e7ec50.iframe.bundle.js +1 -0
- package/storybook-static/main.d75d1c50cee2f421f173.manager.bundle.js +1 -0
- package/storybook-static/project.json +1 -0
- package/storybook-static/runtime~main.182a24d500fec02cdc8f.manager.bundle.js +1 -0
- package/storybook-static/runtime~main.1ca94aef.iframe.bundle.js +1 -0
- package/storybook-static/static/media/icons.a38a35ae.woff2 +0 -0
- package/storybook-static/static/media/icons.bc0a02f6.eot +0 -0
- package/storybook-static/static/media/icons.eea0a3fa.woff +0 -0
- package/storybook-static/vendors~main.d0f6ba62.iframe.bundle.js +3 -0
- package/storybook-static/vendors~main.d0f6ba62.iframe.bundle.js.LICENSE.txt +100 -0
- package/storybook-static/vendors~main.d0f6ba62.iframe.bundle.js.map +1 -0
- package/storybook-static/vendors~main.e812b4628120b96ad200.manager.bundle.js +2 -0
- 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;
|