diff --git a/core/src/components.d.ts b/core/src/components.d.ts index 7a0c2638ba3..1cd7c27747f 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -1277,9 +1277,6 @@ export namespace Components { * The shape of the input. If "round" it will have an increased border radius. */ "shape"?: 'round'; - /** - * The initial size of the control. This value is in pixels unless the value of the type attribute is `"text"` or `"password"`, in which case it is an integer number of characters. This attribute applies only when the `type` attribute is set to `"text"`, `"search"`, `"tel"`, `"url"`, `"email"`, or `"password"`, otherwise it is ignored. - */ "size"?: number; /** * If `true`, the element will have its spelling and grammar checked. @@ -5339,9 +5336,6 @@ declare namespace LocalJSX { * The shape of the input. If "round" it will have an increased border radius. */ "shape"?: 'round'; - /** - * The initial size of the control. This value is in pixels unless the value of the type attribute is `"text"` or `"password"`, in which case it is an integer number of characters. This attribute applies only when the `type` attribute is set to `"text"`, `"search"`, `"tel"`, `"url"`, `"email"`, or `"password"`, otherwise it is ignored. - */ "size"?: number; /** * If `true`, the element will have its spelling and grammar checked. diff --git a/core/src/components/input/input.tsx b/core/src/components/input/input.tsx index edbc963c373..44dec367e4c 100644 --- a/core/src/components/input/input.tsx +++ b/core/src/components/input/input.tsx @@ -268,9 +268,7 @@ export class Input implements ComponentInterface { */ @Prop() step?: string; - /** - * The initial size of the control. This value is in pixels unless the value of the type attribute is `"text"` or `"password"`, in which case it is an integer number of characters. This attribute applies only when the `type` attribute is set to `"text"`, `"search"`, `"tel"`, `"url"`, `"email"`, or `"password"`, otherwise it is ignored. - */ + // FW-4914 Remove this property in Ionic 8 @Prop() size?: number; /**