📂Directory Structure
Explore Berry Angular Directory structure.
Inside the full-version/
directory you will find the following Berry Angular well-structured directories.
full-version/
├── src/
│ ├── app/
│ │ ├── demo/
│ │ │ ├── admin-panel/
│ │ │ │ ├── helpdesk
│ │ │ │ ├── invoice
│ │ │ │ ├── ... more
│ │ │ ├── application/
│ │ │ │ ├── calender
│ │ │ │ ├── chat
│ │ │ │ ├── ... more
│ │ │ ├── chart/
│ │ │ │ ├── Apex-chart
│ │ │ ├── component/
│ │ │ │ ├── advance-component/
│ │ │ │ │ ├── adv-modal
│ │ │ │ │ ├── ... more
│ │ │ │ ├── basic-component/
│ │ │ │ │ ├── alert
│ │ │ │ │ ├── button
│ │ │ │ │ ├── ... more
│ │ │ ├── dashboard/
│ │ │ │ ├── analytics
│ │ │ │ ├── default
│ │ │ ├── forms/
│ │ │ │ ├── file-upload/
│ │ │ │ │ ├── dropzone
│ │ │ │ │ ├── files-uploader
│ │ │ │ ├── form-elements/
│ │ │ │ │ ├── form-basic
│ │ │ │ │ ├── ... more
│ │ │ │ ├── form-layout/
│ │ │ │ │ ├── form-actionbars
│ │ │ │ │ ├── ... more
│ │ │ │ ├── form-plugin/
│ │ │ │ │ ├── clipboard
│ │ │ │ │ ├── ... more
│ │ │ │ ├── form-validator/
│ │ │ │ ├── images-cropper/
│ │ │ │ ├── text-editors/
│ │ │ │ │ ├── tinymce
│ │ │ │ │ ├── classic-editor
│ │ │ │ │ ├── ... more
│ │ │ ├── layouts/
│ │ │ │ ├── vertical
│ │ │ │ ├── horizontal
│ │ │ │ ├── compact
│ │ │ ├── other/
│ │ │ │ ├── sample-page/
│ │ │ ├── pages/
│ │ │ │ ├── authentication/
│ │ │ │ │ ├── login
│ │ │ │ │ ├── ... more
│ │ │ │ ├── contact-us/
│ │ │ │ ├── maintenance/
│ │ │ │ ├── price/
│ │ │ ├── table/
│ │ │ │ ├── bootstrap-table/
│ │ │ │ ├── data-table/
│ │ │ ├── widget/
│ │ │ │ ├── wget-charts/
│ │ │ │ ├── data/
│ │ │ │ ├── ...more
│ │ ├── theme/
│ │ │ ├── layout/
│ │ │ │ ├── admin-layout/
│ │ │ │ │ ├── configuration
│ │ │ │ │ ├── nav-bar/
│ │ │ │ │ ├── ...more
│ │ │ │ ├── guest-layout/
│ │ │ │ ├── simple-layout/
│ │ │ ├── shared/
│ │ │ │ ├── apexchart/
│ │ │ │ ├── components/
│ │ │ │ │ ├── breadcrumb
│ │ │ │ │ ├── card
│ │ │ │ │ ├── ...more
│ │ │ │ ├── service
│ │ │ │ │ ├── customs-theme
│ │ │ │ │ ├── ... more
│ │ │ │ ├── shared.module.ts
│ │ ├── app.component.html
│ │ ├── app.component.scss
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── app.config.ts
│ │ ├── app-routing.module.ts
│ ├── assets/
│ ├── environments/
│ ├── fake-data/
│ ├── scss/
│ │ ├── bootstrap/
│ │ ├── fonts/
│ │ ├── setting/
│ │ │ ├── bootstrap-variables.scss
│ │ │ ├── color-variables.scss
│ │ │ ├── theme-variables.scss
│ │ ├── themes/
│ │ │ ├── layouts/
│ │ │ ├── general.scss
│ │ │ ├── generic.scss
│ │ │ ├── style-preset.scss
│ │ ├── ...
│ ├── _index.html
│ ├── _main.ts
│ ├── ...
├── angular.json
├── package.json
├── ...
Last updated