📂File Structure
Under the gradient-able/template/full-version/
folder you will find the project folder structure.
gradient-able/template/full-version/
├── node_modules/..
├── src/
│ ├── app/
│ │ ├── demo/
│ │ │ ├── admin-panel/
│ │ │ │ ├── chart
│ │ │ │ ├── helpdesk/
│ │ │ │ ├── invoice/
│ │ │ │ ├── ...
│ │ │ ├── application/
│ │ │ │ ├── Gallery
│ │ │ │ ├── task
│ │ │ │ ├── todo
│ │ │ │ ├── more...
│ │ │ ├── chart-maps/
│ │ │ │ ├── core-chart/
│ │ │ │ │ ├── crt-apex/
│ │ │ │ │ ├── crt-chart-js/
│ │ │ │ │ ├── more...
│ │ │ │ ├── core-maps/
│ │ │ │ │ ├── google-maps/
│ │ │ ├── dashboard/
│ │ │ │ ├── dash-analytics/..
│ │ │ │ ├── dash-sale/..
│ │ │ │ ├── finance
│ │ │ ├── extension/
│ │ │ │ ├── editor/..
│ │ │ │ ├── files-upload/
│ │ │ │ ├── full-event-calendar/
│ │ │ │ ├── invoice/..
│ │ │ ├── forms/
│ │ │ │ ├── basic-elements/
│ │ │ │ ├── basic-advance/
│ │ │ │ ├── more...
│ │ │ ├── other/
│ │ │ │ ├── simple-page/..
│ │ │ ├── pages/
│ │ │ │ ├── authentication/
│ │ │ │ │ ├── auth-change-password/..
│ │ │ │ │ ├── auth-map-form/..
│ │ │ │ │ ├── more...
│ │ │ │ ├── layouts/..
│ │ │ │ ├── landing/
│ │ │ │ ├── more...
│ │ │ ├── tables/
│ │ │ │ ├── tbl-bootstrap/..
│ │ │ │ ├── tbl-datatable
│ │ │ ├── ui-elements/
│ │ │ │ ├── ui-advance/
│ │ │ │ │ ├── adv-alert/..
│ │ │ │ │ ├── adv-datepicker/..
│ │ │ │ │ ├── more..
│ │ │ │ ├── ui-basic/
│ │ │ │ │ ├── basic-alert/..
│ │ │ │ │ ├── basic-badge/..
│ │ │ │ │ ├── more..
│ │ │ ├── widget/
│ │ │ │ ├── wget-charts/
│ │ │ │ ├── wget-data/
│ │ │ │ ├── more...
│ │ ├── fack-db/
│ │ │ ├── friends-list.ts
│ │ │ ├── user-chat.ts
│ │ │ ├── chartData.ts
│ │ ├── theme/
│ │ │ ├── layout/
│ │ │ │ ├── admin/
│ │ │ │ │ ├── configuration/..
│ │ │ │ │ ├── nav-bar/
│ │ │ │ │ │ ├── nav-left/
│ │ │ │ │ │ │ ├── nav-search/..
│ │ │ │ │ │ ├── nav-right/
│ │ │ │ │ │ │ ├── chat-msg/..
│ │ │ │ │ │ │ ├── chat-user-list/
│ │ │ │ │ │ │ │ ├── friend/..
│ │ │ │ │ ├── navigation/
│ │ │ │ │ │ ├── nav-content/
│ │ │ │ │ │ │ ├── nav-collapse/..
│ │ │ │ │ │ │ ├── nav-group/..
│ │ │ │ │ │ │ ├── nav-item/..
│ │ │ │ │ │ ├── nav-logo/..
│ │ │ │ ├── guest/..
│ │ │ ├── shared/
│ │ │ │ ├── components/
│ │ │ │ │ ├── alert/..
│ │ │ │ │ ├── /..breadcrumb/..
│ │ │ │ │ ├── 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/
│ │ ├── fonts/..
│ │ ├── layout/..
│ │ ├── ...- More
│ │ ├── _custom.scss
│ │ ├── _general.scss
│ │ ├── _generic.scss
│ │ ├── _variables.scss
│ ├── _index.html
│ ├── _main.ts
│ ├── ...- More
├── angular.json
├── package.json
├── ...- More
Last updated