From bf2b116cb08ff57888ac3b070168462489f55fbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Fri, 24 Nov 2023 22:23:03 +0300 Subject: [PATCH] Remove modules --- .../layout/doc/code/app.code.component.html | 118 ------------------ .../layout/topbar/app.topbar.module.ts | 13 -- .../showcase/pages/landing/landing.module.ts | 63 ---------- 3 files changed, 194 deletions(-) delete mode 100644 src/app/showcase/layout/doc/code/app.code.component.html delete mode 100644 src/app/showcase/layout/topbar/app.topbar.module.ts delete mode 100644 src/app/showcase/pages/landing/landing.module.ts diff --git a/src/app/showcase/layout/doc/code/app.code.component.html b/src/app/showcase/layout/doc/code/app.code.component.html deleted file mode 100644 index d60b921da36..00000000000 --- a/src/app/showcase/layout/doc/code/app.code.component.html +++ /dev/null @@ -1,118 +0,0 @@ -
-
-
-
- - - - - -
- - - - - - - -
-
- -

-{{code.basic}}
-
-
- -

-{{code.html}}
-
-
- -

-{{code.typescript}}
-
-
- -

-{{code.data}}
-
-
- -

-{{code.scss}}
-
-
- -

-{{code.command}}
-
-
-
diff --git a/src/app/showcase/layout/topbar/app.topbar.module.ts b/src/app/showcase/layout/topbar/app.topbar.module.ts deleted file mode 100644 index 02c280cc7b4..00000000000 --- a/src/app/showcase/layout/topbar/app.topbar.module.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { NgModule } from '@angular/core'; -import { FormsModule } from '@angular/forms'; -import { StyleClassModule } from 'primeng/styleclass'; -import { AppTopBarComponent } from './app.topbar.component'; -import { RouterModule } from '@angular/router'; - -@NgModule({ - imports: [CommonModule, FormsModule, StyleClassModule, RouterModule], - exports: [AppTopBarComponent], - declarations: [AppTopBarComponent] -}) -export class AppTopbarModule {} diff --git a/src/app/showcase/pages/landing/landing.module.ts b/src/app/showcase/pages/landing/landing.module.ts deleted file mode 100644 index f013216fa58..00000000000 --- a/src/app/showcase/pages/landing/landing.module.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { CommonModule, NgOptimizedImage } from '@angular/common'; -import { NgModule } from '@angular/core'; -import { FormsModule } from '@angular/forms'; -import { RouterModule } from '@angular/router'; -import { BadgeModule } from 'primeng/badge'; -import { ButtonModule } from 'primeng/button'; -import { CalendarModule } from 'primeng/calendar'; -import { ChartModule } from 'primeng/chart'; -import { CheckboxModule } from 'primeng/checkbox'; -import { ChipModule } from 'primeng/chip'; -import { DropdownModule } from 'primeng/dropdown'; -import { InputNumberModule } from 'primeng/inputnumber'; -import { InputSwitchModule } from 'primeng/inputswitch'; -import { ListboxModule } from 'primeng/listbox'; -import { ProgressBarModule } from 'primeng/progressbar'; -import { RadioButtonModule } from 'primeng/radiobutton'; -import { SelectButtonModule } from 'primeng/selectbutton'; -import { SidebarModule } from 'primeng/sidebar'; -import { SliderModule } from 'primeng/slider'; -import { TableModule } from 'primeng/table'; -import { TabMenuModule } from 'primeng/tabmenu'; -import { TreeModule } from 'primeng/tree'; -import { AppNewsModule } from '../../layout/news/app.news.module'; -import { LandingComponent } from './landing.component'; -import { TagModule } from 'primeng/tag'; -import { StyleClassModule } from 'primeng/styleclass'; -import { AnimateOnScrollModule } from 'primeng/animateonscroll'; -import { AppTopbarModule } from '../../layout/topbar/app.topbar.module'; - -@NgModule({ - imports: [ - CommonModule, - NgOptimizedImage, - FormsModule, - StyleClassModule, - AnimateOnScrollModule, - SidebarModule, - InputSwitchModule, - TagModule, - ButtonModule, - RadioButtonModule, - InputNumberModule, - TabMenuModule, - ChartModule, - ProgressBarModule, - TreeModule, - ChipModule, - SelectButtonModule, - SliderModule, - BadgeModule, - CalendarModule, - TableModule, - DropdownModule, - ListboxModule, - RouterModule, - CheckboxModule, - AppNewsModule, - AppTopbarModule, - ], - exports: [LandingComponent], - declarations: [LandingComponent] -}) -export class LandingModule {}