├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENCE ├── README.md ├── babel.config.js ├── changelog.md ├── docs ├── css │ ├── app.a2767b2e.css │ └── chunk-vendors.ff8843e8.css ├── favicon.ico ├── fonts │ ├── Flaticon.76ed06ab.woff │ ├── Flaticon.90bc8831.ttf │ ├── Flaticon.96850e10.eot │ ├── fontawesome-webfont.674f50d2.eot │ ├── fontawesome-webfont.af7ae505.woff2 │ ├── fontawesome-webfont.b06871f2.ttf │ ├── fontawesome-webfont.fee66e71.woff │ ├── glyphicons-halflings-regular.448c34a5.woff2 │ ├── glyphicons-halflings-regular.f4769f9b.eot │ ├── glyphicons-halflings-regular.fa277232.woff │ ├── la-brands-400.54b0b4e7.woff2 │ ├── la-brands-400.a38ca9f0.eot │ ├── la-brands-400.bbf83f8b.ttf │ ├── la-brands-400.fb598c9c.woff │ ├── la-regular-400.2746742c.eot │ ├── la-regular-400.338f6f87.woff │ ├── la-regular-400.87dab6ff.ttf │ ├── la-regular-400.88d9d941.woff2 │ ├── la-solid-900.36fc2979.woff2 │ ├── la-solid-900.87292218.woff │ ├── la-solid-900.8c65fd3e.eot │ └── la-solid-900.bb49393b.ttf ├── img │ ├── 1.216434a8.jpg │ ├── 2.ae10b125.jpg │ ├── 3.31f48e63.jpg │ ├── 4.41922320.jpg │ ├── 5.35ae7c6c.jpg │ ├── Flaticon.f0e99e18.svg │ ├── a1.cbba3e98.jpg │ ├── a2.6a0e1ac8.jpg │ ├── a3.5422567a.jpg │ ├── a4.84c5b5e6.jpg │ ├── a5.88adc007.jpg │ ├── a6.5e0517fd.jpg │ ├── a7.8f79219a.png │ ├── arrow-down.ef356609.svg │ ├── bell-blue.f0894ceb.svg │ ├── bell.17fd0324.svg │ ├── calendar.7a218aa0.svg │ ├── close.f52e788e.svg │ ├── cube-blue.2b035fec.svg │ ├── cube.be187421.svg │ ├── email-blue.30bdbad6.svg │ ├── flip.a094f73c.svg │ ├── fontawesome-webfont.912ec66d.svg │ ├── glyphicons-halflings-regular.89889688.svg │ ├── home-blue.09cc7ca6.svg │ ├── home.e1745b23.svg │ ├── la-brands-400.9769d0a6.svg │ ├── la-regular-400.55c57a74.svg │ ├── la-solid-900.79be4e9f.svg │ ├── layout-blue.e94b2e02.svg │ ├── layout.4166a9f0.svg │ ├── menu.710da89c.svg │ ├── microsoft.4f4e02cd.png │ ├── person.a50f99b2.svg │ ├── power.befbdce7.svg │ ├── search-2.3e34b3bb.svg │ ├── settings-10.f2bb2b3a.svg │ ├── text-blue.84829343.svg │ └── text.e306f49b.svg ├── index.html └── js │ ├── app.9126c56f.js │ └── chunk-vendors.39f2eea7.js ├── jqueryStub.js ├── package.json ├── public ├── favicon.ico ├── images │ └── people │ │ ├── a1.jpg │ │ ├── a2.jpg │ │ ├── a3.jpg │ │ ├── a4.jpg │ │ ├── a5.jpg │ │ └── a6.jpg └── index.html ├── server.js ├── src ├── App.vue ├── Routes.js ├── assets │ ├── angular-logo.svg │ ├── angularjs-logo.svg │ ├── arrow.svg │ ├── avatar.png │ ├── back.svg │ ├── bag.svg │ ├── cancel.svg │ ├── cards │ │ ├── isometric.jpg │ │ ├── lifestyle.jpg │ │ ├── mountains.jpeg │ │ └── rns.png │ ├── chat │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── awesome-meme.jpg │ │ ├── chat-screen.png │ │ ├── download.svg │ │ ├── files.svg │ │ ├── images.svg │ │ ├── information.svg │ │ ├── links.svg │ │ ├── notifications.svg │ │ └── people.svg │ ├── check.svg │ ├── documentation │ │ ├── dribble-logo.svg │ │ ├── facebook-logo.svg │ │ ├── github-logo.svg │ │ ├── instagram-logo.svg │ │ ├── linkedin-logo.svg │ │ ├── sing-screenshot.jpg │ │ └── twitter-logo.svg │ ├── icons │ │ ├── arrow-down-blue.svg │ │ ├── arrow-down-second.svg │ │ ├── arrow-down.svg │ │ ├── bell-blue.svg │ │ ├── bell.svg │ │ ├── browser-blue.svg │ │ ├── browser-grey.svg │ │ ├── browser-seven.svg │ │ ├── browser-third.svg │ │ ├── browser-white.svg │ │ ├── browser.svg │ │ ├── calendar-blue.svg │ │ ├── calendar-white.svg │ │ ├── calendar.svg │ │ ├── close-blue.svg │ │ ├── close-second.svg │ │ ├── close.svg │ │ ├── copy-blue.svg │ │ ├── copy-grey.svg │ │ ├── copy-seven.svg │ │ ├── copy-third.svg │ │ ├── copy-white.svg │ │ ├── copy.svg │ │ ├── cube-blue.svg │ │ ├── cube.svg │ │ ├── email-blue.svg │ │ ├── email-grey.svg │ │ ├── email-seven.svg │ │ ├── email-third.svg │ │ ├── email-white.svg │ │ ├── email.svg │ │ ├── file-text-blue.svg │ │ ├── file-text-grey.svg │ │ ├── file-text-white.svg │ │ ├── file-text.svg │ │ ├── fire-blue.svg │ │ ├── fire-grey.svg │ │ ├── fire-seven.svg │ │ ├── fire-third.svg │ │ ├── fire-white.svg │ │ ├── fire.svg │ │ ├── flip-blue.svg │ │ ├── flip-second.svg │ │ ├── flip.svg │ │ ├── grid-blue.svg │ │ ├── grid-grey.svg │ │ ├── grid-seven.svg │ │ ├── grid-third.svg │ │ ├── grid-white.svg │ │ ├── grid.svg │ │ ├── home-blue.svg │ │ ├── home-grey.svg │ │ ├── home-seven.svg │ │ ├── home-third.svg │ │ ├── home-white.svg │ │ ├── home.svg │ │ ├── keypad-blue.svg │ │ ├── keypad-grey.svg │ │ ├── keypad-seven.svg │ │ ├── keypad-third.svg │ │ ├── keypad-white.svg │ │ ├── keypad.svg │ │ ├── layers-blue.svg │ │ ├── layers-grey.svg │ │ ├── layers-seven.svg │ │ ├── layers-third.svg │ │ ├── layers-white.svg │ │ ├── layers.svg │ │ ├── layout-blue.svg │ │ ├── layout-grey.svg │ │ ├── layout-seven.svg │ │ ├── layout-third.svg │ │ ├── layout-white.svg │ │ ├── layout.svg │ │ ├── list-blue.svg │ │ ├── list-grey.svg │ │ ├── list-third.svg │ │ ├── list-white.svg │ │ ├── list.svg │ │ ├── menu-blue.svg │ │ ├── menu-second.svg │ │ ├── menu.svg │ │ ├── message-circle-blue.svg │ │ ├── message-circle-grey.svg │ │ ├── message-circle-seven.svg │ │ ├── message-circle-third.svg │ │ ├── message-circle-white.svg │ │ ├── message-circle.svg │ │ ├── person-blue.svg │ │ ├── person-grey.svg │ │ ├── person-seven.svg │ │ ├── person-third.svg │ │ ├── person-white.svg │ │ ├── person.svg │ │ ├── pie-chart-blue.svg │ │ ├── pie-chart-grey.svg │ │ ├── pie-chart-seven.svg │ │ ├── pie-chart-third.svg │ │ ├── pie-chart-white.svg │ │ ├── pie-chart.svg │ │ ├── pin-blue.svg │ │ ├── pin-grey.svg │ │ ├── pin-seven.svg │ │ ├── pin-third.svg │ │ ├── pin-white.svg │ │ ├── pin.svg │ │ ├── power.svg │ │ ├── search-2-blue.svg │ │ ├── search-2-second.svg │ │ ├── search-2.svg │ │ ├── settings-10-blue.svg │ │ ├── settings-10-second.svg │ │ ├── settings-10.svg │ │ ├── shopping-bag-blue.svg │ │ ├── shopping-bag-grey.svg │ │ ├── shopping-bag-seven.svg │ │ ├── shopping-bag-third.svg │ │ ├── shopping-bag-white.svg │ │ ├── shopping-bag.svg │ │ ├── text-blue.svg │ │ └── text.svg │ ├── invoice-logo.png │ ├── js-logo.svg │ ├── logo.png │ ├── microsoft.png │ ├── payments │ │ ├── aexpress.svg │ │ ├── mastercard.svg │ │ ├── paypal.svg │ │ └── visa.svg │ ├── people │ │ ├── a1.jpg │ │ ├── a2.jpg │ │ ├── a3.jpg │ │ ├── a4.jpg │ │ ├── a5.jpg │ │ ├── a6.jpg │ │ └── a7.png │ ├── pictures │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── products │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── img1.jpg │ ├── react-logo.svg │ ├── search │ │ ├── 1.jpg │ │ ├── 13.jpg │ │ ├── 3.jpg │ │ ├── 5.jpg │ │ └── 8.jpg │ ├── sidebar │ │ ├── Fill │ │ │ ├── Caret down.svg │ │ │ ├── Cross.svg │ │ │ ├── Exchange.svg │ │ │ ├── Menu.svg │ │ │ └── Search.svg │ │ └── Outline │ │ │ ├── Add.svg │ │ │ ├── Apps.svg │ │ │ ├── Bank.svg │ │ │ ├── Cancel.svg │ │ │ ├── Chart-pie-alt.svg │ │ │ ├── Chat.svg │ │ │ ├── Columns.svg │ │ │ ├── Document.svg │ │ │ ├── Envelope.svg │ │ │ ├── Fire.svg │ │ │ ├── Home.svg │ │ │ ├── Image.svg │ │ │ ├── Layout.svg │ │ │ ├── Location.svg │ │ │ ├── Menu.svg │ │ │ ├── Rows.svg │ │ │ ├── Settings-adjust.svg │ │ │ ├── Settings-alt.svg │ │ │ ├── Settings.svg │ │ │ ├── Shopping-cart.svg │ │ │ ├── Stack.svg │ │ │ └── User.svg │ ├── slides │ │ ├── slide-1.jpg │ │ ├── slide-2.jpg │ │ └── slide-3.jpg │ ├── stars │ │ ├── star-filled.svg │ │ └── star.svg │ └── tables │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg ├── components │ ├── BreadcrumbHistory │ │ └── BreadcrumbHistory.vue │ ├── Chat │ │ ├── Chat.scss │ │ └── Chat.vue │ ├── Colorpicker │ │ ├── Colorpicker.scss │ │ └── Colorpicker.vue │ ├── Header │ │ ├── Header.scss │ │ └── Header.vue │ ├── Helper │ │ ├── Helper.scss │ │ └── Helper.vue │ ├── Layout │ │ ├── Layout.scss │ │ ├── Layout.vue │ │ └── tourSteps.js │ ├── Loader │ │ ├── Loader.scss │ │ └── Loader.vue │ ├── Notifications │ │ ├── Notifications.scss │ │ ├── Notifications.vue │ │ └── NotificationsDemo │ │ │ ├── ListGroup.scss │ │ │ ├── Messages.vue │ │ │ ├── NewNotificationsList.vue │ │ │ ├── NotificationsList.vue │ │ │ └── Progress.vue │ ├── Sidebar │ │ ├── NavLink │ │ │ ├── NavLink.scss │ │ │ └── NavLink.vue │ │ ├── Sidebar.scss │ │ └── Sidebar.vue │ ├── Skycon │ │ └── Skycon.vue │ ├── Sparklines │ │ ├── Sparklines.scss │ │ └── Sparklines.vue │ └── Widget │ │ ├── Widget.scss │ │ └── Widget.vue ├── config.js ├── core │ └── screenHelper.js ├── documentation │ ├── BreadcrumbHistory.vue │ ├── DocumentationHeader.vue │ ├── DocumentationLayout.vue │ ├── DocumentationSidebar.vue │ ├── pages │ │ ├── Libs.vue │ │ ├── Pages.vue │ │ ├── ScrollSpyComponent.vue │ │ ├── components │ │ │ ├── Alerts.vue │ │ │ ├── Badge.vue │ │ │ ├── Buttons.vue │ │ │ ├── Card.vue │ │ │ ├── Carousel.vue │ │ │ ├── Modal.vue │ │ │ ├── Nav.vue │ │ │ ├── Navbar.vue │ │ │ ├── Popovers.vue │ │ │ ├── Progress.vue │ │ │ └── Tabs.vue │ │ └── getting-started │ │ │ ├── Licenses.vue │ │ │ ├── Overview.vue │ │ │ └── QuickStart.vue │ └── styles.scss ├── fonts │ ├── flaticon │ │ ├── Flaticon.eot │ │ ├── Flaticon.svg │ │ ├── Flaticon.ttf │ │ ├── Flaticon.woff │ │ └── _flaticon.scss │ ├── font-awesome │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ └── glyphicons │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── main.js ├── mixins │ ├── auth.js │ ├── chat.js │ └── layout.js ├── pages │ ├── Charts │ │ ├── Apex │ │ │ ├── Apex.vue │ │ │ └── mock.js │ │ ├── Charts.scss │ │ ├── Charts.vue │ │ ├── Echarts │ │ │ ├── Echarts.scss │ │ │ ├── Echarts.vue │ │ │ └── mock.js │ │ ├── Highcharts │ │ │ ├── Highcharts.vue │ │ │ ├── mock.js │ │ │ ├── sunburstData.js │ │ │ └── usdeur.js │ │ └── mock.js │ ├── Chat │ │ ├── Chat.scss │ │ ├── Chat.vue │ │ ├── components │ │ │ ├── Avatar │ │ │ │ ├── Avatar.scss │ │ │ │ └── Avatar.vue │ │ │ ├── ChatDialog │ │ │ │ ├── ChatDialog.scss │ │ │ │ ├── ChatDialog.vue │ │ │ │ ├── ChatMessage.scss │ │ │ │ └── ChatMessage.vue │ │ │ ├── ChatInfo │ │ │ │ ├── ChatInfo.scss │ │ │ │ ├── ChatInfo.vue │ │ │ │ └── GroupList.vue │ │ │ ├── ChatList │ │ │ │ ├── ChatList.scss │ │ │ │ ├── ChatList.vue │ │ │ │ └── ChatListItem.vue │ │ │ ├── ChatSearch │ │ │ │ ├── ChatSearch.scss │ │ │ │ └── ChatSearch.vue │ │ │ └── OnlineStatus │ │ │ │ └── OnlineStatus.vue │ │ └── mock.js │ ├── Core │ │ ├── Colors │ │ │ └── Colors.vue │ │ ├── Grid │ │ │ └── Grid.vue │ │ └── Typography │ │ │ └── Typography.vue │ ├── Dashboard │ │ ├── Dashboard.scss │ │ ├── Dashboard.vue │ │ ├── components │ │ │ ├── BigStat │ │ │ │ ├── BigStat.scss │ │ │ │ └── BigStat.vue │ │ │ ├── MainChart │ │ │ │ └── MainChart.vue │ │ │ ├── Task │ │ │ │ ├── Task.scss │ │ │ │ └── Task.vue │ │ │ └── TaskContainer │ │ │ │ └── TaskContainer.vue │ │ └── mock.js │ ├── Ecommerce │ │ ├── Management │ │ │ ├── Management.scss │ │ │ ├── Management.vue │ │ │ └── components │ │ │ │ └── ProductEdit │ │ │ │ ├── ProductEdit.scss │ │ │ │ └── ProductEdit.vue │ │ ├── ProductPage │ │ │ ├── ProductPage.scss │ │ │ ├── ProductPage.vue │ │ │ └── components │ │ │ │ ├── Bag │ │ │ │ ├── Bag.scss │ │ │ │ └── Bag.vue │ │ │ │ ├── Banner │ │ │ │ ├── Banner.scss │ │ │ │ └── Banner.vue │ │ │ │ ├── Description │ │ │ │ ├── Description.scss │ │ │ │ └── Description.vue │ │ │ │ ├── General │ │ │ │ ├── General.scss │ │ │ │ └── General.vue │ │ │ │ ├── Rating │ │ │ │ ├── Rating.scss │ │ │ │ └── Rating.vue │ │ │ │ └── Selects │ │ │ │ ├── Selects.scss │ │ │ │ └── Selects.vue │ │ ├── ProductsGrid │ │ │ ├── ProductsGrid.scss │ │ │ ├── ProductsGrid.vue │ │ │ └── components │ │ │ │ ├── FilterElement │ │ │ │ ├── FilterElement.scss │ │ │ │ └── FilterElement.vue │ │ │ │ ├── MobileMenuOption │ │ │ │ ├── MobileMenuOption.scss │ │ │ │ └── MobileMenuOption.vue │ │ │ │ ├── MobileModal │ │ │ │ ├── MobileModal.scss │ │ │ │ └── MobileModal.vue │ │ │ │ ├── ModalHeader │ │ │ │ ├── ModalHeader.scss │ │ │ │ └── ModalHeader.vue │ │ │ │ └── ProductCard │ │ │ │ ├── ProductCard.scss │ │ │ │ └── ProductCard.vue │ │ └── mock.js │ ├── Email │ │ ├── Email.scss │ │ ├── Email.vue │ │ ├── components │ │ │ ├── Compose │ │ │ │ └── Compose.vue │ │ │ ├── Filters │ │ │ │ ├── Filters.scss │ │ │ │ └── Filters.vue │ │ │ ├── Message │ │ │ │ └── Message.vue │ │ │ ├── MessageAttachments │ │ │ │ ├── MessageAttachments.scss │ │ │ │ └── MessageAttachments.vue │ │ │ ├── MessageHeader │ │ │ │ ├── MessageHeader.scss │ │ │ │ └── MessageHeader.vue │ │ │ ├── MessageTable │ │ │ │ ├── MessageTable.scss │ │ │ │ └── MessageTable.vue │ │ │ └── MessageTableHeader │ │ │ │ ├── MessageTableHeader.scss │ │ │ │ └── MessageTableHeader.vue │ │ └── mock.js │ ├── Error │ │ ├── Error.scss │ │ └── Error.vue │ ├── Extra │ │ ├── Calendar │ │ │ ├── Calendar.scss │ │ │ └── Calendar.vue │ │ ├── Gallery │ │ │ ├── Gallery.scss │ │ │ └── Gallery.vue │ │ ├── Invoice │ │ │ ├── Invoice.scss │ │ │ └── Invoice.vue │ │ ├── LoginExample │ │ │ └── LoginExample.vue │ │ ├── Search │ │ │ ├── Search.scss │ │ │ └── Search.vue │ │ └── Timeline │ │ │ ├── Timeline.scss │ │ │ └── Timeline.vue │ ├── Forms │ │ ├── Elements │ │ │ ├── Elements.scss │ │ │ └── Elements.vue │ │ ├── Validation │ │ │ └── Validation.vue │ │ └── Wizard │ │ │ ├── Wizard.scss │ │ │ ├── Wizard.vue │ │ │ └── data.js │ ├── Grid │ │ ├── Grid.scss │ │ ├── Grid.vue │ │ └── mock.js │ ├── Icons │ │ ├── Icons.scss │ │ └── Icons.vue │ ├── Login │ │ └── Login.vue │ ├── Maps │ │ ├── Amcharts │ │ │ ├── Amcharts.scss │ │ │ ├── Amcharts.vue │ │ │ └── mock.js │ │ ├── Google.scss │ │ ├── Google.vue │ │ └── Google │ │ │ ├── Google.scss │ │ │ └── Google.vue │ ├── Notifications │ │ ├── Notifications.scss │ │ └── Notifications.vue │ ├── Package │ │ ├── Package.scss │ │ └── Package.vue │ ├── Profile │ │ ├── Profile.scss │ │ └── Profile.vue │ ├── Register │ │ └── Register.vue │ ├── Tables │ │ ├── Basic.scss │ │ ├── Basic.vue │ │ ├── Basic │ │ │ ├── Basic.scss │ │ │ └── Basic.vue │ │ └── Dynamic │ │ │ ├── Dynamic.scss │ │ │ ├── Dynamic.vue │ │ │ └── data.js │ ├── Typography │ │ └── Typography.vue │ ├── Ui │ │ ├── Alerts │ │ │ ├── Alerts.scss │ │ │ └── Alerts.vue │ │ ├── Badge │ │ │ └── Badge.vue │ │ ├── Buttons │ │ │ └── Buttons.vue │ │ ├── Card │ │ │ └── Card.vue │ │ ├── Carousel │ │ │ └── Carousel.vue │ │ ├── Icons │ │ │ ├── Icons.scss │ │ │ └── Icons.vue │ │ ├── Jumbotron │ │ │ └── Jumbotron.vue │ │ ├── ListGroups │ │ │ ├── ListGroups.scss │ │ │ └── ListGroups.vue │ │ ├── Modal │ │ │ └── Modal.vue │ │ ├── Nav │ │ │ └── Nav.vue │ │ ├── Navbar │ │ │ └── Navbar.vue │ │ ├── Notifications │ │ │ ├── Notifications.scss │ │ │ └── Notifications.vue │ │ ├── Popovers │ │ │ └── Popovers.vue │ │ ├── Progress │ │ │ └── Progress.vue │ │ └── Tabs │ │ │ └── Tabs.vue │ ├── Visits │ │ ├── Visits.scss │ │ ├── Visits.vue │ │ └── components │ │ │ ├── AreaChart │ │ │ └── AreaChart.vue │ │ │ ├── Calendar │ │ │ ├── Calendar.scss │ │ │ └── Calendar.vue │ │ │ └── Map │ │ │ ├── Map.scss │ │ │ ├── Map.vue │ │ │ └── mock.js │ └── Widgets │ │ ├── Widgets.scss │ │ ├── Widgets.vue │ │ └── components │ │ ├── changes-chart │ │ ├── ChangesChart.scss │ │ └── ChangesChart.vue │ │ ├── flot-charts │ │ ├── FlotCharts.scss │ │ └── FlotCharts.vue │ │ ├── nasdaq │ │ └── Nasdaq.vue │ │ ├── realtime-traffic │ │ └── RealtimeTraffic.vue │ │ └── years-map │ │ ├── MapData.js │ │ ├── YearsMap.scss │ │ └── YearsMap.vue ├── store │ ├── auth.js │ ├── chat.js │ ├── dashboard.js │ ├── index.js │ ├── layout.js │ ├── products.js │ └── register.js └── styles │ ├── _auth.scss │ ├── _base.scss │ ├── _general.scss │ ├── _icons.scss │ ├── _mixins.scss │ ├── _overrides.scss │ ├── _theme-variables.scss │ ├── _utils.scss │ ├── _variables.scss │ ├── app.scss │ └── theme.scss ├── vue.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/babel.config.js -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/css/app.a2767b2e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/css/app.a2767b2e.css -------------------------------------------------------------------------------- /docs/css/chunk-vendors.ff8843e8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/css/chunk-vendors.ff8843e8.css -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/Flaticon.76ed06ab.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/Flaticon.76ed06ab.woff -------------------------------------------------------------------------------- /docs/fonts/Flaticon.90bc8831.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/Flaticon.90bc8831.ttf -------------------------------------------------------------------------------- /docs/fonts/Flaticon.96850e10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/Flaticon.96850e10.eot -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.674f50d2.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/fontawesome-webfont.674f50d2.eot -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.af7ae505.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/fontawesome-webfont.af7ae505.woff2 -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.b06871f2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/fontawesome-webfont.b06871f2.ttf -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.fee66e71.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/fontawesome-webfont.fee66e71.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.448c34a5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/glyphicons-halflings-regular.448c34a5.woff2 -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.f4769f9b.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/glyphicons-halflings-regular.f4769f9b.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.fa277232.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/glyphicons-halflings-regular.fa277232.woff -------------------------------------------------------------------------------- /docs/fonts/la-brands-400.54b0b4e7.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-brands-400.54b0b4e7.woff2 -------------------------------------------------------------------------------- /docs/fonts/la-brands-400.a38ca9f0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-brands-400.a38ca9f0.eot -------------------------------------------------------------------------------- /docs/fonts/la-brands-400.bbf83f8b.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-brands-400.bbf83f8b.ttf -------------------------------------------------------------------------------- /docs/fonts/la-brands-400.fb598c9c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-brands-400.fb598c9c.woff -------------------------------------------------------------------------------- /docs/fonts/la-regular-400.2746742c.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-regular-400.2746742c.eot -------------------------------------------------------------------------------- /docs/fonts/la-regular-400.338f6f87.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-regular-400.338f6f87.woff -------------------------------------------------------------------------------- /docs/fonts/la-regular-400.87dab6ff.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-regular-400.87dab6ff.ttf -------------------------------------------------------------------------------- /docs/fonts/la-regular-400.88d9d941.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-regular-400.88d9d941.woff2 -------------------------------------------------------------------------------- /docs/fonts/la-solid-900.36fc2979.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-solid-900.36fc2979.woff2 -------------------------------------------------------------------------------- /docs/fonts/la-solid-900.87292218.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-solid-900.87292218.woff -------------------------------------------------------------------------------- /docs/fonts/la-solid-900.8c65fd3e.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-solid-900.8c65fd3e.eot -------------------------------------------------------------------------------- /docs/fonts/la-solid-900.bb49393b.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/fonts/la-solid-900.bb49393b.ttf -------------------------------------------------------------------------------- /docs/img/1.216434a8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/1.216434a8.jpg -------------------------------------------------------------------------------- /docs/img/2.ae10b125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/2.ae10b125.jpg -------------------------------------------------------------------------------- /docs/img/3.31f48e63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/3.31f48e63.jpg -------------------------------------------------------------------------------- /docs/img/4.41922320.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/4.41922320.jpg -------------------------------------------------------------------------------- /docs/img/5.35ae7c6c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/5.35ae7c6c.jpg -------------------------------------------------------------------------------- /docs/img/Flaticon.f0e99e18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/Flaticon.f0e99e18.svg -------------------------------------------------------------------------------- /docs/img/a1.cbba3e98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/a1.cbba3e98.jpg -------------------------------------------------------------------------------- /docs/img/a2.6a0e1ac8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/a2.6a0e1ac8.jpg -------------------------------------------------------------------------------- /docs/img/a3.5422567a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/a3.5422567a.jpg -------------------------------------------------------------------------------- /docs/img/a4.84c5b5e6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/a4.84c5b5e6.jpg -------------------------------------------------------------------------------- /docs/img/a5.88adc007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/a5.88adc007.jpg -------------------------------------------------------------------------------- /docs/img/a6.5e0517fd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/a6.5e0517fd.jpg -------------------------------------------------------------------------------- /docs/img/a7.8f79219a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/a7.8f79219a.png -------------------------------------------------------------------------------- /docs/img/arrow-down.ef356609.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/arrow-down.ef356609.svg -------------------------------------------------------------------------------- /docs/img/bell-blue.f0894ceb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/bell-blue.f0894ceb.svg -------------------------------------------------------------------------------- /docs/img/bell.17fd0324.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/bell.17fd0324.svg -------------------------------------------------------------------------------- /docs/img/calendar.7a218aa0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/calendar.7a218aa0.svg -------------------------------------------------------------------------------- /docs/img/close.f52e788e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/close.f52e788e.svg -------------------------------------------------------------------------------- /docs/img/cube-blue.2b035fec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/cube-blue.2b035fec.svg -------------------------------------------------------------------------------- /docs/img/cube.be187421.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/cube.be187421.svg -------------------------------------------------------------------------------- /docs/img/email-blue.30bdbad6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/email-blue.30bdbad6.svg -------------------------------------------------------------------------------- /docs/img/flip.a094f73c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/flip.a094f73c.svg -------------------------------------------------------------------------------- /docs/img/fontawesome-webfont.912ec66d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/fontawesome-webfont.912ec66d.svg -------------------------------------------------------------------------------- /docs/img/glyphicons-halflings-regular.89889688.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/glyphicons-halflings-regular.89889688.svg -------------------------------------------------------------------------------- /docs/img/home-blue.09cc7ca6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/home-blue.09cc7ca6.svg -------------------------------------------------------------------------------- /docs/img/home.e1745b23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/home.e1745b23.svg -------------------------------------------------------------------------------- /docs/img/la-brands-400.9769d0a6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/la-brands-400.9769d0a6.svg -------------------------------------------------------------------------------- /docs/img/la-regular-400.55c57a74.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/la-regular-400.55c57a74.svg -------------------------------------------------------------------------------- /docs/img/la-solid-900.79be4e9f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/la-solid-900.79be4e9f.svg -------------------------------------------------------------------------------- /docs/img/layout-blue.e94b2e02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/layout-blue.e94b2e02.svg -------------------------------------------------------------------------------- /docs/img/layout.4166a9f0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/layout.4166a9f0.svg -------------------------------------------------------------------------------- /docs/img/menu.710da89c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/menu.710da89c.svg -------------------------------------------------------------------------------- /docs/img/microsoft.4f4e02cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/microsoft.4f4e02cd.png -------------------------------------------------------------------------------- /docs/img/person.a50f99b2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/person.a50f99b2.svg -------------------------------------------------------------------------------- /docs/img/power.befbdce7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/power.befbdce7.svg -------------------------------------------------------------------------------- /docs/img/search-2.3e34b3bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/search-2.3e34b3bb.svg -------------------------------------------------------------------------------- /docs/img/settings-10.f2bb2b3a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/settings-10.f2bb2b3a.svg -------------------------------------------------------------------------------- /docs/img/text-blue.84829343.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/text-blue.84829343.svg -------------------------------------------------------------------------------- /docs/img/text.e306f49b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/img/text.e306f49b.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/app.9126c56f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/js/app.9126c56f.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.39f2eea7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/docs/js/chunk-vendors.39f2eea7.js -------------------------------------------------------------------------------- /jqueryStub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/jqueryStub.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/people/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/public/images/people/a1.jpg -------------------------------------------------------------------------------- /public/images/people/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/public/images/people/a2.jpg -------------------------------------------------------------------------------- /public/images/people/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/public/images/people/a3.jpg -------------------------------------------------------------------------------- /public/images/people/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/public/images/people/a4.jpg -------------------------------------------------------------------------------- /public/images/people/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/public/images/people/a5.jpg -------------------------------------------------------------------------------- /public/images/people/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/public/images/people/a6.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/public/index.html -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/server.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/Routes.js -------------------------------------------------------------------------------- /src/assets/angular-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/angular-logo.svg -------------------------------------------------------------------------------- /src/assets/angularjs-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/angularjs-logo.svg -------------------------------------------------------------------------------- /src/assets/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/arrow.svg -------------------------------------------------------------------------------- /src/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/avatar.png -------------------------------------------------------------------------------- /src/assets/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/back.svg -------------------------------------------------------------------------------- /src/assets/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/bag.svg -------------------------------------------------------------------------------- /src/assets/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/cancel.svg -------------------------------------------------------------------------------- /src/assets/cards/isometric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/cards/isometric.jpg -------------------------------------------------------------------------------- /src/assets/cards/lifestyle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/cards/lifestyle.jpg -------------------------------------------------------------------------------- /src/assets/cards/mountains.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/cards/mountains.jpeg -------------------------------------------------------------------------------- /src/assets/cards/rns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/cards/rns.png -------------------------------------------------------------------------------- /src/assets/chat/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/1.png -------------------------------------------------------------------------------- /src/assets/chat/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/2.png -------------------------------------------------------------------------------- /src/assets/chat/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/3.png -------------------------------------------------------------------------------- /src/assets/chat/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/4.png -------------------------------------------------------------------------------- /src/assets/chat/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/5.png -------------------------------------------------------------------------------- /src/assets/chat/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/6.png -------------------------------------------------------------------------------- /src/assets/chat/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/7.png -------------------------------------------------------------------------------- /src/assets/chat/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/8.png -------------------------------------------------------------------------------- /src/assets/chat/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/9.png -------------------------------------------------------------------------------- /src/assets/chat/awesome-meme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/awesome-meme.jpg -------------------------------------------------------------------------------- /src/assets/chat/chat-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/chat-screen.png -------------------------------------------------------------------------------- /src/assets/chat/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/download.svg -------------------------------------------------------------------------------- /src/assets/chat/files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/files.svg -------------------------------------------------------------------------------- /src/assets/chat/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/images.svg -------------------------------------------------------------------------------- /src/assets/chat/information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/information.svg -------------------------------------------------------------------------------- /src/assets/chat/links.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/links.svg -------------------------------------------------------------------------------- /src/assets/chat/notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/notifications.svg -------------------------------------------------------------------------------- /src/assets/chat/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/chat/people.svg -------------------------------------------------------------------------------- /src/assets/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/check.svg -------------------------------------------------------------------------------- /src/assets/documentation/dribble-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/documentation/dribble-logo.svg -------------------------------------------------------------------------------- /src/assets/documentation/facebook-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/documentation/facebook-logo.svg -------------------------------------------------------------------------------- /src/assets/documentation/github-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/documentation/github-logo.svg -------------------------------------------------------------------------------- /src/assets/documentation/instagram-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/documentation/instagram-logo.svg -------------------------------------------------------------------------------- /src/assets/documentation/linkedin-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/documentation/linkedin-logo.svg -------------------------------------------------------------------------------- /src/assets/documentation/sing-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/documentation/sing-screenshot.jpg -------------------------------------------------------------------------------- /src/assets/documentation/twitter-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/documentation/twitter-logo.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-down-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/arrow-down-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-down-second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/arrow-down-second.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/arrow-down.svg -------------------------------------------------------------------------------- /src/assets/icons/bell-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/bell-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/bell.svg -------------------------------------------------------------------------------- /src/assets/icons/browser-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/browser-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/browser-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/browser-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/browser-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/browser-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/browser-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/browser-third.svg -------------------------------------------------------------------------------- /src/assets/icons/browser-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/browser-white.svg -------------------------------------------------------------------------------- /src/assets/icons/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/browser.svg -------------------------------------------------------------------------------- /src/assets/icons/calendar-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/calendar-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/calendar-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/calendar-white.svg -------------------------------------------------------------------------------- /src/assets/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/calendar.svg -------------------------------------------------------------------------------- /src/assets/icons/close-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/close-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/close-second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/close-second.svg -------------------------------------------------------------------------------- /src/assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/close.svg -------------------------------------------------------------------------------- /src/assets/icons/copy-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/copy-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/copy-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/copy-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/copy-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/copy-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/copy-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/copy-third.svg -------------------------------------------------------------------------------- /src/assets/icons/copy-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/copy-white.svg -------------------------------------------------------------------------------- /src/assets/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/copy.svg -------------------------------------------------------------------------------- /src/assets/icons/cube-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/cube-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/cube.svg -------------------------------------------------------------------------------- /src/assets/icons/email-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/email-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/email-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/email-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/email-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/email-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/email-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/email-third.svg -------------------------------------------------------------------------------- /src/assets/icons/email-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/email-white.svg -------------------------------------------------------------------------------- /src/assets/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/email.svg -------------------------------------------------------------------------------- /src/assets/icons/file-text-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/file-text-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/file-text-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/file-text-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/file-text-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/file-text-white.svg -------------------------------------------------------------------------------- /src/assets/icons/file-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/file-text.svg -------------------------------------------------------------------------------- /src/assets/icons/fire-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/fire-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/fire-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/fire-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/fire-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/fire-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/fire-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/fire-third.svg -------------------------------------------------------------------------------- /src/assets/icons/fire-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/fire-white.svg -------------------------------------------------------------------------------- /src/assets/icons/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/fire.svg -------------------------------------------------------------------------------- /src/assets/icons/flip-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/flip-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/flip-second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/flip-second.svg -------------------------------------------------------------------------------- /src/assets/icons/flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/flip.svg -------------------------------------------------------------------------------- /src/assets/icons/grid-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/grid-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/grid-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/grid-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/grid-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/grid-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/grid-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/grid-third.svg -------------------------------------------------------------------------------- /src/assets/icons/grid-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/grid-white.svg -------------------------------------------------------------------------------- /src/assets/icons/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/grid.svg -------------------------------------------------------------------------------- /src/assets/icons/home-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/home-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/home-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/home-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/home-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/home-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/home-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/home-third.svg -------------------------------------------------------------------------------- /src/assets/icons/home-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/home-white.svg -------------------------------------------------------------------------------- /src/assets/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/home.svg -------------------------------------------------------------------------------- /src/assets/icons/keypad-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/keypad-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/keypad-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/keypad-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/keypad-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/keypad-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/keypad-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/keypad-third.svg -------------------------------------------------------------------------------- /src/assets/icons/keypad-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/keypad-white.svg -------------------------------------------------------------------------------- /src/assets/icons/keypad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/keypad.svg -------------------------------------------------------------------------------- /src/assets/icons/layers-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layers-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/layers-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layers-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/layers-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layers-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/layers-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layers-third.svg -------------------------------------------------------------------------------- /src/assets/icons/layers-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layers-white.svg -------------------------------------------------------------------------------- /src/assets/icons/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layers.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layout-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layout-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layout-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layout-third.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layout-white.svg -------------------------------------------------------------------------------- /src/assets/icons/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/layout.svg -------------------------------------------------------------------------------- /src/assets/icons/list-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/list-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/list-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/list-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/list-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/list-third.svg -------------------------------------------------------------------------------- /src/assets/icons/list-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/list-white.svg -------------------------------------------------------------------------------- /src/assets/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/list.svg -------------------------------------------------------------------------------- /src/assets/icons/menu-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/menu-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/menu-second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/menu-second.svg -------------------------------------------------------------------------------- /src/assets/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/menu.svg -------------------------------------------------------------------------------- /src/assets/icons/message-circle-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/message-circle-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/message-circle-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/message-circle-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/message-circle-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/message-circle-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/message-circle-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/message-circle-third.svg -------------------------------------------------------------------------------- /src/assets/icons/message-circle-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/message-circle-white.svg -------------------------------------------------------------------------------- /src/assets/icons/message-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/message-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/person-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/person-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/person-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/person-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/person-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/person-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/person-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/person-third.svg -------------------------------------------------------------------------------- /src/assets/icons/person-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/person-white.svg -------------------------------------------------------------------------------- /src/assets/icons/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/person.svg -------------------------------------------------------------------------------- /src/assets/icons/pie-chart-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pie-chart-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/pie-chart-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pie-chart-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/pie-chart-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pie-chart-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/pie-chart-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pie-chart-third.svg -------------------------------------------------------------------------------- /src/assets/icons/pie-chart-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pie-chart-white.svg -------------------------------------------------------------------------------- /src/assets/icons/pie-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pie-chart.svg -------------------------------------------------------------------------------- /src/assets/icons/pin-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pin-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/pin-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pin-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/pin-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pin-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/pin-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pin-third.svg -------------------------------------------------------------------------------- /src/assets/icons/pin-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pin-white.svg -------------------------------------------------------------------------------- /src/assets/icons/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/pin.svg -------------------------------------------------------------------------------- /src/assets/icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/power.svg -------------------------------------------------------------------------------- /src/assets/icons/search-2-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/search-2-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/search-2-second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/search-2-second.svg -------------------------------------------------------------------------------- /src/assets/icons/search-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/search-2.svg -------------------------------------------------------------------------------- /src/assets/icons/settings-10-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/settings-10-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/settings-10-second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/settings-10-second.svg -------------------------------------------------------------------------------- /src/assets/icons/settings-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/settings-10.svg -------------------------------------------------------------------------------- /src/assets/icons/shopping-bag-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/shopping-bag-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/shopping-bag-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/shopping-bag-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/shopping-bag-seven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/shopping-bag-seven.svg -------------------------------------------------------------------------------- /src/assets/icons/shopping-bag-third.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/shopping-bag-third.svg -------------------------------------------------------------------------------- /src/assets/icons/shopping-bag-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/shopping-bag-white.svg -------------------------------------------------------------------------------- /src/assets/icons/shopping-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/shopping-bag.svg -------------------------------------------------------------------------------- /src/assets/icons/text-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/text-blue.svg -------------------------------------------------------------------------------- /src/assets/icons/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/icons/text.svg -------------------------------------------------------------------------------- /src/assets/invoice-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/invoice-logo.png -------------------------------------------------------------------------------- /src/assets/js-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/js-logo.svg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/microsoft.png -------------------------------------------------------------------------------- /src/assets/payments/aexpress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/payments/aexpress.svg -------------------------------------------------------------------------------- /src/assets/payments/mastercard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/payments/mastercard.svg -------------------------------------------------------------------------------- /src/assets/payments/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/payments/paypal.svg -------------------------------------------------------------------------------- /src/assets/payments/visa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/payments/visa.svg -------------------------------------------------------------------------------- /src/assets/people/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/people/a1.jpg -------------------------------------------------------------------------------- /src/assets/people/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/people/a2.jpg -------------------------------------------------------------------------------- /src/assets/people/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/people/a3.jpg -------------------------------------------------------------------------------- /src/assets/people/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/people/a4.jpg -------------------------------------------------------------------------------- /src/assets/people/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/people/a5.jpg -------------------------------------------------------------------------------- /src/assets/people/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/people/a6.jpg -------------------------------------------------------------------------------- /src/assets/people/a7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/people/a7.png -------------------------------------------------------------------------------- /src/assets/pictures/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/1.jpg -------------------------------------------------------------------------------- /src/assets/pictures/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/10.jpg -------------------------------------------------------------------------------- /src/assets/pictures/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/11.jpg -------------------------------------------------------------------------------- /src/assets/pictures/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/13.jpg -------------------------------------------------------------------------------- /src/assets/pictures/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/14.jpg -------------------------------------------------------------------------------- /src/assets/pictures/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/15.jpg -------------------------------------------------------------------------------- /src/assets/pictures/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/16.jpg -------------------------------------------------------------------------------- /src/assets/pictures/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/17.jpg -------------------------------------------------------------------------------- /src/assets/pictures/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/18.jpg -------------------------------------------------------------------------------- /src/assets/pictures/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/19.jpg -------------------------------------------------------------------------------- /src/assets/pictures/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/2.jpg -------------------------------------------------------------------------------- /src/assets/pictures/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/20.jpg -------------------------------------------------------------------------------- /src/assets/pictures/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/21.jpg -------------------------------------------------------------------------------- /src/assets/pictures/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/3.jpg -------------------------------------------------------------------------------- /src/assets/pictures/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/4.jpg -------------------------------------------------------------------------------- /src/assets/pictures/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/5.jpg -------------------------------------------------------------------------------- /src/assets/pictures/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/6.jpg -------------------------------------------------------------------------------- /src/assets/pictures/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/7.jpg -------------------------------------------------------------------------------- /src/assets/pictures/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/8.jpg -------------------------------------------------------------------------------- /src/assets/pictures/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/pictures/9.jpg -------------------------------------------------------------------------------- /src/assets/products/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/products/1.png -------------------------------------------------------------------------------- /src/assets/products/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/products/2.png -------------------------------------------------------------------------------- /src/assets/products/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/products/3.png -------------------------------------------------------------------------------- /src/assets/products/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/products/4.png -------------------------------------------------------------------------------- /src/assets/products/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/products/5.png -------------------------------------------------------------------------------- /src/assets/products/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/products/6.png -------------------------------------------------------------------------------- /src/assets/products/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/products/img1.jpg -------------------------------------------------------------------------------- /src/assets/react-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/react-logo.svg -------------------------------------------------------------------------------- /src/assets/search/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/search/1.jpg -------------------------------------------------------------------------------- /src/assets/search/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/search/13.jpg -------------------------------------------------------------------------------- /src/assets/search/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/search/3.jpg -------------------------------------------------------------------------------- /src/assets/search/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/search/5.jpg -------------------------------------------------------------------------------- /src/assets/search/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/search/8.jpg -------------------------------------------------------------------------------- /src/assets/sidebar/Fill/Caret down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Fill/Caret down.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Fill/Cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Fill/Cross.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Fill/Exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Fill/Exchange.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Fill/Menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Fill/Menu.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Fill/Search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Fill/Search.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Add.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Apps.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Bank.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Cancel.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Chart-pie-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Chart-pie-alt.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Chat.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Columns.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Document.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Envelope.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Fire.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Home.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Image.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Layout.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Location.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Menu.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Rows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Rows.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Settings-adjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Settings-adjust.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Settings-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Settings-alt.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Settings.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Shopping-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Shopping-cart.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/Stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/Stack.svg -------------------------------------------------------------------------------- /src/assets/sidebar/Outline/User.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/sidebar/Outline/User.svg -------------------------------------------------------------------------------- /src/assets/slides/slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/slides/slide-1.jpg -------------------------------------------------------------------------------- /src/assets/slides/slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/slides/slide-2.jpg -------------------------------------------------------------------------------- /src/assets/slides/slide-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/slides/slide-3.jpg -------------------------------------------------------------------------------- /src/assets/stars/star-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/stars/star-filled.svg -------------------------------------------------------------------------------- /src/assets/stars/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/stars/star.svg -------------------------------------------------------------------------------- /src/assets/tables/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/tables/1.jpg -------------------------------------------------------------------------------- /src/assets/tables/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/tables/2.jpg -------------------------------------------------------------------------------- /src/assets/tables/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/tables/3.jpg -------------------------------------------------------------------------------- /src/assets/tables/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/tables/4.jpg -------------------------------------------------------------------------------- /src/assets/tables/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/assets/tables/5.jpg -------------------------------------------------------------------------------- /src/components/BreadcrumbHistory/BreadcrumbHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/BreadcrumbHistory/BreadcrumbHistory.vue -------------------------------------------------------------------------------- /src/components/Chat/Chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Chat/Chat.scss -------------------------------------------------------------------------------- /src/components/Chat/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Chat/Chat.vue -------------------------------------------------------------------------------- /src/components/Colorpicker/Colorpicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Colorpicker/Colorpicker.scss -------------------------------------------------------------------------------- /src/components/Colorpicker/Colorpicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Colorpicker/Colorpicker.vue -------------------------------------------------------------------------------- /src/components/Header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Header/Header.scss -------------------------------------------------------------------------------- /src/components/Header/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Header/Header.vue -------------------------------------------------------------------------------- /src/components/Helper/Helper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Helper/Helper.scss -------------------------------------------------------------------------------- /src/components/Helper/Helper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Helper/Helper.vue -------------------------------------------------------------------------------- /src/components/Layout/Layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Layout/Layout.scss -------------------------------------------------------------------------------- /src/components/Layout/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Layout/Layout.vue -------------------------------------------------------------------------------- /src/components/Layout/tourSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Layout/tourSteps.js -------------------------------------------------------------------------------- /src/components/Loader/Loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Loader/Loader.scss -------------------------------------------------------------------------------- /src/components/Loader/Loader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Loader/Loader.vue -------------------------------------------------------------------------------- /src/components/Notifications/Notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Notifications/Notifications.scss -------------------------------------------------------------------------------- /src/components/Notifications/Notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Notifications/Notifications.vue -------------------------------------------------------------------------------- /src/components/Notifications/NotificationsDemo/ListGroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Notifications/NotificationsDemo/ListGroup.scss -------------------------------------------------------------------------------- /src/components/Notifications/NotificationsDemo/Messages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Notifications/NotificationsDemo/Messages.vue -------------------------------------------------------------------------------- /src/components/Notifications/NotificationsDemo/NewNotificationsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Notifications/NotificationsDemo/NewNotificationsList.vue -------------------------------------------------------------------------------- /src/components/Notifications/NotificationsDemo/NotificationsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Notifications/NotificationsDemo/NotificationsList.vue -------------------------------------------------------------------------------- /src/components/Notifications/NotificationsDemo/Progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Notifications/NotificationsDemo/Progress.vue -------------------------------------------------------------------------------- /src/components/Sidebar/NavLink/NavLink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Sidebar/NavLink/NavLink.scss -------------------------------------------------------------------------------- /src/components/Sidebar/NavLink/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Sidebar/NavLink/NavLink.vue -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Sidebar/Sidebar.scss -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Sidebar/Sidebar.vue -------------------------------------------------------------------------------- /src/components/Skycon/Skycon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Skycon/Skycon.vue -------------------------------------------------------------------------------- /src/components/Sparklines/Sparklines.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Sparklines/Sparklines.scss -------------------------------------------------------------------------------- /src/components/Sparklines/Sparklines.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Sparklines/Sparklines.vue -------------------------------------------------------------------------------- /src/components/Widget/Widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Widget/Widget.scss -------------------------------------------------------------------------------- /src/components/Widget/Widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/components/Widget/Widget.vue -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/config.js -------------------------------------------------------------------------------- /src/core/screenHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/core/screenHelper.js -------------------------------------------------------------------------------- /src/documentation/BreadcrumbHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/BreadcrumbHistory.vue -------------------------------------------------------------------------------- /src/documentation/DocumentationHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/DocumentationHeader.vue -------------------------------------------------------------------------------- /src/documentation/DocumentationLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/DocumentationLayout.vue -------------------------------------------------------------------------------- /src/documentation/DocumentationSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/DocumentationSidebar.vue -------------------------------------------------------------------------------- /src/documentation/pages/Libs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/Libs.vue -------------------------------------------------------------------------------- /src/documentation/pages/Pages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/Pages.vue -------------------------------------------------------------------------------- /src/documentation/pages/ScrollSpyComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/ScrollSpyComponent.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Alerts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Alerts.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Badge.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Buttons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Buttons.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Card.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Carousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Carousel.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Modal.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Nav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Nav.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Navbar.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Popovers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Popovers.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Progress.vue -------------------------------------------------------------------------------- /src/documentation/pages/components/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/components/Tabs.vue -------------------------------------------------------------------------------- /src/documentation/pages/getting-started/Licenses.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/getting-started/Licenses.vue -------------------------------------------------------------------------------- /src/documentation/pages/getting-started/Overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/getting-started/Overview.vue -------------------------------------------------------------------------------- /src/documentation/pages/getting-started/QuickStart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/pages/getting-started/QuickStart.vue -------------------------------------------------------------------------------- /src/documentation/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/documentation/styles.scss -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/flaticon/Flaticon.eot -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/flaticon/Flaticon.svg -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/flaticon/Flaticon.ttf -------------------------------------------------------------------------------- /src/fonts/flaticon/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/flaticon/Flaticon.woff -------------------------------------------------------------------------------- /src/fonts/flaticon/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/flaticon/_flaticon.scss -------------------------------------------------------------------------------- /src/fonts/font-awesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/font-awesome/FontAwesome.otf -------------------------------------------------------------------------------- /src/fonts/font-awesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/font-awesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/fonts/font-awesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/font-awesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/fonts/font-awesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/font-awesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/fonts/font-awesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/font-awesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/fonts/font-awesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/font-awesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/fonts/glyphicons/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/glyphicons/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/glyphicons/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/fonts/glyphicons/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fonts/glyphicons/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/glyphicons/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/fonts/glyphicons/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixins/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/mixins/auth.js -------------------------------------------------------------------------------- /src/mixins/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/mixins/chat.js -------------------------------------------------------------------------------- /src/mixins/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/mixins/layout.js -------------------------------------------------------------------------------- /src/pages/Charts/Apex/Apex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Charts/Apex/Apex.vue -------------------------------------------------------------------------------- /src/pages/Charts/Apex/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Charts/Apex/mock.js -------------------------------------------------------------------------------- /src/pages/Charts/Charts.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/Charts/Charts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Charts/Charts.vue -------------------------------------------------------------------------------- /src/pages/Charts/Echarts/Echarts.scss: -------------------------------------------------------------------------------- 1 | .echarts { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /src/pages/Charts/Echarts/Echarts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Charts/Echarts/Echarts.vue -------------------------------------------------------------------------------- /src/pages/Charts/Echarts/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Charts/Echarts/mock.js -------------------------------------------------------------------------------- /src/pages/Charts/Highcharts/Highcharts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Charts/Highcharts/Highcharts.vue -------------------------------------------------------------------------------- /src/pages/Charts/Highcharts/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Charts/Highcharts/mock.js -------------------------------------------------------------------------------- /src/pages/Charts/Highcharts/sunburstData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Charts/Highcharts/sunburstData.js -------------------------------------------------------------------------------- /src/pages/Charts/Highcharts/usdeur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Charts/Highcharts/usdeur.js -------------------------------------------------------------------------------- /src/pages/Charts/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Charts/mock.js -------------------------------------------------------------------------------- /src/pages/Chat/Chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/Chat.scss -------------------------------------------------------------------------------- /src/pages/Chat/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/Chat.vue -------------------------------------------------------------------------------- /src/pages/Chat/components/Avatar/Avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/Avatar/Avatar.scss -------------------------------------------------------------------------------- /src/pages/Chat/components/Avatar/Avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/Avatar/Avatar.vue -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatDialog/ChatDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatDialog/ChatDialog.scss -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatDialog/ChatDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatDialog/ChatDialog.vue -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatDialog/ChatMessage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatDialog/ChatMessage.scss -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatDialog/ChatMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatDialog/ChatMessage.vue -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatInfo/ChatInfo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatInfo/ChatInfo.scss -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatInfo/ChatInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatInfo/ChatInfo.vue -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatInfo/GroupList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatInfo/GroupList.vue -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatList/ChatList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatList/ChatList.scss -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatList/ChatList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatList/ChatList.vue -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatList/ChatListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatList/ChatListItem.vue -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatSearch/ChatSearch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatSearch/ChatSearch.scss -------------------------------------------------------------------------------- /src/pages/Chat/components/ChatSearch/ChatSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/ChatSearch/ChatSearch.vue -------------------------------------------------------------------------------- /src/pages/Chat/components/OnlineStatus/OnlineStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/components/OnlineStatus/OnlineStatus.vue -------------------------------------------------------------------------------- /src/pages/Chat/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Chat/mock.js -------------------------------------------------------------------------------- /src/pages/Core/Colors/Colors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Core/Colors/Colors.vue -------------------------------------------------------------------------------- /src/pages/Core/Grid/Grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Core/Grid/Grid.vue -------------------------------------------------------------------------------- /src/pages/Core/Typography/Typography.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Core/Typography/Typography.vue -------------------------------------------------------------------------------- /src/pages/Dashboard/Dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Dashboard/Dashboard.scss -------------------------------------------------------------------------------- /src/pages/Dashboard/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Dashboard/Dashboard.vue -------------------------------------------------------------------------------- /src/pages/Dashboard/components/BigStat/BigStat.scss: -------------------------------------------------------------------------------- 1 | .bigStatTitle { 2 | width: 220px; 3 | margin-right: 0.5rem; 4 | } 5 | -------------------------------------------------------------------------------- /src/pages/Dashboard/components/BigStat/BigStat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Dashboard/components/BigStat/BigStat.vue -------------------------------------------------------------------------------- /src/pages/Dashboard/components/MainChart/MainChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Dashboard/components/MainChart/MainChart.vue -------------------------------------------------------------------------------- /src/pages/Dashboard/components/Task/Task.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Dashboard/components/Task/Task.scss -------------------------------------------------------------------------------- /src/pages/Dashboard/components/Task/Task.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Dashboard/components/Task/Task.vue -------------------------------------------------------------------------------- /src/pages/Dashboard/components/TaskContainer/TaskContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Dashboard/components/TaskContainer/TaskContainer.vue -------------------------------------------------------------------------------- /src/pages/Dashboard/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Dashboard/mock.js -------------------------------------------------------------------------------- /src/pages/Ecommerce/Management/Management.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/Management/Management.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/Management/Management.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/Management/Management.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/Management/components/ProductEdit/ProductEdit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/Management/components/ProductEdit/ProductEdit.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/Management/components/ProductEdit/ProductEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/Management/components/ProductEdit/ProductEdit.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/ProductPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/ProductPage.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/ProductPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/ProductPage.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/Bag/Bag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/Bag/Bag.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/Bag/Bag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/Bag/Bag.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/Banner/Banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/Banner/Banner.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/Banner/Banner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/Banner/Banner.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/Description/Description.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/Description/Description.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/Description/Description.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/Description/Description.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/General/General.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/General/General.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/General/General.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/General/General.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/Rating/Rating.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/Rating/Rating.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/Rating/Rating.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/Rating/Rating.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/Selects/Selects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/Selects/Selects.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductPage/components/Selects/Selects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductPage/components/Selects/Selects.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/ProductsGrid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/ProductsGrid.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/ProductsGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/ProductsGrid.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/components/FilterElement/FilterElement.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/components/FilterElement/FilterElement.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/components/FilterElement/FilterElement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/components/FilterElement/FilterElement.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/components/MobileMenuOption/MobileMenuOption.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/components/MobileMenuOption/MobileMenuOption.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/components/MobileMenuOption/MobileMenuOption.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/components/MobileMenuOption/MobileMenuOption.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/components/MobileModal/MobileModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/components/MobileModal/MobileModal.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/components/MobileModal/MobileModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/components/MobileModal/MobileModal.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/components/ModalHeader/ModalHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/components/ModalHeader/ModalHeader.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/components/ModalHeader/ModalHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/components/ModalHeader/ModalHeader.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/components/ProductCard/ProductCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/components/ProductCard/ProductCard.scss -------------------------------------------------------------------------------- /src/pages/Ecommerce/ProductsGrid/components/ProductCard/ProductCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/ProductsGrid/components/ProductCard/ProductCard.vue -------------------------------------------------------------------------------- /src/pages/Ecommerce/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ecommerce/mock.js -------------------------------------------------------------------------------- /src/pages/Email/Email.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/Email.scss -------------------------------------------------------------------------------- /src/pages/Email/Email.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/Email.vue -------------------------------------------------------------------------------- /src/pages/Email/components/Compose/Compose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/Compose/Compose.vue -------------------------------------------------------------------------------- /src/pages/Email/components/Filters/Filters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/Filters/Filters.scss -------------------------------------------------------------------------------- /src/pages/Email/components/Filters/Filters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/Filters/Filters.vue -------------------------------------------------------------------------------- /src/pages/Email/components/Message/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/Message/Message.vue -------------------------------------------------------------------------------- /src/pages/Email/components/MessageAttachments/MessageAttachments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/MessageAttachments/MessageAttachments.scss -------------------------------------------------------------------------------- /src/pages/Email/components/MessageAttachments/MessageAttachments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/MessageAttachments/MessageAttachments.vue -------------------------------------------------------------------------------- /src/pages/Email/components/MessageHeader/MessageHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/MessageHeader/MessageHeader.scss -------------------------------------------------------------------------------- /src/pages/Email/components/MessageHeader/MessageHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/MessageHeader/MessageHeader.vue -------------------------------------------------------------------------------- /src/pages/Email/components/MessageTable/MessageTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/MessageTable/MessageTable.scss -------------------------------------------------------------------------------- /src/pages/Email/components/MessageTable/MessageTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/MessageTable/MessageTable.vue -------------------------------------------------------------------------------- /src/pages/Email/components/MessageTableHeader/MessageTableHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/MessageTableHeader/MessageTableHeader.scss -------------------------------------------------------------------------------- /src/pages/Email/components/MessageTableHeader/MessageTableHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/components/MessageTableHeader/MessageTableHeader.vue -------------------------------------------------------------------------------- /src/pages/Email/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Email/mock.js -------------------------------------------------------------------------------- /src/pages/Error/Error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Error/Error.scss -------------------------------------------------------------------------------- /src/pages/Error/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Error/Error.vue -------------------------------------------------------------------------------- /src/pages/Extra/Calendar/Calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/Calendar/Calendar.scss -------------------------------------------------------------------------------- /src/pages/Extra/Calendar/Calendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/Calendar/Calendar.vue -------------------------------------------------------------------------------- /src/pages/Extra/Gallery/Gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/Gallery/Gallery.scss -------------------------------------------------------------------------------- /src/pages/Extra/Gallery/Gallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/Gallery/Gallery.vue -------------------------------------------------------------------------------- /src/pages/Extra/Invoice/Invoice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/Invoice/Invoice.scss -------------------------------------------------------------------------------- /src/pages/Extra/Invoice/Invoice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/Invoice/Invoice.vue -------------------------------------------------------------------------------- /src/pages/Extra/LoginExample/LoginExample.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/LoginExample/LoginExample.vue -------------------------------------------------------------------------------- /src/pages/Extra/Search/Search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/Search/Search.scss -------------------------------------------------------------------------------- /src/pages/Extra/Search/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/Search/Search.vue -------------------------------------------------------------------------------- /src/pages/Extra/Timeline/Timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/Timeline/Timeline.scss -------------------------------------------------------------------------------- /src/pages/Extra/Timeline/Timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Extra/Timeline/Timeline.vue -------------------------------------------------------------------------------- /src/pages/Forms/Elements/Elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Forms/Elements/Elements.scss -------------------------------------------------------------------------------- /src/pages/Forms/Elements/Elements.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Forms/Elements/Elements.vue -------------------------------------------------------------------------------- /src/pages/Forms/Validation/Validation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Forms/Validation/Validation.vue -------------------------------------------------------------------------------- /src/pages/Forms/Wizard/Wizard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Forms/Wizard/Wizard.scss -------------------------------------------------------------------------------- /src/pages/Forms/Wizard/Wizard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Forms/Wizard/Wizard.vue -------------------------------------------------------------------------------- /src/pages/Forms/Wizard/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Forms/Wizard/data.js -------------------------------------------------------------------------------- /src/pages/Grid/Grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Grid/Grid.scss -------------------------------------------------------------------------------- /src/pages/Grid/Grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Grid/Grid.vue -------------------------------------------------------------------------------- /src/pages/Grid/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Grid/mock.js -------------------------------------------------------------------------------- /src/pages/Icons/Icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Icons/Icons.scss -------------------------------------------------------------------------------- /src/pages/Icons/Icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Icons/Icons.vue -------------------------------------------------------------------------------- /src/pages/Login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Login/Login.vue -------------------------------------------------------------------------------- /src/pages/Maps/Amcharts/Amcharts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Maps/Amcharts/Amcharts.scss -------------------------------------------------------------------------------- /src/pages/Maps/Amcharts/Amcharts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Maps/Amcharts/Amcharts.vue -------------------------------------------------------------------------------- /src/pages/Maps/Amcharts/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Maps/Amcharts/mock.js -------------------------------------------------------------------------------- /src/pages/Maps/Google.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Maps/Google.scss -------------------------------------------------------------------------------- /src/pages/Maps/Google.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Maps/Google.vue -------------------------------------------------------------------------------- /src/pages/Maps/Google/Google.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Maps/Google/Google.scss -------------------------------------------------------------------------------- /src/pages/Maps/Google/Google.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Maps/Google/Google.vue -------------------------------------------------------------------------------- /src/pages/Notifications/Notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Notifications/Notifications.scss -------------------------------------------------------------------------------- /src/pages/Notifications/Notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Notifications/Notifications.vue -------------------------------------------------------------------------------- /src/pages/Package/Package.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Package/Package.scss -------------------------------------------------------------------------------- /src/pages/Package/Package.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Package/Package.vue -------------------------------------------------------------------------------- /src/pages/Profile/Profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Profile/Profile.scss -------------------------------------------------------------------------------- /src/pages/Profile/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Profile/Profile.vue -------------------------------------------------------------------------------- /src/pages/Register/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Register/Register.vue -------------------------------------------------------------------------------- /src/pages/Tables/Basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Tables/Basic.scss -------------------------------------------------------------------------------- /src/pages/Tables/Basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Tables/Basic.vue -------------------------------------------------------------------------------- /src/pages/Tables/Basic/Basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Tables/Basic/Basic.scss -------------------------------------------------------------------------------- /src/pages/Tables/Basic/Basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Tables/Basic/Basic.vue -------------------------------------------------------------------------------- /src/pages/Tables/Dynamic/Dynamic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Tables/Dynamic/Dynamic.scss -------------------------------------------------------------------------------- /src/pages/Tables/Dynamic/Dynamic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Tables/Dynamic/Dynamic.vue -------------------------------------------------------------------------------- /src/pages/Tables/Dynamic/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Tables/Dynamic/data.js -------------------------------------------------------------------------------- /src/pages/Typography/Typography.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Typography/Typography.vue -------------------------------------------------------------------------------- /src/pages/Ui/Alerts/Alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Alerts/Alerts.scss -------------------------------------------------------------------------------- /src/pages/Ui/Alerts/Alerts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Alerts/Alerts.vue -------------------------------------------------------------------------------- /src/pages/Ui/Badge/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Badge/Badge.vue -------------------------------------------------------------------------------- /src/pages/Ui/Buttons/Buttons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Buttons/Buttons.vue -------------------------------------------------------------------------------- /src/pages/Ui/Card/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Card/Card.vue -------------------------------------------------------------------------------- /src/pages/Ui/Carousel/Carousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Carousel/Carousel.vue -------------------------------------------------------------------------------- /src/pages/Ui/Icons/Icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Icons/Icons.scss -------------------------------------------------------------------------------- /src/pages/Ui/Icons/Icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Icons/Icons.vue -------------------------------------------------------------------------------- /src/pages/Ui/Jumbotron/Jumbotron.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Jumbotron/Jumbotron.vue -------------------------------------------------------------------------------- /src/pages/Ui/ListGroups/ListGroups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/ListGroups/ListGroups.scss -------------------------------------------------------------------------------- /src/pages/Ui/ListGroups/ListGroups.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/ListGroups/ListGroups.vue -------------------------------------------------------------------------------- /src/pages/Ui/Modal/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Modal/Modal.vue -------------------------------------------------------------------------------- /src/pages/Ui/Nav/Nav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Nav/Nav.vue -------------------------------------------------------------------------------- /src/pages/Ui/Navbar/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Navbar/Navbar.vue -------------------------------------------------------------------------------- /src/pages/Ui/Notifications/Notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Notifications/Notifications.scss -------------------------------------------------------------------------------- /src/pages/Ui/Notifications/Notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Notifications/Notifications.vue -------------------------------------------------------------------------------- /src/pages/Ui/Popovers/Popovers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Popovers/Popovers.vue -------------------------------------------------------------------------------- /src/pages/Ui/Progress/Progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Progress/Progress.vue -------------------------------------------------------------------------------- /src/pages/Ui/Tabs/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Ui/Tabs/Tabs.vue -------------------------------------------------------------------------------- /src/pages/Visits/Visits.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Visits/Visits.scss -------------------------------------------------------------------------------- /src/pages/Visits/Visits.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Visits/Visits.vue -------------------------------------------------------------------------------- /src/pages/Visits/components/AreaChart/AreaChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Visits/components/AreaChart/AreaChart.vue -------------------------------------------------------------------------------- /src/pages/Visits/components/Calendar/Calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Visits/components/Calendar/Calendar.scss -------------------------------------------------------------------------------- /src/pages/Visits/components/Calendar/Calendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Visits/components/Calendar/Calendar.vue -------------------------------------------------------------------------------- /src/pages/Visits/components/Map/Map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Visits/components/Map/Map.scss -------------------------------------------------------------------------------- /src/pages/Visits/components/Map/Map.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Visits/components/Map/Map.vue -------------------------------------------------------------------------------- /src/pages/Visits/components/Map/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Visits/components/Map/mock.js -------------------------------------------------------------------------------- /src/pages/Widgets/Widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/Widgets.scss -------------------------------------------------------------------------------- /src/pages/Widgets/Widgets.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/Widgets.vue -------------------------------------------------------------------------------- /src/pages/Widgets/components/changes-chart/ChangesChart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/components/changes-chart/ChangesChart.scss -------------------------------------------------------------------------------- /src/pages/Widgets/components/changes-chart/ChangesChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/components/changes-chart/ChangesChart.vue -------------------------------------------------------------------------------- /src/pages/Widgets/components/flot-charts/FlotCharts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/components/flot-charts/FlotCharts.scss -------------------------------------------------------------------------------- /src/pages/Widgets/components/flot-charts/FlotCharts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/components/flot-charts/FlotCharts.vue -------------------------------------------------------------------------------- /src/pages/Widgets/components/nasdaq/Nasdaq.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/components/nasdaq/Nasdaq.vue -------------------------------------------------------------------------------- /src/pages/Widgets/components/realtime-traffic/RealtimeTraffic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/components/realtime-traffic/RealtimeTraffic.vue -------------------------------------------------------------------------------- /src/pages/Widgets/components/years-map/MapData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/components/years-map/MapData.js -------------------------------------------------------------------------------- /src/pages/Widgets/components/years-map/YearsMap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/components/years-map/YearsMap.scss -------------------------------------------------------------------------------- /src/pages/Widgets/components/years-map/YearsMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/pages/Widgets/components/years-map/YearsMap.vue -------------------------------------------------------------------------------- /src/store/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/store/auth.js -------------------------------------------------------------------------------- /src/store/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/store/chat.js -------------------------------------------------------------------------------- /src/store/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/store/dashboard.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/store/layout.js -------------------------------------------------------------------------------- /src/store/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/store/products.js -------------------------------------------------------------------------------- /src/store/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/store/register.js -------------------------------------------------------------------------------- /src/styles/_auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/_auth.scss -------------------------------------------------------------------------------- /src/styles/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/_base.scss -------------------------------------------------------------------------------- /src/styles/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/_general.scss -------------------------------------------------------------------------------- /src/styles/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/_icons.scss -------------------------------------------------------------------------------- /src/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/_mixins.scss -------------------------------------------------------------------------------- /src/styles/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/_overrides.scss -------------------------------------------------------------------------------- /src/styles/_theme-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/_theme-variables.scss -------------------------------------------------------------------------------- /src/styles/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/_utils.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/src/styles/theme.scss -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/sing-app-vue-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------