@team_yumi/ramen 1.0.2-next.20240312-4af27c2-1225c546167077cedebeb96b52a47ddf → 1.0.2-next.20240313-a294498-fedf0dc1b04894fa4df124ed6131dd7a
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/package.json
CHANGED
|
@@ -26,6 +26,10 @@ export interface IProps extends Omit<IInputProps, 'type'> {
|
|
|
26
26
|
* Whether the input field is mandatory.
|
|
27
27
|
*/
|
|
28
28
|
mandatory?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Max digital count
|
|
31
|
+
*/
|
|
32
|
+
maxNumber?: number;
|
|
29
33
|
}
|
|
30
34
|
declare const XTextField: React.FC<IProps>;
|
|
31
35
|
export default XTextField;
|