Skip to content

Commit 15c3ac8

Browse files
committed
style: order
1 parent 3ee6fe8 commit 15c3ac8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

core/src/components/input-otp/input-otp.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,6 @@ export class InputOTP implements ComponentInterface {
101101
*/
102102
@Prop({ reflect: true }) readonly = false;
103103

104-
/**
105-
* The size of the input boxes.
106-
*/
107-
@Prop() size: 'small' | 'medium' | 'large' = 'medium';
108-
109104
/**
110105
* Where separators should be shown between input boxes.
111106
* Can be a comma-separated string or an array of numbers.
@@ -125,6 +120,11 @@ export class InputOTP implements ComponentInterface {
125120
*/
126121
@Prop() shape: 'round' | 'rectangular' | 'soft' = 'round';
127122

123+
/**
124+
* The size of the input boxes.
125+
*/
126+
@Prop() size: 'small' | 'medium' | 'large' = 'medium';
127+
128128
/**
129129
* The type of input allowed in the input boxes.
130130
*/

packages/vue/src/proxies.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,9 +501,9 @@ export const IonInputOtp: StencilVueComponent<JSX.IonInputOtp, JSX.IonInputOtp["
501501
'length',
502502
'pattern',
503503
'readonly',
504-
'size',
505504
'separators',
506505
'shape',
506+
'size',
507507
'type',
508508
'value',
509509
'ionInput',

0 commit comments

Comments
 (0)