Skip to content

Commit

Permalink
update api-report
Browse files Browse the repository at this point in the history
  • Loading branch information
radium-v committed Jun 21, 2024
1 parent bd08dfe commit da4b780
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions packages/web-components/docs/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -590,14 +590,13 @@ export type ButtonType = ValuesOf<typeof ButtonType>;
// @public
export class Checkbox extends BaseCheckbox {
constructor();
// (undocumented)
get ariaChecked(): string | null;
set ariaChecked(value: string | null);
// @internal
formResetCallback(): void;
indeterminate?: boolean;
// @internal
indeterminateChanged(prev: boolean | undefined, next: boolean | undefined): void;
// (undocumented)
setAriaChecked(value?: boolean): void;
shape?: CheckboxShape;
shapeChanged(prev: CheckboxShape | undefined, next: CheckboxShape | undefined): void;
size?: CheckboxSize;
Expand Down Expand Up @@ -2002,7 +2001,7 @@ export const durationUltraSlow = "var(--durationUltraSlow)";
export class Field extends FASTElement {
constructor();
// @internal
changeHandler(e: Event): void;
changeHandler(e: Event): boolean | void;
// @internal
clickHandler(e: MouseEvent): boolean | void;
// @internal
Expand All @@ -2025,6 +2024,8 @@ export class Field extends FASTElement {
messageSlotChanged(prev: Element[], next: Element[]): void;
// @internal
setStates(): void;
// (undocumented)
setValidationStates(): void;
// @internal
slottedInputs: SlottableInput[];
// @internal
Expand Down Expand Up @@ -2571,21 +2572,24 @@ export type ProgressBarValidationState = ValuesOf<typeof ProgressBarValidationSt
// @public
export class Radio extends BaseCheckbox {
constructor();
get ariaPosInSet(): string | null;
set ariaPosInSet(value: string | null);
get ariaSetSize(): string | null;
set ariaSetSize(value: string | null);
// (undocumented)
protected disabledChanged(prev: boolean | undefined, next: boolean | undefined): void;
getAriaPosInSet(): string | null;
// (undocumented)
initialCheckedChanged(prev: boolean | undefined, next: boolean | undefined): void;
// (undocumented)
requiredChanged(): void;
// (undocumented)
setAriaPosInSet(value: string | null): void;
// (undocumented)
setFormValue(): void;
// (undocumented)
setValidity(): void;
// (undocumented)
tabIndex: number;
// (undocumented)
toggleChecked(state?: boolean): void;
}

Expand All @@ -2598,13 +2602,16 @@ export const RadioDefinition: FASTElementDefinition<typeof Radio>;
// @public
export class RadioGroup extends FASTElement {
constructor();
// (undocumented)
get ariaOwns(): string;
changeHandler(e: Event): boolean | void;
// @internal
protected checkedIndex: number;
// @internal
protected checkedIndexChanged(prev: number | undefined, next: number): void;
// @internal
checkRadio(index?: number): void;
checkValidity(): boolean;
// @internal
clickHandler(e: MouseEvent): boolean | void;
// (undocumented)
Expand All @@ -2625,6 +2632,8 @@ export class RadioGroup extends FASTElement {
// @internal
focusoutHandler(e: FocusEvent): boolean | void;
static formAssociated: boolean;
// (undocumented)
formResetCallback(): void;
// @internal
handleChange(source: any, key: string): void;
initialValue?: string;
Expand All @@ -2637,6 +2646,7 @@ export class RadioGroup extends FASTElement {
orientation: RadioGroupOrientation;
radios: Radio[];
radiosChanged(prev: Radio[], next: Radio[]): void;
reportValidity(): boolean;
required: boolean;
// (undocumented)
requiredChanged(prev: boolean, next: boolean): void;
Expand All @@ -2647,8 +2657,8 @@ export class RadioGroup extends FASTElement {
// @internal
get validationMessage(): string;
get validity(): ValidityState;
get value(): string;
set value(value: string);
get value(): string | null;
set value(value: string | null);
}

// @public
Expand Down Expand Up @@ -2867,6 +2877,8 @@ export type SlottableInput = HTMLElement & ElementInternals & {
required: boolean;
disabled: boolean;
readOnly: boolean;
checked?: boolean;
value?: string;
};

// @public
Expand Down

0 comments on commit da4b780

Please sign in to comment.