Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
autoreleaser committed Aug 4, 2023
1 parent fa5f1df commit 58724be
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
4 changes: 2 additions & 2 deletions pr/58/custom-elements.json
Original file line number Diff line number Diff line change
Expand Up @@ -1801,7 +1801,7 @@
"kind": "field",
"name": "input",
"type": {
"text": "HTMLInputElement"
"text": "HTMLInputElement | undefined"
},
"privacy": "private",
"readonly": true
Expand Down Expand Up @@ -2739,7 +2739,7 @@
"kind": "field",
"name": "input",
"type": {
"text": "HTMLInputElement | HTMLTextAreaElement"
"text": "HTMLInputElement | HTMLTextAreaElement | undefined"
},
"privacy": "private",
"readonly": true
Expand Down
9 changes: 6 additions & 3 deletions pr/58/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ declare module "src/components/forms/input-code/input-code.component" {
protected updateEditorDisabled(): void;
connectedCallback(): void;
disconnectedCallback(): void;
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
formResetCallback(): void;
checkValidity(): boolean;
protected updated(changedProperties: PropertyValues<this>): void;
Expand Down Expand Up @@ -830,7 +830,7 @@ declare module "src/components/forms/input-number/input-number.component" {
export class InputNumber extends InputNumber_base implements FormAssociated<number> {
#private;
static readonly styles: import("lit").CSSResultGroup[];
private readonly input;
private readonly input?;
autocomplete: boolean;
disabled: boolean;
readonly: boolean;
Expand All @@ -840,6 +840,7 @@ declare module "src/components/forms/input-number/input-number.component" {
protected firstUpdated(props: PropertyValues<this>): void;
formResetCallback(): void;
checkValidity(): boolean;
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
handleInput(event: Event): void;
renderInput(id: string): import("lit-html").TemplateResult<1>;
}
Expand Down Expand Up @@ -1024,6 +1025,7 @@ declare module "src/components/forms/input-select/input-select.component" {
protected firstUpdated(props: PropertyValues<this>): void;
formResetCallback(): void;
checkValidity(): boolean;
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
handleSlotChange(event: Event): void;
handleInput(event: Event): void;
renderInput(id: string): import("lit-html").TemplateResult<1>;
Expand Down Expand Up @@ -1091,7 +1093,7 @@ declare module "src/components/forms/input-text/input-text.component" {
export class InputText extends InputText_base implements FormAssociated<string> {
#private;
static readonly styles: import("lit").CSSResultGroup[];
private readonly input;
private readonly input?;
multiline: boolean;
autocomplete: boolean;
disabled: boolean;
Expand All @@ -1107,6 +1109,7 @@ declare module "src/components/forms/input-text/input-text.component" {
protected firstUpdated(props: PropertyValues<this>): void;
formResetCallback(): void;
checkValidity(): boolean;
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
handleInput(event: Event): void;
renderInput(id: string): import("lit-html").TemplateResult<1>;
}
Expand Down
2 changes: 1 addition & 1 deletion pr/58/index.d.ts.map

Large diffs are not rendered by default.

Loading

0 comments on commit 58724be

Please sign in to comment.