diff --git a/apps/ngx-responsive-table-demo/src/app/api/user.service.ts b/apps/ngx-responsive-table-demo/src/app/api/user.service.ts index 27b3147..0e14ebe 100644 --- a/apps/ngx-responsive-table-demo/src/app/api/user.service.ts +++ b/apps/ngx-responsive-table-demo/src/app/api/user.service.ts @@ -13,8 +13,5 @@ export class UserService { users$: Observable = this.httpClient .get(this.baseUrl) - .pipe( - map(({ data }: UserResponse) => data ?? []), - delay(3000) - ); + .pipe(map(({ data }: UserResponse) => data ?? [])); } diff --git a/libs/ngx-responsive-table/README.md b/libs/ngx-responsive-table/README.md index 48b77fa..273cac3 100644 --- a/libs/ngx-responsive-table/README.md +++ b/libs/ngx-responsive-table/README.md @@ -4,6 +4,10 @@ An Angular library offering customizable and responsive tables for seamless user Its flexibility allows users to design tables that fit their project needs with an intuitive API and dynamic data handling. Elevate your Angular applications with this powerful table solution. +# Demo 🚀 + +Check it out -> [ngx-responsive-table 💣](https://ngx-responsive-table.brianpooe.com/) + ## Installation ```shell diff --git a/libs/ngx-responsive-table/src/lib/ngx-responsive-table.component.ts b/libs/ngx-responsive-table/src/lib/ngx-responsive-table.component.ts index c9418e5..f2c3aad 100644 --- a/libs/ngx-responsive-table/src/lib/ngx-responsive-table.component.ts +++ b/libs/ngx-responsive-table/src/lib/ngx-responsive-table.component.ts @@ -64,7 +64,7 @@ import { KeyValuePipe, NgForOf, NgIf, NgTemplateOutlet } from '@angular/common'; - loading... + loading...👻 `, imports: [NgIf, NgTemplateOutlet, NgForOf, KeyValuePipe], changeDetection: ChangeDetectionStrategy.OnPush