@paymanai/payman-ask-sdk 1.2.18 → 1.2.19
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/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +362 -152
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +363 -153
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +352 -222
- package/dist/index.native.js.map +1 -1
- package/dist/styles.css +70 -0
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -416,6 +416,8 @@ type OtpInputProps = {
|
|
|
416
416
|
maxLength: number;
|
|
417
417
|
/** Disabled state */
|
|
418
418
|
disabled?: boolean;
|
|
419
|
+
/** Transient error state — triggers red borders + shake */
|
|
420
|
+
error?: boolean;
|
|
419
421
|
};
|
|
420
422
|
type UserActionModalProps = {
|
|
421
423
|
/** Whether the modal is open */
|
package/dist/index.d.ts
CHANGED
|
@@ -416,6 +416,8 @@ type OtpInputProps = {
|
|
|
416
416
|
maxLength: number;
|
|
417
417
|
/** Disabled state */
|
|
418
418
|
disabled?: boolean;
|
|
419
|
+
/** Transient error state — triggers red borders + shake */
|
|
420
|
+
error?: boolean;
|
|
419
421
|
};
|
|
420
422
|
type UserActionModalProps = {
|
|
421
423
|
/** Whether the modal is open */
|