Skip to content

Commit 5a19912

Browse files
fix: input components size prop type fixes
1 parent 148ac7d commit 5a19912

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

apps/showcase/assets/apidoc/index.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304197,7 +304197,7 @@
304197304197
"name": "size",
304198304198
"optional": true,
304199304199
"readonly": false,
304200-
"type": "\"small\" | \"large\" | \"normal\"",
304200+
"type": "\"small\" | \"large\"",
304201304201
"default": "",
304202304202
"description": "Defines the size of the InputText."
304203304203
},
@@ -311169,7 +311169,7 @@
311169311169
"name": "size",
311170311170
"optional": true,
311171311171
"readonly": false,
311172-
"type": "\"small\" | \"large\" | \"normal\"",
311172+
"type": "\"small\" | \"large\"",
311173311173
"default": "",
311174311174
"description": "Defines the size of the InputText."
311175311175
},
@@ -584064,7 +584064,7 @@
584064584064
"name": "size",
584065584065
"optional": true,
584066584066
"readonly": false,
584067-
"type": "\"small\" | \"large\" | \"normal\"",
584067+
"type": "\"small\" | \"large\"",
584068584068
"default": "",
584069584069
"description": "Defines the size of the Textarea."
584070584070
},

packages/types/src/shared/inputotp/InputOtp.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export interface InputOtpProps extends BaseComponentProps<InputOtpInstance, useI
3838
/**
3939
* Defines the size of the InputText.
4040
*/
41-
size?: 'small' | 'normal' | 'large' | undefined;
41+
size?: 'small' | 'large' | undefined;
4242
/**
4343
* Specifies the input variant of the component.
4444
*/

packages/types/src/shared/inputtext/InputText.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export interface InputTextProps extends BaseComponentProps<InputTextInstance, us
3434
/**
3535
* Defines the size of the InputText.
3636
*/
37-
size?: 'small' | 'normal' | 'large' | undefined;
37+
size?: 'small' | 'large' | undefined;
3838
/**
3939
* Specifies the input variant of the component.
4040
*/

packages/types/src/shared/textarea/Textarea.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export interface TextareaProps extends BaseComponentProps<TextareaInstance, useT
3434
/**
3535
* Defines the size of the Textarea.
3636
*/
37-
size?: 'small' | 'normal' | 'large' | undefined;
37+
size?: 'small' | 'large' | undefined;
3838
/**
3939
* Specifies the input variant of the component.
4040
*/

0 commit comments

Comments
 (0)