Skip to content

Commit

Permalink
search fields for name, id ... add ngx clipboard
Browse files Browse the repository at this point in the history
  • Loading branch information
AbduazizZiyodov committed Jun 21, 2024
1 parent 244158b commit 05dd36f
Show file tree
Hide file tree
Showing 7 changed files with 218 additions and 108 deletions.
150 changes: 96 additions & 54 deletions src/client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@fortawesome/fontawesome-free": "^6.5.1",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.1",
"ngx-clipboard": "^16.0.0",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primeng": "^17.14.1",
Expand Down
11 changes: 8 additions & 3 deletions src/client/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
// PrimeNG modules
// Third party
import { ClipboardModule } from 'ngx-clipboard';

// PrimeNG modules
import { TagModule } from 'primeng/tag'
import { MenuModule } from 'primeng/menu';
import { CardModule } from 'primeng/card';
Expand Down Expand Up @@ -40,12 +42,14 @@ import { ContainersComponent } from '@containers/containers.component';
import { DashboardComponent } from './dashboard/dashboard.component';
import { CreateContainersComponent } from './create-containers/create-containers.component';


@NgModule({
declarations: [
AppComponent,
ContainersComponent,
DashboardComponent,
CreateContainersComponent
CreateContainersComponent,

],
imports: [
BrowserModule,
Expand Down Expand Up @@ -79,7 +83,8 @@ import { CreateContainersComponent } from './create-containers/create-containers
InputGroupModule,
InputGroupAddonModule,
StyleClassModule,
ProgressSpinnerModule
ProgressSpinnerModule,
ClipboardModule
],
providers: [MessageService],
bootstrap: [AppComponent]
Expand Down
Loading

0 comments on commit 05dd36f

Please sign in to comment.