@@ -41,7 +41,8 @@ var inputType = {
41
41
* @param {number= } ngMinlength Sets `minlength` validation error key if the value is shorter than
42
42
* minlength.
43
43
* @param {number= } ngMaxlength Sets `maxlength` validation error key if the value is longer than
44
- * maxlength.
44
+ * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of
45
+ * any length.
45
46
* @param {string= } pattern Similar to `ngPattern` except that the attribute value is the actual string
46
47
* that contains the regular expression body that will be converted to a regular expression
47
48
* as in the ngPattern directive.
@@ -589,7 +590,8 @@ var inputType = {
589
590
* @param {number= } ngMinlength Sets `minlength` validation error key if the value is shorter than
590
591
* minlength.
591
592
* @param {number= } ngMaxlength Sets `maxlength` validation error key if the value is longer than
592
- * maxlength.
593
+ * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of
594
+ * any length.
593
595
* @param {string= } pattern Similar to `ngPattern` except that the attribute value is the actual string
594
596
* that contains the regular expression body that will be converted to a regular expression
595
597
* as in the ngPattern directive.
@@ -676,7 +678,8 @@ var inputType = {
676
678
* @param {number= } ngMinlength Sets `minlength` validation error key if the value is shorter than
677
679
* minlength.
678
680
* @param {number= } ngMaxlength Sets `maxlength` validation error key if the value is longer than
679
- * maxlength.
681
+ * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of
682
+ * any length.
680
683
* @param {string= } pattern Similar to `ngPattern` except that the attribute value is the actual string
681
684
* that contains the regular expression body that will be converted to a regular expression
682
685
* as in the ngPattern directive.
@@ -764,7 +767,8 @@ var inputType = {
764
767
* @param {number= } ngMinlength Sets `minlength` validation error key if the value is shorter than
765
768
* minlength.
766
769
* @param {number= } ngMaxlength Sets `maxlength` validation error key if the value is longer than
767
- * maxlength.
770
+ * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of
771
+ * any length.
768
772
* @param {string= } pattern Similar to `ngPattern` except that the attribute value is the actual string
769
773
* that contains the regular expression body that will be converted to a regular expression
770
774
* as in the ngPattern directive.
@@ -1370,7 +1374,8 @@ function checkboxInputType(scope, element, attr, ctrl, $sniffer, $browser, $filt
1370
1374
* @param {number= } ngMinlength Sets `minlength` validation error key if the value is shorter than
1371
1375
* minlength.
1372
1376
* @param {number= } ngMaxlength Sets `maxlength` validation error key if the value is longer than
1373
- * maxlength.
1377
+ * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of any
1378
+ * length.
1374
1379
* @param {string= } ngPattern Sets `pattern` validation error key if the value does not match the
1375
1380
* RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for
1376
1381
* patterns defined as scope expressions.
@@ -1402,7 +1407,8 @@ function checkboxInputType(scope, element, attr, ctrl, $sniffer, $browser, $filt
1402
1407
* @param {number= } ngMinlength Sets `minlength` validation error key if the value is shorter than
1403
1408
* minlength.
1404
1409
* @param {number= } ngMaxlength Sets `maxlength` validation error key if the value is longer than
1405
- * maxlength.
1410
+ * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of any
1411
+ * length.
1406
1412
* @param {string= } ngPattern Sets `pattern` validation error key if the value does not match the
1407
1413
* RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for
1408
1414
* patterns defined as scope expressions.
0 commit comments