在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → AngularJs创建的后台管理系统源码

AngularJs创建的后台管理系统源码

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:20.43M
  • 下载次数:7
  • 浏览次数:205
  • 发布时间:2022-06-02
  • 实例类别:PHP语言基础
  • 发 布 人:Eeeeeooo
  • 文件格式:.rar
  • 所需积分:4

实例介绍

【实例简介】AngularJs创建的后台管理系统源码

【实例截图】

from clipboard


【核心代码】

.
├── AngularJs创建的后台管理系统源码.rar
├── package
│   ├── README.md
│   ├── angular.json
│   ├── e2e
│   │   ├── protractor.conf.js
│   │   ├── src
│   │   │   ├── app.e2e-spec.ts
│   │   │   └── app.po.ts
│   │   └── tsconfig.json
│   ├── karma.conf.js
│   ├── package-lock.json
│   ├── package.json
│   ├── src
│   │   ├── Thumbs.db
│   │   ├── app
│   │   │   ├── admin
│   │   │   │   ├── admin.component.css
│   │   │   │   ├── admin.component.html
│   │   │   │   ├── admin.component.spec.ts
│   │   │   │   └── admin.component.ts
│   │   │   ├── app-routing.module.ts
│   │   │   ├── app.component.css
│   │   │   ├── app.component.html
│   │   │   ├── app.component.spec.ts
│   │   │   ├── app.component.ts
│   │   │   ├── app.module.ts
│   │   │   ├── apps
│   │   │   │   ├── calender
│   │   │   │   │   ├── calender.component.css
│   │   │   │   │   ├── calender.component.html
│   │   │   │   │   ├── calender.component.spec.ts
│   │   │   │   │   ├── calender.component.ts
│   │   │   │   │   └── event-utils.ts
│   │   │   │   ├── email
│   │   │   │   │   ├── compose
│   │   │   │   │   ├── inbox
│   │   │   │   │   └── read
│   │   │   │   ├── post-details
│   │   │   │   │   ├── post-details.component.css
│   │   │   │   │   ├── post-details.component.html
│   │   │   │   │   ├── post-details.component.spec.ts
│   │   │   │   │   └── post-details.component.ts
│   │   │   │   ├── profile
│   │   │   │   │   ├── profile.component.css
│   │   │   │   │   ├── profile.component.html
│   │   │   │   │   ├── profile.component.spec.ts
│   │   │   │   │   └── profile.component.ts
│   │   │   │   └── shop
│   │   │   │       ├── checkout
│   │   │   │       ├── ecom-customers
│   │   │   │       ├── invoice
│   │   │   │       ├── order
│   │   │   │       ├── product-detail
│   │   │   │       ├── product-grid
│   │   │   │       └── product-list
│   │   │   ├── bootstrap
│   │   │   │   ├── accordion
│   │   │   │   │   ├── accordion-basic
│   │   │   │   │   ├── accordion-config
│   │   │   │   │   ├── accordion-header
│   │   │   │   │   ├── accordion-preventchange
│   │   │   │   │   ├── accordion-static
│   │   │   │   │   ├── accordion-toggle
│   │   │   │   │   ├── accordion.component.css
│   │   │   │   │   ├── accordion.component.html
│   │   │   │   │   ├── accordion.component.spec.ts
│   │   │   │   │   └── accordion.component.ts
│   │   │   │   ├── alert
│   │   │   │   │   ├── alert-basic
│   │   │   │   │   ├── alert-closeable
│   │   │   │   │   ├── alert-config
│   │   │   │   │   ├── alert-custom
│   │   │   │   │   ├── alert-slefclosing
│   │   │   │   │   ├── alert.component.css
│   │   │   │   │   ├── alert.component.html
│   │   │   │   │   ├── alert.component.spec.ts
│   │   │   │   │   └── alert.component.ts
│   │   │   │   ├── badge
│   │   │   │   │   ├── badge.component.css
│   │   │   │   │   ├── badge.component.html
│   │   │   │   │   ├── badge.component.spec.ts
│   │   │   │   │   └── badge.component.ts
│   │   │   │   ├── button
│   │   │   │   │   ├── button.component.css
│   │   │   │   │   ├── button.component.html
│   │   │   │   │   ├── button.component.spec.ts
│   │   │   │   │   └── button.component.ts
│   │   │   │   ├── button-group
│   │   │   │   │   ├── button-group.component.css
│   │   │   │   │   ├── button-group.component.html
│   │   │   │   │   ├── button-group.component.spec.ts
│   │   │   │   │   └── button-group.component.ts
│   │   │   │   ├── cards
│   │   │   │   │   ├── cards.component.css
│   │   │   │   │   ├── cards.component.html
│   │   │   │   │   ├── cards.component.spec.ts
│   │   │   │   │   └── cards.component.ts
│   │   │   │   ├── carousel
│   │   │   │   │   ├── carousel-basic
│   │   │   │   │   ├── carousel-config
│   │   │   │   │   ├── carousel-navigation
│   │   │   │   │   ├── carousel-pause
│   │   │   │   │   ├── carousel.component.css
│   │   │   │   │   ├── carousel.component.html
│   │   │   │   │   ├── carousel.component.spec.ts
│   │   │   │   │   └── carousel.component.ts
│   │   │   │   ├── datepicker
│   │   │   │   │   ├── datepicker-adapter
│   │   │   │   │   ├── datepicker-basic
│   │   │   │   │   ├── datepicker-config
│   │   │   │   │   ├── datepicker-customday
│   │   │   │   │   ├── datepicker-custommonth
│   │   │   │   │   ├── datepicker-disabled
│   │   │   │   │   ├── datepicker-footertemplate
│   │   │   │   │   ├── datepicker-i18n
│   │   │   │   │   ├── datepicker-keyboard
│   │   │   │   │   ├── datepicker-multiple
│   │   │   │   │   ├── datepicker-popup
│   │   │   │   │   ├── datepicker-positiontarget
│   │   │   │   │   ├── datepicker-range
│   │   │   │   │   ├── datepicker-range-popup
│   │   │   │   │   ├── datepicker.component.css
│   │   │   │   │   ├── datepicker.component.html
│   │   │   │   │   ├── datepicker.component.spec.ts
│   │   │   │   │   └── datepicker.component.ts
│   │   │   │   ├── dropdown
│   │   │   │   │   ├── dropdown-basic
│   │   │   │   │   ├── dropdown-config
│   │   │   │   │   ├── dropdown-container
│   │   │   │   │   ├── dropdown-form
│   │   │   │   │   ├── dropdown-manual
│   │   │   │   │   ├── dropdown-navbar
│   │   │   │   │   ├── dropdown-split
│   │   │   │   │   ├── dropdown.component.css
│   │   │   │   │   ├── dropdown.component.html
│   │   │   │   │   ├── dropdown.component.spec.ts
│   │   │   │   │   └── dropdown.component.ts
│   │   │   │   ├── grid
│   │   │   │   │   ├── grid.component.css
│   │   │   │   │   ├── grid.component.html
│   │   │   │   │   ├── grid.component.spec.ts
│   │   │   │   │   └── grid.component.ts
│   │   │   │   ├── list-group
│   │   │   │   │   ├── list-group.component.css
│   │   │   │   │   ├── list-group.component.html
│   │   │   │   │   ├── list-group.component.spec.ts
│   │   │   │   │   └── list-group.component.ts
│   │   │   │   ├── media-object
│   │   │   │   │   ├── media-object.component.css
│   │   │   │   │   ├── media-object.component.html
│   │   │   │   │   ├── media-object.component.spec.ts
│   │   │   │   │   └── media-object.component.ts
│   │   │   │   ├── modal
│   │   │   │   │   ├── basic-modal
│   │   │   │   │   ├── modal-component
│   │   │   │   │   ├── modal-config
│   │   │   │   │   ├── modal-focus
│   │   │   │   │   ├── modal-options
│   │   │   │   │   ├── modal-stacked
│   │   │   │   │   ├── modal.component.css
│   │   │   │   │   ├── modal.component.html
│   │   │   │   │   ├── modal.component.spec.ts
│   │   │   │   │   └── modal.component.ts
│   │   │   │   ├── nav
│   │   │   │   │   ├── nav-basic
│   │   │   │   │   ├── nav-config
│   │   │   │   │   ├── nav-custom-style
│   │   │   │   │   ├── nav-dynamic
│   │   │   │   │   ├── nav-keep-content
│   │   │   │   │   ├── nav-markup
│   │   │   │   │   ├── nav-selection
│   │   │   │   │   ├── nav-vertical
│   │   │   │   │   ├── nav.component.css
│   │   │   │   │   ├── nav.component.html
│   │   │   │   │   ├── nav.component.spec.ts
│   │   │   │   │   └── nav.component.ts
│   │   │   │   ├── pagination
│   │   │   │   │   ├── pagination-advanced
│   │   │   │   │   ├── pagination-basic
│   │   │   │   │   ├── pagination-config
│   │   │   │   │   ├── pagination-customization
│   │   │   │   │   ├── pagination-disabled
│   │   │   │   │   ├── pagination-justify
│   │   │   │   │   ├── pagination-size
│   │   │   │   │   ├── pagination.component.css
│   │   │   │   │   ├── pagination.component.html
│   │   │   │   │   ├── pagination.component.spec.ts
│   │   │   │   │   └── pagination.component.ts
│   │   │   │   ├── popover
│   │   │   │   │   ├── popover-autoclose
│   │   │   │   │   ├── popover-basic
│   │   │   │   │   ├── popover-config
│   │   │   │   │   ├── popover-container
│   │   │   │   │   ├── popover-customclass
│   │   │   │   │   ├── popover-delay
│   │   │   │   │   ├── popover-tplcontent
│   │   │   │   │   ├── popover-tplwithcontext
│   │   │   │   │   ├── popover-triggers
│   │   │   │   │   ├── popover-visibility
│   │   │   │   │   ├── popover.component.css
│   │   │   │   │   ├── popover.component.html
│   │   │   │   │   ├── popover.component.spec.ts
│   │   │   │   │   └── popover.component.ts
│   │   │   │   ├── progressbar
│   │   │   │   │   ├── progressbar-basic
│   │   │   │   │   ├── progressbar-config
│   │   │   │   │   ├── progressbar-height
│   │   │   │   │   ├── progressbar-labels
│   │   │   │   │   ├── progressbar-showvalue
│   │   │   │   │   ├── progressbar-striped
│   │   │   │   │   ├── progressbar-texttypes
│   │   │   │   │   ├── progressbar.component.css
│   │   │   │   │   ├── progressbar.component.html
│   │   │   │   │   ├── progressbar.component.spec.ts
│   │   │   │   │   └── progressbar.component.ts
│   │   │   │   ├── rating
│   │   │   │   │   ├── rating-basic
│   │   │   │   │   ├── rating-config
│   │   │   │   │   ├── rating-decimal
│   │   │   │   │   ├── rating-events
│   │   │   │   │   ├── rating-form
│   │   │   │   │   ├── rating-template
│   │   │   │   │   ├── rating.component.css
│   │   │   │   │   ├── rating.component.html
│   │   │   │   │   ├── rating.component.spec.ts
│   │   │   │   │   └── rating.component.ts
│   │   │   │   ├── table
│   │   │   │   │   ├── table-basic
│   │   │   │   │   ├── table-complete
│   │   │   │   │   ├── table-filtering
│   │   │   │   │   ├── table-pagination
│   │   │   │   │   ├── table-sortable
│   │   │   │   │   ├── table.component.css
│   │   │   │   │   ├── table.component.html
│   │   │   │   │   ├── table.component.spec.ts
│   │   │   │   │   └── table.component.ts
│   │   │   │   ├── timepicker
│   │   │   │   │   ├── timepicker-adapter
│   │   │   │   │   ├── timepicker-basic
│   │   │   │   │   ├── timepicker-config
│   │   │   │   │   ├── timepicker-i18n
│   │   │   │   │   ├── timepicker-meridian
│   │   │   │   │   ├── timepicker-seconds
│   │   │   │   │   ├── timepicker-spinners
│   │   │   │   │   ├── timepicker-steps
│   │   │   │   │   ├── timepicker-validation
│   │   │   │   │   ├── timepicker.component.css
│   │   │   │   │   ├── timepicker.component.html
│   │   │   │   │   ├── timepicker.component.spec.ts
│   │   │   │   │   └── timepicker.component.ts
│   │   │   │   ├── toast
│   │   │   │   │   ├── toast-closeable
│   │   │   │   │   ├── toast-custom
│   │   │   │   │   ├── toast-global
│   │   │   │   │   ├── toast-inline
│   │   │   │   │   ├── toast-prevent-autohide
│   │   │   │   │   ├── toast.component.css
│   │   │   │   │   ├── toast.component.html
│   │   │   │   │   ├── toast.component.spec.ts
│   │   │   │   │   └── toast.component.ts
│   │   │   │   ├── tooltip
│   │   │   │   │   ├── tooltip-autoclose
│   │   │   │   │   ├── tooltip-basic
│   │   │   │   │   ├── tooltip-config
│   │   │   │   │   ├── tooltip-container
│   │   │   │   │   ├── tooltip-customclass
│   │   │   │   │   ├── tooltip-delay
│   │   │   │   │   ├── tooltip-tplcontent
│   │   │   │   │   ├── tooltip-tplwithcontext
│   │   │   │   │   ├── tooltip-triggers
│   │   │   │   │   ├── tooltip.component.css
│   │   │   │   │   ├── tooltip.component.html
│   │   │   │   │   ├── tooltip.component.spec.ts
│   │   │   │   │   └── tooltip.component.ts
│   │   │   │   ├── typeahead
│   │   │   │   │   ├── typeahead-basic
│   │   │   │   │   ├── typeahead-config
│   │   │   │   │   ├── typeahead-focus
│   │   │   │   │   ├── typeahead-format
│   │   │   │   │   ├── typeahead-http
│   │   │   │   │   ├── typeahead-prevent-manual-entry
│   │   │   │   │   ├── typeahead-template
│   │   │   │   │   ├── typeahead.component.css
│   │   │   │   │   ├── typeahead.component.html
│   │   │   │   │   ├── typeahead.component.spec.ts
│   │   │   │   │   └── typeahead.component.ts
│   │   │   │   └── typography
│   │   │   │       ├── typography.component.css
│   │   │   │       ├── typography.component.html
│   │   │   │       ├── typography.component.spec.ts
│   │   │   │       └── typography.component.ts
│   │   │   ├── charts
│   │   │   │   ├── apex
│   │   │   │   │   ├── apex.component.css
│   │   │   │   │   ├── apex.component.html
│   │   │   │   │   ├── apex.component.spec.ts
│   │   │   │   │   ├── apex.component.ts
│   │   │   │   │   ├── area
│   │   │   │   │   ├── bar
│   │   │   │   │   ├── bubble
│   │   │   │   │   ├── candlestick
│   │   │   │   │   ├── column
│   │   │   │   │   ├── heatmap
│   │   │   │   │   ├── line
│   │   │   │   │   ├── mixed
│   │   │   │   │   ├── pie
│   │   │   │   │   ├── polar-area
│   │   │   │   │   ├── radar
│   │   │   │   │   ├── radialbar
│   │   │   │   │   ├── scatter
│   │   │   │   │   ├── sparklines
│   │   │   │   │   ├── timeline
│   │   │   │   │   └── treemap
│   │   │   │   └── chartjs
│   │   │   │       ├── chartjs-bar
│   │   │   │       ├── chartjs-bubble
│   │   │   │       ├── chartjs-doughnut
│   │   │   │       ├── chartjs-line
│   │   │   │       ├── chartjs-pie
│   │   │   │       ├── chartjs-radar
│   │   │   │       ├── chartjs.component.css
│   │   │   │       ├── chartjs.component.html
│   │   │   │       ├── chartjs.component.spec.ts
│   │   │   │       └── chartjs.component.ts
│   │   │   ├── coin-details
│   │   │   │   ├── coin-details.component.css
│   │   │   │   ├── coin-details.component.html
│   │   │   │   ├── coin-details.component.spec.ts
│   │   │   │   └── coin-details.component.ts
│   │   │   ├── countries.ts
│   │   │   ├── country.service.ts
│   │   │   ├── country.ts
│   │   │   ├── dashboard
│   │   │   │   ├── index1
│   │   │   │   │   ├── index1.component.css
│   │   │   │   │   ├── index1.component.html
│   │   │   │   │   ├── index1.component.spec.ts
│   │   │   │   │   └── index1.component.ts
│   │   │   │   ├── index2
│   │   │   │   │   ├── index2.component.css
│   │   │   │   │   ├── index2.component.html
│   │   │   │   │   ├── index2.component.spec.ts
│   │   │   │   │   └── index2.component.ts
│   │   │   │   ├── index3
│   │   │   │   │   ├── index3.component.css
│   │   │   │   │   ├── index3.component.html
│   │   │   │   │   ├── index3.component.spec.ts
│   │   │   │   │   └── index3.component.ts
│   │   │   │   └── index4
│   │   │   │       ├── index4.component.css
│   │   │   │       ├── index4.component.html
│   │   │   │       ├── index4.component.spec.ts
│   │   │   │       └── index4.component.ts
│   │   │   ├── elements
│   │   │   │   ├── coin-details
│   │   │   │   │   ├── about
│   │   │   │   │   ├── coin-detail-coin-chart
│   │   │   │   │   └── coin-detail-quick-transfer
│   │   │   │   ├── dashboard1
│   │   │   │   │   ├── buy-order
│   │   │   │   │   ├── graph-crypto-statistics
│   │   │   │   │   ├── graph-market-overview
│   │   │   │   │   ├── graph1
│   │   │   │   │   ├── graph2
│   │   │   │   │   ├── graph3
│   │   │   │   │   ├── graph4
│   │   │   │   │   ├── quick-transfer
│   │   │   │   │   └── sell-order
│   │   │   │   ├── dashboard2
│   │   │   │   │   ├── das2-buy-order
│   │   │   │   │   ├── das2-graph1
│   │   │   │   │   ├── das2-graph2
│   │   │   │   │   ├── das2-graph3
│   │   │   │   │   ├── das2-quick-transfer
│   │   │   │   │   ├── das2-sell-order
│   │   │   │   │   ├── dashboard-crousal1
│   │   │   │   │   ├── graph-coin-chart
│   │   │   │   │   └── market-info
│   │   │   │   ├── dashboard3
│   │   │   │   │   ├── buy-sell-form
│   │   │   │   │   └── das3-graph1
│   │   │   │   ├── footer
│   │   │   │   │   ├── footer.component.css
│   │   │   │   │   ├── footer.component.html
│   │   │   │   │   ├── footer.component.spec.ts
│   │   │   │   │   └── footer.component.ts
│   │   │   │   ├── header
│   │   │   │   │   ├── header.component.css
│   │   │   │   │   ├── header.component.html
│   │   │   │   │   ├── header.component.spec.ts
│   │   │   │   │   └── header.component.ts
│   │   │   │   ├── loading
│   │   │   │   │   ├── loading.component.css
│   │   │   │   │   ├── loading.component.html
│   │   │   │   │   ├── loading.component.spec.ts
│   │   │   │   │   └── loading.component.ts
│   │   │   │   ├── my-wallets
│   │   │   │   │   ├── card-details
│   │   │   │   │   ├── card-slider
│   │   │   │   │   ├── wallet-activity
│   │   │   │   │   └── wallet-coin-chart
│   │   │   │   ├── nav-header
│   │   │   │   │   ├── nav-header.component.css
│   │   │   │   │   ├── nav-header.component.html
│   │   │   │   │   ├── nav-header.component.spec.ts
│   │   │   │   │   └── nav-header.component.ts
│   │   │   │   ├── navigation
│   │   │   │   │   ├── navigation.component.css
│   │   │   │   │   ├── navigation.component.html
│   │   │   │   │   ├── navigation.component.spec.ts
│   │   │   │   │   └── navigation.component.ts
│   │   │   │   ├── portofolio
│   │   │   │   │   ├── coin-holding
│   │   │   │   │   ├── current-graph1
│   │   │   │   │   ├── current-graph2
│   │   │   │   │   └── my-profile
│   │   │   │   ├── profile
│   │   │   │   │   ├── highlights
│   │   │   │   │   ├── interest
│   │   │   │   │   ├── latest-news
│   │   │   │   │   └── user-statistics
│   │   │   │   └── widget
│   │   │   │       ├── charts
│   │   │   │       ├── message
│   │   │   │       ├── notifications1
│   │   │   │       ├── notifications2
│   │   │   │       ├── timeline1
│   │   │   │       ├── timeline2
│   │   │   │       ├── todolist
│   │   │   │       └── visitor-activity
│   │   │   ├── forms
│   │   │   │   ├── elements
│   │   │   │   │   ├── elements.component.css
│   │   │   │   │   ├── elements.component.html
│   │   │   │   │   ├── elements.component.spec.ts
│   │   │   │   │   └── elements.component.ts
│   │   │   │   └── form-validate
│   │   │   │       ├── form-validate.component.css
│   │   │   │       ├── form-validate.component.html
│   │   │   │       ├── form-validate.component.spec.ts
│   │   │   │       └── form-validate.component.ts
│   │   │   ├── market-capital
│   │   │   │   ├── market-capital.component.css
│   │   │   │   ├── market-capital.component.html
│   │   │   │   ├── market-capital.component.spec.ts
│   │   │   │   └── market-capital.component.ts
│   │   │   ├── material
│   │   │   │   ├── dzmt-autocomplete
│   │   │   │   │   ├── dzmt-autocomplete-display
│   │   │   │   │   ├── dzmt-autocomplete-filter
│   │   │   │   │   ├── dzmt-autocomplete-first-active
│   │   │   │   │   ├── dzmt-autocomplete-optgroup
│   │   │   │   │   ├── dzmt-autocomplete-overview
│   │   │   │   │   ├── dzmt-autocomplete-plane
│   │   │   │   │   ├── dzmt-autocomplete-simple
│   │   │   │   │   ├── dzmt-autocomplete.component.css
│   │   │   │   │   ├── dzmt-autocomplete.component.html
│   │   │   │   │   ├── dzmt-autocomplete.component.spec.ts
│   │   │   │   │   └── dzmt-autocomplete.component.ts
│   │   │   │   ├── dzmt-badge
│   │   │   │   │   ├── dzmt-badge.component.css
│   │   │   │   │   ├── dzmt-badge.component.html
│   │   │   │   │   ├── dzmt-badge.component.spec.ts
│   │   │   │   │   └── dzmt-badge.component.ts
│   │   │   │   ├── dzmt-bottom-sheet
│   │   │   │   │   ├── bottom-sheet-overview-example-sheet.html
│   │   │   │   │   ├── dzmt-bottom-sheet.component.css
│   │   │   │   │   ├── dzmt-bottom-sheet.component.html
│   │   │   │   │   ├── dzmt-bottom-sheet.component.spec.ts
│   │   │   │   │   └── dzmt-bottom-sheet.component.ts
│   │   │   │   ├── dzmt-button
│   │   │   │   │   ├── dzmt-button-basic
│   │   │   │   │   ├── dzmt-button-varieties
│   │   │   │   │   ├── dzmt-button.component.css
│   │   │   │   │   ├── dzmt-button.component.html
│   │   │   │   │   ├── dzmt-button.component.spec.ts
│   │   │   │   │   └── dzmt-button.component.ts
│   │   │   │   ├── dzmt-button-toggle
│   │   │   │   │   ├── button-basic-toggles
│   │   │   │   │   ├── button-exclusive-selection
│   │   │   │   │   ├── button-toggle-appearance
│   │   │   │   │   ├── button-with-forms
│   │   │   │   │   ├── dzmt-button-toggle.component.css
│   │   │   │   │   ├── dzmt-button-toggle.component.html
│   │   │   │   │   ├── dzmt-button-toggle.component.spec.ts
│   │   │   │   │   └── dzmt-button-toggle.component.ts
│   │   │   │   ├── dzmt-card
│   │   │   │   │   ├── card-basic
│   │   │   │   │   ├── card-multiple-sections
│   │   │   │   │   ├── dzmt-card.component.css
│   │   │   │   │   ├── dzmt-card.component.html
│   │   │   │   │   ├── dzmt-card.component.spec.ts
│   │   │   │   │   └── dzmt-card.component.ts
│   │   │   │   ├── dzmt-checkbox
│   │   │   │   │   ├── basic-checkbox
│   │   │   │   │   ├── configurable-checkbox
│   │   │   │   │   ├── dzmt-checkbox.component.css
│   │   │   │   │   ├── dzmt-checkbox.component.html
│   │   │   │   │   ├── dzmt-checkbox.component.spec.ts
│   │   │   │   │   └── dzmt-checkbox.component.ts
│   │   │   │   ├── dzmt-chips
│   │   │   │   │   ├── chips-autocomplete
│   │   │   │   │   ├── chips-basic
│   │   │   │   │   ├── chips-drag-drop
│   │   │   │   │   ├── chips-stacked
│   │   │   │   │   ├── chips-with-input
│   │   │   │   │   ├── dzmt-chips.component.css
│   │   │   │   │   ├── dzmt-chips.component.html
│   │   │   │   │   ├── dzmt-chips.component.spec.ts
│   │   │   │   │   └── dzmt-chips.component.ts
│   │   │   │   ├── dzmt-datepicker
│   │   │   │   │   ├── basic-date-range
│   │   │   │   │   ├── basic-datepicker
│   │   │   │   │   ├── comparison-ranges
│   │   │   │   │   ├── datepicker-action-buttons
│   │   │   │   │   ├── datepicker-custom-calendar-header
│   │   │   │   │   ├── datepicker-custom-date-classes
│   │   │   │   │   ├── datepicker-filter-validation
│   │   │   │   │   ├── datepicker-min-max-validation
│   │   │   │   │   ├── datepicker-open-method
│   │   │   │   │   ├── datepicker-palette-colors
│   │   │   │   │   ├── datepicker-selected-value
│   │   │   │   │   ├── datepicker-start-date
│   │   │   │   │   ├── datepicker-touch-ui
│   │   │   │   │   ├── disabled-datepicker
│   │   │   │   │   ├── dzmt-datepicker.component.css
│   │   │   │   │   ├── dzmt-datepicker.component.html
│   │   │   │   │   ├── dzmt-datepicker.component.spec.ts
│   │   │   │   │   ├── dzmt-datepicker.component.ts
│   │   │   │   │   ├── forms-integration
│   │   │   │   │   ├── input-change-events
│   │   │   │   │   └── range-custom-selection-strategy
│   │   │   │   ├── dzmt-dialog
│   │   │   │   │   ├── dialog-elements
│   │   │   │   │   ├── dialog-from-menu
│   │   │   │   │   ├── dialog-overview
│   │   │   │   │   ├── dzmt-dialog.component.css
│   │   │   │   │   ├── dzmt-dialog.component.html
│   │   │   │   │   ├── dzmt-dialog.component.spec.ts
│   │   │   │   │   ├── dzmt-dialog.component.ts
│   │   │   │   │   ├── header-scrollbar-action
│   │   │   │   │   └── injecting-data
│   │   │   │   ├── dzmt-divider
│   │   │   │   │   ├── dzmt-divider.component.css
│   │   │   │   │   ├── dzmt-divider.component.html
│   │   │   │   │   ├── dzmt-divider.component.spec.ts
│   │   │   │   │   └── dzmt-divider.component.ts
│   │   │   │   ├── dzmt-expansion
│   │   │   │   │   ├── basic-expansion-panel
│   │   │   │   │   ├── dzmt-expansion.component.css
│   │   │   │   │   ├── dzmt-expansion.component.html
│   │   │   │   │   ├── dzmt-expansion.component.spec.ts
│   │   │   │   │   ├── dzmt-expansion.component.ts
│   │   │   │   │   ├── expand-collapse-all-toggles
│   │   │   │   │   └── expansion-as-accordion
│   │   │   │   ├── dzmt-form-field
│   │   │   │   │   ├── appearance-variants
│   │   │   │   │   ├── dzmt-form-field.component.css
│   │   │   │   │   ├── dzmt-form-field.component.html
│   │   │   │   │   ├── dzmt-form-field.component.spec.ts
│   │   │   │   │   ├── dzmt-form-field.component.ts
│   │   │   │   │   ├── field-theming
│   │   │   │   │   ├── field-with-error-messages
│   │   │   │   │   ├── field-with-hints
│   │   │   │   │   ├── field-with-label
│   │   │   │   │   ├── field-with-prefix-suffix
│   │   │   │   │   └── simple-form-field
│   │   │   │   ├── dzmt-grid-list
│   │   │   │   │   ├── basic-grid-list
│   │   │   │   │   ├── dynamic-grid-list
│   │   │   │   │   ├── dzmt-grid-list.component.css
│   │   │   │   │   ├── dzmt-grid-list.component.html
│   │   │   │   │   ├── dzmt-grid-list.component.spec.ts
│   │   │   │   │   └── dzmt-grid-list.component.ts
│   │   │   │   ├── dzmt-icon
│   │   │   │   │   ├── dzmt-icon.component.css
│   │   │   │   │   ├── dzmt-icon.component.html
│   │   │   │   │   ├── dzmt-icon.component.spec.ts
│   │   │   │   │   ├── dzmt-icon.component.ts
│   │   │   │   │   └── svg-icon
│   │   │   │   ├── dzmt-input
│   │   │   │   │   ├── dzmt-input.component.css
│   │   │   │   │   ├── dzmt-input.component.html
│   │   │   │   │   ├── dzmt-input.component.spec.ts
│   │   │   │   │   ├── dzmt-input.component.ts
│   │   │   │   │   ├── input-error-state-matcher
│   │   │   │   │   ├── input-with-clear-button
│   │   │   │   │   ├── input-with-error-message
│   │   │   │   │   ├── inputs-basic
│   │   │   │   │   ├── inputs-in-form
│   │   │   │   │   ├── inputs-with-hints
│   │   │   │   │   └── inputs-with-prefixes-suffixes
│   │   │   │   ├── dzmt-list
│   │   │   │   │   ├── basic-list
│   │   │   │   │   ├── dzmt-list.component.css
│   │   │   │   │   ├── dzmt-list.component.html
│   │   │   │   │   ├── dzmt-list.component.spec.ts
│   │   │   │   │   ├── dzmt-list.component.ts
│   │   │   │   │   ├── list-with-sections
│   │   │   │   │   ├── list-with-selection
│   │   │   │   │   └── list-with-single-selection
│   │   │   │   ├── dzmt-menu
│   │   │   │   │   ├── basic-menu
│   │   │   │   │   ├── dzmt-menu.component.css
│   │   │   │   │   ├── dzmt-menu.component.html
│   │   │   │   │   ├── dzmt-menu.component.spec.ts
│   │   │   │   │   ├── dzmt-menu.component.ts
│   │   │   │   │   ├── menu-positioning
│   │   │   │   │   ├── menu-with-icons
│   │   │   │   │   └── nested-menu
│   │   │   │   ├── dzmt-paginator
│   │   │   │   │   ├── basic-paginator
│   │   │   │   │   ├── configurable-paginator
│   │   │   │   │   ├── dzmt-paginator.component.css
│   │   │   │   │   ├── dzmt-paginator.component.html
│   │   │   │   │   ├── dzmt-paginator.component.spec.ts
│   │   │   │   │   └── dzmt-paginator.component.ts
│   │   │   │   ├── dzmt-progress-bar
│   │   │   │   │   ├── buffer-progress-bar
│   │   │   │   │   ├── configurable-progress-bar
│   │   │   │   │   ├── determinate-progress-bar
│   │   │   │   │   ├── dzmt-progress-bar.component.css
│   │   │   │   │   ├── dzmt-progress-bar.component.html
│   │   │   │   │   ├── dzmt-progress-bar.component.spec.ts
│   │   │   │   │   ├── dzmt-progress-bar.component.ts
│   │   │   │   │   ├── indeterminate-progress-bar
│   │   │   │   │   └── query-progress-bar
│   │   │   │   ├── dzmt-progress-spinner
│   │   │   │   │   ├── basic-progress-spinner
│   │   │   │   │   ├── configurable-progress-spinner
│   │   │   │   │   ├── dzmt-progress-spinner.component.css
│   │   │   │   │   ├── dzmt-progress-spinner.component.html
│   │   │   │   │   ├── dzmt-progress-spinner.component.spec.ts
│   │   │   │   │   └── dzmt-progress-spinner.component.ts
│   │   │   │   ├── dzmt-radio
│   │   │   │   │   ├── dzmt-radio.component.css
│   │   │   │   │   ├── dzmt-radio.component.html
│   │   │   │   │   ├── dzmt-radio.component.spec.ts
│   │   │   │   │   ├── dzmt-radio.component.ts
│   │   │   │   │   ├── radios-basic
│   │   │   │   │   └── radios-with-ng-model
│   │   │   │   ├── dzmt-ripple
│   │   │   │   │   ├── dzmt-ripple.component.css
│   │   │   │   │   ├── dzmt-ripple.component.html
│   │   │   │   │   ├── dzmt-ripple.component.spec.ts
│   │   │   │   │   └── dzmt-ripple.component.ts
│   │   │   │   ├── dzmt-select
│   │   │   │   │   ├── basic-select
│   │   │   │   │   ├── custom-error-state-matcher
│   │   │   │   │   ├── custom-panel-styling
│   │   │   │   │   ├── custom-trigger-text
│   │   │   │   │   ├── disabled-select
│   │   │   │   │   ├── dzmt-select.component.css
│   │   │   │   │   ├── dzmt-select.component.html
│   │   │   │   │   ├── dzmt-select.component.spec.ts
│   │   │   │   │   ├── dzmt-select.component.ts
│   │   │   │   │   ├── initial-value-no-form
│   │   │   │   │   ├── multiple-selection
│   │   │   │   │   ├── no-option-ripple
│   │   │   │   │   ├── option-groups
│   │   │   │   │   ├── select-form-field-features
│   │   │   │   │   ├── select-in-form
│   │   │   │   │   ├── select-in-reactive-form
│   │   │   │   │   ├── select-with-reset-option
│   │   │   │   │   └── two-way-value-binding
│   │   │   │   ├── dzmt-sidenav
│   │   │   │   │   ├── autosize-sidenav
│   │   │   │   │   ├── drawer-explicit-backdrop-setting
│   │   │   │   │   ├── dzmt-sidenav.component.css
│   │   │   │   │   ├── dzmt-sidenav.component.html
│   │   │   │   │   ├── dzmt-sidenav.component.spec.ts
│   │   │   │   │   └── dzmt-sidenav.component.ts
│   │   │   │   ├── dzmt-slide-toggle
│   │   │   │   │   ├── configurable-slide-toggle
│   │   │   │   │   ├── dzmt-slide-toggle.component.css
│   │   │   │   │   ├── dzmt-slide-toggle.component.html
│   │   │   │   │   ├── dzmt-slide-toggle.component.spec.ts
│   │   │   │   │   ├── dzmt-slide-toggle.component.ts
│   │   │   │   │   ├── slide-toggle-basic
│   │   │   │   │   └── slide-toggle-with-forms
│   │   │   │   ├── dzmt-slider
│   │   │   │   │   ├── configurable-slider
│   │   │   │   │   ├── custom-thumb-label-formatting
│   │   │   │   │   ├── dzmt-slider.component.css
│   │   │   │   │   ├── dzmt-slider.component.html
│   │   │   │   │   ├── dzmt-slider.component.spec.ts
│   │   │   │   │   ├── dzmt-slider.component.ts
│   │   │   │   │   └── slider-basic
│   │   │   │   ├── dzmt-snack-bar
│   │   │   │   │   ├── basic-snack-bar
│   │   │   │   │   ├── dzmt-snack-bar.component.css
│   │   │   │   │   ├── dzmt-snack-bar.component.html
│   │   │   │   │   ├── dzmt-snack-bar.component.spec.ts
│   │   │   │   │   ├── dzmt-snack-bar.component.ts
│   │   │   │   │   ├── snack-bar-configurable
│   │   │   │   │   └── snack-bar-custom-component
│   │   │   │   ├── dzmt-sort
│   │   │   │   │   ├── dzmt-sort.component.css
│   │   │   │   │   ├── dzmt-sort.component.html
│   │   │   │   │   ├── dzmt-sort.component.spec.ts
│   │   │   │   │   └── dzmt-sort.component.ts
│   │   │   │   ├── dzmt-stepper
│   │   │   │   │   ├── displays-errors-in-steps
│   │   │   │   │   ├── dzmt-stepper.component.css
│   │   │   │   │   ├── dzmt-stepper.component.html
│   │   │   │   │   ├── dzmt-stepper.component.spec.ts
│   │   │   │   │   ├── dzmt-stepper.component.ts
│   │   │   │   │   ├── editable-steps
│   │   │   │   │   ├── label-bottom-position
│   │   │   │   │   ├── optional-steps
│   │   │   │   │   ├── stepper-customized-states
│   │   │   │   │   ├── stepper-overview
│   │   │   │   │   └── stepper-vertical
│   │   │   │   ├── dzmt-table
│   │   │   │   │   ├── basic-table
│   │   │   │   │   ├── data-table-sorting-pagination-filtering
│   │   │   │   │   ├── dynamically-changing-columns-displayed
│   │   │   │   │   ├── dzmt-table.component.css
│   │   │   │   │   ├── dzmt-table.component.html
│   │   │   │   │   ├── dzmt-table.component.spec.ts
│   │   │   │   │   ├── dzmt-table.component.ts
│   │   │   │   │   ├── footer-row-table
│   │   │   │   │   ├── multiple-header-footer-rows
│   │   │   │   │   ├── retrieving-data-through-http
│   │   │   │   │   ├── table-context-properties
│   │   │   │   │   ├── table-expandable-rows
│   │   │   │   │   ├── table-flex-with-toggle-able-sticky-headers-footers-columns
│   │   │   │   │   ├── table-sticky-footer
│   │   │   │   │   ├── table-sticky-header
│   │   │   │   │   ├── table-with-configurations-interface
│   │   │   │   │   ├── table-with-display-flex
│   │   │   │   │   ├── table-with-filtering
│   │   │   │   │   ├── table-with-pagination
│   │   │   │   │   ├── table-with-re-orderable-columns
│   │   │   │   │   ├── table-with-selection
│   │   │   │   │   ├── table-with-simple-text-header-footer
│   │   │   │   │   ├── table-with-sorting
│   │   │   │   │   ├── table-with-sticky-columns
│   │   │   │   │   └── table-with-toggle-able-sticky-headers-footers-columns
│   │   │   │   ├── dzmt-tabs
│   │   │   │   │   ├── aligned-labels
│   │   │   │   │   ├── asynchronously-loading-tab-contents
│   │   │   │   │   ├── basic-tab-group
│   │   │   │   │   ├── basic-use-of-tab-nav-bar
│   │   │   │   │   ├── dzmt-tabs.component.css
│   │   │   │   │   ├── dzmt-tabs.component.html
│   │   │   │   │   ├── dzmt-tabs.component.spec.ts
│   │   │   │   │   ├── dzmt-tabs.component.ts
│   │   │   │   │   ├── tab-group-animations
│   │   │   │   │   ├── tabs-with-content-loaded-lazily
│   │   │   │   │   ├── tabs-with-custom-label-template
│   │   │   │   │   ├── tabs-with-dynamic-height
│   │   │   │   │   ├── tabs-with-dynamically-changing-tabs
│   │   │   │   │   ├── tabs-with-headers-on-bottom
│   │   │   │   │   ├── tabs-with-stretched-labels
│   │   │   │   │   └── tabs-with-theme-options
│   │   │   │   ├── dzmt-toolbar
│   │   │   │   │   ├── basic-toolbar
│   │   │   │   │   ├── dzmt-toolbar.component.css
│   │   │   │   │   ├── dzmt-toolbar.component.html
│   │   │   │   │   ├── dzmt-toolbar.component.spec.ts
│   │   │   │   │   ├── dzmt-toolbar.component.ts
│   │   │   │   │   ├── multi-row-toolbar
│   │   │   │   │   └── toolbar-overview
│   │   │   │   ├── dzmt-tooltip
│   │   │   │   │   ├── basic-tooltip
│   │   │   │   │   ├── dzmt-tooltip.component.css
│   │   │   │   │   ├── dzmt-tooltip.component.html
│   │   │   │   │   ├── dzmt-tooltip.component.spec.ts
│   │   │   │   │   ├── dzmt-tooltip.component.ts
│   │   │   │   │   ├── tooltip-auto-hiding
│   │   │   │   │   ├── tooltip-can-be-disabled
│   │   │   │   │   ├── tooltip-manually-show-hide
│   │   │   │   │   ├── tooltip-with-changing-message
│   │   │   │   │   ├── tooltip-with-custom-class
│   │   │   │   │   ├── tooltip-with-custom-position
│   │   │   │   │   ├── tooltip-with-hide-show-delay
│   │   │   │   │   └── tooltip-with-show-hide-delay
│   │   │   │   └── dzmt-tree
│   │   │   │       ├── dzmt-tree.component.css
│   │   │   │       ├── dzmt-tree.component.html
│   │   │   │       ├── dzmt-tree.component.spec.ts
│   │   │   │       ├── dzmt-tree.component.ts
│   │   │   │       ├── tree-with-checkboxes
│   │   │   │       ├── tree-with-dynamic-data
│   │   │   │       ├── tree-with-flat-nodes
│   │   │   │       ├── tree-with-nested-nodes
│   │   │   │       └── tree-with-partially-loaded-data
│   │   │   ├── my-wallets
│   │   │   │   ├── my-wallets.component.css
│   │   │   │   ├── my-wallets.component.html
│   │   │   │   ├── my-wallets.component.spec.ts
│   │   │   │   └── my-wallets.component.ts
│   │   │   ├── pages
│   │   │   │   ├── error400
│   │   │   │   │   ├── error400.component.css
│   │   │   │   │   ├── error400.component.html
│   │   │   │   │   ├── error400.component.spec.ts
│   │   │   │   │   └── error400.component.ts
│   │   │   │   ├── error403
│   │   │   │   │   ├── error403.component.css
│   │   │   │   │   ├── error403.component.html
│   │   │   │   │   ├── error403.component.spec.ts
│   │   │   │   │   └── error403.component.ts
│   │   │   │   ├── error404
│   │   │   │   │   ├── error404.component.css
│   │   │   │   │   ├── error404.component.html
│   │   │   │   │   ├── error404.component.spec.ts
│   │   │   │   │   └── error404.component.ts
│   │   │   │   ├── error500
│   │   │   │   │   ├── error500.component.css
│   │   │   │   │   ├── error500.component.html
│   │   │   │   │   ├── error500.component.spec.ts
│   │   │   │   │   └── error500.component.ts
│   │   │   │   ├── error503
│   │   │   │   │   ├── error503.component.css
│   │   │   │   │   ├── error503.component.html
│   │   │   │   │   ├── error503.component.spec.ts
│   │   │   │   │   └── error503.component.ts
│   │   │   │   ├── forgot-password
│   │   │   │   │   ├── forgot-password.component.css
│   │   │   │   │   ├── forgot-password.component.html
│   │   │   │   │   ├── forgot-password.component.spec.ts
│   │   │   │   │   └── forgot-password.component.ts
│   │   │   │   ├── lock-screen
│   │   │   │   │   ├── lock-screen.component.css
│   │   │   │   │   ├── lock-screen.component.html
│   │   │   │   │   ├── lock-screen.component.spec.ts
│   │   │   │   │   └── lock-screen.component.ts
│   │   │   │   ├── login
│   │   │   │   │   ├── login.component.css
│   │   │   │   │   ├── login.component.html
│   │   │   │   │   ├── login.component.spec.ts
│   │   │   │   │   └── login.component.ts
│   │   │   │   └── register
│   │   │   │       ├── register.component.css
│   │   │   │       ├── register.component.html
│   │   │   │       ├── register.component.spec.ts
│   │   │   │       └── register.component.ts
│   │   │   ├── plugins
│   │   │   │   ├── light-gallery
│   │   │   │   │   ├── light-gallery.component.css
│   │   │   │   │   ├── light-gallery.component.html
│   │   │   │   │   ├── light-gallery.component.spec.ts
│   │   │   │   │   └── light-gallery.component.ts
│   │   │   │   └── nestable
│   │   │   │       ├── lib
│   │   │   │       ├── nestable.component.css
│   │   │   │       ├── nestable.component.html
│   │   │   │       ├── nestable.component.spec.ts
│   │   │   │       └── nestable.component.ts
│   │   │   ├── portofolio
│   │   │   │   ├── portofolio.component.css
│   │   │   │   ├── portofolio.component.html
│   │   │   │   ├── portofolio.component.spec.ts
│   │   │   │   └── portofolio.component.ts
│   │   │   ├── shared.service.ts
│   │   │   ├── sortable.directive.ts
│   │   │   ├── switcher
│   │   │   │   ├── switcher.component.css
│   │   │   │   ├── switcher.component.html
│   │   │   │   ├── switcher.component.spec.ts
│   │   │   │   └── switcher.component.ts
│   │   │   ├── transactions
│   │   │   │   ├── transactions.component.css
│   │   │   │   ├── transactions.component.html
│   │   │   │   ├── transactions.component.spec.ts
│   │   │   │   └── transactions.component.ts
│   │   │   └── widget
│   │   │       ├── widget.component.css
│   │   │       ├── widget.component.html
│   │   │       ├── widget.component.spec.ts
│   │   │       └── widget.component.ts
│   │   ├── assets
│   │   │   ├── css
│   │   │   │   ├── dashboard.css
│   │   │   │   ├── dashboard.css.map
│   │   │   │   ├── perfect-scrollbar.css
│   │   │   │   ├── style.css
│   │   │   │   └── style.css.map
│   │   │   ├── icons
│   │   │   │   ├── avasta
│   │   │   │   │   ├── css
│   │   │   │   │   └── fonts
│   │   │   │   ├── feather
│   │   │   │   │   ├── activity.svg
│   │   │   │   │   ├── airplay.svg
│   │   │   │   │   ├── alert-circle.svg
│   │   │   │   │   ├── alert-octagon.svg
│   │   │   │   │   ├── alert-triangle.svg
│   │   │   │   │   ├── align-center.svg
│   │   │   │   │   ├── align-justify.svg
│   │   │   │   │   ├── align-left.svg
│   │   │   │   │   ├── align-right.svg
│   │   │   │   │   ├── anchor.svg
│   │   │   │   │   ├── aperture.svg
│   │   │   │   │   ├── archive.svg
│   │   │   │   │   ├── arrow-down-circle.svg
│   │   │   │   │   ├── arrow-down-left.svg
│   │   │   │   │   ├── arrow-down-right.svg
│   │   │   │   │   ├── arrow-down.svg
│   │   │   │   │   ├── arrow-left-circle.svg
│   │   │   │   │   ├── arrow-left.svg
│   │   │   │   │   ├── arrow-right-circle.svg
│   │   │   │   │   ├── arrow-right.svg
│   │   │   │   │   ├── arrow-up-circle.svg
│   │   │   │   │   ├── arrow-up-left.svg
│   │   │   │   │   ├── arrow-up-right.svg
│   │   │   │   │   ├── arrow-up.svg
│   │   │   │   │   ├── at-sign.svg
│   │   │   │   │   ├── award.svg
│   │   │   │   │   ├── bar-chart-2.svg
│   │   │   │   │   ├── bar-chart.svg
│   │   │   │   │   ├── battery-charging.svg
│   │   │   │   │   ├── battery.svg
│   │   │   │   │   ├── bell-off.svg
│   │   │   │   │   ├── bell.svg
│   │   │   │   │   ├── bluetooth.svg
│   │   │   │   │   ├── bold.svg
│   │   │   │   │   ├── book-open.svg
│   │   │   │   │   ├── book.svg
│   │   │   │   │   ├── bookmark.svg
│   │   │   │   │   ├── box.svg
│   │   │   │   │   ├── briefcase.svg
│   │   │   │   │   ├── calendar.svg
│   │   │   │   │   ├── camera-off.svg
│   │   │   │   │   ├── camera.svg
│   │   │   │   │   ├── cast.svg
│   │   │   │   │   ├── check-circle.svg
│   │   │   │   │   ├── check-square.svg
│   │   │   │   │   ├── check.svg
│   │   │   │   │   ├── chevron-down.svg
│   │   │   │   │   ├── chevron-left.svg
│   │   │   │   │   ├── chevron-right.svg
│   │   │   │   │   ├── chevron-up.svg
│   │   │   │   │   ├── chevrons-down.svg
│   │   │   │   │   ├── chevrons-left.svg
│   │   │   │   │   ├── chevrons-right.svg
│   │   │   │   │   ├── chevrons-up.svg
│   │   │   │   │   ├── chrome.svg
│   │   │   │   │   ├── circle.svg
│   │   │   │   │   ├── clipboard.svg
│   │   │   │   │   ├── clock.svg
│   │   │   │   │   ├── cloud-drizzle.svg
│   │   │   │   │   ├── cloud-lightning.svg
│   │   │   │   │   ├── cloud-off.svg
│   │   │   │   │   ├── cloud-rain.svg
│   │   │   │   │   ├── cloud-snow.svg
│   │   │   │   │   ├── cloud.svg
│   │   │   │   │   ├── code.svg
│   │   │   │   │   ├── codepen.svg
│   │   │   │   │   ├── codesandbox.svg
│   │   │   │   │   ├── coffee.svg
│   │   │   │   │   ├── columns.svg
│   │   │   │   │   ├── command.svg
│   │   │   │   │   ├── compass.svg
│   │   │   │   │   ├── copy.svg
│   │   │   │   │   ├── corner-down-left.svg
│   │   │   │   │   ├── corner-down-right.svg
│   │   │   │   │   ├── corner-left-down.svg
│   │   │   │   │   ├── corner-left-up.svg
│   │   │   │   │   ├── corner-right-down.svg
│   │   │   │   │   ├── corner-right-up.svg
│   │   │   │   │   ├── corner-up-left.svg
│   │   │   │   │   ├── corner-up-right.svg
│   │   │   │   │   ├── cpu.svg
│   │   │   │   │   ├── credit-card.svg
│   │   │   │   │   ├── crop.svg
│   │   │   │   │   ├── crosshair.svg
│   │   │   │   │   ├── database.svg
│   │   │   │   │   ├── delete.svg
│   │   │   │   │   ├── disc.svg
│   │   │   │   │   ├── dollar-sign.svg
│   │   │   │   │   ├── download-cloud.svg
│   │   │   │   │   ├── download.svg
│   │   │   │   │   ├── droplet.svg
│   │   │   │   │   ├── edit-2.svg
│   │   │   │   │   ├── edit-3.svg
│   │   │   │   │   ├── edit.svg
│   │   │   │   │   ├── external-link.svg
│   │   │   │   │   ├── eye-off.svg
│   │   │   │   │   ├── eye.svg
│   │   │   │   │   ├── facebook.svg
│   │   │   │   │   ├── fast-forward.svg
│   │   │   │   │   ├── feather.svg
│   │   │   │   │   ├── figma.svg
│   │   │   │   │   ├── file-minus.svg
│   │   │   │   │   ├── file-plus.svg
│   │   │   │   │   ├── file-text.svg
│   │   │   │   │   ├── file.svg
│   │   │   │   │   ├── film.svg
│   │   │   │   │   ├── filter.svg
│   │   │   │   │   ├── flag.svg
│   │   │   │   │   ├── folder-minus.svg
│   │   │   │   │   ├── folder-plus.svg
│   │   │   │   │   ├── folder.svg
│   │   │   │   │   ├── framer.svg
│   │   │   │   │   ├── frown.svg
│   │   │   │   │   ├── gift.svg
│   │   │   │   │   ├── git-branch.svg
│   │   │   │   │   ├── git-commit.svg
│   │   │   │   │   ├── git-merge.svg
│   │   │   │   │   ├── git-pull-request.svg
│   │   │   │   │   ├── github.svg
│   │   │   │   │   ├── gitlab.svg
│   │   │   │   │   ├── globe.svg
│   │   │   │   │   ├── grid.svg
│   │   │   │   │   ├── hard-drive.svg
│   │   │   │   │   ├── hash.svg
│   │   │   │   │   ├── headphones.svg
│   │   │   │   │   ├── heart.svg
│   │   │   │   │   ├── help-circle.svg
│   │   │   │   │   ├── hexagon.svg
│   │   │   │   │   ├── home.svg
│   │   │   │   │   ├── image.svg
│   │   │   │   │   ├── inbox.svg
│   │   │   │   │   ├── info.svg
│   │   │   │   │   ├── instagram.svg
│   │   │   │   │   ├── italic.svg
│   │   │   │   │   ├── key.svg
│   │   │   │   │   ├── layers.svg
│   │   │   │   │   ├── layout.svg
│   │   │   │   │   ├── life-buoy.svg
│   │   │   │   │   ├── link-2.svg
│   │   │   │   │   ├── link.svg
│   │   │   │   │   ├── linkedin.svg
│   │   │   │   │   ├── list.svg
│   │   │   │   │   ├── loader.svg
│   │   │   │   │   ├── lock.svg
│   │   │   │   │   ├── log-in.svg
│   │   │   │   │   ├── log-out.svg
│   │   │   │   │   ├── mail.svg
│   │   │   │   │   ├── map-pin.svg
│   │   │   │   │   ├── map.svg
│   │   │   │   │   ├── maximize-2.svg
│   │   │   │   │   ├── maximize.svg
│   │   │   │   │   ├── meh.svg
│   │   │   │   │   ├── menu.svg
│   │   │   │   │   ├── message-circle.svg
│   │   │   │   │   ├── message-square.svg
│   │   │   │   │   ├── mic-off.svg
│   │   │   │   │   ├── mic.svg
│   │   │   │   │   ├── minimize-2.svg
│   │   │   │   │   ├── minimize.svg
│   │   │   │   │   ├── minus-circle.svg
│   │   │   │   │   ├── minus-square.svg
│   │   │   │   │   ├── minus.svg
│   │   │   │   │   ├── monitor.svg
│   │   │   │   │   ├── moon.svg
│   │   │   │   │   ├── more-horizontal.svg
│   │   │   │   │   ├── more-vertical.svg
│   │   │   │   │   ├── mouse-pointer.svg
│   │   │   │   │   ├── move.svg
│   │   │   │   │   ├── music.svg
│   │   │   │   │   ├── navigation-2.svg
│   │   │   │   │   ├── navigation.svg
│   │   │   │   │   ├── octagon.svg
│   │   │   │   │   ├── package.svg
│   │   │   │   │   ├── paperclip.svg
│   │   │   │   │   ├── pause-circle.svg
│   │   │   │   │   ├── pause.svg
│   │   │   │   │   ├── pen-tool.svg
│   │   │   │   │   ├── percent.svg
│   │   │   │   │   ├── phone-call.svg
│   │   │   │   │   ├── phone-forwarded.svg
│   │   │   │   │   ├── phone-incoming.svg
│   │   │   │   │   ├── phone-missed.svg
│   │   │   │   │   ├── phone-off.svg
│   │   │   │   │   ├── phone-outgoing.svg
│   │   │   │   │   ├── phone.svg
│   │   │   │   │   ├── pie-chart.svg
│   │   │   │   │   ├── play-circle.svg
│   │   │   │   │   ├── play.svg
│   │   │   │   │   ├── plus-circle.svg
│   │   │   │   │   ├── plus-square.svg
│   │   │   │   │   ├── plus.svg
│   │   │   │   │   ├── pocket.svg
│   │   │   │   │   ├── power.svg
│   │   │   │   │   ├── printer.svg
│   │   │   │   │   ├── radio.svg
│   │   │   │   │   ├── refresh-ccw.svg
│   │   │   │   │   ├── refresh-cw.svg
│   │   │   │   │   ├── repeat.svg
│   │   │   │   │   ├── rewind.svg
│   │   │   │   │   ├── rotate-ccw.svg
│   │   │   │   │   ├── rotate-cw.svg
│   │   │   │   │   ├── rss.svg
│   │   │   │   │   ├── save.svg
│   │   │   │   │   ├── scissors.svg
│   │   │   │   │   ├── search.svg
│   │   │   │   │   ├── send.svg
│   │   │   │   │   ├── server.svg
│   │   │   │   │   ├── settings.svg
│   │   │   │   │   ├── share-2.svg
│   │   │   │   │   ├── share.svg
│   │   │   │   │   ├── shield-off.svg
│   │   │   │   │   ├── shield.svg
│   │   │   │   │   ├── shopping-bag.svg
│   │   │   │   │   ├── shopping-cart.svg
│   │   │   │   │   ├── shuffle.svg
│   │   │   │   │   ├── sidebar.svg
│   │   │   │   │   ├── skip-back.svg
│   │   │   │   │   ├── skip-forward.svg
│   │   │   │   │   ├── slack.svg
│   │   │   │   │   ├── slash.svg
│   │   │   │   │   ├── sliders.svg
│   │   │   │   │   ├── smartphone.svg
│   │   │   │   │   ├── smile.svg
│   │   │   │   │   ├── speaker.svg
│   │   │   │   │   ├── square.svg
│   │   │   │   │   ├── star.svg
│   │   │   │   │   ├── stop-circle.svg
│   │   │   │   │   ├── sun.svg
│   │   │   │   │   ├── sunrise.svg
│   │   │   │   │   ├── sunset.svg
│   │   │   │   │   ├── tablet.svg
│   │   │   │   │   ├── tag.svg
│   │   │   │   │   ├── target.svg
│   │   │   │   │   ├── terminal.svg
│   │   │   │   │   ├── thermometer.svg
│   │   │   │   │   ├── toggle-left.svg
│   │   │   │   │   ├── toggle-right.svg
│   │   │   │   │   ├── tool.svg
│   │   │   │   │   ├── trash-2.svg
│   │   │   │   │   ├── trash.svg
│   │   │   │   │   ├── trello.svg
│   │   │   │   │   ├── trending-down.svg
│   │   │   │   │   ├── trending-up.svg
│   │   │   │   │   ├── triangle.svg
│   │   │   │   │   ├── truck.svg
│   │   │   │   │   ├── tv.svg
│   │   │   │   │   ├── twitch.svg
│   │   │   │   │   ├── twitter.svg
│   │   │   │   │   ├── type.svg
│   │   │   │   │   ├── umbrella.svg
│   │   │   │   │   ├── underline.svg
│   │   │   │   │   ├── unlock.svg
│   │   │   │   │   ├── upload-cloud.svg
│   │   │   │   │   ├── upload.svg
│   │   │   │   │   ├── user-check.svg
│   │   │   │   │   ├── user-minus.svg
│   │   │   │   │   ├── user-plus.svg
│   │   │   │   │   ├── user-x.svg
│   │   │   │   │   ├── user.svg
│   │   │   │   │   ├── users.svg
│   │   │   │   │   ├── video-off.svg
│   │   │   │   │   ├── video.svg
│   │   │   │   │   ├── voicemail.svg
│   │   │   │   │   ├── volume-1.svg
│   │   │   │   │   ├── volume-2.svg
│   │   │   │   │   ├── volume-x.svg
│   │   │   │   │   ├── volume.svg
│   │   │   │   │   ├── watch.svg
│   │   │   │   │   ├── wifi-off.svg
│   │   │   │   │   ├── wifi.svg
│   │   │   │   │   ├── wind.svg
│   │   │   │   │   ├── x-circle.svg
│   │   │   │   │   ├── x-octagon.svg
│   │   │   │   │   ├── x-square.svg
│   │   │   │   │   ├── x.svg
│   │   │   │   │   ├── youtube.svg
│   │   │   │   │   ├── zap-off.svg
│   │   │   │   │   ├── zap.svg
│   │   │   │   │   ├── zoom-in.svg
│   │   │   │   │   └── zoom-out.svg
│   │   │   │   ├── flaticon
│   │   │   │   │   ├── Flaticon.eot
│   │   │   │   │   ├── Flaticon.svg
│   │   │   │   │   ├── Flaticon.ttf
│   │   │   │   │   ├── Flaticon.woff
│   │   │   │   │   ├── _flaticon.scss
│   │   │   │   │   ├── flaticon.css
│   │   │   │   │   └── flaticon.html
│   │   │   │   ├── font-awesome-old
│   │   │   │   │   ├── css
│   │   │   │   │   └── fonts
│   │   │   │   ├── helveticaNeue
│   │   │   │   │   ├── css
│   │   │   │   │   └── fonts
│   │   │   │   ├── icomoon
│   │   │   │   │   ├── fonts
│   │   │   │   │   └── icomoon.css
│   │   │   │   ├── line-awesome
│   │   │   │   │   ├── css
│   │   │   │   │   ├── fonts
│   │   │   │   │   ├── scss
│   │   │   │   │   └── svg
│   │   │   │   ├── material-design-iconic-font
│   │   │   │   │   ├── css
│   │   │   │   │   └── fonts
│   │   │   │   ├── simple-line-icons
│   │   │   │   │   ├── css
│   │   │   │   │   └── fonts
│   │   │   │   └── themify-icons
│   │   │   │       ├── css
│   │   │   │       └── fonts
│   │   │   ├── images
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── abstract-background-colrful.jpg
│   │   │   │   ├── avatar
│   │   │   │   │   ├── 1.jpg
│   │   │   │   │   ├── 1.png
│   │   │   │   │   ├── 2.jpg
│   │   │   │   │   ├── 2.png
│   │   │   │   │   ├── 3.jpg
│   │   │   │   │   ├── 3.png
│   │   │   │   │   ├── 4.jpg
│   │   │   │   │   ├── 4.png
│   │   │   │   │   ├── 5.jpg
│   │   │   │   │   ├── 5.png
│   │   │   │   │   ├── 6.jpg
│   │   │   │   │   ├── 7.jpg
│   │   │   │   │   └── 8.jpg
│   │   │   │   ├── big
│   │   │   │   │   ├── img1.jpg
│   │   │   │   │   ├── img2.jpg
│   │   │   │   │   ├── img3.jpg
│   │   │   │   │   ├── img4.jpg
│   │   │   │   │   ├── img5.jpg
│   │   │   │   │   ├── img6.jpg
│   │   │   │   │   ├── img7.jpg
│   │   │   │   │   └── img8.jpg
│   │   │   │   ├── book.png
│   │   │   │   ├── browser
│   │   │   │   │   ├── icon1.png
│   │   │   │   │   ├── icon2.png
│   │   │   │   │   └── icon3.png
│   │   │   │   ├── card
│   │   │   │   │   ├── 1.png
│   │   │   │   │   ├── 2.png
│   │   │   │   │   └── 3.png
│   │   │   │   ├── card-logo.png
│   │   │   │   ├── card-logo2.png
│   │   │   │   ├── charts
│   │   │   │   │   ├── Thumbs.db
│   │   │   │   │   ├── area.png
│   │   │   │   │   ├── bar.png
│   │   │   │   │   ├── boxplot.png
│   │   │   │   │   ├── bubble.png
│   │   │   │   │   ├── candlestick.png
│   │   │   │   │   ├── column.png
│   │   │   │   │   ├── dashborads.png
│   │   │   │   │   ├── fb.png
│   │   │   │   │   ├── heatmap.png
│   │   │   │   │   ├── line.png
│   │   │   │   │   ├── mixed.png
│   │   │   │   │   ├── pie.png
│   │   │   │   │   ├── polar-area.png
│   │   │   │   │   ├── radar.png
│   │   │   │   │   ├── radialbar.png
│   │   │   │   │   ├── scatter.png
│   │   │   │   │   ├── sparklines.png
│   │   │   │   │   ├── timeline.png
│   │   │   │   │   └── treemap.png
│   │   │   │   ├── coin
│   │   │   │   │   ├── 1.svg
│   │   │   │   │   ├── 2.svg
│   │   │   │   │   ├── 3.svg
│   │   │   │   │   ├── 4.svg
│   │   │   │   │   ├── 5.svg
│   │   │   │   │   ├── 6.svg
│   │   │   │   │   ├── btc.svg
│   │   │   │   │   ├── coin_holding
│   │   │   │   │   ├── eth.svg
│   │   │   │   │   ├── ltc.svg
│   │   │   │   │   └── mon.svg
│   │   │   │   ├── contacts
│   │   │   │   │   ├── 1.jpg
│   │   │   │   │   ├── 2.jpg
│   │   │   │   │   ├── 3.jpg
│   │   │   │   │   ├── 4.jpg
│   │   │   │   │   └── 5.jpg
│   │   │   │   ├── currency
│   │   │   │   │   ├── 1.svg
│   │   │   │   │   ├── 2.svg
│   │   │   │   │   ├── 3.svg
│   │   │   │   │   ├── 4.svg
│   │   │   │   │   └── 5.svg
│   │   │   │   ├── demo
│   │   │   │   │   ├── Thumbs.db
│   │   │   │   │   ├── pic1.jpg
│   │   │   │   │   ├── pic2.jpg
│   │   │   │   │   ├── pic3.jpg
│   │   │   │   │   ├── pic4.jpg
│   │   │   │   │   └── pic5.jpg
│   │   │   │   ├── dots-2.png
│   │   │   │   ├── dots.png
│   │   │   │   ├── favicon.ico
│   │   │   │   ├── favicon.png
│   │   │   │   ├── like.png
│   │   │   │   ├── logo-full-white.png
│   │   │   │   ├── logo-full.png
│   │   │   │   ├── logo-text-white.png
│   │   │   │   ├── logo-text.png
│   │   │   │   ├── logo-white.png
│   │   │   │   ├── logo.png
│   │   │   │   ├── pattern
│   │   │   │   │   ├── pattern1.png
│   │   │   │   │   ├── pattern2.png
│   │   │   │   │   ├── pattern3.png
│   │   │   │   │   ├── pattern4.png
│   │   │   │   │   └── pattern5.png
│   │   │   │   ├── product
│   │   │   │   │   ├── 1.jpg
│   │   │   │   │   ├── 2.jpg
│   │   │   │   │   ├── 3.jpg
│   │   │   │   │   ├── 4.jpg
│   │   │   │   │   ├── 5.jpg
│   │   │   │   │   ├── 6.jpg
│   │   │   │   │   └── 7.jpg
│   │   │   │   ├── profile
│   │   │   │   │   ├── 1.jpg
│   │   │   │   │   ├── 1.png
│   │   │   │   │   ├── 11.jpg
│   │   │   │   │   ├── 2.jpg
│   │   │   │   │   ├── 3.jpg
│   │   │   │   │   ├── 4.jpg
│   │   │   │   │   ├── 5.jpg
│   │   │   │   │   ├── 6.jpg
│   │   │   │   │   ├── 7.jpg
│   │   │   │   │   ├── 8.jpg
│   │   │   │   │   ├── 9.jpg
│   │   │   │   │   ├── cover.jpg
│   │   │   │   │   ├── pic1.jpg
│   │   │   │   │   ├── profile.png
│   │   │   │   │   └── small
│   │   │   │   ├── qr.png
│   │   │   │   ├── svg
│   │   │   │   │   ├── btc.svg
│   │   │   │   │   ├── check.svg
│   │   │   │   │   ├── chevron_down.svg
│   │   │   │   │   ├── chevron_up.svg
│   │   │   │   │   ├── dash.svg
│   │   │   │   │   ├── eth.svg
│   │   │   │   │   ├── ic_buy.svg
│   │   │   │   │   ├── ic_sell.svg
│   │   │   │   │   └── ltc.svg
│   │   │   │   ├── tab
│   │   │   │   │   ├── 1.jpg
│   │   │   │   │   ├── 2.jpg
│   │   │   │   │   ├── 3.jpg
│   │   │   │   │   └── 4.jpg
│   │   │   │   └── table
│   │   │   │       ├── 1.jpg
│   │   │   │       ├── 2.jpg
│   │   │   │       └── 3.jpg
│   │   │   ├── scss
│   │   │   │   ├── _preloader.scss
│   │   │   │   ├── abstracts
│   │   │   │   │   ├── _abstracts.scss
│   │   │   │   │   ├── _bs-custom.scss
│   │   │   │   │   ├── _inheritance.scss
│   │   │   │   │   ├── _maps.scss
│   │   │   │   │   ├── _mixin.scss
│   │   │   │   │   └── _variable.scss
│   │   │   │   ├── base
│   │   │   │   │   ├── _base.scss
│   │   │   │   │   ├── _colors.scss
│   │   │   │   │   ├── _custom-grid.scss
│   │   │   │   │   ├── _fonts.scss
│   │   │   │   │   ├── _helper.scss
│   │   │   │   │   └── _reset.scss
│   │   │   │   ├── components
│   │   │   │   │   ├── _components.scss
│   │   │   │   │   ├── app
│   │   │   │   │   ├── charts
│   │   │   │   │   ├── forms
│   │   │   │   │   ├── ico
│   │   │   │   │   ├── map
│   │   │   │   │   ├── tables
│   │   │   │   │   ├── uc
│   │   │   │   │   ├── ui
│   │   │   │   │   └── widget
│   │   │   │   ├── dashboard.css
│   │   │   │   ├── dashboard.css.map
│   │   │   │   ├── dashboard.scss
│   │   │   │   ├── layout
│   │   │   │   │   ├── _layout.scss
│   │   │   │   │   ├── footer
│   │   │   │   │   ├── header
│   │   │   │   │   ├── rtl
│   │   │   │   │   ├── sidebar
│   │   │   │   │   ├── theme
│   │   │   │   │   ├── typography
│   │   │   │   │   ├── version-dark
│   │   │   │   │   └── version-transparent
│   │   │   │   ├── main.css
│   │   │   │   ├── main.css.map
│   │   │   │   ├── main.scss
│   │   │   │   └── pages
│   │   │   │       ├── _ecom-product-detail.scss
│   │   │   │       ├── _ecom-product-grid.scss
│   │   │   │       ├── _ecom-product-list.scss
│   │   │   │       ├── _homepage.scss
│   │   │   │       ├── _page-auth.scss
│   │   │   │       ├── _page-doctor-details.scss
│   │   │   │       ├── _page-error.scss
│   │   │   │       ├── _page-patient-details.scss
│   │   │   │       ├── _page-pricing.scss
│   │   │   │       ├── _page-review.scss
│   │   │   │       ├── _page-timeline.scss
│   │   │   │       └── _pages.scss
│   │   │   └── vendor
│   │   │       ├── animate
│   │   │       │   └── animate.min.css
│   │   │       ├── aos
│   │   │       │   └── css
│   │   │       ├── bootstrap
│   │   │       │   ├── dist
│   │   │       │   └── scss
│   │   │       ├── bootstrap-v4-rtl
│   │   │       │   └── scss
│   │   │       ├── metismenu
│   │   │       │   └── css
│   │   │       ├── owl-carousel
│   │   │       │   └── owl.carousel.css
│   │   │       └── perfect-scrollbar
│   │   │           └── css
│   │   ├── environments
│   │   │   ├── environment.prod.ts
│   │   │   └── environment.ts
│   │   ├── favicon.ico
│   │   ├── index.html
│   │   ├── main.ts
│   │   ├── polyfills.ts
│   │   ├── styles.css
│   │   └── test.ts
│   ├── tsconfig.app.json
│   ├── tsconfig.json
│   ├── tsconfig.spec.json
│   └── tslint.json
└── 帮助文档
    ├── css
    │   ├── bootstrap.css
    │   ├── font-awesome.css
    │   ├── magnific-popup.css
    │   ├── scrollbar.css
    │   └── styles.css
    ├── fonts
    │   ├── FontAwesome.otf
    │   ├── fontawesome-webfont.eot
    │   ├── fontawesome-webfont.svg
    │   ├── fontawesome-webfont.ttf
    │   ├── fontawesome-webfont.woff
    │   ├── glyphicons-halflings-regular.eot
    │   ├── glyphicons-halflings-regular.svg
    │   ├── glyphicons-halflings-regular.ttf
    │   ├── glyphicons-halflings-regular.woff
    │   ├── glyphicons-halflings-regular.woff2
    │   ├── lanenar_Lane.eot
    │   ├── lanenar_Lane.svg
    │   ├── lanenar_Lane.ttf
    │   └── lanenar_Lane.woff
    ├── images
    │   ├── bg1.png
    │   ├── color
    │   │   ├── 1.jpg
    │   │   ├── 10.jpg
    │   │   ├── 11.jpg
    │   │   ├── 12.jpg
    │   │   ├── 13.jpg
    │   │   ├── 14.jpg
    │   │   ├── 15.jpg
    │   │   ├── 2.jpg
    │   │   ├── 3.jpg
    │   │   ├── 4.jpg
    │   │   ├── 5.jpg
    │   │   ├── 6.jpg
    │   │   ├── 7.jpg
    │   │   ├── 8.jpg
    │   │   └── 9.jpg
    │   ├── demo
    │   │   ├── pic1.jpg
    │   │   ├── pic2.jpg
    │   │   ├── pic3.jpg
    │   │   ├── pic4.jpg
    │   │   ├── pic5.jpg
    │   │   ├── pic6.jpg
    │   │   └── rtl.png
    │   ├── favicon.ico
    │   ├── favicon.png
    │   ├── logo-text.png
    │   ├── logo.png
    │   ├── product
    │   │   ├── agency.png
    │   │   ├── archia.png
    │   │   ├── beautyzone.png
    │   │   ├── bizmap.png
    │   │   ├── bucklin.png
    │   │   ├── butterfly.png
    │   │   ├── cargozone.png
    │   │   ├── construct.png
    │   │   ├── constructzilla .png
    │   │   ├── curv.png
    │   │   ├── gardanzone.png
    │   │   ├── industry.png
    │   │   ├── jobboard.png
    │   │   ├── kelsey.png
    │   │   ├── lemars.png
    │   │   ├── medico.png
    │   │   ├── smartclass.png
    │   │   ├── sportszone.png
    │   │   ├── umang_academy.png
    │   │   ├── wp-beautyzone.png
    │   │   ├── wp-beglide.png
    │   │   ├── wp-bheem.png
    │   │   ├── wp-bucklin.png
    │   │   └── yogazone.png
    │   ├── screenshot
    │   │   └── 8.png
    │   └── slide.png
    ├── index.html
    ├── js
    │   ├── bootstrap.min.js
    │   ├── custom.js
    │   ├── jquery.fitvids.js
    │   ├── jquery.localScroll.min.js
    │   ├── jquery.min.js
    │   ├── jquery.prettyPhoto.js
    │   ├── jquery.scrollTo.min.js
    │   ├── load.js
    │   ├── magnific-popup.js
    │   ├── main.js
    │   ├── scrollbar.min.js
    │   ├── scrolling-nav.js
    │   └── smoothscroll.js
    └── plugins
        └── jstree
            ├── LICENSE-MIT
            ├── README.md
            ├── bower.json
            ├── component.json
            ├── composer.json
            ├── demo
            │   ├── README.md
            │   └── basic
            │       ├── index.html
            │       └── root.json
            ├── dist
            │   ├── jstree.js
            │   ├── jstree.min.js
            │   └── themes
            │       ├── default
            │       └── default-dark
            ├── gruntfile.js
            ├── jstree.jquery.json
            ├── package.json
            ├── src
            │   ├── intro.js
            │   ├── jstree.changed.js
            │   ├── jstree.checkbox.js
            │   ├── jstree.conditionalselect.js
            │   ├── jstree.contextmenu.js
            │   ├── jstree.dnd.js
            │   ├── jstree.js
            │   ├── jstree.massload.js
            │   ├── jstree.search.js
            │   ├── jstree.sort.js
            │   ├── jstree.state.js
            │   ├── jstree.types.js
            │   ├── jstree.unique.js
            │   ├── jstree.wholerow.js
            │   ├── misc.js
            │   ├── outro.js
            │   ├── sample.js
            │   ├── themes
            │   │   ├── base.less
            │   │   ├── default
            │   │   ├── default-dark
            │   │   ├── main.less
            │   │   ├── mixins.less
            │   │   └── responsive.less
            │   └── vakata-jstree.js
            └── test
                ├── unit
                │   ├── index.html
                │   ├── libs
                │   └── test.js
                └── visual
                    ├── desktop
                    ├── mobile
                    └── screenshots

588 directories, 995 files


实例下载地址

AngularJs创建的后台管理系统源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警