From b66de46bc4767f69570939790752713137c77671 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Fri, 2 Feb 2024 17:33:56 +0300 Subject: [PATCH 1/2] Fix typo --- src/app/showcase/pages/landing/footersection.component.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/app/showcase/pages/landing/footersection.component.ts b/src/app/showcase/pages/landing/footersection.component.ts index 055e0cf7eca..6e8f45f98ed 100644 --- a/src/app/showcase/pages/landing/footersection.component.ts +++ b/src/app/showcase/pages/landing/footersection.component.ts @@ -14,9 +14,7 @@ import { RouterModule } from '@angular/router'; From db399262ffd97d2dd6577f1175312c303eb23348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Fri, 2 Feb 2024 18:33:23 +0300 Subject: [PATCH 2/2] Fixed #14702 --- src/app/components/dropdown/dropdown.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts index fe8225c0aac..f376caa9c0f 100755 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -1781,8 +1781,11 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV public focus(): void { this.applyFocus(); } - - clear(event: Event) { + /** + * Clears the model. + * @group Method + */ + public clear(event?: Event) { this.updateModel(null, event); this.clearEditableLabel(); this.onChange.emit({ originalEvent: event, value: this.value });