You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hasItem("This is a description for your first name field")));
@@ -90,7 +94,7 @@ public void testGenerate_textField_WithFieldAddonLeft() throws JsonProcessingExc
90
94
91
95
classTextFieldFormimplementsSerializable {
92
96
93
-
@TextField(title = "First Name", placeHolder = "Your first name", pattern = "[a-z]", noTitle = true, validationMessage = "this is a validation msg", description = "This is a description for your first name field", readOnly = true)
97
+
@TextField(title = "First Name", placeHolder = "Your first name", pattern = "[a-z]",minLenght=6,maxLenght=10,noTitle = true, validationMessage = "this is a validation msg", description = "This is a description for your first name field", readOnly = true)
94
98
privateStringfirstName;
95
99
96
100
publicStringgetFirstName() {
@@ -101,7 +105,7 @@ public String getFirstName() {
101
105
102
106
classTextFieldFormRightimplementsSerializable {
103
107
104
-
@TextField(title = "First Name", placeHolder = "Your first name", fieldAddonRight = "@", pattern = "[a-z]", noTitle = true, validationMessage = "this is a validation msg", description = "This is a description for your first name field")
108
+
@TextField(title = "First Name", placeHolder = "Your first name", fieldAddonRight = "@", pattern = "[a-z]",minLenght=6,maxLenght=10,noTitle = true, validationMessage = "this is a validation msg", description = "This is a description for your first name field")
105
109
privateStringfirstName;
106
110
107
111
publicStringgetFirstName() {
@@ -120,3 +124,5 @@ public String getFirstName() {
0 commit comments