├── .browserslistrc ├── .cache └── mc │ └── Tree ├── .config ├── configstore │ └── update-notifier-npm.json └── mc │ ├── ini │ └── panels.ini ├── .gitignore ├── .local └── share │ └── mc │ ├── filepos │ └── history ├── .npm └── _logs │ └── 2018-11-07T07_27_22_217Z-debug.log ├── README.md ├── babel.config.js ├── postcss.config.js ├── public ├── favicon.png ├── index.html └── static │ ├── .gitkeep │ ├── favicon.png │ └── template.csv ├── src ├── App.vue ├── assets │ ├── animate.css │ ├── scss │ │ ├── _app.variables.scss │ │ ├── _custom.scss │ │ ├── _mixin.scss │ │ ├── _style.scss │ │ ├── _utilities.scss │ │ ├── custom │ │ │ ├── _app-box-layout.scss │ │ │ ├── _border.scss │ │ │ ├── _box-layout.scss │ │ │ ├── _button.scss │ │ │ ├── _calender.scss │ │ │ ├── _chat.scss │ │ │ ├── _common.scss │ │ │ ├── _customizer.scss │ │ │ ├── _dark.scss │ │ │ ├── _dashboard.scss │ │ │ ├── _ecommerce.scss │ │ │ ├── _effect.scss │ │ │ ├── _gallery.scss │ │ │ ├── _header.scss │ │ │ ├── _horizontal-menu.scss │ │ │ ├── _icons.scss │ │ │ ├── _label.scss │ │ │ ├── _main.scss │ │ │ ├── _module.scss │ │ │ ├── _pages.scss │ │ │ ├── _rtl.scss │ │ │ ├── _search-bar.scss │ │ │ ├── _session.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _table.scss │ │ │ ├── _user.scss │ │ │ └── _widgets.scss │ │ ├── mixin │ │ │ ├── _bg.scss │ │ │ ├── _common-mixin.scss │ │ │ ├── _linear-gradient.scss │ │ │ └── _text-emphasis.scss │ │ └── utilities │ │ │ ├── _bg.scss │ │ │ ├── _text.scss │ │ │ └── _type.scss │ ├── tableData.json │ ├── themify-icons │ │ ├── SVG │ │ │ ├── Italic.svg │ │ │ ├── agenda.svg │ │ │ ├── alarm-clock.svg │ │ │ ├── alert.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── anchor.svg │ │ │ ├── android.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── announcement.svg │ │ │ ├── apple.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-top-left.svg │ │ │ ├── arrow-top-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── arrows-corner.svg │ │ │ ├── arrows-horizontal.svg │ │ │ ├── arrows-vertical.svg │ │ │ ├── back-left.svg │ │ │ ├── back-right.svg │ │ │ ├── bag.svg │ │ │ ├── bar-chart-alt.svg │ │ │ ├── bar-chart.svg │ │ │ ├── basketball.svg │ │ │ ├── bell.svg │ │ │ ├── blackboard.svg │ │ │ ├── bolt-alt.svg │ │ │ ├── bolt.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-alt.svg │ │ │ ├── bookmark.svg │ │ │ ├── briefcase.svg │ │ │ ├── brush-alt.svg │ │ │ ├── brush.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── car.svg │ │ │ ├── check-box.svg │ │ │ ├── check.svg │ │ │ ├── clip.svg │ │ │ ├── clipboard.svg │ │ │ ├── close.svg │ │ │ ├── cloud-down.svg │ │ │ ├── cloud-up.svg │ │ │ ├── cloud.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment.svg │ │ │ ├── comments-smiley.svg │ │ │ ├── comments.svg │ │ │ ├── control-backward.svg │ │ │ ├── control-eject.svg │ │ │ ├── control-forward.svg │ │ │ ├── control-pause.svg │ │ │ ├── control-play.svg │ │ │ ├── control-record.svg │ │ │ ├── control-shuffle.svg │ │ │ ├── control-skip-backward.svg │ │ │ ├── control-skip-forward.svg │ │ │ ├── control-stop.svg │ │ │ ├── credit-card.svg │ │ │ ├── crown.svg │ │ │ ├── css3.svg │ │ │ ├── cup.svg │ │ │ ├── cut.svg │ │ │ ├── dashboard.svg │ │ │ ├── desktop.svg │ │ │ ├── direction-alt.svg │ │ │ ├── direction.svg │ │ │ ├── download.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox-alt.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── email.svg │ │ │ ├── envelope.svg │ │ │ ├── eraser.svg │ │ │ ├── exchange-vertical.svg │ │ │ ├── export.svg │ │ │ ├── eye.svg │ │ │ ├── face-sad.svg │ │ │ ├── face-smile.svg │ │ │ ├── facebook.svg │ │ │ ├── file.svg │ │ │ ├── files.svg │ │ │ ├── filter.svg │ │ │ ├── flag-alt-2.svg │ │ │ ├── flag-alt.svg │ │ │ ├── flag.svg │ │ │ ├── flickr-alt.svg │ │ │ ├── flickr.svg │ │ │ ├── folder.svg │ │ │ ├── fullscreen.svg │ │ │ ├── gallery.svg │ │ │ ├── game.svg │ │ │ ├── gift.svg │ │ │ ├── github.svg │ │ │ ├── google.svg │ │ │ ├── hand-drag.svg │ │ │ ├── hand-open.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-stop.svg │ │ │ ├── harddrive.svg │ │ │ ├── harddrives.svg │ │ │ ├── headphone-alt.svg │ │ │ ├── headphone.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── help-alt.svg │ │ │ ├── help.svg │ │ │ ├── home.svg │ │ │ ├── html5.svg │ │ │ ├── hummer.svg │ │ │ ├── id-badge.svg │ │ │ ├── image.svg │ │ │ ├── import.svg │ │ │ ├── infinite.svg │ │ │ ├── info-alt.svg │ │ │ ├── info.svg │ │ │ ├── ink-pen.svg │ │ │ ├── instagram.svg │ │ │ ├── joomla.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── key.svg │ │ │ ├── layers-alt.svg │ │ │ ├── layers.svg │ │ │ ├── layout-accordion-list.svg │ │ │ ├── layout-accordion-merged.svg │ │ │ ├── layout-accordion-separated.svg │ │ │ ├── layout-column2-alt.svg │ │ │ ├── layout-column2.svg │ │ │ ├── layout-column3-alt.svg │ │ │ ├── layout-column3.svg │ │ │ ├── layout-column4-alt.svg │ │ │ ├── layout-column4.svg │ │ │ ├── layout-cta-btn-left.svg │ │ │ ├── layout-cta-btn-right.svg │ │ │ ├── layout-cta-center.svg │ │ │ ├── layout-cta-left.svg │ │ │ ├── layout-cta-right.svg │ │ │ ├── layout-grid2-alt.svg │ │ │ ├── layout-grid2-thumb.svg │ │ │ ├── layout-grid2.svg │ │ │ ├── layout-grid3-alt.svg │ │ │ ├── layout-grid3.svg │ │ │ ├── layout-grid4-alt.svg │ │ │ ├── layout-grid4.svg │ │ │ ├── layout-line-solid.svg │ │ │ ├── layout-list-large-image.svg │ │ │ ├── layout-list-post.svg │ │ │ ├── layout-list-thumb-alt.svg │ │ │ ├── layout-list-thumb.svg │ │ │ ├── layout-media-center-alt.svg │ │ │ ├── layout-media-center.svg │ │ │ ├── layout-media-left-alt.svg │ │ │ ├── layout-media-left.svg │ │ │ ├── layout-media-overlay-alt-2.svg │ │ │ ├── layout-media-overlay-alt.svg │ │ │ ├── layout-media-overlay.svg │ │ │ ├── layout-media-right-alt.svg │ │ │ ├── layout-media-right.svg │ │ │ ├── layout-menu-full.svg │ │ │ ├── layout-menu-separated.svg │ │ │ ├── layout-menu-v.svg │ │ │ ├── layout-menu.svg │ │ │ ├── layout-placeholder.svg │ │ │ ├── layout-sidebar-2.svg │ │ │ ├── layout-sidebar-left.svg │ │ │ ├── layout-sidebar-none.svg │ │ │ ├── layout-sidebar-right.svg │ │ │ ├── layout-slider-alt.svg │ │ │ ├── layout-slider.svg │ │ │ ├── layout-tab-min.svg │ │ │ ├── layout-tab-v.svg │ │ │ ├── layout-tab-window.svg │ │ │ ├── layout-tab.svg │ │ │ ├── layout-width-default-alt.svg │ │ │ ├── layout-width-default.svg │ │ │ ├── layout-width-full.svg │ │ │ ├── layout.svg │ │ │ ├── light-bulb.svg │ │ │ ├── line-dashed.svg │ │ │ ├── line-dotted.svg │ │ │ ├── line-double.svg │ │ │ ├── link.svg │ │ │ ├── linkedin.svg │ │ │ ├── linux.svg │ │ │ ├── list-ol.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── location-pin.svg │ │ │ ├── lock.svg │ │ │ ├── loop.svg │ │ │ ├── magnet.svg │ │ │ ├── map-alt.svg │ │ │ ├── map.svg │ │ │ ├── marker-alt.svg │ │ │ ├── marker.svg │ │ │ ├── medall-alt.svg │ │ │ ├── medall.svg │ │ │ ├── menu-alt.svg │ │ │ ├── menu.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone.svg │ │ │ ├── microsoft-alt.svg │ │ │ ├── microsoft.svg │ │ │ ├── minus.svg │ │ │ ├── mobile.svg │ │ │ ├── money.svg │ │ │ ├── more-alt.svg │ │ │ ├── more.svg │ │ │ ├── mouse-alt.svg │ │ │ ├── mouse.svg │ │ │ ├── music-alt.svg │ │ │ ├── music.svg │ │ │ ├── na.svg │ │ │ ├── new-window.svg │ │ │ ├── notepad.svg │ │ │ ├── paint-bucket.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── panel.svg │ │ │ ├── paragraph.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-alt2.svg │ │ │ ├── pencil.svg │ │ │ ├── pie-chart.svg │ │ │ ├── pin-alt.svg │ │ │ ├── pin.svg │ │ │ ├── pin2.svg │ │ │ ├── pinterest-alt.svg │ │ │ ├── pinterest.svg │ │ │ ├── plug.svg │ │ │ ├── plus.svg │ │ │ ├── power-off.svg │ │ │ ├── printer.svg │ │ │ ├── pulse.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── receipt.svg │ │ │ ├── reddit.svg │ │ │ ├── reload.svg │ │ │ ├── rocket.svg │ │ │ ├── rss-alt.svg │ │ │ ├── rss.svg │ │ │ ├── ruler-alt-2.svg │ │ │ ├── ruler-alt.svg │ │ │ ├── ruler-pencil.svg │ │ │ ├── ruler.svg │ │ │ ├── save-alt.svg │ │ │ ├── save.svg │ │ │ ├── search.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── share-alt.svg │ │ │ ├── share.svg │ │ │ ├── sharethis-alt.svg │ │ │ ├── sharethis.svg │ │ │ ├── shield.svg │ │ │ ├── shift-left-alt.svg │ │ │ ├── shift-left.svg │ │ │ ├── shift-right-alt.svg │ │ │ ├── shift-right.svg │ │ │ ├── shine.svg │ │ │ ├── shopping-cart-full.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shortcode.svg │ │ │ ├── signal.svg │ │ │ ├── skype.svg │ │ │ ├── slice.svg │ │ │ ├── smallcap.svg │ │ │ ├── soundcloud.svg │ │ │ ├── split-h.svg │ │ │ ├── split-v-alt.svg │ │ │ ├── split-v.svg │ │ │ ├── spray.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stamp.svg │ │ │ ├── star.svg │ │ │ ├── stats-down.svg │ │ │ ├── stats-up.svg │ │ │ ├── support.svg │ │ │ ├── tablet.svg │ │ │ ├── tag.svg │ │ │ ├── target.svg │ │ │ ├── text.svg │ │ │ ├── themify-favicon-alt.svg │ │ │ ├── themify-favicon.svg │ │ │ ├── themify-logo.svg │ │ │ ├── thought.svg │ │ │ ├── thumb-down.svg │ │ │ ├── thumb-up.svg │ │ │ ├── ticket.svg │ │ │ ├── time.svg │ │ │ ├── timer.svg │ │ │ ├── trash.svg │ │ │ ├── trello.svg │ │ │ ├── truck.svg │ │ │ ├── tumblr-alt.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitter-alt.svg │ │ │ ├── twitter.svg │ │ │ ├── underline.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── uppercase.svg │ │ │ ├── user.svg │ │ │ ├── vector.svg │ │ │ ├── video-camera.svg │ │ │ ├── video-clapper.svg │ │ │ ├── view-grid.svg │ │ │ ├── view-list-alt.svg │ │ │ ├── view-list.svg │ │ │ ├── vimeo-alt.svg │ │ │ ├── vimeo.svg │ │ │ ├── volume.svg │ │ │ ├── wallet.svg │ │ │ ├── wand.svg │ │ │ ├── wheelchair.svg │ │ │ ├── widget-alt.svg │ │ │ ├── widget.svg │ │ │ ├── widgetized.svg │ │ │ ├── window.svg │ │ │ ├── wordpress.svg │ │ │ ├── world.svg │ │ │ ├── write.svg │ │ │ ├── yahoo.svg │ │ │ ├── youtube.svg │ │ │ ├── zip.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ ├── fonts │ │ │ ├── themify.eot │ │ │ ├── themify.svg │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ │ ├── ie7 │ │ │ ├── ie7.css │ │ │ └── ie7.js │ │ └── themify-icons.css │ └── timezone.json ├── common │ ├── api.service.js │ ├── global.mixin.js │ └── jwt.service.js ├── components │ ├── AppCard │ │ ├── AppCard.vue │ │ ├── AppCardContent.vue │ │ ├── AppCardFooter.vue │ │ └── AppCardHeading.vue │ ├── AppSectionLoader │ │ └── AppSectionLoader.vue │ ├── DeleteConfirmationDialog │ │ └── DeleteConfirmationDialog.vue │ ├── DialogBox │ │ ├── ClientDialogBox.vue │ │ ├── ClientGroupDialogBox.vue │ │ ├── ComposeEmail.vue │ │ ├── ContactDialogBox.vue │ │ ├── ContactEditBox.vue │ │ ├── ContactShowBox.vue │ │ ├── CustomFormBox.vue │ │ ├── LocationDialogBox.vue │ │ ├── LocationEditDialogBox.vue │ │ ├── LocationShowBox.vue │ │ ├── LocationTypeDialogBox.vue │ │ ├── PatientDialogBox.vue │ │ ├── PatientImport.vue │ │ ├── UserDialogBox.vue │ │ ├── UserGroupDialogBox.css │ │ └── UserGroupDialogBox.vue │ ├── Footer │ │ └── Footer.vue │ ├── Header │ │ ├── Cart.vue │ │ ├── Header.vue │ │ ├── MobileSearchForm.vue │ │ ├── Notifications.vue │ │ └── QuickLinks.vue │ ├── PageTitleBar │ │ └── PageTitleBar.vue │ ├── SectionTooltip │ │ └── SectionTooltip.vue │ ├── Sidebar │ │ ├── Sidebar.vue │ │ └── UserBlock.vue │ ├── Snackbar │ │ └── Snackbar.vue │ ├── Widgets │ │ ├── Activity.vue │ │ ├── ContactRequest.vue │ │ ├── TodayWeather.vue │ │ └── Userinfo.vue │ ├── table │ │ ├── datatable.vue │ │ ├── standard.css │ │ └── standard.vue │ └── timeline │ │ └── timeline.vue ├── constants │ ├── AppConfig.js │ └── chart-config.js ├── container │ └── Full.vue ├── data │ └── zmdi-icons.json ├── globalComponents.js ├── helpers │ └── helpers.js ├── lang │ ├── ar │ │ └── index.js │ ├── cn │ │ └── index.js │ ├── en │ │ └── index.js │ ├── fr │ │ └── index.js │ ├── ge │ │ └── index.js │ ├── he │ │ └── index.js │ ├── hu │ │ └── index.js │ ├── index.js │ ├── it │ │ └── index.js │ ├── ja │ │ └── index.js │ ├── ko │ │ └── index.js │ ├── ru │ │ └── index.js │ └── sp │ │ └── index.js ├── lib │ ├── VuelyCss.js │ ├── VuelyScript.js │ └── eventBus.js ├── main.js ├── router │ ├── default.js │ └── index.js ├── store │ ├── modules │ │ ├── auth │ │ │ └── index.js │ │ ├── chat │ │ │ └── index.js │ │ ├── common │ │ │ └── index.js │ │ ├── settings │ │ │ ├── data.js │ │ │ └── index.js │ │ └── sidebar │ │ │ ├── data.js │ │ │ └── index.js │ └── store.js ├── themes │ ├── accentTheme.js │ ├── customTheme1.js │ ├── dangerTheme.js │ ├── infoTheme.js │ ├── primaryTheme.js │ ├── successTheme.js │ └── warningTheme.js └── views │ ├── alerts │ └── Alert.vue │ ├── chat │ ├── Chat.vue │ ├── chat.scss │ └── components │ │ ├── ChatArea.vue │ │ ├── ChatModuleLoader.vue │ │ ├── ChatSidebar.vue │ │ ├── CreateGroupDialog.vue │ │ ├── GroupChatArea.vue │ │ └── SingleChatLoader.vue │ ├── clients │ ├── Client.vue │ ├── Clients.css │ └── Clients.vue │ ├── contacts │ ├── Contact.css │ └── Contact.vue │ ├── dashboard │ ├── Dashboard.vue │ └── data.js │ ├── form-builder │ ├── Component-builder.vue │ ├── Form-builder.vue │ ├── Forms.vue │ ├── form-builder.css │ └── icons.js │ ├── forms │ ├── FormValidation.vue │ └── Stepper.vue │ ├── icons │ ├── Material.vue │ └── Themify.vue │ ├── locations │ ├── Location.css │ └── Location.vue │ ├── overview │ ├── ClientOverview.vue │ ├── ContactOverview.vue │ ├── LocationOverview.vue │ ├── Overview.scss │ ├── PatientOverview.vue │ └── UserOverview.vue │ ├── patients │ ├── Patient.css │ └── Patient.vue │ ├── profile │ ├── HeaderFiltersProvider.vue │ ├── Profile.vue │ ├── SidebarFiltersProvider.vue │ ├── ThemeProvider.vue │ └── UsersList.vue │ ├── session │ ├── Activate.vue │ ├── Expired.vue │ ├── ForgotPassword.vue │ ├── Install.vue │ ├── LoginAs.vue │ ├── LoginOne.vue │ ├── PageNotFound.vue │ ├── ResetPassword.vue │ └── SignUpOne.vue │ ├── settings │ └── Settings.vue │ └── users │ └── User.vue ├── tests └── e2e │ ├── custom-assertions │ └── elementCount.js │ └── specs │ └── test.js └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /.cache/mc/Tree: -------------------------------------------------------------------------------- 1 | Midnight Commander TreeStore v 2.0 2 | -------------------------------------------------------------------------------- /.config/configstore/update-notifier-npm.json: -------------------------------------------------------------------------------- 1 | { 2 | "optOut": false, 3 | "lastUpdateCheck": 1541575642171 4 | } -------------------------------------------------------------------------------- /.config/mc/panels.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Vuely-Vue/d44951d72ccec76fd6a524411d0dd82fa3a8e9bc/.config/mc/panels.ini -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | .DS_Store 3 | node_modules 4 | src/config/index.js 5 | src/config/ 6 | 7 | /dist 8 | 9 | /tests/e2e/reports/ 10 | selenium-debug.log 11 | 12 | # local env files 13 | .env.local 14 | .env.*.local 15 | 16 | # Log files 17 | npm-debug.log* 18 | yarn-debug.log* 19 | yarn-error.log* 20 | *package* 21 | 22 | # Editor directories and files 23 | .idea/* 24 | .vscode 25 | *.suo 26 | *.ntvs* 27 | *.njsproj 28 | *.sln 29 | *.sw* 30 | 31 | .env* -------------------------------------------------------------------------------- /.local/share/mc/filepos: -------------------------------------------------------------------------------- 1 | /etc/systemd/system/vuely.service 6;1;74 2 | /home/ubuntu/vuely-v4.3.0/vuely/startvuely.sh 1;0;0 3 | -------------------------------------------------------------------------------- /.local/share/mc/history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Vuely-Vue/d44951d72ccec76fd6a524411d0dd82fa3a8e9bc/.local/share/mc/history -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/app' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | autoprefixer: {} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Vuely-Vue/d44951d72ccec76fd6a524411d0dd82fa3a8e9bc/public/favicon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 12 | 000000 13 | 14 | 15 | 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /public/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Vuely-Vue/d44951d72ccec76fd6a524411d0dd82fa3a8e9bc/public/static/.gitkeep -------------------------------------------------------------------------------- /public/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Vuely-Vue/d44951d72ccec76fd6a524411d0dd82fa3a8e9bc/public/static/favicon.png -------------------------------------------------------------------------------- /public/static/template.csv: -------------------------------------------------------------------------------- 1 | First name,Middle name,Last name,Prefix,Suffix,Date of birth,Social Security Number,Gender,Phone,Phone type,Email address 2 | -------------------------------------------------------------------------------- /src/assets/scss/_mixin.scss: -------------------------------------------------------------------------------- 1 | /*======= All App Mixin Include Here ========*/ 2 | @import "mixin/linear-gradient"; 3 | @import "mixin/bg"; 4 | @import "mixin/text-emphasis"; 5 | @import "mixin/common-mixin"; -------------------------------------------------------------------------------- /src/assets/scss/_style.scss: -------------------------------------------------------------------------------- 1 | /*========= All App File Are Include Here ==========*/ 2 | @import "app.variables"; 3 | 4 | /*==== Core Mixins ====*/ 5 | @import "mixin"; 6 | 7 | /*==== Core Utilities =====*/ 8 | @import "utilities"; 9 | 10 | /*===== Custom File =======*/ 11 | @import "custom"; 12 | -------------------------------------------------------------------------------- /src/assets/scss/_utilities.scss: -------------------------------------------------------------------------------- 1 | /*======= All App Utilities Include Here =======*/ 2 | @import "utilities/bg"; // Used For Background Color 3 | // @import "utilities/text"; // Used For Text Color 4 | @import "utilities/type"; // Used For Typography 5 | -------------------------------------------------------------------------------- /src/assets/scss/custom/_box-layout.scss: -------------------------------------------------------------------------------- 1 | /*========== Box Layout Scss =========*/ 2 | .box-layout { 3 | box-shadow: 0 0 4px rgba(0, 0, 0, 0.5); 4 | margin: 0 auto; 5 | width: 1170px !important; 6 | .d-lg-half-block, 7 | .d-md-block, 8 | .d-lg-block, 9 | .d-sm-block { 10 | flex: 1 1 100%; 11 | max-width: 100%; 12 | } 13 | .b-50 { 14 | max-width: 50% !important; 15 | flex-basis: 50% !important; 16 | } 17 | .b-100 { 18 | max-width: 100% !important; 19 | flex-basis: 100% !important; 20 | } 21 | .Vuely-toolbar, .horizontal-menu { 22 | width: 1170px; 23 | left: inherit; 24 | right: inherit; 25 | } 26 | .navigation-drawer--fixed { 27 | position: absolute; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/assets/scss/custom/_icons.scss: -------------------------------------------------------------------------------- 1 | /*=========== Icons Scss =============*/ 2 | .icon-box { 3 | div { 4 | color: $gray; 5 | padding: 0.8em 0; 6 | position: relative; 7 | &:hover span i { 8 | font-size: 2rem; 9 | color: $primary; 10 | margin-top: -5px; 11 | } 12 | &:hover span { 13 | color: $primary; 14 | } 15 | } 16 | span, .icon-title { 17 | font-size: 1rem; //16px; 18 | margin-left: 2.188rem; //35px; 19 | } 20 | span i { 21 | transition: all 0.5s ease 0s; 22 | position: absolute; 23 | top: 17px; 24 | left: 15px; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/assets/scss/mixin/_bg.scss: -------------------------------------------------------------------------------- 1 | /*=========== Background Mixin ===========*/ 2 | // Contextual backgrounds 3 | @mixin bg-variant($parent, $color) { 4 | #{$parent} { 5 | background-color: $color !important; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/assets/scss/mixin/_common-mixin.scss: -------------------------------------------------------------------------------- 1 | /*======== All Common Mixin Include Is Here ========*/ 2 | //--- Border mixins ---// 3 | @mixin border($style, $color, $sides) { 4 | @if ($style != "") { 5 | @if ($sides == "") { 6 | border: $style $color; 7 | } @else { 8 | @each $side in $sides { 9 | @if ($side == 'top' or 10 | $side == 'right' or 11 | $side == 'bottom' or 12 | $side == 'left') { 13 | border-#{$side}: $style $color; 14 | } 15 | } 16 | } 17 | 18 | } 19 | } 20 | //--- For color opacity ---// 21 | @mixin background-opacity($color, $opacity) { 22 | background: $color; 23 | background: rgba($color, $opacity); 24 | } 25 | -------------------------------------------------------------------------------- /src/assets/scss/mixin/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Typography 4 | 5 | @mixin text-emphasis-variant($parent, $color) { 6 | #{$parent} { 7 | color: $color !important; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/assets/scss/utilities/_text.scss: -------------------------------------------------------------------------------- 1 | /*======== All Brand Text Color Is Mention Here =======*/ 2 | @include text-emphasis-variant('.text-primary', $primary); 3 | @include text-emphasis-variant('.text-secondary', $secondary); 4 | @include text-emphasis-variant('.text-success', $success); 5 | @include text-emphasis-variant('.text-info', $info); 6 | @include text-emphasis-variant('.text-warning', $warning); 7 | @include text-emphasis-variant('.text-danger', $danger); 8 | @include text-emphasis-variant('.text-gray-dark', $gray-dark); 9 | @include text-emphasis-variant('.text-gray', $gray); 10 | @include text-emphasis-variant('.text-gray-light', $gray-light); 11 | @include text-emphasis-variant('.text-gray-lighter', $gray-lighter); 12 | @include text-emphasis-variant('.text-blue', $blue); 13 | @include text-emphasis-variant('.text-pink', $pink); 14 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/Italic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/agenda.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/alert.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/anchor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/angle-double-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/angle-double-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/angle-double-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/angle-double-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/angle-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/angle-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/angle-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/angle-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/archive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow-circle-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow-circle-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow-circle-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow-circle-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow-top-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow-top-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrows-corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrows-horizontal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/arrows-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/back-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/back-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/bag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/bar-chart-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/bar-chart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/bell.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/blackboard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/bolt-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/bolt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/bookmark-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/briefcase.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/brush-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/brush.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/calendar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/camera.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/check-box.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/clip.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/clipboard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/comment-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/control-backward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/control-eject.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/control-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/control-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/control-play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/control-record.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/control-skip-backward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/control-skip-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/control-stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/credit-card.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/crown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/css3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/cut.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/dashboard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/desktop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/direction-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/direction.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/dropbox-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/dropbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/email.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/envelope.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/eraser.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/exchange-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/export.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/face-sad.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/face-smile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/files.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/flag-alt-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/flag-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/flickr-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/flickr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/fullscreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/gallery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/harddrive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/headphone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/help.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/html5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/hummer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/image.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/import.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/info-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/ink-pen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/key.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layers-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layers.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-accordion-list.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-accordion-merged.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-accordion-separated.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-column2-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-column2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-column3-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-column3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-column4-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-column4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-cta-btn-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-cta-btn-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-cta-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-cta-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-cta-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-grid2-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-grid2-thumb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-grid2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-grid3-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-grid3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-grid4-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-grid4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-line-solid.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-list-large-image.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-list-post.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-list-thumb-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-list-thumb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-media-center-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-media-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-media-left-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-media-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-media-overlay-alt-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-media-overlay-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-media-overlay.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-media-right-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-media-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-menu-full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-menu-separated.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-menu-v.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-sidebar-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-sidebar-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-sidebar-none.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-sidebar-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-slider-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-slider.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-tab-min.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-tab-v.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-tab-window.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-width-default-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-width-default.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout-width-full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/layout.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/line-dashed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/line-dotted.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/line-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/linkedin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/location-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/location-pin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/loop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/magnet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/map.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/marker.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/menu-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/microphone-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/microphone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/microsoft-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/microsoft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/mobile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/more-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/more.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/mouse-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/mouse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/music.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/na.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/new-window.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/paint-roller.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/paragraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/pencil-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/pencil-alt2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/pencil.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/pie-chart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/pin-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/pin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/pin2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/plug.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/power-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/printer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/pulse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/receipt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/reload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/rocket.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/rss-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/ruler-alt-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/ruler-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/ruler-pencil.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/ruler.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/save-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/save.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/share-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/share.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/shield.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/shift-left-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/shift-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/shift-right-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/shift-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/shine.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/shortcode.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/slice.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/smallcap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/split-h.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/split-v-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/split-v.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/spray.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/stamp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/stats-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/stats-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/support.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/tablet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/tag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/target.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/themify-favicon-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/ticket.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/time.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/timer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/trash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/trello.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/tumblr-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/underline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/unlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/uppercase.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/video-camera.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/video-clapper.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/view-grid.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/view-list-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/view-list.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/volume.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/wand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/wheelchair.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/window.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/write.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/yahoo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/zip.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/zoom-in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/SVG/zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/themify-icons/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Vuely-Vue/d44951d72ccec76fd6a524411d0dd82fa3a8e9bc/src/assets/themify-icons/fonts/themify.eot -------------------------------------------------------------------------------- /src/assets/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Vuely-Vue/d44951d72ccec76fd6a524411d0dd82fa3a8e9bc/src/assets/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /src/assets/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Vuely-Vue/d44951d72ccec76fd6a524411d0dd82fa3a8e9bc/src/assets/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /src/assets/timezone.json: -------------------------------------------------------------------------------- 1 | ["UTC -10", "UTC -8", "UTC -7", "UTC -6", "UTC -5", "UTC -4"] 2 | -------------------------------------------------------------------------------- /src/components/AppCard/AppCardContent.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | -------------------------------------------------------------------------------- /src/components/AppCard/AppCardFooter.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /src/components/AppSectionLoader/AppSectionLoader.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | -------------------------------------------------------------------------------- /src/components/SectionTooltip/SectionTooltip.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 23 | 24 | -------------------------------------------------------------------------------- /src/constants/AppConfig.js: -------------------------------------------------------------------------------- 1 | /** 2 | * App Config File 3 | */ 4 | export default { 5 | // App Logo 2 For Login & Signup Page 6 | 7 | copyrightText: "© 2019 All Rights Reserved.", // Copyright Text 8 | enableUserTour: process.env.NODE_ENV === "production" ? true : false, // Enable User Tour 9 | weatherApiId: "b1b15e88fa797225412429c1c50c122a1", // weather API Id 10 | weatherApiKey: "69b72ed255ce5efad910bd946685883a", // weather APi key 11 | }; 12 | -------------------------------------------------------------------------------- /src/constants/chart-config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Change all chart colors 3 | */ 4 | export const ChartConfig = { 5 | color: { 6 | 'primary': '#5D92F4', 7 | 'warning': '#FFB70F', 8 | 'danger': '#FF3739', 9 | 'success': '#00D014', 10 | 'info': '#00D0BD', 11 | 'white': '#fff', 12 | 'lightGrey': '#E8ECEE' 13 | }, 14 | lineChartAxesColor: '#E9ECEF', 15 | legendFontColor: '#AAAEB3', // only works on react chart js 2 16 | chartGridColor: '#EAEAEA', 17 | axesColor: '#657786', 18 | shadowColor: 'rgba(0,0,0,0.3)' 19 | } 20 | -------------------------------------------------------------------------------- /src/lib/VuelyCss.js: -------------------------------------------------------------------------------- 1 | /* ======= All App File Include Here ======= */ 2 | // Vuetify Css 3 | import 'vuetify/dist/vuetify.css' 4 | 5 | // Editor Css 6 | import 'quill/dist/quill.core.css' 7 | import 'quill/dist/quill.snow.css' 8 | import 'quill/dist/quill.bubble.css' 9 | 10 | // nprogress 11 | import 'nprogress/nprogress.css' 12 | 13 | // Icon Files 14 | import 'weather-icons/css/weather-icons.min.css' 15 | import '../assets/themify-icons/themify-icons.css' 16 | 17 | // animate css 18 | import '../assets/animate.css'; 19 | 20 | // Global Scss File 21 | import '../assets/scss/_style.scss' 22 | 23 | // import the vue-good-table styles 24 | import 'vue-good-table/dist/vue-good-table.css' -------------------------------------------------------------------------------- /src/lib/VuelyScript.js: -------------------------------------------------------------------------------- 1 | // jvector map 2 | import 'jvectormap' 3 | import 'jvectormap/tests/assets/jquery-jvectormap-world-mill-en' 4 | import 'jvectormap/jquery-jvectormap.css' -------------------------------------------------------------------------------- /src/lib/eventBus.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | 3 | export const EventBus = new Vue() 4 | 5 | export default EventBus 6 | -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- 1 | import Vue from "vue"; 2 | import Vuex from "vuex"; 3 | 4 | // modules 5 | import auth from "./modules/auth"; 6 | import settings from "./modules/settings"; 7 | import sidebar from "./modules/sidebar"; 8 | import common from "./modules/common"; 9 | import chat from "./modules/chat"; 10 | 11 | Vue.use(Vuex); 12 | 13 | export const store = new Vuex.Store({ 14 | modules: { 15 | auth, 16 | settings, 17 | sidebar, 18 | common, 19 | chat 20 | } 21 | }); 22 | -------------------------------------------------------------------------------- /src/themes/accentTheme.js: -------------------------------------------------------------------------------- 1 | export default { 2 | primary: '#82B1FF', 3 | secondary: '#424242', 4 | accent: '#5D92F4', 5 | error: '#FF3739', 6 | info: '#00D0BD', 7 | success: '#00D014', 8 | warning: '#FFB70F' 9 | } -------------------------------------------------------------------------------- /src/themes/customTheme1.js: -------------------------------------------------------------------------------- 1 | export default { 2 | primary: '#26A69A', 3 | secondary: '#424242', 4 | accent: '#5D92F4', 5 | error: '#FF3739', 6 | info: '#00D0BD', 7 | success: '#00D014', 8 | warning: '#FFB70F' 9 | } -------------------------------------------------------------------------------- /src/themes/dangerTheme.js: -------------------------------------------------------------------------------- 1 | export default { 2 | primary: '#FF3739', 3 | secondary: '#424242', 4 | accent: '#82B1FF', 5 | error: '#5D92F4', 6 | info: '#00D0BD', 7 | success: '#00D014', 8 | warning: '#FFB70F' 9 | } -------------------------------------------------------------------------------- /src/themes/infoTheme.js: -------------------------------------------------------------------------------- 1 | export default { 2 | primary: '#00D0BD', 3 | secondary: '#424242', 4 | accent: '#82B1FF', 5 | error: '#FF3739', 6 | info: '#5D92F4', 7 | success: '#00D014', 8 | warning: '#FFB70F' 9 | } -------------------------------------------------------------------------------- /src/themes/primaryTheme.js: -------------------------------------------------------------------------------- 1 | export default { 2 | primary: '#5D92F4', 3 | secondary: '#424242', 4 | accent: '#82B1FF', 5 | error: '#FF3739', 6 | info: '#00D0BD', 7 | success: '#00D014', 8 | warning: '#FFB70F' 9 | } -------------------------------------------------------------------------------- /src/themes/successTheme.js: -------------------------------------------------------------------------------- 1 | export default { 2 | primary: '#00D014', 3 | secondary: '#424242', 4 | accent: '#82B1FF', 5 | error: '#FF3739', 6 | info: '#00D0BD', 7 | success: '#5D92F4', 8 | warning: '#FFB70F' 9 | } -------------------------------------------------------------------------------- /src/themes/warningTheme.js: -------------------------------------------------------------------------------- 1 | export default { 2 | primary: '#FFB70F', 3 | secondary: '#424242', 4 | accent: '#82B1FF', 5 | error: '#FF3739', 6 | info: '#00D0BD', 7 | success: '#00D014', 8 | warning: '#5D92F4' 9 | } -------------------------------------------------------------------------------- /src/views/chat/components/ChatModuleLoader.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/views/chat/components/SingleChatLoader.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/views/contacts/Contact.css: -------------------------------------------------------------------------------- 1 | .contact-btn.v-btn--floating.v-btn--small { 2 | z-index: 99; 3 | } -------------------------------------------------------------------------------- /src/views/locations/Location.css: -------------------------------------------------------------------------------- 1 | /* theme--light css */ 2 | .location-btn.v-btn--floating.v-btn--small { 3 | z-index: 99; 4 | } 5 | 6 | .location-card-header { 7 | position: relative; 8 | } 9 | 10 | .location-card-header .close-model { 11 | position: absolute; 12 | right: 15px; 13 | } 14 | 15 | .v-input__prepend-outer { 16 | margin-right: 20px !important; 17 | } 18 | 19 | .required { 20 | color: red; 21 | } 22 | 23 | .success--text { 24 | color: #246962 !important; 25 | } 26 | 27 | /* theme--dark css */ 28 | .theme--dark .required { 29 | color: red !important; 30 | } 31 | 32 | /* rtl-layout css */ 33 | .rtl-layout .location-card-header .close-model { 34 | position: absolute; 35 | left: 15px; 36 | right: auto; 37 | } 38 | 39 | .rtl-layout .v-select__slot label { 40 | left: 30px !important; 41 | right: auto; 42 | position: absolute; 43 | } -------------------------------------------------------------------------------- /src/views/patients/Patient.css: -------------------------------------------------------------------------------- 1 | /* theme--light css */ 2 | .patient-btn.v-btn--floating.v-btn--small { 3 | z-index: 99; 4 | } 5 | 6 | .patient-card-header { 7 | display: -webkit-inline-box; 8 | position: relative; 9 | } 10 | 11 | .patient-card-header .close-model { 12 | position: absolute; 13 | right: 15px; 14 | } 15 | 16 | .v-input__prepend-outer { 17 | margin-right: 20px !important; 18 | } 19 | 20 | .required { 21 | color: red; 22 | } 23 | 24 | .success--text { 25 | color: #246962 !important; 26 | } 27 | 28 | 29 | /* theme--dark css */ 30 | .theme--dark .required { 31 | color: red !important; 32 | } 33 | 34 | /* rtl-layout css */ 35 | 36 | .rtl-layout .patient-card-header .close-model { 37 | position: absolute; 38 | left: 15px; 39 | right: auto; 40 | } 41 | 42 | .rtl-layout .v-select__slot label { 43 | left: 30px !important; 44 | right: auto; 45 | position: absolute; 46 | } 47 | -------------------------------------------------------------------------------- /tests/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- 1 | // A custom Nightwatch assertion. 2 | // The assertion name is the filename. 3 | // Example usage: 4 | // 5 | // browser.assert.elementCount(selector, count) 6 | // 7 | // For more information on custom assertions see: 8 | // http://nightwatchjs.org/guide#writing-custom-assertions 9 | 10 | exports.assertion = function elementCount (selector, count) { 11 | this.message = `Testing if element <${selector}> has count: ${count}` 12 | this.expected = count 13 | this.pass = val => val === count 14 | this.value = res => res.value 15 | function evaluator (_selector) { 16 | return document.querySelectorAll(_selector).length 17 | } 18 | this.command = cb => this.api.execute(evaluator, [selector], cb) 19 | } 20 | -------------------------------------------------------------------------------- /tests/e2e/specs/test.js: -------------------------------------------------------------------------------- 1 | // For authoring Nightwatch tests, see 2 | // http://nightwatchjs.org/guide#usage 3 | 4 | module.exports = { 5 | 'default e2e tests': browser => { 6 | browser 7 | .url(process.env.VUE_DEV_SERVER_URL) 8 | .waitForElementVisible('#app', 5000) 9 | .assert.elementPresent('.hello') 10 | .assert.containsText('h1', 'Welcome to Your Vue.js App') 11 | .assert.elementCount('img', 1) 12 | .end() 13 | } 14 | } 15 | --------------------------------------------------------------------------------