├── .DS_Store ├── Angular-11 ├── .editorconfig ├── .gitignore ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package.json ├── src │ ├── .browserslistrc │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── component │ │ │ ├── accordion │ │ │ │ ├── accordion.component.html │ │ │ │ └── accordion.component.ts │ │ │ ├── alert │ │ │ │ ├── alert.component.html │ │ │ │ └── alert.component.ts │ │ │ ├── buttons │ │ │ │ ├── buttons.component.html │ │ │ │ └── buttons.component.ts │ │ │ ├── card │ │ │ │ ├── card.component.html │ │ │ │ └── card.component.ts │ │ │ ├── carousel │ │ │ │ ├── carousel.component.html │ │ │ │ └── carousel.component.ts │ │ │ ├── component.module.ts │ │ │ ├── component.routing.ts │ │ │ ├── datepicker │ │ │ │ ├── datepicker.component.html │ │ │ │ └── datepicker.component.ts │ │ │ ├── dropdown-collapse │ │ │ │ ├── dropdown-collapse.component.html │ │ │ │ └── dropdown-collapse.component.ts │ │ │ ├── modal │ │ │ │ ├── debug.log │ │ │ │ ├── modal.component.html │ │ │ │ └── modal.component.ts │ │ │ ├── pagination │ │ │ │ ├── pagination.component.html │ │ │ │ └── pagination.component.ts │ │ │ ├── popover-tooltip │ │ │ │ ├── popover-tooltip.component.html │ │ │ │ └── popover-tooltip.component.ts │ │ │ ├── progressbar │ │ │ │ ├── progressbar.component.html │ │ │ │ └── progressbar.component.ts │ │ │ ├── rating │ │ │ │ ├── rating.component.html │ │ │ │ └── rating.component.ts │ │ │ ├── tabs │ │ │ │ ├── tabs.component.html │ │ │ │ └── tabs.component.ts │ │ │ ├── timepicker │ │ │ │ ├── timepicker.component.html │ │ │ │ └── timepicker.component.ts │ │ │ └── toast │ │ │ │ ├── toast-container.ts │ │ │ │ ├── toast.component.html │ │ │ │ ├── toast.component.ts │ │ │ │ └── toast.service.ts │ │ ├── dashboard │ │ │ ├── dashboard-components │ │ │ │ ├── cards │ │ │ │ │ ├── cards.component.css │ │ │ │ │ ├── cards.component.html │ │ │ │ │ ├── cards.component.spec.ts │ │ │ │ │ └── cards.component.ts │ │ │ │ ├── contacts │ │ │ │ │ ├── contacts.component.css │ │ │ │ │ ├── contacts.component.html │ │ │ │ │ ├── contacts.component.spec.ts │ │ │ │ │ └── contacts.component.ts │ │ │ │ ├── project-of-month │ │ │ │ │ ├── project-data.ts │ │ │ │ │ ├── project-of-month.component.css │ │ │ │ │ ├── project-of-month.component.html │ │ │ │ │ ├── project-of-month.component.spec.ts │ │ │ │ │ └── project-of-month.component.ts │ │ │ │ ├── sales-graph │ │ │ │ │ ├── sales-graph.component.css │ │ │ │ │ ├── sales-graph.component.html │ │ │ │ │ ├── sales-graph.component.spec.ts │ │ │ │ │ └── sales-graph.component.ts │ │ │ │ ├── visit-graph │ │ │ │ │ ├── visit-graph.component.css │ │ │ │ │ ├── visit-graph.component.html │ │ │ │ │ ├── visit-graph.component.spec.ts │ │ │ │ │ └── visit-graph.component.ts │ │ │ │ └── website-graph │ │ │ │ │ ├── website-graph.component.css │ │ │ │ │ ├── website-graph.component.html │ │ │ │ │ ├── website-graph.component.spec.ts │ │ │ │ │ └── website-graph.component.ts │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.ts │ │ │ └── dashboard.module.ts │ │ ├── layouts │ │ │ └── full │ │ │ │ ├── full.component.html │ │ │ │ ├── full.component.scss │ │ │ │ └── full.component.ts │ │ └── shared │ │ │ ├── breadcrumb │ │ │ ├── breadcrumb.component.html │ │ │ └── breadcrumb.component.ts │ │ │ ├── header-navigation │ │ │ ├── navigation.component.html │ │ │ └── navigation.component.ts │ │ │ ├── sidebar │ │ │ ├── menu-items.ts │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.ts │ │ │ └── sidebar.metadata.ts │ │ │ └── spinner.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── images │ │ │ ├── background │ │ │ │ ├── error-bg.jpg │ │ │ │ ├── login-register.jpg │ │ │ │ ├── megamenubg.jpg │ │ │ │ ├── profile-bg.jpg │ │ │ │ ├── socialbg.jpg │ │ │ │ ├── user-bg.jpg │ │ │ │ ├── user-info.jpg │ │ │ │ └── weatherbg.jpg │ │ │ ├── big │ │ │ │ ├── img1.jpg │ │ │ │ ├── img2.jpg │ │ │ │ ├── img3.jpg │ │ │ │ ├── img4.jpg │ │ │ │ ├── img5.jpg │ │ │ │ └── img6.jpg │ │ │ ├── browser │ │ │ │ ├── chrome-logo.png │ │ │ │ ├── firefox-logo.png │ │ │ │ ├── internet-logo.png │ │ │ │ ├── opera-logo.png │ │ │ │ ├── photoshop.jpg │ │ │ │ ├── safari-logo.png │ │ │ │ └── sketch.jpg │ │ │ ├── custom-select.png │ │ │ ├── document │ │ │ │ ├── colors.jpg │ │ │ │ ├── sidebar.jpg │ │ │ │ └── template-strucutre.jpg │ │ │ ├── favicon.png │ │ │ ├── gallery │ │ │ │ ├── chair.png │ │ │ │ ├── chair2.png │ │ │ │ ├── chair3.png │ │ │ │ └── chair4.png │ │ │ ├── icon │ │ │ │ ├── assets-w.png │ │ │ │ ├── assets.png │ │ │ │ ├── danger.svg │ │ │ │ ├── expense-w.png │ │ │ │ ├── expense.png │ │ │ │ ├── income-w.png │ │ │ │ ├── income.png │ │ │ │ ├── staff-w.png │ │ │ │ ├── staff.png │ │ │ │ ├── success.svg │ │ │ │ ├── warning.svg │ │ │ │ └── zip.png │ │ │ ├── logo-icon.png │ │ │ ├── logo-light-icon.png │ │ │ ├── logo-light-text.png │ │ │ ├── logo-text.png │ │ │ └── users │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ ├── d1.jpg │ │ │ │ ├── d2.jpg │ │ │ │ ├── d3.jpg │ │ │ │ ├── d4.jpg │ │ │ │ ├── d5.jpg │ │ │ │ └── profile.png │ │ └── scss │ │ │ ├── bootstrap │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ ├── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _overflow.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _shadows.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ │ ├── components.scss │ │ │ ├── core │ │ │ ├── _perfect-scrollbar.scss │ │ │ ├── animation │ │ │ │ └── animation.scss │ │ │ ├── breadcrumb │ │ │ │ └── breadcrumb.scss │ │ │ ├── buttons │ │ │ │ └── buttons.scss │ │ │ ├── core.scss │ │ │ ├── layout │ │ │ │ └── layout.scss │ │ │ ├── loader │ │ │ │ └── spinner.scss │ │ │ ├── scafholdings │ │ │ │ └── scafholding.scss │ │ │ ├── sidebar │ │ │ │ └── sidebar.scss │ │ │ ├── topbar │ │ │ │ └── header.scss │ │ │ └── wave-effects │ │ │ │ └── wave-effects.scss │ │ │ ├── custom.scss │ │ │ ├── icons │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ ├── fa-brands.css │ │ │ │ │ ├── fa-brands.min.css │ │ │ │ │ ├── fa-regular.css │ │ │ │ │ ├── fa-regular.min.css │ │ │ │ │ ├── fa-solid.css │ │ │ │ │ ├── fa-solid.min.css │ │ │ │ │ ├── fontawesome-all.css │ │ │ │ │ ├── fontawesome-all.min.css │ │ │ │ │ ├── fontawesome.css │ │ │ │ │ └── fontawesome.min.css │ │ │ │ ├── less │ │ │ │ │ ├── _animated.less │ │ │ │ │ ├── _bordered-pulled.less │ │ │ │ │ ├── _core.less │ │ │ │ │ ├── _fixed-width.less │ │ │ │ │ ├── _icons.less │ │ │ │ │ ├── _larger.less │ │ │ │ │ ├── _list.less │ │ │ │ │ ├── _mixins.less │ │ │ │ │ ├── _rotated-flipped.less │ │ │ │ │ ├── _screen-reader.less │ │ │ │ │ ├── _stacked.less │ │ │ │ │ ├── _variables.less │ │ │ │ │ ├── fa-brands.less │ │ │ │ │ ├── fa-regular.less │ │ │ │ │ ├── fa-solid.less │ │ │ │ │ └── fontawesome.less │ │ │ │ ├── scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── fa-brands.scss │ │ │ │ │ ├── fa-regular.scss │ │ │ │ │ ├── fa-solid.scss │ │ │ │ │ └── fontawesome.scss │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── material-design-iconic-font │ │ │ │ ├── css │ │ │ │ │ ├── material-design-iconic-font.css │ │ │ │ │ ├── material-design-iconic-font.min.css │ │ │ │ │ └── materialdesignicons.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ │ │ ├── Material-Design-Iconic-Font.woff2 │ │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ │ ├── materialdesignicons-webfont.svg │ │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ ├── themify-icons │ │ │ │ ├── fonts │ │ │ │ │ ├── themify.eot │ │ │ │ │ ├── themify.svg │ │ │ │ │ ├── themify.ttf │ │ │ │ │ └── themify.woff │ │ │ │ ├── ie7 │ │ │ │ │ ├── ie7.css │ │ │ │ │ └── ie7.js │ │ │ │ ├── themify-icons.css │ │ │ │ └── themify-icons.less │ │ │ └── weather-icons │ │ │ │ ├── css │ │ │ │ ├── weather-icons-core.css │ │ │ │ ├── weather-icons-variables.css │ │ │ │ ├── weather-icons-wind.css │ │ │ │ ├── weather-icons-wind.min.css │ │ │ │ ├── weather-icons.css │ │ │ │ └── weather-icons.min.css │ │ │ │ ├── fonts │ │ │ │ ├── weathericons-regular-webfont.eot │ │ │ │ ├── weathericons-regular-webfont.svg │ │ │ │ ├── weathericons-regular-webfont.ttf │ │ │ │ ├── weathericons-regular-webfont.woff │ │ │ │ └── weathericons-regular-webfont.woff2 │ │ │ │ ├── less │ │ │ │ ├── css │ │ │ │ │ ├── variables-beaufort.css │ │ │ │ │ ├── variables-day.css │ │ │ │ │ ├── variables-direction.css │ │ │ │ │ ├── variables-misc.css │ │ │ │ │ ├── variables-moon.css │ │ │ │ │ ├── variables-neutral.css │ │ │ │ │ ├── variables-night.css │ │ │ │ │ ├── variables-time.css │ │ │ │ │ └── variables-wind-names.css │ │ │ │ ├── icon-classes │ │ │ │ │ ├── classes-beaufort.less │ │ │ │ │ ├── classes-day.less │ │ │ │ │ ├── classes-direction.less │ │ │ │ │ ├── classes-misc.less │ │ │ │ │ ├── classes-moon-aliases.less │ │ │ │ │ ├── classes-moon.less │ │ │ │ │ ├── classes-neutral.less │ │ │ │ │ ├── classes-night.less │ │ │ │ │ ├── classes-time.less │ │ │ │ │ ├── classes-wind-aliases.less │ │ │ │ │ ├── classes-wind-degrees.less │ │ │ │ │ └── classes-wind.less │ │ │ │ ├── icon-variables │ │ │ │ │ ├── variables-beaufort.less │ │ │ │ │ ├── variables-day.less │ │ │ │ │ ├── variables-direction.less │ │ │ │ │ ├── variables-misc.less │ │ │ │ │ ├── variables-moon.less │ │ │ │ │ ├── variables-neutral.less │ │ │ │ │ ├── variables-night.less │ │ │ │ │ ├── variables-time.less │ │ │ │ │ └── variables-wind-names.less │ │ │ │ ├── mappings │ │ │ │ │ ├── wi-forecast-io.less │ │ │ │ │ ├── wi-owm.less │ │ │ │ │ ├── wi-wmo4680.less │ │ │ │ │ └── wi-yahoo.less │ │ │ │ ├── weather-icons-classes.less │ │ │ │ ├── weather-icons-core.less │ │ │ │ ├── weather-icons-variables.less │ │ │ │ ├── weather-icons-wind.less │ │ │ │ ├── weather-icons-wind.min.less │ │ │ │ ├── weather-icons.less │ │ │ │ └── weather-icons.min.less │ │ │ │ └── sass │ │ │ │ ├── icon-classes │ │ │ │ ├── classes-beaufort.scss │ │ │ │ ├── classes-day.scss │ │ │ │ ├── classes-direction.scss │ │ │ │ ├── classes-misc.scss │ │ │ │ ├── classes-moon-aliases.scss │ │ │ │ ├── classes-moon.scss │ │ │ │ ├── classes-neutral.scss │ │ │ │ ├── classes-night.scss │ │ │ │ ├── classes-time.scss │ │ │ │ ├── classes-wind-aliases.scss │ │ │ │ ├── classes-wind-degrees.scss │ │ │ │ └── classes-wind.scss │ │ │ │ ├── icon-variables │ │ │ │ ├── variables-beaufort.scss │ │ │ │ ├── variables-day.scss │ │ │ │ ├── variables-direction.scss │ │ │ │ ├── variables-misc.scss │ │ │ │ ├── variables-moon.scss │ │ │ │ ├── variables-neutral.scss │ │ │ │ ├── variables-night.scss │ │ │ │ ├── variables-time.scss │ │ │ │ └── variables-wind-names.scss │ │ │ │ ├── mappings │ │ │ │ ├── wi-forecast-io.scss │ │ │ │ ├── wi-owm.scss │ │ │ │ ├── wi-wmo4680.scss │ │ │ │ └── wi-yahoo.scss │ │ │ │ ├── weather-icons-classes.scss │ │ │ │ ├── weather-icons-core.scss │ │ │ │ ├── weather-icons-variables.scss │ │ │ │ ├── weather-icons-wind.min.scss │ │ │ │ ├── weather-icons-wind.scss │ │ │ │ ├── weather-icons.min.scss │ │ │ │ └── weather-icons.scss │ │ │ ├── mixins │ │ │ └── padding-margin.scss │ │ │ ├── responsive.scss │ │ │ ├── style.scss │ │ │ ├── theme-colors │ │ │ └── theme-colors.scss │ │ │ └── variable.scss │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── README.md ├── angular-12 ├── .editorconfig ├── .gitignore ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package.json ├── src │ ├── .browserslistrc │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── component │ │ │ ├── accordion │ │ │ │ ├── accordion.component.html │ │ │ │ └── accordion.component.ts │ │ │ ├── alert │ │ │ │ ├── alert.component.html │ │ │ │ └── alert.component.ts │ │ │ ├── buttons │ │ │ │ ├── buttons.component.html │ │ │ │ └── buttons.component.ts │ │ │ ├── card │ │ │ │ ├── card.component.html │ │ │ │ └── card.component.ts │ │ │ ├── carousel │ │ │ │ ├── carousel.component.html │ │ │ │ └── carousel.component.ts │ │ │ ├── component.module.ts │ │ │ ├── component.routing.ts │ │ │ ├── datepicker │ │ │ │ ├── datepicker.component.html │ │ │ │ └── datepicker.component.ts │ │ │ ├── dropdown-collapse │ │ │ │ ├── dropdown-collapse.component.html │ │ │ │ └── dropdown-collapse.component.ts │ │ │ ├── modal │ │ │ │ ├── debug.log │ │ │ │ ├── modal.component.html │ │ │ │ └── modal.component.ts │ │ │ ├── pagination │ │ │ │ ├── pagination.component.html │ │ │ │ └── pagination.component.ts │ │ │ ├── popover-tooltip │ │ │ │ ├── popover-tooltip.component.html │ │ │ │ └── popover-tooltip.component.ts │ │ │ ├── progressbar │ │ │ │ ├── progressbar.component.html │ │ │ │ └── progressbar.component.ts │ │ │ ├── rating │ │ │ │ ├── rating.component.html │ │ │ │ └── rating.component.ts │ │ │ ├── tabs │ │ │ │ ├── tabs.component.html │ │ │ │ └── tabs.component.ts │ │ │ ├── timepicker │ │ │ │ ├── timepicker.component.html │ │ │ │ └── timepicker.component.ts │ │ │ └── toast │ │ │ │ ├── toast-container.ts │ │ │ │ ├── toast.component.html │ │ │ │ ├── toast.component.ts │ │ │ │ └── toast.service.ts │ │ ├── dashboard │ │ │ ├── dashboard-components │ │ │ │ ├── cards │ │ │ │ │ ├── cards.component.css │ │ │ │ │ ├── cards.component.html │ │ │ │ │ ├── cards.component.spec.ts │ │ │ │ │ └── cards.component.ts │ │ │ │ ├── contacts │ │ │ │ │ ├── contacts.component.css │ │ │ │ │ ├── contacts.component.html │ │ │ │ │ ├── contacts.component.spec.ts │ │ │ │ │ └── contacts.component.ts │ │ │ │ ├── project-of-month │ │ │ │ │ ├── project-data.ts │ │ │ │ │ ├── project-of-month.component.css │ │ │ │ │ ├── project-of-month.component.html │ │ │ │ │ ├── project-of-month.component.spec.ts │ │ │ │ │ └── project-of-month.component.ts │ │ │ │ ├── sales-graph │ │ │ │ │ ├── sales-graph.component.css │ │ │ │ │ ├── sales-graph.component.html │ │ │ │ │ ├── sales-graph.component.spec.ts │ │ │ │ │ └── sales-graph.component.ts │ │ │ │ ├── visit-graph │ │ │ │ │ ├── visit-graph.component.css │ │ │ │ │ ├── visit-graph.component.html │ │ │ │ │ ├── visit-graph.component.spec.ts │ │ │ │ │ └── visit-graph.component.ts │ │ │ │ └── website-graph │ │ │ │ │ ├── website-graph.component.css │ │ │ │ │ ├── website-graph.component.html │ │ │ │ │ ├── website-graph.component.spec.ts │ │ │ │ │ └── website-graph.component.ts │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.ts │ │ │ └── dashboard.module.ts │ │ ├── layouts │ │ │ └── full │ │ │ │ ├── full.component.html │ │ │ │ ├── full.component.scss │ │ │ │ └── full.component.ts │ │ └── shared │ │ │ ├── breadcrumb │ │ │ ├── breadcrumb.component.html │ │ │ └── breadcrumb.component.ts │ │ │ ├── header-navigation │ │ │ ├── navigation.component.html │ │ │ └── navigation.component.ts │ │ │ ├── sidebar │ │ │ ├── menu-items.ts │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.ts │ │ │ └── sidebar.metadata.ts │ │ │ └── spinner.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── images │ │ │ ├── background │ │ │ │ ├── error-bg.jpg │ │ │ │ ├── login-register.jpg │ │ │ │ ├── megamenubg.jpg │ │ │ │ ├── profile-bg.jpg │ │ │ │ ├── socialbg.jpg │ │ │ │ ├── user-bg.jpg │ │ │ │ ├── user-info.jpg │ │ │ │ └── weatherbg.jpg │ │ │ ├── big │ │ │ │ ├── img1.jpg │ │ │ │ ├── img2.jpg │ │ │ │ ├── img3.jpg │ │ │ │ ├── img4.jpg │ │ │ │ ├── img5.jpg │ │ │ │ └── img6.jpg │ │ │ ├── browser │ │ │ │ ├── chrome-logo.png │ │ │ │ ├── firefox-logo.png │ │ │ │ ├── internet-logo.png │ │ │ │ ├── opera-logo.png │ │ │ │ ├── photoshop.jpg │ │ │ │ ├── safari-logo.png │ │ │ │ └── sketch.jpg │ │ │ ├── custom-select.png │ │ │ ├── document │ │ │ │ ├── colors.jpg │ │ │ │ ├── sidebar.jpg │ │ │ │ └── template-strucutre.jpg │ │ │ ├── favicon.png │ │ │ ├── gallery │ │ │ │ ├── chair.png │ │ │ │ ├── chair2.png │ │ │ │ ├── chair3.png │ │ │ │ └── chair4.png │ │ │ ├── icon │ │ │ │ ├── assets-w.png │ │ │ │ ├── assets.png │ │ │ │ ├── danger.svg │ │ │ │ ├── expense-w.png │ │ │ │ ├── expense.png │ │ │ │ ├── income-w.png │ │ │ │ ├── income.png │ │ │ │ ├── staff-w.png │ │ │ │ ├── staff.png │ │ │ │ ├── success.svg │ │ │ │ ├── warning.svg │ │ │ │ └── zip.png │ │ │ ├── logo-icon.png │ │ │ ├── logo-light-icon.png │ │ │ ├── logo-light-text.png │ │ │ ├── logo-text.png │ │ │ └── users │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ ├── d1.jpg │ │ │ │ ├── d2.jpg │ │ │ │ ├── d3.jpg │ │ │ │ ├── d4.jpg │ │ │ │ ├── d5.jpg │ │ │ │ └── profile.png │ │ └── scss │ │ │ ├── bootstrap │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ ├── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _interactions.scss │ │ │ │ ├── _overflow.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _shadows.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ │ ├── components.scss │ │ │ ├── core │ │ │ ├── _perfect-scrollbar.scss │ │ │ ├── animation │ │ │ │ └── animation.scss │ │ │ ├── breadcrumb │ │ │ │ └── breadcrumb.scss │ │ │ ├── buttons │ │ │ │ └── buttons.scss │ │ │ ├── core.scss │ │ │ ├── layout │ │ │ │ └── layout.scss │ │ │ ├── loader │ │ │ │ └── spinner.scss │ │ │ ├── scafholdings │ │ │ │ └── scafholding.scss │ │ │ ├── sidebar │ │ │ │ └── sidebar.scss │ │ │ ├── topbar │ │ │ │ └── header.scss │ │ │ └── wave-effects │ │ │ │ └── wave-effects.scss │ │ │ ├── custom.scss │ │ │ ├── icons │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ ├── fa-brands.css │ │ │ │ │ ├── fa-brands.min.css │ │ │ │ │ ├── fa-regular.css │ │ │ │ │ ├── fa-regular.min.css │ │ │ │ │ ├── fa-solid.css │ │ │ │ │ ├── fa-solid.min.css │ │ │ │ │ ├── fontawesome-all.css │ │ │ │ │ ├── fontawesome-all.min.css │ │ │ │ │ ├── fontawesome.css │ │ │ │ │ └── fontawesome.min.css │ │ │ │ ├── less │ │ │ │ │ ├── _animated.less │ │ │ │ │ ├── _bordered-pulled.less │ │ │ │ │ ├── _core.less │ │ │ │ │ ├── _fixed-width.less │ │ │ │ │ ├── _icons.less │ │ │ │ │ ├── _larger.less │ │ │ │ │ ├── _list.less │ │ │ │ │ ├── _mixins.less │ │ │ │ │ ├── _rotated-flipped.less │ │ │ │ │ ├── _screen-reader.less │ │ │ │ │ ├── _stacked.less │ │ │ │ │ ├── _variables.less │ │ │ │ │ ├── fa-brands.less │ │ │ │ │ ├── fa-regular.less │ │ │ │ │ ├── fa-solid.less │ │ │ │ │ └── fontawesome.less │ │ │ │ ├── scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── fa-brands.scss │ │ │ │ │ ├── fa-regular.scss │ │ │ │ │ ├── fa-solid.scss │ │ │ │ │ └── fontawesome.scss │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── material-design-iconic-font │ │ │ │ ├── css │ │ │ │ │ ├── material-design-iconic-font.css │ │ │ │ │ ├── material-design-iconic-font.min.css │ │ │ │ │ └── materialdesignicons.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ │ │ ├── Material-Design-Iconic-Font.woff2 │ │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ │ ├── materialdesignicons-webfont.svg │ │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ ├── themify-icons │ │ │ │ ├── fonts │ │ │ │ │ ├── themify.eot │ │ │ │ │ ├── themify.svg │ │ │ │ │ ├── themify.ttf │ │ │ │ │ └── themify.woff │ │ │ │ ├── ie7 │ │ │ │ │ ├── ie7.css │ │ │ │ │ └── ie7.js │ │ │ │ ├── themify-icons.css │ │ │ │ └── themify-icons.less │ │ │ └── weather-icons │ │ │ │ ├── css │ │ │ │ ├── weather-icons-core.css │ │ │ │ ├── weather-icons-variables.css │ │ │ │ ├── weather-icons-wind.css │ │ │ │ ├── weather-icons-wind.min.css │ │ │ │ ├── weather-icons.css │ │ │ │ └── weather-icons.min.css │ │ │ │ ├── fonts │ │ │ │ ├── weathericons-regular-webfont.eot │ │ │ │ ├── weathericons-regular-webfont.svg │ │ │ │ ├── weathericons-regular-webfont.ttf │ │ │ │ ├── weathericons-regular-webfont.woff │ │ │ │ └── weathericons-regular-webfont.woff2 │ │ │ │ ├── less │ │ │ │ ├── css │ │ │ │ │ ├── variables-beaufort.css │ │ │ │ │ ├── variables-day.css │ │ │ │ │ ├── variables-direction.css │ │ │ │ │ ├── variables-misc.css │ │ │ │ │ ├── variables-moon.css │ │ │ │ │ ├── variables-neutral.css │ │ │ │ │ ├── variables-night.css │ │ │ │ │ ├── variables-time.css │ │ │ │ │ └── variables-wind-names.css │ │ │ │ ├── icon-classes │ │ │ │ │ ├── classes-beaufort.less │ │ │ │ │ ├── classes-day.less │ │ │ │ │ ├── classes-direction.less │ │ │ │ │ ├── classes-misc.less │ │ │ │ │ ├── classes-moon-aliases.less │ │ │ │ │ ├── classes-moon.less │ │ │ │ │ ├── classes-neutral.less │ │ │ │ │ ├── classes-night.less │ │ │ │ │ ├── classes-time.less │ │ │ │ │ ├── classes-wind-aliases.less │ │ │ │ │ ├── classes-wind-degrees.less │ │ │ │ │ └── classes-wind.less │ │ │ │ ├── icon-variables │ │ │ │ │ ├── variables-beaufort.less │ │ │ │ │ ├── variables-day.less │ │ │ │ │ ├── variables-direction.less │ │ │ │ │ ├── variables-misc.less │ │ │ │ │ ├── variables-moon.less │ │ │ │ │ ├── variables-neutral.less │ │ │ │ │ ├── variables-night.less │ │ │ │ │ ├── variables-time.less │ │ │ │ │ └── variables-wind-names.less │ │ │ │ ├── mappings │ │ │ │ │ ├── wi-forecast-io.less │ │ │ │ │ ├── wi-owm.less │ │ │ │ │ ├── wi-wmo4680.less │ │ │ │ │ └── wi-yahoo.less │ │ │ │ ├── weather-icons-classes.less │ │ │ │ ├── weather-icons-core.less │ │ │ │ ├── weather-icons-variables.less │ │ │ │ ├── weather-icons-wind.less │ │ │ │ ├── weather-icons-wind.min.less │ │ │ │ ├── weather-icons.less │ │ │ │ └── weather-icons.min.less │ │ │ │ └── sass │ │ │ │ ├── icon-classes │ │ │ │ ├── classes-beaufort.scss │ │ │ │ ├── classes-day.scss │ │ │ │ ├── classes-direction.scss │ │ │ │ ├── classes-misc.scss │ │ │ │ ├── classes-moon-aliases.scss │ │ │ │ ├── classes-moon.scss │ │ │ │ ├── classes-neutral.scss │ │ │ │ ├── classes-night.scss │ │ │ │ ├── classes-time.scss │ │ │ │ ├── classes-wind-aliases.scss │ │ │ │ ├── classes-wind-degrees.scss │ │ │ │ └── classes-wind.scss │ │ │ │ ├── icon-variables │ │ │ │ ├── variables-beaufort.scss │ │ │ │ ├── variables-day.scss │ │ │ │ ├── variables-direction.scss │ │ │ │ ├── variables-misc.scss │ │ │ │ ├── variables-moon.scss │ │ │ │ ├── variables-neutral.scss │ │ │ │ ├── variables-night.scss │ │ │ │ ├── variables-time.scss │ │ │ │ └── variables-wind-names.scss │ │ │ │ ├── mappings │ │ │ │ ├── wi-forecast-io.scss │ │ │ │ ├── wi-owm.scss │ │ │ │ ├── wi-wmo4680.scss │ │ │ │ └── wi-yahoo.scss │ │ │ │ ├── weather-icons-classes.scss │ │ │ │ ├── weather-icons-core.scss │ │ │ │ ├── weather-icons-variables.scss │ │ │ │ ├── weather-icons-wind.min.scss │ │ │ │ ├── weather-icons-wind.scss │ │ │ │ ├── weather-icons.min.scss │ │ │ │ └── weather-icons.scss │ │ │ ├── mixins │ │ │ └── padding-margin.scss │ │ │ ├── responsive.scss │ │ │ ├── style.scss │ │ │ ├── theme-colors │ │ │ └── theme-colors.scss │ │ │ └── variable.scss │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── angular-13 ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .npmrc ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── src │ ├── app │ │ ├── about │ │ │ ├── about.component.html │ │ │ ├── about.component.ts │ │ │ └── about.module.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── component │ │ │ ├── alert │ │ │ │ ├── alert.component.html │ │ │ │ └── alert.component.ts │ │ │ ├── badge │ │ │ │ ├── badge.component.html │ │ │ │ └── badge.component.ts │ │ │ ├── buttons │ │ │ │ ├── buttons.component.html │ │ │ │ └── buttons.component.ts │ │ │ ├── card │ │ │ │ ├── card.component.html │ │ │ │ └── card.component.ts │ │ │ ├── component.module.ts │ │ │ ├── component.routing.ts │ │ │ ├── dropdown-collapse │ │ │ │ ├── dropdown-collapse.component.html │ │ │ │ └── dropdown-collapse.component.ts │ │ │ ├── nav │ │ │ │ ├── nav.component.html │ │ │ │ └── nav.component.ts │ │ │ ├── pagination │ │ │ │ ├── pagination.component.html │ │ │ │ └── pagination.component.ts │ │ │ └── table │ │ │ │ ├── table-data.ts │ │ │ │ ├── table.component.html │ │ │ │ └── table.component.ts │ │ ├── dashboard │ │ │ ├── dashboard-components │ │ │ │ ├── blog-cards │ │ │ │ │ ├── blog-cards-data.ts │ │ │ │ │ ├── blog-cards.component.html │ │ │ │ │ └── blog-cards.component.ts │ │ │ │ ├── feeds │ │ │ │ │ ├── feeds-data.ts │ │ │ │ │ ├── feeds.component.html │ │ │ │ │ └── feeds.component.ts │ │ │ │ ├── sales-ratio │ │ │ │ │ ├── sales-ratio.component.html │ │ │ │ │ └── sales-ratio.component.ts │ │ │ │ ├── top-cards │ │ │ │ │ ├── top-cards-data.ts │ │ │ │ │ ├── top-cards.component.html │ │ │ │ │ └── top-cards.component.ts │ │ │ │ └── top-selling │ │ │ │ │ ├── top-selling-data.ts │ │ │ │ │ ├── top-selling.component.html │ │ │ │ │ └── top-selling.component.ts │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.ts │ │ │ └── dashboard.module.ts │ │ ├── layouts │ │ │ └── full │ │ │ │ ├── full.component.html │ │ │ │ ├── full.component.scss │ │ │ │ └── full.component.ts │ │ └── shared │ │ │ ├── header │ │ │ ├── navigation.component.html │ │ │ └── navigation.component.ts │ │ │ ├── sidebar │ │ │ ├── menu-items.ts │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.ts │ │ │ ├── sidebar.metadata.ts │ │ │ └── sidebar.service.ts │ │ │ └── spinner.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── images │ │ │ ├── bg │ │ │ │ ├── bg1.jpg │ │ │ │ ├── bg2.jpg │ │ │ │ ├── bg3.jpg │ │ │ │ └── bg4.jpg │ │ │ ├── favicon.png │ │ │ ├── logos │ │ │ │ ├── logo-icon.png │ │ │ │ ├── logo-light-icon.png │ │ │ │ ├── logo-light-text.png │ │ │ │ └── logo-text.png │ │ │ └── users │ │ │ │ ├── user1.jpg │ │ │ │ ├── user2.jpg │ │ │ │ ├── user3.jpg │ │ │ │ ├── user4.jpg │ │ │ │ └── user5.jpg │ │ └── scss │ │ │ ├── _components.scss │ │ │ ├── _custom.scss │ │ │ ├── _responsive.scss │ │ │ ├── _scafholdings.scss │ │ │ ├── _variable.scss │ │ │ ├── core │ │ │ ├── _core.scss │ │ │ ├── layout │ │ │ │ └── _layout.scss │ │ │ ├── loader │ │ │ │ └── _spinner.scss │ │ │ ├── sidebar │ │ │ │ └── _sidebar.scss │ │ │ ├── theme-colors │ │ │ │ └── _theme-colors.scss │ │ │ └── topbar │ │ │ │ └── _header.scss │ │ │ └── style.scss │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ └── tsconfig.json ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── angular-14 ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .npmrc ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── about │ │ │ ├── about.component.html │ │ │ ├── about.component.ts │ │ │ └── about.module.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── component │ │ │ ├── alert │ │ │ │ ├── alert.component.html │ │ │ │ └── alert.component.ts │ │ │ ├── badge │ │ │ │ ├── badge.component.html │ │ │ │ └── badge.component.ts │ │ │ ├── buttons │ │ │ │ ├── buttons.component.html │ │ │ │ └── buttons.component.ts │ │ │ ├── card │ │ │ │ ├── card.component.html │ │ │ │ └── card.component.ts │ │ │ ├── component.module.ts │ │ │ ├── component.routing.ts │ │ │ ├── dropdown-collapse │ │ │ │ ├── dropdown-collapse.component.html │ │ │ │ └── dropdown-collapse.component.ts │ │ │ ├── nav │ │ │ │ ├── nav.component.html │ │ │ │ └── nav.component.ts │ │ │ ├── pagination │ │ │ │ ├── pagination.component.html │ │ │ │ └── pagination.component.ts │ │ │ └── table │ │ │ │ ├── table-data.ts │ │ │ │ ├── table.component.html │ │ │ │ └── table.component.ts │ │ ├── dashboard │ │ │ ├── dashboard-components │ │ │ │ ├── blog-cards │ │ │ │ │ ├── blog-cards-data.ts │ │ │ │ │ ├── blog-cards.component.html │ │ │ │ │ └── blog-cards.component.ts │ │ │ │ ├── feeds │ │ │ │ │ ├── feeds-data.ts │ │ │ │ │ ├── feeds.component.html │ │ │ │ │ └── feeds.component.ts │ │ │ │ ├── sales-ratio │ │ │ │ │ ├── sales-ratio.component.html │ │ │ │ │ └── sales-ratio.component.ts │ │ │ │ ├── top-cards │ │ │ │ │ ├── top-cards-data.ts │ │ │ │ │ ├── top-cards.component.html │ │ │ │ │ └── top-cards.component.ts │ │ │ │ └── top-selling │ │ │ │ │ ├── top-selling-data.ts │ │ │ │ │ ├── top-selling.component.html │ │ │ │ │ └── top-selling.component.ts │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.ts │ │ │ └── dashboard.module.ts │ │ ├── layouts │ │ │ └── full │ │ │ │ ├── full.component.html │ │ │ │ ├── full.component.scss │ │ │ │ └── full.component.ts │ │ └── shared │ │ │ ├── header │ │ │ ├── navigation.component.html │ │ │ └── navigation.component.ts │ │ │ ├── sidebar │ │ │ ├── menu-items.ts │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.ts │ │ │ ├── sidebar.metadata.ts │ │ │ └── sidebar.service.ts │ │ │ └── spinner.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── images │ │ │ ├── bg │ │ │ │ ├── bg1.jpg │ │ │ │ ├── bg2.jpg │ │ │ │ ├── bg3.jpg │ │ │ │ └── bg4.jpg │ │ │ ├── favicon.png │ │ │ ├── logos │ │ │ │ ├── logo-icon.png │ │ │ │ ├── logo-light-icon.png │ │ │ │ ├── logo-light-text.png │ │ │ │ └── logo-text.png │ │ │ └── users │ │ │ │ ├── user1.jpg │ │ │ │ ├── user2.jpg │ │ │ │ ├── user3.jpg │ │ │ │ ├── user4.jpg │ │ │ │ └── user5.jpg │ │ └── scss │ │ │ ├── _components.scss │ │ │ ├── _custom.scss │ │ │ ├── _responsive.scss │ │ │ ├── _scafholdings.scss │ │ │ ├── _variable.scss │ │ │ ├── core │ │ │ ├── _core.scss │ │ │ ├── layout │ │ │ │ └── _layout.scss │ │ │ ├── loader │ │ │ │ └── _spinner.scss │ │ │ ├── sidebar │ │ │ │ └── _sidebar.scss │ │ │ ├── theme-colors │ │ │ │ └── _theme-colors.scss │ │ │ └── topbar │ │ │ │ └── _header.scss │ │ │ └── style.scss │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ └── tsconfig.json ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── angular-16 ├── .editorconfig ├── .gitignore ├── .npmrc ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── about │ │ │ ├── about.component.html │ │ │ ├── about.component.ts │ │ │ └── about.module.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── component │ │ │ ├── alert │ │ │ │ ├── alert.component.html │ │ │ │ └── alert.component.ts │ │ │ ├── badge │ │ │ │ ├── badge.component.html │ │ │ │ └── badge.component.ts │ │ │ ├── buttons │ │ │ │ ├── buttons.component.html │ │ │ │ └── buttons.component.ts │ │ │ ├── card │ │ │ │ ├── card.component.html │ │ │ │ └── card.component.ts │ │ │ ├── component.module.ts │ │ │ ├── component.routing.ts │ │ │ ├── dropdown-collapse │ │ │ │ ├── dropdown-collapse.component.html │ │ │ │ └── dropdown-collapse.component.ts │ │ │ ├── nav │ │ │ │ ├── nav.component.html │ │ │ │ └── nav.component.ts │ │ │ ├── pagination │ │ │ │ ├── pagination.component.html │ │ │ │ └── pagination.component.ts │ │ │ └── table │ │ │ │ ├── table-data.ts │ │ │ │ ├── table.component.html │ │ │ │ └── table.component.ts │ │ ├── dashboard │ │ │ ├── dashboard-components │ │ │ │ ├── blog-cards │ │ │ │ │ ├── blog-cards-data.ts │ │ │ │ │ ├── blog-cards.component.html │ │ │ │ │ └── blog-cards.component.ts │ │ │ │ ├── feeds │ │ │ │ │ ├── feeds-data.ts │ │ │ │ │ ├── feeds.component.html │ │ │ │ │ └── feeds.component.ts │ │ │ │ ├── sales-ratio │ │ │ │ │ ├── sales-ratio.component.html │ │ │ │ │ └── sales-ratio.component.ts │ │ │ │ ├── top-cards │ │ │ │ │ ├── top-cards-data.ts │ │ │ │ │ ├── top-cards.component.html │ │ │ │ │ └── top-cards.component.ts │ │ │ │ └── top-selling │ │ │ │ │ ├── top-selling-data.ts │ │ │ │ │ ├── top-selling.component.html │ │ │ │ │ └── top-selling.component.ts │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.ts │ │ │ └── dashboard.module.ts │ │ ├── layouts │ │ │ └── full │ │ │ │ ├── full.component.html │ │ │ │ ├── full.component.scss │ │ │ │ └── full.component.ts │ │ └── shared │ │ │ ├── header │ │ │ ├── navigation.component.html │ │ │ └── navigation.component.ts │ │ │ ├── sidebar │ │ │ ├── menu-items.ts │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.ts │ │ │ ├── sidebar.metadata.ts │ │ │ └── sidebar.service.ts │ │ │ └── spinner.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── images │ │ │ ├── bg │ │ │ │ ├── bg1.jpg │ │ │ │ ├── bg2.jpg │ │ │ │ ├── bg3.jpg │ │ │ │ └── bg4.jpg │ │ │ ├── favicon.png │ │ │ ├── logos │ │ │ │ ├── logo-icon.png │ │ │ │ ├── logo-light-icon.png │ │ │ │ ├── logo-light-text.png │ │ │ │ └── logo-text.png │ │ │ └── users │ │ │ │ ├── user1.jpg │ │ │ │ ├── user2.jpg │ │ │ │ ├── user3.jpg │ │ │ │ ├── user4.jpg │ │ │ │ └── user5.jpg │ │ └── scss │ │ │ ├── _components.scss │ │ │ ├── _custom.scss │ │ │ ├── _responsive.scss │ │ │ ├── _scafholdings.scss │ │ │ ├── _variable.scss │ │ │ ├── core │ │ │ ├── _core.scss │ │ │ ├── layout │ │ │ │ └── _layout.scss │ │ │ ├── loader │ │ │ │ └── _spinner.scss │ │ │ ├── sidebar │ │ │ │ └── _sidebar.scss │ │ │ ├── theme-colors │ │ │ │ └── _theme-colors.scss │ │ │ └── topbar │ │ │ │ └── _header.scss │ │ │ └── style.scss │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── landingpage ├── assets │ ├── images │ │ ├── free-demo.jpg │ │ └── pro-demo.jpg │ └── plugins │ │ ├── bootstrap │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ ├── bootstrap.bundle.min.js │ │ │ └── bootstrap.min.js │ │ ├── jquery │ │ └── dist │ │ │ ├── core.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.slim.min.js │ │ └── popper.js │ │ └── dist │ │ ├── esm │ │ ├── popper-utils.min.js │ │ └── popper.min.js │ │ ├── popper-utils.min.js │ │ ├── popper.min.js │ │ └── umd │ │ ├── popper-utils.min.js │ │ └── popper.min.js ├── dist │ ├── css │ │ ├── icons │ │ │ └── material-design-iconic-font │ │ │ │ ├── css │ │ │ │ ├── material-design-iconic-font.css │ │ │ │ ├── material-design-iconic-font.min.css │ │ │ │ └── materialdesignicons.min.css │ │ │ │ └── fonts │ │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ │ ├── Material-Design-Iconic-Font.woff2 │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ ├── materialdesignicons-webfont.svg │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ └── style.css │ └── scss │ │ ├── bootstrap │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _tables.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── custom.scss │ │ ├── prepros-6.config │ │ ├── responsive.scss │ │ ├── style.scss │ │ └── variable.scss └── index.html └── package ├── .editorconfig ├── .gitignore ├── .npmrc ├── README.md ├── angular.json ├── netlify.toml ├── package-lock.json ├── package.json ├── src ├── app │ ├── about │ │ ├── about.component.html │ │ ├── about.component.ts │ │ └── about.module.ts │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── component │ │ ├── alert │ │ │ ├── alert.component.html │ │ │ └── alert.component.ts │ │ ├── badge │ │ │ ├── badge.component.html │ │ │ └── badge.component.ts │ │ ├── buttons │ │ │ ├── buttons.component.html │ │ │ └── buttons.component.ts │ │ ├── card │ │ │ ├── card.component.html │ │ │ └── card.component.ts │ │ ├── component.module.ts │ │ ├── component.routing.ts │ │ ├── dropdown-collapse │ │ │ ├── dropdown-collapse.component.html │ │ │ └── dropdown-collapse.component.ts │ │ ├── nav │ │ │ ├── nav.component.html │ │ │ └── nav.component.ts │ │ ├── pagination │ │ │ ├── pagination.component.html │ │ │ └── pagination.component.ts │ │ └── table │ │ │ ├── table-data.ts │ │ │ ├── table.component.html │ │ │ └── table.component.ts │ ├── dashboard │ │ ├── dashboard-components │ │ │ ├── blog-cards │ │ │ │ ├── blog-cards-data.ts │ │ │ │ ├── blog-cards.component.html │ │ │ │ └── blog-cards.component.ts │ │ │ ├── feeds │ │ │ │ ├── feeds-data.ts │ │ │ │ ├── feeds.component.html │ │ │ │ └── feeds.component.ts │ │ │ ├── sales-ratio │ │ │ │ ├── sales-ratio.component.html │ │ │ │ └── sales-ratio.component.ts │ │ │ ├── top-cards │ │ │ │ ├── top-cards-data.ts │ │ │ │ ├── top-cards.component.html │ │ │ │ └── top-cards.component.ts │ │ │ └── top-selling │ │ │ │ ├── top-selling-data.ts │ │ │ │ ├── top-selling.component.html │ │ │ │ └── top-selling.component.ts │ │ ├── dashboard.component.html │ │ ├── dashboard.component.ts │ │ └── dashboard.module.ts │ ├── layouts │ │ └── full │ │ │ ├── full.component.html │ │ │ ├── full.component.scss │ │ │ └── full.component.ts │ └── shared │ │ ├── header │ │ ├── navigation.component.html │ │ └── navigation.component.ts │ │ ├── sidebar │ │ ├── menu-items.ts │ │ ├── sidebar.component.html │ │ ├── sidebar.component.scss │ │ ├── sidebar.component.ts │ │ ├── sidebar.metadata.ts │ │ └── sidebar.service.ts │ │ └── spinner.component.ts ├── assets │ ├── .gitkeep │ ├── images │ │ ├── bg │ │ │ ├── bg1.jpg │ │ │ ├── bg2.jpg │ │ │ ├── bg3.jpg │ │ │ └── bg4.jpg │ │ ├── favicon.png │ │ ├── favicon.svg │ │ ├── logos │ │ │ ├── logo-icon.png │ │ │ ├── logo-icon.svg │ │ │ ├── logo-light-icon.png │ │ │ ├── logo-light-icon.svg │ │ │ ├── logo-light-text.png │ │ │ ├── logo-light-text.svg │ │ │ ├── logo-text.png │ │ │ └── logo-text.svg │ │ └── users │ │ │ ├── user1.jpg │ │ │ ├── user2.jpg │ │ │ ├── user3.jpg │ │ │ ├── user4.jpg │ │ │ └── user5.jpg │ └── scss │ │ ├── _components.scss │ │ ├── _custom.scss │ │ ├── _responsive.scss │ │ ├── _scafholdings.scss │ │ ├── _variable.scss │ │ ├── core │ │ ├── _core.scss │ │ ├── layout │ │ │ └── _layout.scss │ │ ├── loader │ │ │ └── _spinner.scss │ │ ├── sidebar │ │ │ └── _sidebar.scss │ │ ├── theme-colors │ │ │ └── _theme-colors.scss │ │ └── topbar │ │ │ └── _header.scss │ │ └── style.scss ├── favicon.ico ├── index.html ├── main.ts └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/.DS_Store -------------------------------------------------------------------------------- /Angular-11/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /Angular-11/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | 3 | describe('workspace-project App', () => { 4 | let page: AppPage; 5 | 6 | beforeEach(() => { 7 | page = new AppPage(); 8 | }); 9 | 10 | /*it('should display welcome message', () => { 11 | page.navigateTo(); 12 | expect(page.getParagraphText()).toEqual('Welcome to app!'); 13 | });*/ 14 | }); 15 | -------------------------------------------------------------------------------- /Angular-11/e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get('/'); 6 | } 7 | 8 | getParagraphText() { 9 | return element(by.css('')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Angular-11/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } -------------------------------------------------------------------------------- /Angular-11/src/.browserslistrc: -------------------------------------------------------------------------------- 1 | # This file is currently used by autoprefixer to adjust CSS to support the below specified browsers 2 | # For additional information regarding the format and rule options, please see: 3 | # https://github.com/browserslist/browserslist#queries 4 | # For IE 9-11 support, please uncomment the last line of the file and adjust as needed 5 | > 0.5% 6 | last 2 versions 7 | Firefox ESR 8 | not dead 9 | # IE 9-11 -------------------------------------------------------------------------------- /Angular-11/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/app/app.component.css -------------------------------------------------------------------------------- /Angular-11/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Angular-11/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | } 11 | -------------------------------------------------------------------------------- /Angular-11/src/app/component/card/card.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | @Component({ 3 | templateUrl: 'card.component.html' 4 | }) 5 | export class CardsComponent {} 6 | -------------------------------------------------------------------------------- /Angular-11/src/app/component/dropdown-collapse/dropdown-collapse.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-dropdown-basic', 5 | templateUrl: './dropdown-collapse.component.html' 6 | }) 7 | export class NgbdDropdownBasicComponent { 8 | // This is for the collapse example 9 | public isCollapsed = false; 10 | 11 | collapsed = true; 12 | } 13 | -------------------------------------------------------------------------------- /Angular-11/src/app/component/modal/debug.log: -------------------------------------------------------------------------------- 1 | [0903/222220.874:ERROR:crash_report_database_win.cc(428)] unexpected header 2 | -------------------------------------------------------------------------------- /Angular-11/src/app/component/toast/toast.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable, TemplateRef } from '@angular/core'; 2 | 3 | @Injectable({ providedIn: 'root' }) 4 | export class ToastService { 5 | toasts: Array = []; 6 | 7 | show(textOrTpl: string | TemplateRef, options: any = {}) { 8 | this.toasts.push({ textOrTpl, ...options }); 9 | } 10 | 11 | remove(toast:string) { 12 | this.toasts = this.toasts.filter(t => t !== toast); 13 | } 14 | } -------------------------------------------------------------------------------- /Angular-11/src/app/dashboard/dashboard-components/cards/cards.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/app/dashboard/dashboard-components/cards/cards.component.css -------------------------------------------------------------------------------- /Angular-11/src/app/dashboard/dashboard-components/cards/cards.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-cards', 5 | templateUrl: './cards.component.html', 6 | styleUrls: ['./cards.component.css'] 7 | }) 8 | export class CardsComponent implements OnInit { 9 | 10 | constructor() { } 11 | 12 | ngOnInit(): void { 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /Angular-11/src/app/dashboard/dashboard-components/contacts/contacts.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/app/dashboard/dashboard-components/contacts/contacts.component.css -------------------------------------------------------------------------------- /Angular-11/src/app/dashboard/dashboard-components/contacts/contacts.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-contacts', 5 | templateUrl: './contacts.component.html', 6 | styleUrls: ['./contacts.component.css'] 7 | }) 8 | export class ContactsComponent implements OnInit { 9 | 10 | constructor() { } 11 | 12 | ngOnInit(): void { 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /Angular-11/src/app/dashboard/dashboard-components/project-of-month/project-of-month.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/app/dashboard/dashboard-components/project-of-month/project-of-month.component.css -------------------------------------------------------------------------------- /Angular-11/src/app/dashboard/dashboard-components/sales-graph/sales-graph.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/app/dashboard/dashboard-components/sales-graph/sales-graph.component.css -------------------------------------------------------------------------------- /Angular-11/src/app/dashboard/dashboard-components/visit-graph/visit-graph.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/app/dashboard/dashboard-components/visit-graph/visit-graph.component.css -------------------------------------------------------------------------------- /Angular-11/src/app/dashboard/dashboard-components/website-graph/website-graph.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/app/dashboard/dashboard-components/website-graph/website-graph.component.css -------------------------------------------------------------------------------- /Angular-11/src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, AfterViewInit } from '@angular/core'; 2 | @Component({ 3 | templateUrl: './dashboard.component.html' 4 | }) 5 | export class DashboardComponent implements AfterViewInit { 6 | subtitle: string; 7 | constructor() { 8 | this.subtitle = 'This is some text within a card block.'; 9 | } 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ngAfterViewInit() { } 18 | } 19 | -------------------------------------------------------------------------------- /Angular-11/src/app/layouts/full/full.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Angular-11/src/app/shared/header-navigation/navigation.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, EventEmitter, Output } from '@angular/core'; 2 | //declare var $: any; 3 | 4 | @Component({ 5 | selector: 'app-navigation', 6 | templateUrl: './navigation.component.html' 7 | }) 8 | export class NavigationComponent { 9 | @Output() 10 | toggleSidebar = new EventEmitter(); 11 | 12 | public showSearch = false; 13 | 14 | constructor() {} 15 | } 16 | -------------------------------------------------------------------------------- /Angular-11/src/app/shared/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Angular-11/src/app/shared/sidebar/sidebar.metadata.ts: -------------------------------------------------------------------------------- 1 | // Sidebar route metadata 2 | export interface RouteInfo { 3 | path: string; 4 | title: string; 5 | icon: string; 6 | class: string; 7 | extralink: boolean; 8 | submenu: RouteInfo[]; 9 | } 10 | -------------------------------------------------------------------------------- /Angular-11/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/.gitkeep -------------------------------------------------------------------------------- /Angular-11/src/assets/images/background/error-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/background/error-bg.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/background/login-register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/background/login-register.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/background/megamenubg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/background/megamenubg.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/background/profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/background/profile-bg.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/background/socialbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/background/socialbg.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/background/user-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/background/user-bg.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/background/user-info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/background/user-info.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/background/weatherbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/background/weatherbg.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/big/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/big/img1.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/big/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/big/img2.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/big/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/big/img3.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/big/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/big/img4.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/big/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/big/img5.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/big/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/big/img6.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/browser/chrome-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/browser/chrome-logo.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/browser/firefox-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/browser/firefox-logo.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/browser/internet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/browser/internet-logo.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/browser/opera-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/browser/opera-logo.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/browser/photoshop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/browser/photoshop.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/browser/safari-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/browser/safari-logo.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/browser/sketch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/browser/sketch.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/custom-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/custom-select.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/document/colors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/document/colors.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/document/sidebar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/document/sidebar.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/document/template-strucutre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/document/template-strucutre.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/favicon.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/gallery/chair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/gallery/chair.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/gallery/chair2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/gallery/chair2.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/gallery/chair3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/gallery/chair3.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/gallery/chair4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/gallery/chair4.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/assets-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/icon/assets-w.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/icon/assets.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/danger.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/expense-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/icon/expense-w.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/expense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/icon/expense.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/income-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/icon/income-w.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/income.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/icon/income.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/staff-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/icon/staff-w.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/icon/staff.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/success.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/warning.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular-11/src/assets/images/icon/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/icon/zip.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/logo-icon.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/logo-light-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/logo-light-icon.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/logo-light-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/logo-light-text.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/logo-text.png -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/1.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/2.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/3.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/4.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/5.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/6.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/7.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/8.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/d1.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/d2.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/d3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/d3.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/d4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/d4.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/d5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/d5.jpg -------------------------------------------------------------------------------- /Angular-11/src/assets/images/users/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/images/users/profile.png -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | .collapse { 10 | &:not(.show) { 11 | display: none; 12 | } 13 | } 14 | 15 | .collapsing { 16 | position: relative; 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | } 21 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v4.3.1 (https://getbootstrap.com/) 3 | * Copyright 2011-2019 The Bootstrap Authors 4 | * Copyright 2011-2019 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | 9 | @import "functions"; 10 | @import "variables"; 11 | @import "mixins"; 12 | @import "reboot"; 13 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: color-yiq($bg); 3 | background-color: $bg; 4 | 5 | @at-root a#{&} { 6 | @include hover-focus { 7 | color: color-yiq($bg); 8 | background-color: darken($bg, 10%); 9 | } 10 | 11 | &:focus, 12 | &.focus { 13 | outline: 0; 14 | box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @mixin float-left { 4 | float: left !important; 5 | @include deprecate("The `float-left` mixin", "v4.3.0", "v5"); 6 | } 7 | @mixin float-right { 8 | float: right !important; 9 | @include deprecate("The `float-right` mixin", "v4.3.0", "v5"); 10 | } 11 | @mixin float-none { 12 | float: none !important; 13 | @include deprecate("The `float-none` mixin", "v4.3.0", "v5"); 14 | } 15 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y) { 6 | height: 0; 7 | margin: $margin-y 0; 8 | overflow: hidden; 9 | border-top: 1px solid $color; 10 | } 11 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | @include deprecate("`size()`", "v4.3.0", "v5"); 7 | } 8 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Typography 4 | 5 | @mixin text-emphasis-variant($parent, $color) { 6 | #{$parent} { 7 | color: $color !important; 8 | } 9 | @if $emphasized-link-hover-darken-percentage != 0 { 10 | a#{$parent} { 11 | @include hover-focus { 12 | color: darken($color, $emphasized-link-hover-darken-percentage) !important; 13 | } 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | @mixin text-hide($ignore-warning: false) { 3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword 4 | font: 0/0 a; 5 | color: transparent; 6 | text-shadow: none; 7 | background-color: transparent; 8 | border: 0; 9 | 10 | @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable property-blacklist 2 | @mixin transition($transition...) { 3 | @if $enable-transitions { 4 | @if length($transition) == 0 { 5 | transition: $transition-base; 6 | } @else { 7 | transition: $transition; 8 | } 9 | } 10 | 11 | @if $enable-prefers-reduced-motion-media-query { 12 | @media (prefers-reduced-motion: reduce) { 13 | transition: none; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | @include deprecate("`invisible()`", "v4.3.0", "v5"); 8 | } 9 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/utilities/_align.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .align-baseline { vertical-align: baseline !important; } // Browser default 4 | .align-top { vertical-align: top !important; } 5 | .align-middle { vertical-align: middle !important; } 6 | .align-bottom { vertical-align: bottom !important; } 7 | .align-text-bottom { vertical-align: text-bottom !important; } 8 | .align-text-top { vertical-align: text-top !important; } 9 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $breakpoint in map-keys($grid-breakpoints) { 4 | @include media-breakpoint-up($breakpoint) { 5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 6 | 7 | .float#{$infix}-left { float: left !important; } 8 | .float#{$infix}-right { float: right !important; } 9 | .float#{$infix}-none { float: none !important; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/utilities/_overflow.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $overflows { 4 | .overflow-#{$value} { overflow: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .shadow-sm { box-shadow: $box-shadow-sm !important; } 4 | .shadow { box-shadow: $box-shadow !important; } 5 | .shadow-lg { box-shadow: $box-shadow-lg !important; } 6 | .shadow-none { box-shadow: none !important; } 7 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // 4 | // Visibility utilities 5 | // 6 | 7 | .visible { 8 | visibility: visible !important; 9 | } 10 | 11 | .invisible { 12 | visibility: hidden !important; 13 | } 14 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/components.scss: -------------------------------------------------------------------------------- 1 | // All the custom components imports here 2 | @import 'mixins/padding-margin'; 3 | //Theme colors 4 | @import 'theme-colors/theme-colors'; 5 | // core 6 | @import 'core/core'; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/custom.scss: -------------------------------------------------------------------------------- 1 | // In this scss you can overwrite all our scss, we suggested you to add your scss into this, so whenever the update comes it will not affect your code. 2 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/less/_list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: @fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: -@fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: @fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}, 5 | .fas, 6 | .far, 7 | .fal, 8 | .fab { 9 | -moz-osx-font-smoothing: grayscale; 10 | -webkit-font-smoothing: antialiased; 11 | display: inline-block; 12 | font-style: normal; 13 | font-variant: normal; 14 | text-rendering: auto; 15 | line-height: 1; 16 | } 17 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/themify-icons/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/themify-icons/fonts/themify.eot -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/css/weather-icons-variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/css/weather-icons-variables.css -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-beaufort.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-beaufort.css -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-day.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-day.css -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-direction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-direction.css -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-misc.css -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-moon.css -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-neutral.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-neutral.css -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-night.css -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-time.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-time.css -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-wind-names.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/assets/scss/icons/weather-icons/less/css/variables-wind-names.css -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/icon-classes/classes-wind.less: -------------------------------------------------------------------------------- 1 | // Wind Variables 2.0 2 | 3 | @wind: "\f0b1"; 4 | 5 | .@{wi-css-prefix}-wind:before { content: @wind; } 6 | .wind-rotate(@degrees) { 7 | -webkit-transform: rotate(@degrees); 8 | -moz-transform: rotate(@degrees); 9 | -ms-transform: rotate(@degrees); 10 | -o-transform: rotate(@degrees); 11 | transform: rotate(@degrees); 12 | } 13 | 14 | @import "classes-wind-degrees.less"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/icon-variables/variables-beaufort.less: -------------------------------------------------------------------------------- 1 | @wind-beaufort-0: "\f0b7"; 2 | @wind-beaufort-1: "\f0b8"; 3 | @wind-beaufort-2: "\f0b9"; 4 | @wind-beaufort-3: "\f0ba"; 5 | @wind-beaufort-4: "\f0bb"; 6 | @wind-beaufort-5: "\f0bc"; 7 | @wind-beaufort-6: "\f0bd"; 8 | @wind-beaufort-7: "\f0be"; 9 | @wind-beaufort-8: "\f0bf"; 10 | @wind-beaufort-9: "\f0c0"; 11 | @wind-beaufort-10: "\f0c1"; 12 | @wind-beaufort-11: "\f0c2"; 13 | @wind-beaufort-12: "\f0c3"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/icon-variables/variables-direction.less: -------------------------------------------------------------------------------- 1 | @direction-up: "\f058"; 2 | @direction-up-right: "\f057"; 3 | @direction-right: "\f04d"; 4 | @direction-down-right: "\f088"; 5 | @direction-down: "\f044"; 6 | @direction-down-left: "\f043"; 7 | @direction-left: "\f048"; 8 | @direction-up-left: "\f087"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/icon-variables/variables-time.less: -------------------------------------------------------------------------------- 1 | @time-1: "\f08a"; 2 | @time-2: "\f08b"; 3 | @time-3: "\f08c"; 4 | @time-4: "\f08d"; 5 | @time-5: "\f08e"; 6 | @time-6: "\f08f"; 7 | @time-7: "\f090"; 8 | @time-8: "\f091"; 9 | @time-9: "\f092"; 10 | @time-10: "\f093"; 11 | @time-11: "\f094"; 12 | @time-12: "\f089"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/weather-icons-classes.less: -------------------------------------------------------------------------------- 1 | @import "icon-classes/classes-day.less"; 2 | @import "icon-classes/classes-night.less"; 3 | @import "icon-classes/classes-neutral.less"; 4 | @import "icon-classes/classes-misc.less"; 5 | @import "icon-classes/classes-moon.less"; 6 | @import "icon-classes/classes-moon-aliases.less"; 7 | @import "icon-classes/classes-time.less"; 8 | @import "icon-classes/classes-direction.less"; 9 | @import "icon-classes/classes-beaufort.less"; 10 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/weather-icons-variables.less: -------------------------------------------------------------------------------- 1 | @import "icon-variables/variables-beaufort.less"; 2 | @import "icon-variables/variables-time.less"; 3 | @import "icon-variables/variables-moon.less"; 4 | @import "icon-variables/variables-direction.less"; 5 | @import "icon-variables/variables-day.less"; 6 | @import "icon-variables/variables-night.less"; 7 | @import "icon-variables/variables-neutral.less"; 8 | @import "icon-variables/variables-misc.less"; 9 | 10 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/weather-icons-wind.less: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.less"; 2 | @import "icon-variables/variables-wind-names.less"; 3 | @import "icon-classes/classes-wind.less"; 4 | @import "icon-classes/classes-wind-degrees.less"; 5 | @import "icon-classes/classes-wind-aliases.less"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/less/weather-icons-wind.min.less: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.less"; 2 | @import "icon-variables/variables-wind-names.less"; 3 | @import "icon-classes/classes-wind.less"; 4 | @import "icon-classes/classes-wind-degrees.less"; 5 | @import "icon-classes/classes-wind-aliases.less"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/sass/icon-classes/classes-wind.scss: -------------------------------------------------------------------------------- 1 | // Wind Variables 2.0 2 | 3 | $wind: "\f0b1"; 4 | 5 | .#{$wi-css-prefix}-wind:before { content: $wind; } 6 | 7 | @mixin wind-rotate( $val: 0deg ) { 8 | -webkit-transform: rotate($val); 9 | -moz-transform: rotate($val); 10 | -ms-transform: rotate($val); 11 | -o-transform: rotate($val); 12 | transform: rotate($val); 13 | } 14 | 15 | @import "classes-wind-degrees.scss"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/sass/icon-variables/variables-beaufort.scss: -------------------------------------------------------------------------------- 1 | $wind-beaufort-0: "\f0b7"; 2 | $wind-beaufort-1: "\f0b8"; 3 | $wind-beaufort-2: "\f0b9"; 4 | $wind-beaufort-3: "\f0ba"; 5 | $wind-beaufort-4: "\f0bb"; 6 | $wind-beaufort-5: "\f0bc"; 7 | $wind-beaufort-6: "\f0bd"; 8 | $wind-beaufort-7: "\f0be"; 9 | $wind-beaufort-8: "\f0bf"; 10 | $wind-beaufort-9: "\f0c0"; 11 | $wind-beaufort-10: "\f0c1"; 12 | $wind-beaufort-11: "\f0c2"; 13 | $wind-beaufort-12: "\f0c3"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/sass/icon-variables/variables-direction.scss: -------------------------------------------------------------------------------- 1 | $direction-up: "\f058"; 2 | $direction-up-right: "\f057"; 3 | $direction-right: "\f04d"; 4 | $direction-down-right: "\f088"; 5 | $direction-down: "\f044"; 6 | $direction-down-left: "\f043"; 7 | $direction-left: "\f048"; 8 | $direction-up-left: "\f087"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/sass/icon-variables/variables-time.scss: -------------------------------------------------------------------------------- 1 | $time-1: "\f08a"; 2 | $time-2: "\f08b"; 3 | $time-3: "\f08c"; 4 | $time-4: "\f08d"; 5 | $time-5: "\f08e"; 6 | $time-6: "\f08f"; 7 | $time-7: "\f090"; 8 | $time-8: "\f091"; 9 | $time-9: "\f092"; 10 | $time-10: "\f093"; 11 | $time-11: "\f094"; 12 | $time-12: "\f089"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/sass/weather-icons-classes.scss: -------------------------------------------------------------------------------- 1 | @import "icon-classes/classes-day.scss"; 2 | @import "icon-classes/classes-night.scss"; 3 | @import "icon-classes/classes-neutral.scss"; 4 | @import "icon-classes/classes-misc.scss"; 5 | @import "icon-classes/classes-moon.scss"; 6 | @import "icon-classes/classes-moon-aliases.scss"; 7 | @import "icon-classes/classes-time.scss"; 8 | @import "icon-classes/classes-direction.scss"; 9 | @import "icon-classes/classes-beaufort.scss"; 10 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/sass/weather-icons-variables.scss: -------------------------------------------------------------------------------- 1 | @import 'icon-variables/variables-beaufort.scss'; 2 | @import 'icon-variables/variables-time.scss'; 3 | @import 'icon-variables/variables-moon.scss'; 4 | @import 'icon-variables/variables-direction.scss'; 5 | @import 'icon-variables/variables-day.scss'; 6 | @import 'icon-variables/variables-night.scss'; 7 | @import 'icon-variables/variables-neutral.scss'; 8 | @import 'icon-variables/variables-misc.scss'; 9 | 10 | -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/sass/weather-icons-wind.min.scss: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.scss"; 2 | @import "icon-variables/variables-wind-names.scss"; 3 | @import "icon-classes/classes-wind.scss"; 4 | @import "icon-classes/classes-wind-degrees.scss"; 5 | @import "icon-classes/classes-wind-aliases.scss"; -------------------------------------------------------------------------------- /Angular-11/src/assets/scss/icons/weather-icons/sass/weather-icons-wind.scss: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.scss"; 2 | @import "icon-variables/variables-wind-names.scss"; 3 | @import "icon-classes/classes-wind.scss"; 4 | @import "icon-classes/classes-wind-degrees.scss"; 5 | @import "icon-classes/classes-wind-aliases.scss"; -------------------------------------------------------------------------------- /Angular-11/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Angular-11/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/Angular-11/src/favicon.ico -------------------------------------------------------------------------------- /Angular-11/src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) { 8 | enableProdMode(); 9 | } 10 | 11 | platformBrowserDynamic() 12 | .bootstrapModule(AppModule) 13 | .catch(err => console.log(err)); 14 | -------------------------------------------------------------------------------- /Angular-11/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular-11/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "types": [] 6 | }, 7 | "files": [ 8 | "main.ts", 9 | "polyfills.ts" 10 | ], 11 | "include": [ 12 | "src/**/*.d.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /Angular-11/src/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/spec", 5 | "types": ["jasmine", "node"] 6 | }, 7 | "files": ["test.ts"], 8 | "include": ["**/*.spec.ts", "**/*.d.ts"] 9 | } 10 | -------------------------------------------------------------------------------- /Angular-11/src/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tslint.json", 3 | "rules": { 4 | "directive-selector": [ 5 | true, 6 | "attribute", 7 | "app", 8 | "camelCase" 9 | ], 10 | "component-selector": [ 11 | true, 12 | "element", 13 | "app", 14 | "kebab-case" 15 | ] 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /angular-12/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /angular-12/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | 3 | describe('workspace-project App', () => { 4 | let page: AppPage; 5 | 6 | beforeEach(() => { 7 | page = new AppPage(); 8 | }); 9 | 10 | /*it('should display welcome message', () => { 11 | page.navigateTo(); 12 | expect(page.getParagraphText()).toEqual('Welcome to app!'); 13 | });*/ 14 | }); 15 | -------------------------------------------------------------------------------- /angular-12/e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get('/'); 6 | } 7 | 8 | getParagraphText() { 9 | return element(by.css('')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /angular-12/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } -------------------------------------------------------------------------------- /angular-12/src/.browserslistrc: -------------------------------------------------------------------------------- 1 | # This file is currently used by autoprefixer to adjust CSS to support the below specified browsers 2 | # For additional information regarding the format and rule options, please see: 3 | # https://github.com/browserslist/browserslist#queries 4 | # For IE 9-11 support, please uncomment the last line of the file and adjust as needed 5 | > 0.5% 6 | last 2 versions 7 | Firefox ESR 8 | not dead 9 | # IE 9-11 -------------------------------------------------------------------------------- /angular-12/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/app/app.component.css -------------------------------------------------------------------------------- /angular-12/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /angular-12/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | } 11 | -------------------------------------------------------------------------------- /angular-12/src/app/component/card/card.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | @Component({ 3 | templateUrl: 'card.component.html' 4 | }) 5 | export class CardsComponent {} 6 | -------------------------------------------------------------------------------- /angular-12/src/app/component/dropdown-collapse/dropdown-collapse.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-dropdown-basic', 5 | templateUrl: './dropdown-collapse.component.html' 6 | }) 7 | export class NgbdDropdownBasicComponent { 8 | // This is for the collapse example 9 | public isCollapsed = false; 10 | 11 | collapsed = true; 12 | } 13 | -------------------------------------------------------------------------------- /angular-12/src/app/component/modal/debug.log: -------------------------------------------------------------------------------- 1 | [0903/222220.874:ERROR:crash_report_database_win.cc(428)] unexpected header 2 | -------------------------------------------------------------------------------- /angular-12/src/app/component/toast/toast.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable, TemplateRef } from '@angular/core'; 2 | 3 | @Injectable({ providedIn: 'root' }) 4 | export class ToastService { 5 | toasts: Array = []; 6 | 7 | show(textOrTpl: string | TemplateRef, options: any = {}) { 8 | this.toasts.push({ textOrTpl, ...options }); 9 | } 10 | 11 | remove(toast:string) { 12 | this.toasts = this.toasts.filter(t => t !== toast); 13 | } 14 | } -------------------------------------------------------------------------------- /angular-12/src/app/dashboard/dashboard-components/cards/cards.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/app/dashboard/dashboard-components/cards/cards.component.css -------------------------------------------------------------------------------- /angular-12/src/app/dashboard/dashboard-components/cards/cards.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-cards', 5 | templateUrl: './cards.component.html', 6 | styleUrls: ['./cards.component.css'] 7 | }) 8 | export class CardsComponent implements OnInit { 9 | 10 | constructor() { } 11 | 12 | ngOnInit(): void { 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /angular-12/src/app/dashboard/dashboard-components/contacts/contacts.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/app/dashboard/dashboard-components/contacts/contacts.component.css -------------------------------------------------------------------------------- /angular-12/src/app/dashboard/dashboard-components/contacts/contacts.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-contacts', 5 | templateUrl: './contacts.component.html', 6 | styleUrls: ['./contacts.component.css'] 7 | }) 8 | export class ContactsComponent implements OnInit { 9 | 10 | constructor() { } 11 | 12 | ngOnInit(): void { 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /angular-12/src/app/dashboard/dashboard-components/project-of-month/project-of-month.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/app/dashboard/dashboard-components/project-of-month/project-of-month.component.css -------------------------------------------------------------------------------- /angular-12/src/app/dashboard/dashboard-components/sales-graph/sales-graph.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/app/dashboard/dashboard-components/sales-graph/sales-graph.component.css -------------------------------------------------------------------------------- /angular-12/src/app/dashboard/dashboard-components/visit-graph/visit-graph.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/app/dashboard/dashboard-components/visit-graph/visit-graph.component.css -------------------------------------------------------------------------------- /angular-12/src/app/dashboard/dashboard-components/website-graph/website-graph.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/app/dashboard/dashboard-components/website-graph/website-graph.component.css -------------------------------------------------------------------------------- /angular-12/src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, AfterViewInit } from '@angular/core'; 2 | @Component({ 3 | templateUrl: './dashboard.component.html' 4 | }) 5 | export class DashboardComponent implements AfterViewInit { 6 | subtitle: string; 7 | constructor() { 8 | this.subtitle = 'This is some text within a card block.'; 9 | } 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ngAfterViewInit() { } 18 | } 19 | -------------------------------------------------------------------------------- /angular-12/src/app/layouts/full/full.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /angular-12/src/app/shared/header-navigation/navigation.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, EventEmitter, Output } from '@angular/core'; 2 | //declare var $: any; 3 | 4 | @Component({ 5 | selector: 'app-navigation', 6 | templateUrl: './navigation.component.html' 7 | }) 8 | export class NavigationComponent { 9 | @Output() 10 | toggleSidebar = new EventEmitter(); 11 | 12 | public showSearch = false; 13 | 14 | constructor() {} 15 | } 16 | -------------------------------------------------------------------------------- /angular-12/src/app/shared/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /angular-12/src/app/shared/sidebar/sidebar.metadata.ts: -------------------------------------------------------------------------------- 1 | // Sidebar route metadata 2 | export interface RouteInfo { 3 | path: string; 4 | title: string; 5 | icon: string; 6 | class: string; 7 | extralink: boolean; 8 | submenu: RouteInfo[]; 9 | } 10 | -------------------------------------------------------------------------------- /angular-12/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/.gitkeep -------------------------------------------------------------------------------- /angular-12/src/assets/images/background/error-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/background/error-bg.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/background/login-register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/background/login-register.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/background/megamenubg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/background/megamenubg.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/background/profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/background/profile-bg.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/background/socialbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/background/socialbg.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/background/user-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/background/user-bg.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/background/user-info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/background/user-info.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/background/weatherbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/background/weatherbg.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/big/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/big/img1.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/big/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/big/img2.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/big/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/big/img3.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/big/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/big/img4.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/big/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/big/img5.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/big/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/big/img6.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/browser/chrome-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/browser/chrome-logo.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/browser/firefox-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/browser/firefox-logo.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/browser/internet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/browser/internet-logo.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/browser/opera-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/browser/opera-logo.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/browser/photoshop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/browser/photoshop.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/browser/safari-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/browser/safari-logo.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/browser/sketch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/browser/sketch.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/custom-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/custom-select.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/document/colors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/document/colors.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/document/sidebar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/document/sidebar.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/document/template-strucutre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/document/template-strucutre.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/favicon.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/gallery/chair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/gallery/chair.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/gallery/chair2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/gallery/chair2.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/gallery/chair3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/gallery/chair3.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/gallery/chair4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/gallery/chair4.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/assets-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/icon/assets-w.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/icon/assets.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/danger.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/expense-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/icon/expense-w.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/expense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/icon/expense.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/income-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/icon/income-w.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/income.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/icon/income.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/staff-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/icon/staff-w.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/icon/staff.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/success.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/warning.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-12/src/assets/images/icon/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/icon/zip.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/logo-icon.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/logo-light-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/logo-light-icon.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/logo-light-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/logo-light-text.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/logo-text.png -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/1.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/2.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/3.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/4.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/5.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/6.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/7.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/8.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/d1.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/d2.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/d3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/d3.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/d4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/d4.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/d5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/d5.jpg -------------------------------------------------------------------------------- /angular-12/src/assets/images/users/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/images/users/profile.png -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | .collapse { 10 | &:not(.show) { 11 | display: none; 12 | } 13 | } 14 | 15 | .collapsing { 16 | position: relative; 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | } 21 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v4.6.0 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | 9 | @import "functions"; 10 | @import "variables"; 11 | @import "mixins"; 12 | @import "reboot"; 13 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: color-yiq($bg); 3 | background-color: $bg; 4 | 5 | @at-root a#{&} { 6 | @include hover-focus() { 7 | color: color-yiq($bg); 8 | background-color: darken($bg, 10%); 9 | } 10 | 11 | &:focus, 12 | &.focus { 13 | outline: 0; 14 | box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @mixin float-left() { 4 | float: left !important; 5 | @include deprecate("The `float-left` mixin", "v4.3.0", "v5"); 6 | } 7 | @mixin float-right() { 8 | float: right !important; 9 | @include deprecate("The `float-right` mixin", "v4.3.0", "v5"); 10 | } 11 | @mixin float-none() { 12 | float: none !important; 13 | @include deprecate("The `float-none` mixin", "v4.3.0", "v5"); 14 | } 15 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled() { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y, $ignore-warning: false) { 6 | height: 0; 7 | margin: $margin-y 0; 8 | overflow: hidden; 9 | border-top: 1px solid $color; 10 | @include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | @include deprecate("`size()`", "v4.3.0", "v5"); 7 | } 8 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | @mixin text-hide($ignore-warning: false) { 3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword 4 | font: 0/0 a; 5 | color: transparent; 6 | text-shadow: none; 7 | background-color: transparent; 8 | border: 0; 9 | 10 | @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | @include deprecate("`invisible()`", "v4.3.0", "v5"); 8 | } 9 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/utilities/_align.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .align-baseline { vertical-align: baseline !important; } // Browser default 4 | .align-top { vertical-align: top !important; } 5 | .align-middle { vertical-align: middle !important; } 6 | .align-bottom { vertical-align: bottom !important; } 7 | .align-text-bottom { vertical-align: text-bottom !important; } 8 | .align-text-top { vertical-align: text-top !important; } 9 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $breakpoint in map-keys($grid-breakpoints) { 4 | @include media-breakpoint-up($breakpoint) { 5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 6 | 7 | .float#{$infix}-left { float: left !important; } 8 | .float#{$infix}-right { float: right !important; } 9 | .float#{$infix}-none { float: none !important; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/utilities/_interactions.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $user-selects { 4 | .user-select-#{$value} { user-select: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/utilities/_overflow.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $overflows { 4 | .overflow-#{$value} { overflow: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .shadow-sm { box-shadow: $box-shadow-sm !important; } 4 | .shadow { box-shadow: $box-shadow !important; } 5 | .shadow-lg { box-shadow: $box-shadow-lg !important; } 6 | .shadow-none { box-shadow: none !important; } 7 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // 4 | // Visibility utilities 5 | // 6 | 7 | .visible { 8 | visibility: visible !important; 9 | } 10 | 11 | .invisible { 12 | visibility: hidden !important; 13 | } 14 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/components.scss: -------------------------------------------------------------------------------- 1 | // All the custom components imports here 2 | @import 'mixins/padding-margin'; 3 | //Theme colors 4 | @import 'theme-colors/theme-colors'; 5 | // core 6 | @import 'core/core'; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/custom.scss: -------------------------------------------------------------------------------- 1 | // In this scss you can overwrite all our scss, we suggested you to add your scss into this, so whenever the update comes it will not affect your code. 2 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/less/_list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: @fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: -@fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: @fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}, 5 | .fas, 6 | .far, 7 | .fal, 8 | .fab { 9 | -moz-osx-font-smoothing: grayscale; 10 | -webkit-font-smoothing: antialiased; 11 | display: inline-block; 12 | font-style: normal; 13 | font-variant: normal; 14 | text-rendering: auto; 15 | line-height: 1; 16 | } 17 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/themify-icons/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/themify-icons/fonts/themify.eot -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/css/weather-icons-variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/css/weather-icons-variables.css -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/css/variables-beaufort.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/less/css/variables-beaufort.css -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/css/variables-day.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/less/css/variables-day.css -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/css/variables-direction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/less/css/variables-direction.css -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/css/variables-misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/less/css/variables-misc.css -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/css/variables-moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/less/css/variables-moon.css -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/css/variables-neutral.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/less/css/variables-neutral.css -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/css/variables-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/less/css/variables-night.css -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/css/variables-time.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/less/css/variables-time.css -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/css/variables-wind-names.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/assets/scss/icons/weather-icons/less/css/variables-wind-names.css -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/icon-classes/classes-wind.less: -------------------------------------------------------------------------------- 1 | // Wind Variables 2.0 2 | 3 | @wind: "\f0b1"; 4 | 5 | .@{wi-css-prefix}-wind:before { content: @wind; } 6 | .wind-rotate(@degrees) { 7 | -webkit-transform: rotate(@degrees); 8 | -moz-transform: rotate(@degrees); 9 | -ms-transform: rotate(@degrees); 10 | -o-transform: rotate(@degrees); 11 | transform: rotate(@degrees); 12 | } 13 | 14 | @import "classes-wind-degrees.less"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/icon-variables/variables-beaufort.less: -------------------------------------------------------------------------------- 1 | @wind-beaufort-0: "\f0b7"; 2 | @wind-beaufort-1: "\f0b8"; 3 | @wind-beaufort-2: "\f0b9"; 4 | @wind-beaufort-3: "\f0ba"; 5 | @wind-beaufort-4: "\f0bb"; 6 | @wind-beaufort-5: "\f0bc"; 7 | @wind-beaufort-6: "\f0bd"; 8 | @wind-beaufort-7: "\f0be"; 9 | @wind-beaufort-8: "\f0bf"; 10 | @wind-beaufort-9: "\f0c0"; 11 | @wind-beaufort-10: "\f0c1"; 12 | @wind-beaufort-11: "\f0c2"; 13 | @wind-beaufort-12: "\f0c3"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/icon-variables/variables-direction.less: -------------------------------------------------------------------------------- 1 | @direction-up: "\f058"; 2 | @direction-up-right: "\f057"; 3 | @direction-right: "\f04d"; 4 | @direction-down-right: "\f088"; 5 | @direction-down: "\f044"; 6 | @direction-down-left: "\f043"; 7 | @direction-left: "\f048"; 8 | @direction-up-left: "\f087"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/icon-variables/variables-time.less: -------------------------------------------------------------------------------- 1 | @time-1: "\f08a"; 2 | @time-2: "\f08b"; 3 | @time-3: "\f08c"; 4 | @time-4: "\f08d"; 5 | @time-5: "\f08e"; 6 | @time-6: "\f08f"; 7 | @time-7: "\f090"; 8 | @time-8: "\f091"; 9 | @time-9: "\f092"; 10 | @time-10: "\f093"; 11 | @time-11: "\f094"; 12 | @time-12: "\f089"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/weather-icons-classes.less: -------------------------------------------------------------------------------- 1 | @import "icon-classes/classes-day.less"; 2 | @import "icon-classes/classes-night.less"; 3 | @import "icon-classes/classes-neutral.less"; 4 | @import "icon-classes/classes-misc.less"; 5 | @import "icon-classes/classes-moon.less"; 6 | @import "icon-classes/classes-moon-aliases.less"; 7 | @import "icon-classes/classes-time.less"; 8 | @import "icon-classes/classes-direction.less"; 9 | @import "icon-classes/classes-beaufort.less"; 10 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/weather-icons-variables.less: -------------------------------------------------------------------------------- 1 | @import "icon-variables/variables-beaufort.less"; 2 | @import "icon-variables/variables-time.less"; 3 | @import "icon-variables/variables-moon.less"; 4 | @import "icon-variables/variables-direction.less"; 5 | @import "icon-variables/variables-day.less"; 6 | @import "icon-variables/variables-night.less"; 7 | @import "icon-variables/variables-neutral.less"; 8 | @import "icon-variables/variables-misc.less"; 9 | 10 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/weather-icons-wind.less: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.less"; 2 | @import "icon-variables/variables-wind-names.less"; 3 | @import "icon-classes/classes-wind.less"; 4 | @import "icon-classes/classes-wind-degrees.less"; 5 | @import "icon-classes/classes-wind-aliases.less"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/less/weather-icons-wind.min.less: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.less"; 2 | @import "icon-variables/variables-wind-names.less"; 3 | @import "icon-classes/classes-wind.less"; 4 | @import "icon-classes/classes-wind-degrees.less"; 5 | @import "icon-classes/classes-wind-aliases.less"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/sass/icon-classes/classes-wind.scss: -------------------------------------------------------------------------------- 1 | // Wind Variables 2.0 2 | 3 | $wind: "\f0b1"; 4 | 5 | .#{$wi-css-prefix}-wind:before { content: $wind; } 6 | 7 | @mixin wind-rotate( $val: 0deg ) { 8 | -webkit-transform: rotate($val); 9 | -moz-transform: rotate($val); 10 | -ms-transform: rotate($val); 11 | -o-transform: rotate($val); 12 | transform: rotate($val); 13 | } 14 | 15 | @import "classes-wind-degrees.scss"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/sass/icon-variables/variables-beaufort.scss: -------------------------------------------------------------------------------- 1 | $wind-beaufort-0: "\f0b7"; 2 | $wind-beaufort-1: "\f0b8"; 3 | $wind-beaufort-2: "\f0b9"; 4 | $wind-beaufort-3: "\f0ba"; 5 | $wind-beaufort-4: "\f0bb"; 6 | $wind-beaufort-5: "\f0bc"; 7 | $wind-beaufort-6: "\f0bd"; 8 | $wind-beaufort-7: "\f0be"; 9 | $wind-beaufort-8: "\f0bf"; 10 | $wind-beaufort-9: "\f0c0"; 11 | $wind-beaufort-10: "\f0c1"; 12 | $wind-beaufort-11: "\f0c2"; 13 | $wind-beaufort-12: "\f0c3"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/sass/icon-variables/variables-direction.scss: -------------------------------------------------------------------------------- 1 | $direction-up: "\f058"; 2 | $direction-up-right: "\f057"; 3 | $direction-right: "\f04d"; 4 | $direction-down-right: "\f088"; 5 | $direction-down: "\f044"; 6 | $direction-down-left: "\f043"; 7 | $direction-left: "\f048"; 8 | $direction-up-left: "\f087"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/sass/icon-variables/variables-time.scss: -------------------------------------------------------------------------------- 1 | $time-1: "\f08a"; 2 | $time-2: "\f08b"; 3 | $time-3: "\f08c"; 4 | $time-4: "\f08d"; 5 | $time-5: "\f08e"; 6 | $time-6: "\f08f"; 7 | $time-7: "\f090"; 8 | $time-8: "\f091"; 9 | $time-9: "\f092"; 10 | $time-10: "\f093"; 11 | $time-11: "\f094"; 12 | $time-12: "\f089"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/sass/weather-icons-classes.scss: -------------------------------------------------------------------------------- 1 | @import "icon-classes/classes-day.scss"; 2 | @import "icon-classes/classes-night.scss"; 3 | @import "icon-classes/classes-neutral.scss"; 4 | @import "icon-classes/classes-misc.scss"; 5 | @import "icon-classes/classes-moon.scss"; 6 | @import "icon-classes/classes-moon-aliases.scss"; 7 | @import "icon-classes/classes-time.scss"; 8 | @import "icon-classes/classes-direction.scss"; 9 | @import "icon-classes/classes-beaufort.scss"; 10 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/sass/weather-icons-variables.scss: -------------------------------------------------------------------------------- 1 | @import 'icon-variables/variables-beaufort.scss'; 2 | @import 'icon-variables/variables-time.scss'; 3 | @import 'icon-variables/variables-moon.scss'; 4 | @import 'icon-variables/variables-direction.scss'; 5 | @import 'icon-variables/variables-day.scss'; 6 | @import 'icon-variables/variables-night.scss'; 7 | @import 'icon-variables/variables-neutral.scss'; 8 | @import 'icon-variables/variables-misc.scss'; 9 | 10 | -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/sass/weather-icons-wind.min.scss: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.scss"; 2 | @import "icon-variables/variables-wind-names.scss"; 3 | @import "icon-classes/classes-wind.scss"; 4 | @import "icon-classes/classes-wind-degrees.scss"; 5 | @import "icon-classes/classes-wind-aliases.scss"; -------------------------------------------------------------------------------- /angular-12/src/assets/scss/icons/weather-icons/sass/weather-icons-wind.scss: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.scss"; 2 | @import "icon-variables/variables-wind-names.scss"; 3 | @import "icon-classes/classes-wind.scss"; 4 | @import "icon-classes/classes-wind-degrees.scss"; 5 | @import "icon-classes/classes-wind-aliases.scss"; -------------------------------------------------------------------------------- /angular-12/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-12/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-12/src/favicon.ico -------------------------------------------------------------------------------- /angular-12/src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) { 8 | enableProdMode(); 9 | } 10 | 11 | platformBrowserDynamic() 12 | .bootstrapModule(AppModule) 13 | .catch(err => console.log(err)); 14 | -------------------------------------------------------------------------------- /angular-12/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /angular-12/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "types": [] 6 | }, 7 | "files": [ 8 | "main.ts", 9 | "polyfills.ts" 10 | ], 11 | "include": [ 12 | "src/**/*.d.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /angular-12/src/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/spec", 5 | "types": ["jasmine", "node"] 6 | }, 7 | "files": ["test.ts"], 8 | "include": ["**/*.spec.ts", "**/*.d.ts"] 9 | } 10 | -------------------------------------------------------------------------------- /angular-12/src/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tslint.json", 3 | "rules": { 4 | "directive-selector": [ 5 | true, 6 | "attribute", 7 | "app", 8 | "camelCase" 9 | ], 10 | "component-selector": [ 11 | true, 12 | "element", 13 | "app", 14 | "kebab-case" 15 | ] 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /angular-12/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "baseUrl": "./", 5 | "module": "es2020", 6 | "outDir": "./dist/out-tsc", 7 | "sourceMap": true, 8 | "declaration": false, 9 | "moduleResolution": "node", 10 | "experimentalDecorators": true, 11 | "target": "es5", 12 | "strict": true, 13 | "typeRoots": [ 14 | "node_modules/@types" 15 | ], 16 | "lib": [ 17 | "es2017", 18 | "dom" 19 | ] 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /angular-13/.browserslistrc: -------------------------------------------------------------------------------- 1 | # This file is currently used by autoprefixer to adjust CSS to support the below specified browsers 2 | # For additional information regarding the format and rule options, please see: 3 | # https://github.com/browserslist/browserslist#queries 4 | # For IE 9-11 support, please uncomment the last line of the file and adjust as needed 5 | > 0.5% 6 | last 2 versions 7 | Firefox ESR 8 | not dead 9 | # IE 9-11 -------------------------------------------------------------------------------- /angular-13/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /angular-13/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /angular-13/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | 3 | describe('workspace-project App', () => { 4 | let page: AppPage; 5 | 6 | beforeEach(() => { 7 | page = new AppPage(); 8 | }); 9 | 10 | it('should display welcome message', () => { 11 | page.navigateTo(); 12 | // expect(page.getParagraphText()).toEqual('Welcome to app!'); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /angular-13/e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get('/'); 6 | } 7 | 8 | getParagraphText() { 9 | return element(by.css('')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /angular-13/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } -------------------------------------------------------------------------------- /angular-13/src/app/about/about.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, } from '@angular/core'; 2 | @Component({ 3 | templateUrl: './about.component.html' 4 | }) 5 | export class AboutComponent { 6 | constructor() { 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /angular-13/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/app/app.component.css -------------------------------------------------------------------------------- /angular-13/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /angular-13/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | } 11 | -------------------------------------------------------------------------------- /angular-13/src/app/component/badge/badge.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from "@angular/core"; 2 | @Component({ 3 | templateUrl: "badge.component.html", 4 | }) 5 | export class BadgeComponent { 6 | 7 | constructor( ) { } 8 | 9 | 10 | } 11 | -------------------------------------------------------------------------------- /angular-13/src/app/component/card/card.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | @Component({ 3 | templateUrl: 'card.component.html' 4 | }) 5 | export class CardsComponent {} 6 | -------------------------------------------------------------------------------- /angular-13/src/app/component/dropdown-collapse/dropdown-collapse.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-dropdown-basic', 5 | templateUrl: './dropdown-collapse.component.html' 6 | }) 7 | export class NgbdDropdownBasicComponent { 8 | // This is for the collapse example 9 | public isCollapsed = false; 10 | 11 | collapsed = true; 12 | } 13 | -------------------------------------------------------------------------------- /angular-13/src/app/component/pagination/pagination.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | 4 | @Component({ 5 | selector: 'app-ngbd-pagination', 6 | templateUrl: './pagination.component.html' 7 | }) 8 | export class NgbdpaginationBasicComponent { 9 | page = 4; 10 | page2 = 1; 11 | currentPage = 3; 12 | disablepage = 3; 13 | pagecustom = 4; 14 | 15 | getPageSymbol(current: number) { 16 | return ['A', 'B', 'C', 'D', 'E', 'F', 'G'][current - 1]; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /angular-13/src/app/component/table/table.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | import {Product,TopSelling, TableRows, Employee} from './table-data'; 3 | 4 | 5 | @Component({ 6 | selector: 'app-table', 7 | templateUrl: 'table.component.html' 8 | }) 9 | export class TableComponent { 10 | topSelling:Product[]; 11 | 12 | trow:TableRows[]; 13 | 14 | constructor() { 15 | 16 | this.topSelling=TopSelling; 17 | 18 | this.trow=Employee; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /angular-13/src/app/dashboard/dashboard-components/feeds/feeds.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | import { Feeds,Feed } from './feeds-data'; 3 | 4 | @Component({ 5 | selector: 'app-feeds', 6 | templateUrl: './feeds.component.html' 7 | }) 8 | export class FeedsComponent implements OnInit { 9 | 10 | feeds:Feed[]; 11 | 12 | constructor() { 13 | 14 | this.feeds = Feeds; 15 | } 16 | 17 | ngOnInit(): void { 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /angular-13/src/app/dashboard/dashboard-components/top-cards/top-cards.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | import {topcard,topcards} from './top-cards-data'; 3 | 4 | @Component({ 5 | selector: 'app-top-cards', 6 | templateUrl: './top-cards.component.html' 7 | }) 8 | export class TopCardsComponent implements OnInit { 9 | 10 | topcards:topcard[]; 11 | 12 | constructor() { 13 | 14 | this.topcards=topcards; 15 | } 16 | 17 | ngOnInit(): void { 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /angular-13/src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, AfterViewInit } from '@angular/core'; 2 | //declare var require: any; 3 | 4 | @Component({ 5 | templateUrl: './dashboard.component.html' 6 | }) 7 | export class DashboardComponent implements AfterViewInit { 8 | subtitle: string; 9 | constructor() { 10 | this.subtitle = 'This is some text within a card block.'; 11 | } 12 | 13 | ngAfterViewInit() { } 14 | } 15 | -------------------------------------------------------------------------------- /angular-13/src/app/layouts/full/full.component.scss: -------------------------------------------------------------------------------- 1 | .max-width { 2 | max-width: 1440px; 3 | margin: 0 auto; 4 | } 5 | -------------------------------------------------------------------------------- /angular-13/src/app/shared/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/app/shared/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /angular-13/src/app/shared/sidebar/sidebar.metadata.ts: -------------------------------------------------------------------------------- 1 | // Sidebar route metadata 2 | export interface RouteInfo { 3 | path: string; 4 | title: string; 5 | icon: string; 6 | class: string; 7 | extralink: boolean; 8 | submenu: RouteInfo[]; 9 | } 10 | -------------------------------------------------------------------------------- /angular-13/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/.gitkeep -------------------------------------------------------------------------------- /angular-13/src/assets/images/bg/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/bg/bg1.jpg -------------------------------------------------------------------------------- /angular-13/src/assets/images/bg/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/bg/bg2.jpg -------------------------------------------------------------------------------- /angular-13/src/assets/images/bg/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/bg/bg3.jpg -------------------------------------------------------------------------------- /angular-13/src/assets/images/bg/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/bg/bg4.jpg -------------------------------------------------------------------------------- /angular-13/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/favicon.png -------------------------------------------------------------------------------- /angular-13/src/assets/images/logos/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/logos/logo-icon.png -------------------------------------------------------------------------------- /angular-13/src/assets/images/logos/logo-light-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/logos/logo-light-icon.png -------------------------------------------------------------------------------- /angular-13/src/assets/images/logos/logo-light-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/logos/logo-light-text.png -------------------------------------------------------------------------------- /angular-13/src/assets/images/logos/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/logos/logo-text.png -------------------------------------------------------------------------------- /angular-13/src/assets/images/users/user1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/users/user1.jpg -------------------------------------------------------------------------------- /angular-13/src/assets/images/users/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/users/user2.jpg -------------------------------------------------------------------------------- /angular-13/src/assets/images/users/user3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/users/user3.jpg -------------------------------------------------------------------------------- /angular-13/src/assets/images/users/user4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/users/user4.jpg -------------------------------------------------------------------------------- /angular-13/src/assets/images/users/user5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/assets/images/users/user5.jpg -------------------------------------------------------------------------------- /angular-13/src/assets/scss/_custom.scss: -------------------------------------------------------------------------------- 1 | // In this scss you can overwrite all our scss, we suggested you to add your scss into this, so whenever the update comes it will not affect your code. 2 | -------------------------------------------------------------------------------- /angular-13/src/assets/scss/core/_core.scss: -------------------------------------------------------------------------------- 1 | @import 'layout/layout'; 2 | 3 | // Header 4 | @import 'loader/spinner'; 5 | @import 'topbar/header'; 6 | 7 | // sidebar 8 | @import 'sidebar/sidebar'; 9 | 10 | // theme-colors 11 | @import 'theme-colors/theme-colors'; 12 | -------------------------------------------------------------------------------- /angular-13/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-13/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-13/src/favicon.ico -------------------------------------------------------------------------------- /angular-13/src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) { 8 | enableProdMode(); 9 | } 10 | 11 | platformBrowserDynamic().bootstrapModule(AppModule) 12 | .catch(err => console.log(err)); 13 | -------------------------------------------------------------------------------- /angular-13/src/styles.scss: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | 3 | @import url('https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800'); -------------------------------------------------------------------------------- /angular-13/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/app", 5 | "types": [] 6 | }, 7 | "files": [ 8 | "src/main.ts", 9 | "src/polyfills.ts" 10 | ], 11 | "include": [ 12 | "src/**/*.d.ts" 13 | ], 14 | "angularCompilerOptions": { 15 | "enableIvy": true 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /angular-13/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/spec", 5 | "types": [ 6 | "jasmine", 7 | "node" 8 | ] 9 | }, 10 | "files": [ 11 | "src/test.ts" 12 | ], 13 | "include": [ 14 | "src/**/*.spec.ts", 15 | "src/polyfills.ts" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /angular-14/.browserslistrc: -------------------------------------------------------------------------------- 1 | # This file is currently used by autoprefixer to adjust CSS to support the below specified browsers 2 | # For additional information regarding the format and rule options, please see: 3 | # https://github.com/browserslist/browserslist#queries 4 | # For IE 9-11 support, please uncomment the last line of the file and adjust as needed 5 | > 0.5% 6 | last 2 versions 7 | Firefox ESR 8 | not dead 9 | # IE 9-11 -------------------------------------------------------------------------------- /angular-14/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /angular-14/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /angular-14/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | 3 | describe('workspace-project App', () => { 4 | let page: AppPage; 5 | 6 | beforeEach(() => { 7 | page = new AppPage(); 8 | }); 9 | 10 | it('should display welcome message', () => { 11 | page.navigateTo(); 12 | // expect(page.getParagraphText()).toEqual('Welcome to app!'); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /angular-14/e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get('/'); 6 | } 7 | 8 | getParagraphText() { 9 | return element(by.css('')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /angular-14/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } -------------------------------------------------------------------------------- /angular-14/src/app/about/about.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, } from '@angular/core'; 2 | @Component({ 3 | templateUrl: './about.component.html' 4 | }) 5 | export class AboutComponent { 6 | constructor() { 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /angular-14/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/app/app.component.css -------------------------------------------------------------------------------- /angular-14/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /angular-14/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | } 11 | -------------------------------------------------------------------------------- /angular-14/src/app/component/badge/badge.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from "@angular/core"; 2 | @Component({ 3 | templateUrl: "badge.component.html", 4 | }) 5 | export class BadgeComponent { 6 | 7 | constructor( ) { } 8 | 9 | 10 | } 11 | -------------------------------------------------------------------------------- /angular-14/src/app/component/card/card.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | @Component({ 3 | templateUrl: 'card.component.html' 4 | }) 5 | export class CardsComponent {} 6 | -------------------------------------------------------------------------------- /angular-14/src/app/component/dropdown-collapse/dropdown-collapse.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-dropdown-basic', 5 | templateUrl: './dropdown-collapse.component.html' 6 | }) 7 | export class NgbdDropdownBasicComponent { 8 | // This is for the collapse example 9 | public isCollapsed = false; 10 | 11 | collapsed = true; 12 | } 13 | -------------------------------------------------------------------------------- /angular-14/src/app/component/pagination/pagination.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | 4 | @Component({ 5 | selector: 'app-ngbd-pagination', 6 | templateUrl: './pagination.component.html' 7 | }) 8 | export class NgbdpaginationBasicComponent { 9 | page = 4; 10 | page2 = 1; 11 | currentPage = 3; 12 | disablepage = 3; 13 | pagecustom = 4; 14 | 15 | getPageSymbol(current: number) { 16 | return ['A', 'B', 'C', 'D', 'E', 'F', 'G'][current - 1]; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /angular-14/src/app/component/table/table.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | import {Product,TopSelling, TableRows, Employee} from './table-data'; 3 | 4 | 5 | @Component({ 6 | selector: 'app-table', 7 | templateUrl: 'table.component.html' 8 | }) 9 | export class TableComponent { 10 | topSelling:Product[]; 11 | 12 | trow:TableRows[]; 13 | 14 | constructor() { 15 | 16 | this.topSelling=TopSelling; 17 | 18 | this.trow=Employee; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /angular-14/src/app/dashboard/dashboard-components/feeds/feeds.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | import { Feeds,Feed } from './feeds-data'; 3 | 4 | @Component({ 5 | selector: 'app-feeds', 6 | templateUrl: './feeds.component.html' 7 | }) 8 | export class FeedsComponent implements OnInit { 9 | 10 | feeds:Feed[]; 11 | 12 | constructor() { 13 | 14 | this.feeds = Feeds; 15 | } 16 | 17 | ngOnInit(): void { 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /angular-14/src/app/dashboard/dashboard-components/top-cards/top-cards.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | import {topcard,topcards} from './top-cards-data'; 3 | 4 | @Component({ 5 | selector: 'app-top-cards', 6 | templateUrl: './top-cards.component.html' 7 | }) 8 | export class TopCardsComponent implements OnInit { 9 | 10 | topcards:topcard[]; 11 | 12 | constructor() { 13 | 14 | this.topcards=topcards; 15 | } 16 | 17 | ngOnInit(): void { 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /angular-14/src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, AfterViewInit } from '@angular/core'; 2 | //declare var require: any; 3 | 4 | @Component({ 5 | templateUrl: './dashboard.component.html' 6 | }) 7 | export class DashboardComponent implements AfterViewInit { 8 | subtitle: string; 9 | constructor() { 10 | this.subtitle = 'This is some text within a card block.'; 11 | } 12 | 13 | ngAfterViewInit() { } 14 | } 15 | -------------------------------------------------------------------------------- /angular-14/src/app/layouts/full/full.component.scss: -------------------------------------------------------------------------------- 1 | .max-width { 2 | max-width: 1440px; 3 | margin: 0 auto; 4 | } 5 | -------------------------------------------------------------------------------- /angular-14/src/app/shared/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/app/shared/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /angular-14/src/app/shared/sidebar/sidebar.metadata.ts: -------------------------------------------------------------------------------- 1 | // Sidebar route metadata 2 | export interface RouteInfo { 3 | path: string; 4 | title: string; 5 | icon: string; 6 | class: string; 7 | extralink: boolean; 8 | submenu: RouteInfo[]; 9 | } 10 | -------------------------------------------------------------------------------- /angular-14/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/.gitkeep -------------------------------------------------------------------------------- /angular-14/src/assets/images/bg/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/bg/bg1.jpg -------------------------------------------------------------------------------- /angular-14/src/assets/images/bg/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/bg/bg2.jpg -------------------------------------------------------------------------------- /angular-14/src/assets/images/bg/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/bg/bg3.jpg -------------------------------------------------------------------------------- /angular-14/src/assets/images/bg/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/bg/bg4.jpg -------------------------------------------------------------------------------- /angular-14/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/favicon.png -------------------------------------------------------------------------------- /angular-14/src/assets/images/logos/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/logos/logo-icon.png -------------------------------------------------------------------------------- /angular-14/src/assets/images/logos/logo-light-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/logos/logo-light-icon.png -------------------------------------------------------------------------------- /angular-14/src/assets/images/logos/logo-light-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/logos/logo-light-text.png -------------------------------------------------------------------------------- /angular-14/src/assets/images/logos/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/logos/logo-text.png -------------------------------------------------------------------------------- /angular-14/src/assets/images/users/user1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/users/user1.jpg -------------------------------------------------------------------------------- /angular-14/src/assets/images/users/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/users/user2.jpg -------------------------------------------------------------------------------- /angular-14/src/assets/images/users/user3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/users/user3.jpg -------------------------------------------------------------------------------- /angular-14/src/assets/images/users/user4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/users/user4.jpg -------------------------------------------------------------------------------- /angular-14/src/assets/images/users/user5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/assets/images/users/user5.jpg -------------------------------------------------------------------------------- /angular-14/src/assets/scss/_custom.scss: -------------------------------------------------------------------------------- 1 | // In this scss you can overwrite all our scss, we suggested you to add your scss into this, so whenever the update comes it will not affect your code. 2 | -------------------------------------------------------------------------------- /angular-14/src/assets/scss/core/_core.scss: -------------------------------------------------------------------------------- 1 | @import 'layout/layout'; 2 | 3 | // Header 4 | @import 'loader/spinner'; 5 | @import 'topbar/header'; 6 | 7 | // sidebar 8 | @import 'sidebar/sidebar'; 9 | 10 | // theme-colors 11 | @import 'theme-colors/theme-colors'; 12 | -------------------------------------------------------------------------------- /angular-14/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-14/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-14/src/favicon.ico -------------------------------------------------------------------------------- /angular-14/src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) { 8 | enableProdMode(); 9 | } 10 | 11 | platformBrowserDynamic().bootstrapModule(AppModule) 12 | .catch(err => console.log(err)); 13 | -------------------------------------------------------------------------------- /angular-14/src/styles.scss: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | 3 | @import url('https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800'); -------------------------------------------------------------------------------- /angular-14/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/app", 5 | "types": [] 6 | }, 7 | "files": [ 8 | "src/main.ts", 9 | "src/polyfills.ts" 10 | ], 11 | "include": [ 12 | "src/**/*.d.ts" 13 | ], 14 | "angularCompilerOptions": { 15 | "enableIvy": true 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /angular-14/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/spec", 5 | "types": [ 6 | "jasmine", 7 | "node" 8 | ] 9 | }, 10 | "files": [ 11 | "src/test.ts" 12 | ], 13 | "include": [ 14 | "src/**/*.spec.ts", 15 | "src/polyfills.ts" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /angular-16/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see https://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.ts] 12 | quote_type = single 13 | 14 | [*.md] 15 | max_line_length = off 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /angular-16/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /angular-16/src/app/about/about.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, } from '@angular/core'; 2 | @Component({ 3 | templateUrl: './about.component.html' 4 | }) 5 | export class AboutComponent { 6 | constructor() { 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /angular-16/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/app/app.component.css -------------------------------------------------------------------------------- /angular-16/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /angular-16/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/app/app.component.scss -------------------------------------------------------------------------------- /angular-16/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | } 11 | -------------------------------------------------------------------------------- /angular-16/src/app/component/badge/badge.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from "@angular/core"; 2 | @Component({ 3 | templateUrl: "badge.component.html", 4 | }) 5 | export class BadgeComponent { 6 | 7 | constructor( ) { } 8 | 9 | 10 | } 11 | -------------------------------------------------------------------------------- /angular-16/src/app/component/card/card.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | templateUrl: 'card.component.html', 5 | standalone: true, 6 | }) 7 | export class CardsComponent {} 8 | -------------------------------------------------------------------------------- /angular-16/src/app/dashboard/dashboard-components/feeds/feeds.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | import { Feeds,Feed } from './feeds-data'; 3 | 4 | @Component({ 5 | selector: 'app-feeds', 6 | templateUrl: './feeds.component.html' 7 | }) 8 | export class FeedsComponent implements OnInit { 9 | 10 | feeds:Feed[]; 11 | 12 | constructor() { 13 | 14 | this.feeds = Feeds; 15 | } 16 | 17 | ngOnInit(): void { 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /angular-16/src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, AfterViewInit } from '@angular/core'; 2 | //declare var require: any; 3 | 4 | @Component({ 5 | templateUrl: './dashboard.component.html' 6 | }) 7 | export class DashboardComponent implements AfterViewInit { 8 | subtitle: string; 9 | constructor() { 10 | this.subtitle = 'This is some text within a card block.'; 11 | } 12 | 13 | ngAfterViewInit() { } 14 | } 15 | -------------------------------------------------------------------------------- /angular-16/src/app/layouts/full/full.component.scss: -------------------------------------------------------------------------------- 1 | .max-width { 2 | max-width: 1440px; 3 | margin: 0 auto; 4 | } 5 | -------------------------------------------------------------------------------- /angular-16/src/app/shared/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/app/shared/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /angular-16/src/app/shared/sidebar/sidebar.metadata.ts: -------------------------------------------------------------------------------- 1 | // Sidebar route metadata 2 | export interface RouteInfo { 3 | path: string; 4 | title: string; 5 | icon: string; 6 | class: string; 7 | extralink: boolean; 8 | submenu: RouteInfo[]; 9 | } 10 | -------------------------------------------------------------------------------- /angular-16/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/.gitkeep -------------------------------------------------------------------------------- /angular-16/src/assets/images/bg/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/bg/bg1.jpg -------------------------------------------------------------------------------- /angular-16/src/assets/images/bg/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/bg/bg2.jpg -------------------------------------------------------------------------------- /angular-16/src/assets/images/bg/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/bg/bg3.jpg -------------------------------------------------------------------------------- /angular-16/src/assets/images/bg/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/bg/bg4.jpg -------------------------------------------------------------------------------- /angular-16/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/favicon.png -------------------------------------------------------------------------------- /angular-16/src/assets/images/logos/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/logos/logo-icon.png -------------------------------------------------------------------------------- /angular-16/src/assets/images/logos/logo-light-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/logos/logo-light-icon.png -------------------------------------------------------------------------------- /angular-16/src/assets/images/logos/logo-light-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/logos/logo-light-text.png -------------------------------------------------------------------------------- /angular-16/src/assets/images/logos/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/logos/logo-text.png -------------------------------------------------------------------------------- /angular-16/src/assets/images/users/user1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/users/user1.jpg -------------------------------------------------------------------------------- /angular-16/src/assets/images/users/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/users/user2.jpg -------------------------------------------------------------------------------- /angular-16/src/assets/images/users/user3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/users/user3.jpg -------------------------------------------------------------------------------- /angular-16/src/assets/images/users/user4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/users/user4.jpg -------------------------------------------------------------------------------- /angular-16/src/assets/images/users/user5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/assets/images/users/user5.jpg -------------------------------------------------------------------------------- /angular-16/src/assets/scss/_custom.scss: -------------------------------------------------------------------------------- 1 | // In this scss you can overwrite all our scss, we suggested you to add your scss into this, so whenever the update comes it will not affect your code. 2 | -------------------------------------------------------------------------------- /angular-16/src/assets/scss/core/_core.scss: -------------------------------------------------------------------------------- 1 | @import 'layout/layout'; 2 | 3 | // Header 4 | @import 'loader/spinner'; 5 | @import 'topbar/header'; 6 | 7 | // sidebar 8 | @import 'sidebar/sidebar'; 9 | 10 | // theme-colors 11 | @import 'theme-colors/theme-colors'; 12 | -------------------------------------------------------------------------------- /angular-16/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/angular-16/src/favicon.ico -------------------------------------------------------------------------------- /angular-16/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AdminProAngularLite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /angular-16/src/main.ts: -------------------------------------------------------------------------------- 1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 2 | import '@angular/localize/init'; 3 | import { AppModule } from './app/app.module'; 4 | 5 | 6 | platformBrowserDynamic().bootstrapModule(AppModule) 7 | .catch(err => console.error(err)); 8 | -------------------------------------------------------------------------------- /angular-16/src/styles.scss: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /angular-16/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */ 2 | { 3 | "extends": "./tsconfig.json", 4 | "compilerOptions": { 5 | "outDir": "./out-tsc/app", 6 | "types": [] 7 | }, 8 | "files": [ 9 | "src/main.ts" 10 | ], 11 | "include": [ 12 | "src/**/*.d.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /angular-16/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */ 2 | { 3 | "extends": "./tsconfig.json", 4 | "compilerOptions": { 5 | "outDir": "./out-tsc/spec", 6 | "types": [ 7 | "jasmine" 8 | ] 9 | }, 10 | "include": [ 11 | "src/**/*.spec.ts", 12 | "src/**/*.d.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /landingpage/assets/images/free-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/assets/images/free-demo.jpg -------------------------------------------------------------------------------- /landingpage/assets/images/pro-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/assets/images/pro-demo.jpg -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- 1 | .jumbotron { 2 | padding: $jumbotron-padding ($jumbotron-padding / 2); 3 | margin-bottom: $jumbotron-padding; 4 | background-color: $jumbotron-bg; 5 | @include border-radius($border-radius-lg); 6 | 7 | @include media-breakpoint-up(sm) { 8 | padding: ($jumbotron-padding * 2) $jumbotron-padding; 9 | } 10 | } 11 | 12 | .jumbotron-fluid { 13 | padding-right: 0; 14 | padding-left: 0; 15 | @include border-radius(0); 16 | } 17 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable selector-no-qualifying-type 2 | 3 | .fade { 4 | @include transition($transition-fade); 5 | 6 | &:not(.show) { 7 | opacity: 0; 8 | } 9 | } 10 | 11 | .collapse { 12 | &:not(.show) { 13 | display: none; 14 | } 15 | } 16 | 17 | .collapsing { 18 | position: relative; 19 | height: 0; 20 | overflow: hidden; 21 | @include transition($transition-collapse); 22 | } 23 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v4.1.2 (https://getbootstrap.com/) 3 | * Copyright 2011-2018 The Bootstrap Authors 4 | * Copyright 2011-2018 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | 9 | @import "functions"; 10 | @import "variables"; 11 | @import "mixins"; 12 | @import "reboot"; 13 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: color-yiq($bg); 3 | background-color: $bg; 4 | 5 | &[href] { 6 | @include hover-focus { 7 | color: color-yiq($bg); 8 | text-decoration: none; 9 | background-color: darken($bg, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | box-shadow: $shadow; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @mixin float-left { 4 | float: left !important; 5 | } 6 | @mixin float-right { 7 | float: right !important; 8 | } 9 | @mixin float-none { 10 | float: none !important; 11 | } 12 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y) { 6 | height: 0; 7 | margin: $margin-y 0; 8 | overflow: hidden; 9 | border-top: 1px solid $color; 10 | } 11 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | } 7 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Typography 4 | 5 | @mixin text-emphasis-variant($parent, $color) { 6 | #{$parent} { 7 | color: $color !important; 8 | } 9 | a#{$parent} { 10 | @include hover-focus { 11 | color: darken($color, 10%) !important; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | @mixin text-hide($ignore-warning: false) { 3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword 4 | font: 0/0 a; 5 | color: transparent; 6 | text-shadow: none; 7 | background-color: transparent; 8 | border: 0; 9 | 10 | @if ($ignore-warning != true) { 11 | @warn "The `text-hide()` mixin has been deprecated as of v4.1.0. It will be removed entirely in v5."; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- 1 | @mixin transition($transition...) { 2 | @if $enable-transitions { 3 | @if length($transition) == 0 { 4 | transition: $transition-base; 5 | } @else { 6 | transition: $transition; 7 | } 8 | } 9 | 10 | @media screen and (prefers-reduced-motion: reduce) { 11 | transition: none; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | } 8 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/utilities/_align.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .align-baseline { vertical-align: baseline !important; } // Browser default 4 | .align-top { vertical-align: top !important; } 5 | .align-middle { vertical-align: middle !important; } 6 | .align-bottom { vertical-align: bottom !important; } 7 | .align-text-bottom { vertical-align: text-bottom !important; } 8 | .align-text-top { vertical-align: text-top !important; } 9 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- 1 | @each $breakpoint in map-keys($grid-breakpoints) { 2 | @include media-breakpoint-up($breakpoint) { 3 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 4 | 5 | .float#{$infix}-left { @include float-left; } 6 | .float#{$infix}-right { @include float-right; } 7 | .float#{$infix}-none { @include float-none; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .shadow-sm { box-shadow: $box-shadow-sm !important; } 4 | .shadow { box-shadow: $box-shadow !important; } 5 | .shadow-lg { box-shadow: $box-shadow-lg !important; } 6 | .shadow-none { box-shadow: none !important; } 7 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/utilities/_sizing.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Width and height 4 | 5 | @each $prop, $abbrev in (width: w, height: h) { 6 | @each $size, $length in $sizes { 7 | .#{$abbrev}-#{$size} { #{$prop}: $length !important; } 8 | } 9 | } 10 | 11 | .mw-100 { max-width: 100% !important; } 12 | .mh-100 { max-height: 100% !important; } 13 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visibility utilities 3 | // 4 | 5 | .visible { 6 | @include invisible(visible); 7 | } 8 | 9 | .invisible { 10 | @include invisible(hidden); 11 | } 12 | -------------------------------------------------------------------------------- /landingpage/dist/scss/responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/landingpage/dist/scss/responsive.scss -------------------------------------------------------------------------------- /landingpage/dist/scss/style.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Template Name: Material-Pro Admin Template 3 | Author: Niravjoshi / Wrappixel 4 | File: scss 5 | */ 6 | //(Required file) 7 | @import 'variable'; 8 | 9 | // Import Bootstrap source files (Required file) 10 | @import "bootstrap/bootstrap"; 11 | 12 | //custom style 13 | @import 'custom'; 14 | 15 | //icons 16 | @import "icons/material-design-iconic-font/css/materialdesignicons.min.css"; -------------------------------------------------------------------------------- /package/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see https://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.ts] 12 | quote_type = single 13 | 14 | [*.md] 15 | max_line_length = off 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /package/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /package/netlify.toml: -------------------------------------------------------------------------------- 1 | [[redirects]] 2 | from = "/*" 3 | to = "/index.html" 4 | status = 200 -------------------------------------------------------------------------------- /package/src/app/about/about.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, } from '@angular/core'; 2 | @Component({ 3 | templateUrl: './about.component.html' 4 | }) 5 | export class AboutComponent { 6 | constructor() { 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /package/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/app/app.component.css -------------------------------------------------------------------------------- /package/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /package/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/app/app.component.scss -------------------------------------------------------------------------------- /package/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | } 11 | -------------------------------------------------------------------------------- /package/src/app/component/badge/badge.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from "@angular/core"; 2 | @Component({ 3 | templateUrl: "badge.component.html", 4 | }) 5 | export class BadgeComponent { 6 | 7 | constructor( ) { } 8 | 9 | 10 | } 11 | -------------------------------------------------------------------------------- /package/src/app/component/card/card.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | templateUrl: 'card.component.html', 5 | standalone: true, 6 | }) 7 | export class CardsComponent {} 8 | -------------------------------------------------------------------------------- /package/src/app/dashboard/dashboard-components/feeds/feeds.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | import { Feeds,Feed } from './feeds-data'; 3 | 4 | @Component({ 5 | selector: 'app-feeds', 6 | templateUrl: './feeds.component.html' 7 | }) 8 | export class FeedsComponent implements OnInit { 9 | 10 | feeds:Feed[]; 11 | 12 | constructor() { 13 | 14 | this.feeds = Feeds; 15 | } 16 | 17 | ngOnInit(): void { 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /package/src/app/dashboard/dashboard-components/top-cards/top-cards.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | import {topcard,topcards} from './top-cards-data'; 3 | 4 | @Component({ 5 | selector: 'app-top-cards', 6 | templateUrl: './top-cards.component.html' 7 | }) 8 | export class TopCardsComponent implements OnInit { 9 | 10 | topcards:topcard[]; 11 | 12 | constructor() { 13 | 14 | this.topcards=topcards; 15 | } 16 | 17 | ngOnInit(): void { 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /package/src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, AfterViewInit } from '@angular/core'; 2 | //declare var require: any; 3 | 4 | @Component({ 5 | templateUrl: './dashboard.component.html' 6 | }) 7 | export class DashboardComponent implements AfterViewInit { 8 | subtitle: string; 9 | constructor() { 10 | this.subtitle = 'This is some text within a card block.'; 11 | } 12 | 13 | ngAfterViewInit() { } 14 | } 15 | -------------------------------------------------------------------------------- /package/src/app/layouts/full/full.component.scss: -------------------------------------------------------------------------------- 1 | .max-width { 2 | max-width: 1440px; 3 | margin: 0 auto; 4 | } 5 | -------------------------------------------------------------------------------- /package/src/app/shared/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/app/shared/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /package/src/app/shared/sidebar/sidebar.metadata.ts: -------------------------------------------------------------------------------- 1 | // Sidebar route metadata 2 | export interface RouteInfo { 3 | path: string; 4 | title: string; 5 | icon: string; 6 | class: string; 7 | extralink: boolean; 8 | submenu: RouteInfo[]; 9 | } 10 | -------------------------------------------------------------------------------- /package/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/.gitkeep -------------------------------------------------------------------------------- /package/src/assets/images/bg/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/bg/bg1.jpg -------------------------------------------------------------------------------- /package/src/assets/images/bg/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/bg/bg2.jpg -------------------------------------------------------------------------------- /package/src/assets/images/bg/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/bg/bg3.jpg -------------------------------------------------------------------------------- /package/src/assets/images/bg/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/bg/bg4.jpg -------------------------------------------------------------------------------- /package/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/favicon.png -------------------------------------------------------------------------------- /package/src/assets/images/logos/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/logos/logo-icon.png -------------------------------------------------------------------------------- /package/src/assets/images/logos/logo-light-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/logos/logo-light-icon.png -------------------------------------------------------------------------------- /package/src/assets/images/logos/logo-light-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/logos/logo-light-text.png -------------------------------------------------------------------------------- /package/src/assets/images/logos/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/logos/logo-text.png -------------------------------------------------------------------------------- /package/src/assets/images/users/user1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/users/user1.jpg -------------------------------------------------------------------------------- /package/src/assets/images/users/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/users/user2.jpg -------------------------------------------------------------------------------- /package/src/assets/images/users/user3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/users/user3.jpg -------------------------------------------------------------------------------- /package/src/assets/images/users/user4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/users/user4.jpg -------------------------------------------------------------------------------- /package/src/assets/images/users/user5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/assets/images/users/user5.jpg -------------------------------------------------------------------------------- /package/src/assets/scss/_custom.scss: -------------------------------------------------------------------------------- 1 | // In this scss you can overwrite all our scss, we suggested you to add your scss into this, so whenever the update comes it will not affect your code. 2 | -------------------------------------------------------------------------------- /package/src/assets/scss/core/_core.scss: -------------------------------------------------------------------------------- 1 | @import 'layout/layout'; 2 | 3 | // Header 4 | @import 'loader/spinner'; 5 | @import 'topbar/header'; 6 | 7 | // sidebar 8 | @import 'sidebar/sidebar'; 9 | 10 | // theme-colors 11 | @import 'theme-colors/theme-colors'; 12 | -------------------------------------------------------------------------------- /package/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/admin-pro-angular-lite/a0f08e861c623fa07f691cac55dde7fc8bcfeb88/package/src/favicon.ico -------------------------------------------------------------------------------- /package/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Admin Pro Free Angular Admin Template by WrapPixel 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /package/src/main.ts: -------------------------------------------------------------------------------- 1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 2 | import '@angular/localize/init'; 3 | import { AppModule } from './app/app.module'; 4 | 5 | 6 | platformBrowserDynamic().bootstrapModule(AppModule) 7 | .catch(err => console.error(err)); 8 | -------------------------------------------------------------------------------- /package/src/styles.scss: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /package/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */ 2 | { 3 | "extends": "./tsconfig.json", 4 | "compilerOptions": { 5 | "outDir": "./out-tsc/app", 6 | "types": [] 7 | }, 8 | "files": [ 9 | "src/main.ts" 10 | ], 11 | "include": [ 12 | "src/**/*.d.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /package/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */ 2 | { 3 | "extends": "./tsconfig.json", 4 | "compilerOptions": { 5 | "outDir": "./out-tsc/spec", 6 | "types": [ 7 | "jasmine" 8 | ] 9 | }, 10 | "include": [ 11 | "src/**/*.spec.ts", 12 | "src/**/*.d.ts" 13 | ] 14 | } 15 | --------------------------------------------------------------------------------