Skip to content

Commit

Permalink
Merge demo-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed May 2, 2024
1 parent 95485a3 commit 78c6343
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 10 deletions.
4 changes: 0 additions & 4 deletions src/app/components/multiselect/multiselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 0 additions & 2 deletions src/app/components/table/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/app/showcase/doc/icons/listdoc.ts
Original file line number Diff line number Diff line change
@@ -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',
Expand Down
2 changes: 0 additions & 2 deletions src/app/showcase/layout/app.component.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand All @@ -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';
Expand Down

0 comments on commit 78c6343

Please sign in to comment.