@appquality/unguess-design-system 4.0.68 → 4.0.69

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,16 @@
1
+ # v4.0.69 (Thu Mar 12 2026)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Added CodeVerifier component [#589](https://github.com/AppQuality/unguess-design-system/pull/589) ([@iDome89](https://github.com/iDome89))
6
+ - feat: Add CodeVerifier component with validation and input handling [#588](https://github.com/AppQuality/unguess-design-system/pull/588) ([@iDome89](https://github.com/iDome89))
7
+
8
+ #### Authors: 1
9
+
10
+ - [@iDome89](https://github.com/iDome89)
11
+
12
+ ---
13
+
1
14
  # v4.0.68 (Wed Feb 25 2026)
2
15
 
3
16
  #### 🐛 Bug Fix
package/build/index.d.ts CHANGED
@@ -734,6 +734,26 @@ declare interface CodeArgs extends ICodeProps {
734
734
  size?: "small" | "medium" | "large" | "inherit";
735
735
  }
736
736
 
737
+ export declare const CodeVerifier: ForwardRefExoticComponent<CodeVerifierArgs & RefAttributes<CodeVerifierRef>>;
738
+
739
+ export declare interface CodeVerifierArgs {
740
+ length: number;
741
+ type?: CodeVerifierInputType;
742
+ validation?: "success" | "warning" | "error";
743
+ disabled?: boolean;
744
+ value?: string;
745
+ autoFocus?: boolean;
746
+ onComplete?: (code: string) => void;
747
+ onChange?: (code: string) => void;
748
+ }
749
+
750
+ declare type CodeVerifierInputType = "alphanumeric" | "numeric";
751
+
752
+ export declare interface CodeVerifierRef {
753
+ reset: () => void;
754
+ focus: () => void;
755
+ }
756
+
737
757
  export declare const Col: (props: ColArgs) => JSX_2.Element;
738
758
 
739
759
  declare interface ColArgs extends IColProps {