Skip to content

Commit 4af07f3

Browse files
chore(): add files after build
1 parent 3f46aef commit 4af07f3

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
@@ -403,6 +403,7 @@ ion-checkbox,prop,justify,"end" | "space-between" | "start" | undefined,undefine
403403
ion-checkbox,prop,labelPlacement,"end" | "fixed" | "stacked" | "start",'start',false,false
404404
ion-checkbox,prop,mode,"ios" | "md",undefined,false,false
405405
ion-checkbox,prop,name,string,this.inputId,false,false
406+
ion-checkbox,prop,required,boolean,false,false,false
406407
ion-checkbox,prop,value,any,'on',false,false
407408
ion-checkbox,event,ionBlur,void,true
408409
ion-checkbox,event,ionChange,CheckboxChangeEventDetail<any>,true

core/src/components.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -643,6 +643,10 @@ export namespace Components {
643643
* The name of the control, which is submitted with the form data.
644644
*/
645645
"name": string;
646+
/**
647+
* If `true`, the user must fill in a value before submitting a form.
648+
*/
649+
"required": boolean;
646650
"setFocus": () => Promise<void>;
647651
/**
648652
* The value of the checkbox does not mean if it's checked or not, use the `checked` property for that. The value of a checkbox is analogous to the value of an `<input type="checkbox">`, it's only used when the checkbox participates in a native `<form>`.
@@ -5435,6 +5439,10 @@ declare namespace LocalJSX {
54355439
* Emitted when the checkbox has focus.
54365440
*/
54375441
"onIonFocus"?: (event: IonCheckboxCustomEvent<void>) => void;
5442+
/**
5443+
* If `true`, the user must fill in a value before submitting a form.
5444+
*/
5445+
"required"?: boolean;
54385446
/**
54395447
* The value of the checkbox does not mean if it's checked or not, use the `checked` property for that. The value of a checkbox is analogous to the value of an `<input type="checkbox">`, it's only used when the checkbox participates in a native `<form>`.
54405448
*/

0 commit comments

Comments
 (0)