Skip to content

Commit e31e5fd

Browse files
chore(): add files after build
1 parent 1d5cd4b commit e31e5fd

File tree

5 files changed

+294
-164
lines changed

5 files changed

+294
-164
lines changed

core/api.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1631,6 +1631,7 @@ ion-select,prop,multiple,boolean,false,false,false
16311631
ion-select,prop,name,string,this.inputId,false,false
16321632
ion-select,prop,okText,string,'OK',false,false
16331633
ion-select,prop,placeholder,string | undefined,undefined,false,false
1634+
ion-select,prop,required,boolean,false,false,false
16341635
ion-select,prop,selectedText,null | string | undefined,undefined,false,false
16351636
ion-select,prop,shape,"round" | undefined,undefined,false,false
16361637
ion-select,prop,toggleIcon,string | undefined,undefined,false,false

core/src/components.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2808,6 +2808,10 @@ export namespace Components {
28082808
* The text to display when the select is empty.
28092809
*/
28102810
"placeholder"?: string;
2811+
/**
2812+
* If `true`, the user must fill in a value before submitting a form.
2813+
*/
2814+
"required": boolean;
28112815
/**
28122816
* The text to display instead of the selected option's value.
28132817
*/
@@ -7640,6 +7644,10 @@ declare namespace LocalJSX {
76407644
* The text to display when the select is empty.
76417645
*/
76427646
"placeholder"?: string;
7647+
/**
7648+
* If `true`, the user must fill in a value before submitting a form.
7649+
*/
7650+
"required"?: boolean;
76437651
/**
76447652
* The text to display instead of the selected option's value.
76457653
*/

0 commit comments

Comments
 (0)