diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index c04519c12da..b6770a21cf7 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -1263,10 +1263,6 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft this.loadingIconTemplate = item.template; break; - case 'loadingicon': - this.loadingIconTemplate = item.template; - break; - case 'filtericon': this.filterIconTemplate = item.template; break; diff --git a/src/app/components/table/table.ts b/src/app/components/table/table.ts index f082edd602d..92b17555df0 100644 --- a/src/app/components/table/table.ts +++ b/src/app/components/table/table.ts @@ -485,13 +485,11 @@ export class Table implements OnInit, AfterViewInit, AfterContentInit, Blockable * @group Props */ @Input() rowSelectable: (row: { data: any; index: number }) => boolean | undefined; - @Input() rowSelectable: (row: { data: any; index: number }) => boolean | undefined; /** * Function to optimize the dom operations by delegating to ngForTrackBy, default algorithm checks for object identity. * @group Props */ @Input() rowTrackBy: Function = (index: number, item: any) => item; - @Input() rowTrackBy: Function = (index: number, item: any) => item; /** * Defines if data is loaded and interacted with in lazy manner. * @group Props diff --git a/src/app/showcase/doc/icons/listdoc.ts b/src/app/showcase/doc/icons/listdoc.ts index 56cc015f6f8..d3662298b22 100644 --- a/src/app/showcase/doc/icons/listdoc.ts +++ b/src/app/showcase/doc/icons/listdoc.ts @@ -1,5 +1,5 @@ -import { ChangeDetectorRef, Component } from '@angular/core'; -import { IconService } from '@service/iconservice'; +import { Component } from '@angular/core'; +import { default as IconData } from 'src/assets/showcase/data/icons.json'; @Component({ selector: 'list-doc', diff --git a/src/app/showcase/layout/app.component.ts b/src/app/showcase/layout/app.component.ts index 4dea0287518..00c250bf6a5 100644 --- a/src/app/showcase/layout/app.component.ts +++ b/src/app/showcase/layout/app.component.ts @@ -1,7 +1,6 @@ import { DOCUMENT, IMAGE_CONFIG } from '@angular/common'; import { HttpClientModule } from '@angular/common/http'; import { Component, Inject, OnInit, PLATFORM_ID, Renderer2, afterNextRender } from '@angular/core'; -import { Component, Inject, OnInit, PLATFORM_ID, Renderer2, afterNextRender } from '@angular/core'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { NavigationEnd, Router, RouterOutlet } from '@angular/router'; import { PrimeNGConfig } from 'primeng/api'; @@ -11,7 +10,6 @@ import { CarService } from '@service/carservice'; import { CountryService } from '@service/countryservice'; import { CustomerService } from '@service/customerservice'; import { EventService } from '@service/eventservice'; -import { IconService } from '@service/iconservice'; import { NodeService } from '@service/nodeservice'; import { PhotoService } from '@service/photoservice'; import { ProductService } from '@service/productservice';