From 23d1fea3882e91bcf75b76a95ce45cf3b5d22f38 Mon Sep 17 00:00:00 2001 From: Jeri Peier Date: Thu, 21 Nov 2024 07:58:03 +0100 Subject: [PATCH] fix(sbb-form-field): remove deprecated `getInputElement()` method (#3221) BREAKING CHANGE: The `getInputElement()` method of the `sbb-form-field` has been removed. Use `inputElement` property as alternative. --- src/elements/datepicker/common/datepicker-button.ts | 2 -- src/elements/form-field/form-field/form-field.ts | 8 -------- src/elements/form-field/form-field/readme.md | 9 ++++----- 3 files changed, 4 insertions(+), 15 deletions(-) diff --git a/src/elements/datepicker/common/datepicker-button.ts b/src/elements/datepicker/common/datepicker-button.ts index 100c487e06..5b42fe392d 100644 --- a/src/elements/datepicker/common/datepicker-button.ts +++ b/src/elements/datepicker/common/datepicker-button.ts @@ -111,8 +111,6 @@ export abstract class SbbDatepickerButton extends SbbNegativeMixin(Sbb if (formField) { this.negative = formField.hasAttribute('negative'); - // We can't use getInputElement of SbbFormFieldElement as async awaiting is not supported in connectedCallback. - // We here only have to look for input. const inputElement = formField.querySelector('input'); if (inputElement) { diff --git a/src/elements/form-field/form-field/form-field.ts b/src/elements/form-field/form-field/form-field.ts index 45e587a6fd..3dd7db95de 100644 --- a/src/elements/form-field/form-field/form-field.ts +++ b/src/elements/form-field/form-field/form-field.ts @@ -427,14 +427,6 @@ class SbbFormFieldElement extends SbbNegativeMixin(SbbHydrationMixin(LitElement) this._checkAndUpdateInputEmpty(); } - /** - * Returns the input element. - * @deprecated Use the 'inputElement' property instead - */ - public getInputElement(): HTMLInputElement | HTMLSelectElement | HTMLElement | undefined { - return this._input; - } - private _syncNegative(): void { this.querySelectorAll?.( 'sbb-form-error,sbb-mini-button,sbb-popover-trigger,sbb-form-field-clear,sbb-datepicker-next-day,sbb-datepicker-previous-day,sbb-datepicker-toggle,sbb-select,sbb-autocomplete,sbb-autocomplete-grid', diff --git a/src/elements/form-field/form-field/readme.md b/src/elements/form-field/form-field/readme.md index 43d172a7cc..37085443fe 100644 --- a/src/elements/form-field/form-field/readme.md +++ b/src/elements/form-field/form-field/readme.md @@ -162,11 +162,10 @@ technology will announce errors when they appear. ## Methods -| Name | Privacy | Description | Parameters | Return | Inherited From | -| ----------------- | ------- | ------------------------------------------------------------------------------------- | ---------- | ------------------------------------------------------------------- | -------------- | -| `clear` | public | Manually clears the input value. It only works for inputs, selects are not supported. | | `void` | | -| `getInputElement` | public | Returns the input element. | | `HTMLInputElement \| HTMLSelectElement \| HTMLElement \| undefined` | | -| `reset` | public | Manually reset the form field. Currently, this only resets the floating label. | | `void` | | +| Name | Privacy | Description | Parameters | Return | Inherited From | +| ------- | ------- | ------------------------------------------------------------------------------------- | ---------- | ------ | -------------- | +| `clear` | public | Manually clears the input value. It only works for inputs, selects are not supported. | | `void` | | +| `reset` | public | Manually reset the form field. Currently, this only resets the floating label. | | `void` | | ## Slots