146 | Documentation v1.2.1 147 |
148 |149 | We are constatly doing updates on the product and documentation, 150 | so please check the online version. 151 |
152 |├── .env ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── Documentation └── documentation.html ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── genezio.yaml ├── jsconfig.json ├── package.json ├── public ├── apple-icon.png ├── favicon.ico ├── index.html └── manifest.json └── src ├── assets ├── css │ ├── argon-dashboard-react.css │ ├── argon-dashboard-react.css.map │ └── argon-dashboard-react.min.css ├── fonts │ ├── nucleo.eot │ ├── nucleo.ttf │ ├── nucleo.woff │ └── nucleo.woff2 ├── img │ ├── brand │ │ ├── argon-react-white.png │ │ ├── argon-react.png │ │ ├── blue.png │ │ ├── favicon.png │ │ └── white.png │ ├── icons │ │ └── common │ │ │ ├── github.svg │ │ │ └── google.svg │ └── theme │ │ ├── angular.jpg │ │ ├── bootstrap.jpg │ │ ├── profile-cover.jpg │ │ ├── react.jpg │ │ ├── sketch.jpg │ │ ├── team-1-800x800.jpg │ │ ├── team-2-800x800.jpg │ │ ├── team-3-800x800.jpg │ │ ├── team-4-800x800.jpg │ │ └── vue.jpg ├── plugins │ └── nucleo │ │ ├── css │ │ ├── nucleo-svg.css │ │ └── nucleo.css │ │ └── fonts │ │ ├── nucleo-icons.eot │ │ ├── nucleo-icons.svg │ │ ├── nucleo-icons.ttf │ │ ├── nucleo-icons.woff │ │ └── nucleo-icons.woff2 └── scss │ ├── argon-dashboard-react.scss │ ├── argon-dashboard │ ├── custom │ │ ├── _alert.scss │ │ ├── _avatar.scss │ │ ├── _badge.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _chart.scss │ │ ├── _close.scss │ │ ├── _components.scss │ │ ├── _content.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _footer.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _header.scss │ │ ├── _icons.scss │ │ ├── _input-group.scss │ │ ├── _list-group.scss │ │ ├── _map.scss │ │ ├── _mask.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _section.scss │ │ ├── _separator.scss │ │ ├── _tables.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── _vendors.scss │ │ ├── alerts │ │ │ ├── _alert-dismissible.scss │ │ │ └── _alert.scss │ │ ├── avatars │ │ │ ├── _avatar-group.scss │ │ │ └── _avatar.scss │ │ ├── badges │ │ │ ├── _badge-circle.scss │ │ │ ├── _badge-dot.scss │ │ │ └── _badge.scss │ │ ├── buttons │ │ │ ├── _button-brand.scss │ │ │ ├── _button-icon.scss │ │ │ └── _button.scss │ │ ├── cards │ │ │ ├── _card-animations.scss │ │ │ ├── _card-blockquote.scss │ │ │ ├── _card-profile.scss │ │ │ ├── _card-stats.scss │ │ │ └── _card.scss │ │ ├── charts │ │ │ └── _chart.scss │ │ ├── close │ │ │ └── _close.scss │ │ ├── custom-forms │ │ │ ├── _custom-checkbox.scss │ │ │ ├── _custom-control.scss │ │ │ ├── _custom-form.scss │ │ │ ├── _custom-radio.scss │ │ │ └── _custom-toggle.scss │ │ ├── dropdowns │ │ │ └── _dropdown.scss │ │ ├── footers │ │ │ └── _footer.scss │ │ ├── forms │ │ │ ├── _form-validation.scss │ │ │ ├── _form.scss │ │ │ └── _input-group.scss │ │ ├── headers │ │ │ └── _header.scss │ │ ├── icons │ │ │ ├── _icon-shape.scss │ │ │ └── _icon.scss │ │ ├── list-groups │ │ │ └── _list-group.scss │ │ ├── maps │ │ │ └── _map.scss │ │ ├── masks │ │ │ └── _mask.scss │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _buttons.scss │ │ │ ├── _forms.scss │ │ │ ├── _icon.scss │ │ │ ├── _modals.scss │ │ │ └── _popover.scss │ │ ├── modals │ │ │ └── _modal.scss │ │ ├── navbars │ │ │ ├── _navbar-collapse.scss │ │ │ ├── _navbar-dropdown.scss │ │ │ ├── _navbar-search.scss │ │ │ ├── _navbar-vertical.scss │ │ │ └── _navbar.scss │ │ ├── navs │ │ │ ├── _nav-pills.scss │ │ │ └── _nav.scss │ │ ├── paginations │ │ │ └── _pagination.scss │ │ ├── popovers │ │ │ └── _popover.scss │ │ ├── progresses │ │ │ └── _progress.scss │ │ ├── separators │ │ │ └── _separator.scss │ │ ├── tables │ │ │ └── _table.scss │ │ ├── type │ │ │ ├── _article.scss │ │ │ ├── _display.scss │ │ │ ├── _heading.scss │ │ │ └── _type.scss │ │ ├── utilities │ │ │ ├── _backgrounds.scss │ │ │ ├── _blurable.scss │ │ │ ├── _floating.scss │ │ │ ├── _helper.scss │ │ │ ├── _image.scss │ │ │ ├── _opacity.scss │ │ │ ├── _overflow.scss │ │ │ ├── _position.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _transform.scss │ │ └── vendors │ │ │ ├── _bootstrap-datepicker.scss │ │ │ ├── _headroom.scss │ │ │ ├── _nouislider.scss │ │ │ └── _scrollbar.scss │ └── docs │ │ ├── _clipboard-js.scss │ │ ├── _component-examples.scss │ │ ├── _content.scss │ │ ├── _footer.scss │ │ ├── _nav.scss │ │ ├── _prism.scss │ │ ├── _sidebar.scss │ │ └── _variables.scss │ └── react │ ├── _buttons.scss │ ├── _mixins.scss │ ├── _navbar-dropdown.scss │ ├── _navbar.scss │ ├── _tables.scss │ ├── bootstrap │ └── _spinners.scss │ ├── plugins │ └── _plugin-react-datetime.scss │ └── react-differences.scss ├── components ├── Footers │ ├── AdminFooter.js │ └── AuthFooter.js ├── Headers │ ├── Header.js │ └── UserHeader.js ├── Navbars │ ├── AdminNavbar.js │ └── AuthNavbar.js └── Sidebar │ └── Sidebar.js ├── index.js ├── layouts ├── Admin.js └── Auth.js ├── routes.js ├── variables └── charts.js └── views ├── Index.js └── examples ├── Icons.js ├── Login.js ├── Maps.js ├── Profile.js ├── Register.js └── Tables.js /.env: -------------------------------------------------------------------------------- 1 | GENERATE_SOURCEMAP=false -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Autocloser 2 | on: [issues] 3 | jobs: 4 | autoclose: 5 | runs-on: ubuntu-latest 6 | steps: 7 | - name: Issue auto-closer 8 | uses: roots/issue-closer-action@v1.1 9 | with: 10 | repo-token: ${{ secrets.GITHUB_TOKEN }} 11 | issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow our rules:\n\n
\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/argon-dashboard-react\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n\n\n" 12 | issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>) 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /node_modules 3 | package-lock.json 4 | /build 5 | .eslintcache 6 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | auto-install-peers=true 3 | strict-peer-dependencies=false -------------------------------------------------------------------------------- /Documentation/documentation.html: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | 24 | 28 | 32 | 33 |
149 | We are constatly doing updates on the product and documentation, 150 | so please check the online version. 151 |
152 |52 | 53 | 3.48% 54 | {" "} 55 | Since last month 56 |
57 |80 | 81 | 3.48% 82 | {" "} 83 | Since last week 84 |
85 |108 | 109 | 1.10% 110 | {" "} 111 | Since yesterday 112 |
113 |136 | 137 | 12% 138 | {" "} 139 | Since last month 140 |
141 |43 | This is your profile page. You can see the progress you've made 44 | with your work and manage your projects or assigned tasks 45 |
46 | 53 | 54 |68 | Use these awesome forms to login or create new account in 69 | your project for free. 70 |
71 | 72 |A premium Admin for React-Bootstrap, Bootstrap, React, and React Hooks.