File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
packages/calcite-components/src Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -2287,6 +2287,7 @@ export namespace Components {
2287
2287
/**
2288
2288
* Specifies the maximum length of text for the component's value.
2289
2289
* @mdn [maxlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#maxlength)
2290
+ * @deprecated This property has no effect on the component.
2290
2291
*/
2291
2292
"maxLength": number;
2292
2293
/**
@@ -2305,6 +2306,7 @@ export namespace Components {
2305
2306
/**
2306
2307
* Specifies the minimum length of text for the component's value.
2307
2308
* @mdn [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#minlength)
2309
+ * @deprecated This property has no effect on the component.
2308
2310
*/
2309
2311
"minLength": number;
2310
2312
/**
@@ -9661,6 +9663,7 @@ declare namespace LocalJSX {
9661
9663
/**
9662
9664
* Specifies the maximum length of text for the component's value.
9663
9665
* @mdn [maxlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#maxlength)
9666
+ * @deprecated This property has no effect on the component.
9664
9667
*/
9665
9668
"maxLength"?: number;
9666
9669
/**
@@ -9679,6 +9682,7 @@ declare namespace LocalJSX {
9679
9682
/**
9680
9683
* Specifies the minimum length of text for the component's value.
9681
9684
* @mdn [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#minlength)
9685
+ * @deprecated This property has no effect on the component.
9682
9686
*/
9683
9687
"minLength"?: number;
9684
9688
/**
Original file line number Diff line number Diff line change @@ -202,13 +202,17 @@ export class InputNumber
202
202
* Specifies the maximum length of text for the component's value.
203
203
*
204
204
* @mdn [maxlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#maxlength)
205
+ *
206
+ * @deprecated This property has no effect on the component.
205
207
*/
206
208
@Prop ( { reflect : true } ) maxLength : number ;
207
209
208
210
/**
209
211
* Specifies the minimum length of text for the component's value.
210
212
*
211
213
* @mdn [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#minlength)
214
+ *
215
+ * @deprecated This property has no effect on the component.
212
216
*/
213
217
@Prop ( { reflect : true } ) minLength : number ;
214
218
You can’t perform that action at this time.
0 commit comments