feat: settings redesign and core improvements

- Redesign settings interface with improved UX
- Enhanced dashboard functionality
- Improved device detail views
- Updated core data providers
- Minor snippet management improvements
This commit is contained in:
sepehr 2025-10-16 17:34:28 +03:00
parent 07808822f7
commit 433dcff5db
9 changed files with 1290 additions and 246 deletions

View file

@ -10,14 +10,14 @@ import {
SpinnerModule,
ToastModule,
ModalModule,
BadgeModule,
TooltipModule,
} from "@coreui/angular";
import { SettingsRoutingModule } from "./settings-routing.module";
import { SettingsComponent } from "./settings.component";
import { GuiGridModule } from "@generic-ui/ngx-grid";
import { FormsModule } from "@angular/forms";
import { MatSelectModule } from "@angular/material/select";
import { NgxMatSelectSearchModule } from "ngx-mat-select-search";
@NgModule({
imports: [
@ -30,11 +30,11 @@ import { NgxMatSelectSearchModule } from "ngx-mat-select-search";
ButtonModule,
ButtonGroupModule,
GuiGridModule,
MatSelectModule,
NgxMatSelectSearchModule,
SpinnerModule,
ToastModule,
ModalModule,
BadgeModule,
TooltipModule,
],
declarations: [SettingsComponent],
})