From c1992a824044ecf369e363ca8cb26ae3ad1a2b37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=C4=9Fit=20FINDIKLI?= Date: Thu, 14 Nov 2019 15:33:17 +0300 Subject: [PATCH] #8322 Delete deprecated properties for Dropdown --- src/app/components/dropdown/dropdown.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts index f1dc2415f68..f197ca1fdf9 100644 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -254,16 +254,6 @@ export class Dropdown implements OnInit,AfterViewInit,AfterContentInit,AfterView @ContentChildren(PrimeTemplate) templates: QueryList; - private _autoWidth: boolean; - - @Input() get autoWidth(): boolean { - return this._autoWidth; - } - set autoWidth(_autoWidth: boolean) { - this._autoWidth = _autoWidth; - console.log("Setting autoWidth has no effect as automatic width calculation is removed for better perfomance."); - } - private _disabled: boolean; @Input() get disabled(): boolean {