├── dashboard-v1 ├── src │ ├── vite-env.d.ts │ ├── dashboard │ │ ├── mac.webp │ │ ├── store.ts │ │ ├── sidebar │ │ │ ├── SidebarHeader.vue │ │ │ ├── SidebarItemSection.vue │ │ │ ├── icons │ │ │ │ ├── VideoIcon.vue │ │ │ │ ├── IllustrationIcon.vue │ │ │ │ ├── UpdatesIcon.vue │ │ │ │ ├── GraphicDesignIcon.vue │ │ │ │ ├── ArIcon.vue │ │ │ │ ├── DocIcon.vue │ │ │ │ ├── PhotographyIcon.vue │ │ │ │ ├── UxIcon.vue │ │ │ │ └── AllAppIcon.vue │ │ │ └── SidebarItem.vue │ │ └── Overlay.vue │ ├── components │ │ └── docs │ │ │ ├── icons │ │ │ ├── TsIcon.vue │ │ │ ├── FileIcon.vue │ │ │ ├── FolderIcon.vue │ │ │ └── VueIcon.vue │ │ │ └── Snippet.vue │ ├── pages │ │ ├── admin │ │ │ ├── documentation.vue │ │ │ ├── ar.vue │ │ │ ├── ux.vue │ │ │ ├── videos.vue │ │ │ ├── updates.vue │ │ │ ├── photography.vue │ │ │ ├── graphic-design.vue │ │ │ └── illustration.vue │ │ └── index.vue │ ├── App.vue │ └── main.ts ├── public │ ├── favicon.ico │ └── images │ │ ├── 1.jpg │ │ ├── mac.webp │ │ └── ts.svg ├── postcss.config.cjs ├── tailwind.config.cjs ├── vite.config.ts ├── tsconfig.node.json ├── .eslintrc ├── .gitignore ├── index.html ├── tsconfig.json └── package.json ├── dashboard-v2 ├── src │ ├── vite-env.d.ts │ ├── dashboard │ │ ├── mac.webp │ │ ├── store.ts │ │ ├── sidebar │ │ │ ├── SidebarHeader.vue │ │ │ ├── SidebarItemSection.vue │ │ │ ├── icons │ │ │ │ ├── VideoIcon.vue │ │ │ │ ├── IllustrationIcon.vue │ │ │ │ ├── UpdatesIcon.vue │ │ │ │ ├── GraphicDesignIcon.vue │ │ │ │ ├── ArIcon.vue │ │ │ │ ├── DocIcon.vue │ │ │ │ ├── PhotographyIcon.vue │ │ │ │ ├── UxIcon.vue │ │ │ │ └── AllAppIcon.vue │ │ │ └── SidebarItem.vue │ │ └── Overlay.vue │ ├── components │ │ └── docs │ │ │ ├── icons │ │ │ ├── TsIcon.vue │ │ │ ├── FileIcon.vue │ │ │ ├── FolderIcon.vue │ │ │ └── VueIcon.vue │ │ │ └── Snippet.vue │ ├── pages │ │ ├── admin │ │ │ ├── documentation.vue │ │ │ ├── ar.vue │ │ │ ├── ux.vue │ │ │ ├── videos.vue │ │ │ ├── updates.vue │ │ │ ├── photography.vue │ │ │ ├── graphic-design.vue │ │ │ └── illustration.vue │ │ └── index.vue │ ├── App.vue │ └── main.ts ├── public │ ├── favicon.ico │ └── images │ │ ├── 1.jpg │ │ ├── mac.webp │ │ └── ts.svg ├── postcss.config.cjs ├── tailwind.config.cjs ├── vite.config.ts ├── tsconfig.node.json ├── .eslintrc ├── .gitignore ├── index.html ├── tsconfig.json └── package.json ├── dashboard-v3 ├── src │ ├── vite-env.d.ts │ ├── components │ │ └── docs │ │ │ ├── icons │ │ │ ├── TsIcon.vue │ │ │ ├── FileIcon.vue │ │ │ ├── FolderIcon.vue │ │ │ └── VueIcon.vue │ │ │ └── Snippet.vue │ ├── pages │ │ ├── index.vue │ │ └── admin │ │ │ ├── documentation.vue │ │ │ ├── tasks.vue │ │ │ ├── calendar.vue │ │ │ ├── projects.vue │ │ │ ├── reports.vue │ │ │ ├── settings.vue │ │ │ └── time-manage.vue │ ├── App.vue │ ├── dashboard │ │ ├── store.ts │ │ ├── sidebar │ │ │ ├── icons │ │ │ │ ├── DashboardIcon.vue │ │ │ │ ├── TimeManageIcon.vue │ │ │ │ ├── CalendarIcon.vue │ │ │ │ ├── DocIcon.vue │ │ │ │ ├── SettingsIcon.vue │ │ │ │ ├── TaskIcon.vue │ │ │ │ ├── ProjectIcon.vue │ │ │ │ └── ReportIcon.vue │ │ │ └── SidebarItem.vue │ │ └── Overlay.vue │ └── main.ts ├── public │ ├── favicon.ico │ └── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.png │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ └── ts.svg ├── postcss.config.cjs ├── tailwind.config.cjs ├── vite.config.ts ├── tsconfig.node.json ├── .eslintrc ├── .gitignore ├── index.html ├── tsconfig.json ├── contributing.md ├── LICENCE.md └── package.json ├── dashboard-v4 ├── src │ ├── vite-env.d.ts │ ├── components │ │ └── docs │ │ │ ├── icons │ │ │ ├── TsIcon.vue │ │ │ ├── FileIcon.vue │ │ │ ├── FolderIcon.vue │ │ │ └── VueIcon.vue │ │ │ └── Snippet.vue │ ├── pages │ │ ├── admin │ │ │ ├── documentation.vue │ │ │ ├── status.vue │ │ │ ├── archives.vue │ │ │ ├── credits.vue │ │ │ └── settings.vue │ │ └── index.vue │ ├── App.vue │ ├── dashboard │ │ ├── sidebar │ │ │ ├── SidebarHeader.vue │ │ │ └── icons │ │ │ │ ├── ArchiveIcon.vue │ │ │ │ ├── Crediticon.vue │ │ │ │ ├── HomeIcon.vue │ │ │ │ ├── DocIcon.vue │ │ │ │ ├── StatusIcon.vue │ │ │ │ └── SettingsIcon.vue │ │ ├── store.ts │ │ └── Overlay.vue │ └── main.ts ├── public │ ├── favicon.ico │ └── images │ │ ├── 1.jpg │ │ ├── 2.png │ │ └── ts.svg ├── postcss.config.cjs ├── tailwind.config.cjs ├── vite.config.ts ├── tsconfig.node.json ├── .eslintrc ├── .gitignore ├── index.html ├── tsconfig.json ├── contributing.md ├── LICENCE.md └── package.json ├── dashboard-v5 ├── src │ ├── vite-env.d.ts │ ├── components │ │ └── docs │ │ │ ├── icons │ │ │ ├── TsIcon.vue │ │ │ ├── FileIcon.vue │ │ │ ├── FolderIcon.vue │ │ │ └── VueIcon.vue │ │ │ └── Snippet.vue │ ├── pages │ │ ├── admin │ │ │ ├── documentation.vue │ │ │ ├── bills.vue │ │ │ ├── analytics.vue │ │ │ ├── settings.vue │ │ │ ├── monitoring.vue │ │ │ ├── applications.vue │ │ │ └── demographics.vue │ │ └── index.vue │ ├── App.vue │ ├── dashboard │ │ ├── sidebar │ │ │ ├── SidebarHeader.vue │ │ │ └── icons │ │ │ │ ├── AnalyticIcon.vue │ │ │ │ ├── MonitoringIcon.vue │ │ │ │ ├── HomeIcon.vue │ │ │ │ ├── DocIcon.vue │ │ │ │ ├── BillsIcon.vue │ │ │ │ ├── StatusIcon.vue │ │ │ │ ├── AppIcon.vue │ │ │ │ ├── DemographicIcon.vue │ │ │ │ └── SettingsIcon.vue │ │ ├── store.ts │ │ └── Overlay.vue │ └── main.ts ├── public │ ├── favicon.ico │ └── images │ │ ├── 1.jpg │ │ ├── 2.png │ │ └── ts.svg ├── postcss.config.cjs ├── tailwind.config.cjs ├── vite.config.ts ├── tsconfig.node.json ├── .eslintrc ├── .gitignore ├── index.html ├── tsconfig.json └── package.json ├── dashboard-v6 ├── src │ ├── vite-env.d.ts │ ├── components │ │ └── docs │ │ │ ├── icons │ │ │ ├── TsIcon.vue │ │ │ ├── FileIcon.vue │ │ │ ├── FolderIcon.vue │ │ │ └── VueIcon.vue │ │ │ └── Snippet.vue │ ├── pages │ │ ├── index.vue │ │ └── admin │ │ │ ├── documentation.vue │ │ │ ├── medias.vue │ │ │ ├── contact.vue │ │ │ ├── servers.vue │ │ │ ├── settings.vue │ │ │ ├── terminal.vue │ │ │ └── recycle-bin.vue │ ├── App.vue │ ├── dashboard │ │ ├── sidebar │ │ │ ├── SidebarHeader.vue │ │ │ ├── icons │ │ │ │ ├── UsersIcon.vue │ │ │ │ ├── ContactIcon.vue │ │ │ │ ├── TerminalIcon.vue │ │ │ │ ├── MediaIcon.vue │ │ │ │ ├── RecycleBinIcon.vue │ │ │ │ ├── ServerIcon.vue │ │ │ │ ├── DocIcon.vue │ │ │ │ └── SettingsIcon.vue │ │ │ └── SidebarItem.vue │ │ ├── store.ts │ │ └── Overlay.vue │ └── main.ts ├── public │ ├── favicon.ico │ └── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.png │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.png │ │ └── ts.svg ├── postcss.config.cjs ├── tailwind.config.cjs ├── vite.config.ts ├── tsconfig.node.json ├── .eslintrc ├── .gitignore ├── index.html ├── tsconfig.json ├── contributing.md └── LICENCE.md ├── dashboard-v7 ├── src │ ├── vite-env.d.ts │ ├── components │ │ └── docs │ │ │ ├── icons │ │ │ ├── TsIcon.vue │ │ │ ├── FileIcon.vue │ │ │ ├── FolderIcon.vue │ │ │ └── VueIcon.vue │ │ │ └── Snippet.vue │ ├── pages │ │ ├── admin │ │ │ ├── documentation.vue │ │ │ ├── medias.vue │ │ │ ├── contacts.vue │ │ │ ├── servers.vue │ │ │ ├── settings.vue │ │ │ ├── terminal.vue │ │ │ └── recycle-bin.vue │ │ └── index.vue │ ├── App.vue │ ├── dashboard │ │ ├── sidebar │ │ │ ├── SidebarHeader.vue │ │ │ ├── SidebarItemSection.vue │ │ │ ├── icons │ │ │ │ ├── UsersIcon.vue │ │ │ │ ├── ContactIcon.vue │ │ │ │ ├── TerminalIcon.vue │ │ │ │ ├── MediaIcon.vue │ │ │ │ ├── RecycleBinIcon.vue │ │ │ │ ├── ServerIcon.vue │ │ │ │ ├── DocIcon.vue │ │ │ │ └── SettingsIcon.vue │ │ │ └── SidebarItem.vue │ │ ├── store.ts │ │ └── Overlay.vue │ └── main.ts ├── public │ ├── favicon.ico │ └── images │ │ ├── 1.png │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ └── ts.svg ├── postcss.config.cjs ├── tailwind.config.cjs ├── vite.config.ts ├── tsconfig.node.json ├── .eslintrc ├── .gitignore ├── index.html └── tsconfig.json ├── dashboard-v8 ├── src │ ├── vite-env.d.ts │ ├── components │ │ └── docs │ │ │ ├── icons │ │ │ ├── TsIcon.vue │ │ │ ├── FileIcon.vue │ │ │ ├── FolderIcon.vue │ │ │ └── VueIcon.vue │ │ │ └── Snippet.vue │ ├── pages │ │ ├── guides │ │ │ └── documentation.vue │ │ ├── index.vue │ │ ├── events │ │ │ ├── weddings.vue │ │ │ └── networking.vue │ │ ├── messages │ │ │ ├── unbox.vue │ │ │ ├── unread.vue │ │ │ └── archived.vue │ │ ├── documents │ │ │ ├── taxes.vue │ │ │ ├── travel.vue │ │ │ └── insurance.vue │ │ ├── statistics │ │ │ ├── call-stats.vue │ │ │ ├── finances.vue │ │ │ └── trip-logs.vue │ │ └── pictures │ │ │ ├── university.vue │ │ │ ├── vacations.vue │ │ │ └── anniversary.vue │ ├── App.vue │ ├── dashboard │ │ ├── sidebar │ │ │ ├── SidebarHeader.vue │ │ │ ├── icons │ │ │ │ ├── EventIcon.vue │ │ │ │ ├── MessageIcon.vue │ │ │ │ ├── DocIcon.vue │ │ │ │ ├── StatisticIcon.vue │ │ │ │ ├── GuideIcon.vue │ │ │ │ └── PictureIcon.vue │ │ │ └── SidebarItem.vue │ │ ├── store.ts │ │ └── Overlay.vue │ └── main.ts ├── public │ ├── favicon.ico │ └── images │ │ ├── 1.jpg │ │ ├── 2.png │ │ └── ts.svg ├── postcss.config.cjs ├── tailwind.config.cjs ├── vite.config.ts ├── tsconfig.node.json ├── .eslintrc ├── .gitignore ├── index.html └── tsconfig.json ├── dashboard-v9 ├── src │ ├── vite-env.d.ts │ ├── components │ │ └── docs │ │ │ ├── icons │ │ │ ├── TsIcon.vue │ │ │ ├── FileIcon.vue │ │ │ ├── FolderIcon.vue │ │ │ └── VueIcon.vue │ │ │ └── Snippet.vue │ ├── pages │ │ ├── index.vue │ │ └── admin │ │ │ ├── documentation.vue │ │ │ ├── tasks.vue │ │ │ ├── calendar.vue │ │ │ ├── projects.vue │ │ │ ├── reports.vue │ │ │ ├── settings.vue │ │ │ └── time-manage.vue │ ├── App.vue │ ├── dashboard │ │ ├── store.ts │ │ ├── sidebar │ │ │ ├── SidebarHeader.vue │ │ │ ├── icons │ │ │ │ ├── DashboardIcon.vue │ │ │ │ ├── TimeManageIcon.vue │ │ │ │ ├── CalendarIcon.vue │ │ │ │ ├── DocIcon.vue │ │ │ │ ├── SettingsIcon.vue │ │ │ │ ├── TaskIcon.vue │ │ │ │ ├── ProjectIcon.vue │ │ │ │ └── ReportIcon.vue │ │ │ └── SidebarItem.vue │ │ └── Overlay.vue │ └── main.ts ├── public │ ├── favicon.ico │ └── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.png │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ └── ts.svg ├── postcss.config.cjs ├── tailwind.config.cjs ├── vite.config.ts ├── tsconfig.node.json ├── .eslintrc ├── .gitignore ├── index.html └── tsconfig.json ├── contributing.md ├── README.md └── LICENCE.md /dashboard-v1/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard-v2/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard-v3/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard-v4/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard-v5/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard-v6/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard-v7/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard-v8/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard-v9/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard-v1/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v1/public/favicon.ico -------------------------------------------------------------------------------- /dashboard-v2/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v2/public/favicon.ico -------------------------------------------------------------------------------- /dashboard-v3/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v3/public/favicon.ico -------------------------------------------------------------------------------- /dashboard-v4/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v4/public/favicon.ico -------------------------------------------------------------------------------- /dashboard-v5/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v5/public/favicon.ico -------------------------------------------------------------------------------- /dashboard-v6/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v6/public/favicon.ico -------------------------------------------------------------------------------- /dashboard-v7/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v7/public/favicon.ico -------------------------------------------------------------------------------- /dashboard-v8/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v8/public/favicon.ico -------------------------------------------------------------------------------- /dashboard-v9/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v9/public/favicon.ico -------------------------------------------------------------------------------- /dashboard-v1/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v1/public/images/1.jpg -------------------------------------------------------------------------------- /dashboard-v2/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v2/public/images/1.jpg -------------------------------------------------------------------------------- /dashboard-v3/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v3/public/images/1.jpg -------------------------------------------------------------------------------- /dashboard-v3/public/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v3/public/images/2.jpg -------------------------------------------------------------------------------- /dashboard-v3/public/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v3/public/images/3.png -------------------------------------------------------------------------------- /dashboard-v3/public/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v3/public/images/4.jpg -------------------------------------------------------------------------------- /dashboard-v3/public/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v3/public/images/5.jpg -------------------------------------------------------------------------------- /dashboard-v3/public/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v3/public/images/6.jpg -------------------------------------------------------------------------------- /dashboard-v3/public/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v3/public/images/7.jpg -------------------------------------------------------------------------------- /dashboard-v3/public/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v3/public/images/8.jpg -------------------------------------------------------------------------------- /dashboard-v3/public/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v3/public/images/9.jpg -------------------------------------------------------------------------------- /dashboard-v4/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v4/public/images/1.jpg -------------------------------------------------------------------------------- /dashboard-v4/public/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v4/public/images/2.png -------------------------------------------------------------------------------- /dashboard-v5/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v5/public/images/1.jpg -------------------------------------------------------------------------------- /dashboard-v5/public/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v5/public/images/2.png -------------------------------------------------------------------------------- /dashboard-v6/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v6/public/images/1.jpg -------------------------------------------------------------------------------- /dashboard-v6/public/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v6/public/images/2.jpg -------------------------------------------------------------------------------- /dashboard-v6/public/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v6/public/images/3.png -------------------------------------------------------------------------------- /dashboard-v6/public/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v6/public/images/4.jpg -------------------------------------------------------------------------------- /dashboard-v6/public/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v6/public/images/5.jpg -------------------------------------------------------------------------------- /dashboard-v6/public/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v6/public/images/6.jpg -------------------------------------------------------------------------------- /dashboard-v6/public/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v6/public/images/7.png -------------------------------------------------------------------------------- /dashboard-v7/public/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v7/public/images/1.png -------------------------------------------------------------------------------- /dashboard-v7/public/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v7/public/images/2.jpg -------------------------------------------------------------------------------- /dashboard-v7/public/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v7/public/images/3.jpg -------------------------------------------------------------------------------- /dashboard-v7/public/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v7/public/images/4.jpg -------------------------------------------------------------------------------- /dashboard-v7/public/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v7/public/images/5.jpg -------------------------------------------------------------------------------- /dashboard-v8/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v8/public/images/1.jpg -------------------------------------------------------------------------------- /dashboard-v8/public/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v8/public/images/2.png -------------------------------------------------------------------------------- /dashboard-v9/public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v9/public/images/1.jpg -------------------------------------------------------------------------------- /dashboard-v9/public/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v9/public/images/2.jpg -------------------------------------------------------------------------------- /dashboard-v9/public/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v9/public/images/3.png -------------------------------------------------------------------------------- /dashboard-v9/public/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v9/public/images/4.jpg -------------------------------------------------------------------------------- /dashboard-v9/public/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v9/public/images/5.jpg -------------------------------------------------------------------------------- /dashboard-v9/public/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v9/public/images/6.jpg -------------------------------------------------------------------------------- /dashboard-v9/public/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v9/public/images/7.jpg -------------------------------------------------------------------------------- /dashboard-v9/public/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v9/public/images/8.jpg -------------------------------------------------------------------------------- /dashboard-v9/public/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v9/public/images/9.jpg -------------------------------------------------------------------------------- /dashboard-v1/public/images/mac.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v1/public/images/mac.webp -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/mac.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v1/src/dashboard/mac.webp -------------------------------------------------------------------------------- /dashboard-v2/public/images/mac.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v2/public/images/mac.webp -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/mac.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvia-kit/vue-dashboards/HEAD/dashboard-v2/src/dashboard/mac.webp -------------------------------------------------------------------------------- /dashboard-v1/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /dashboard-v2/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /dashboard-v3/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /dashboard-v4/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /dashboard-v5/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /dashboard-v6/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /dashboard-v7/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /dashboard-v8/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /dashboard-v9/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /dashboard-v1/src/components/docs/icons/TsIcon.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /dashboard-v2/src/components/docs/icons/TsIcon.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /dashboard-v3/src/components/docs/icons/TsIcon.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /dashboard-v4/src/components/docs/icons/TsIcon.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /dashboard-v5/src/components/docs/icons/TsIcon.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /dashboard-v6/src/components/docs/icons/TsIcon.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /dashboard-v7/src/components/docs/icons/TsIcon.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /dashboard-v8/src/components/docs/icons/TsIcon.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /dashboard-v9/src/components/docs/icons/TsIcon.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /dashboard-v3/src/pages/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v6/src/pages/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v9/src/pages/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/src/pages/admin/documentation.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/pages/admin/documentation.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v3/src/pages/admin/documentation.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v4/src/pages/admin/documentation.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v5/src/pages/admin/documentation.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v6/src/pages/admin/documentation.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v7/src/pages/admin/documentation.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/guides/documentation.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v9/src/pages/admin/documentation.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v4/src/pages/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v7/src/pages/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/src/pages/admin/ar.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/src/pages/admin/ux.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/src/pages/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/pages/admin/ar.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/pages/admin/ux.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/pages/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/src/pages/admin/videos.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/pages/admin/videos.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v3/src/pages/admin/tasks.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v4/src/pages/admin/status.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v5/src/pages/admin/bills.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v6/src/pages/admin/medias.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v7/src/pages/admin/medias.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v9/src/pages/admin/tasks.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/src/pages/admin/updates.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/pages/admin/updates.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v3/src/pages/admin/calendar.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v3/src/pages/admin/projects.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v3/src/pages/admin/reports.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v3/src/pages/admin/settings.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v4/src/pages/admin/archives.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v4/src/pages/admin/credits.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v4/src/pages/admin/settings.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v5/src/pages/admin/analytics.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v5/src/pages/admin/settings.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v6/src/pages/admin/contact.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v6/src/pages/admin/servers.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v6/src/pages/admin/settings.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v6/src/pages/admin/terminal.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v7/src/pages/admin/contacts.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v7/src/pages/admin/servers.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v7/src/pages/admin/settings.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v7/src/pages/admin/terminal.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v9/src/pages/admin/calendar.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v9/src/pages/admin/projects.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v9/src/pages/admin/reports.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v9/src/pages/admin/settings.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /dashboard-v1/src/pages/admin/photography.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /dashboard-v2/src/pages/admin/photography.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v3/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /dashboard-v3/src/pages/admin/time-manage.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v4/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /dashboard-v5/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /dashboard-v5/src/pages/admin/monitoring.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v6/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /dashboard-v6/src/pages/admin/recycle-bin.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v7/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /dashboard-v7/src/pages/admin/recycle-bin.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/events/weddings.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/messages/unbox.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/messages/unread.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v9/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /dashboard-v9/src/pages/admin/time-manage.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/src/pages/admin/graphic-design.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/src/pages/admin/illustration.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/pages/admin/graphic-design.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/pages/admin/illustration.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v5/src/pages/admin/applications.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v5/src/pages/admin/demographics.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/documents/taxes.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/documents/travel.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/events/networking.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/messages/archived.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/statistics/call-stats.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/documents/insurance.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/pictures/university.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/pictures/vacations.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/statistics/finances.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/pictures/anniversary.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/pages/statistics/trip-logs.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/SidebarHeader.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{js,vue,ts}", "./public/index.html"], 3 | theme: { 4 | extend: {}, 5 | }, 6 | variants: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /dashboard-v2/tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{js,vue,ts}", "./public/index.html"], 3 | theme: { 4 | extend: {}, 5 | }, 6 | variants: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /dashboard-v3/tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{js,vue,ts}", "./public/index.html"], 3 | theme: { 4 | extend: {}, 5 | }, 6 | variants: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /dashboard-v4/tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{js,vue,ts}", "./public/index.html"], 3 | theme: { 4 | extend: {}, 5 | }, 6 | variants: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /dashboard-v5/tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{js,vue,ts}", "./public/index.html"], 3 | theme: { 4 | extend: {}, 5 | }, 6 | variants: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /dashboard-v6/tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{js,vue,ts}", "./public/index.html"], 3 | theme: { 4 | extend: {}, 5 | }, 6 | variants: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /dashboard-v7/tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{js,vue,ts}", "./public/index.html"], 3 | theme: { 4 | extend: {}, 5 | }, 6 | variants: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /dashboard-v8/tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{js,vue,ts}", "./public/index.html"], 3 | theme: { 4 | extend: {}, 5 | }, 6 | variants: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /dashboard-v9/tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{js,vue,ts}", "./public/index.html"], 3 | theme: { 4 | extend: {}, 5 | }, 6 | variants: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /dashboard-v5/src/pages/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | -------------------------------------------------------------------------------- /dashboard-v1/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import Pages from 'vite-plugin-pages' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [vue(), Pages()], 8 | }) 9 | -------------------------------------------------------------------------------- /dashboard-v2/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import Pages from 'vite-plugin-pages' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [vue(), Pages()], 8 | }) 9 | -------------------------------------------------------------------------------- /dashboard-v3/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import Pages from 'vite-plugin-pages' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [vue(), Pages()], 8 | }) 9 | -------------------------------------------------------------------------------- /dashboard-v4/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import Pages from 'vite-plugin-pages' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [vue(), Pages()], 8 | }) 9 | -------------------------------------------------------------------------------- /dashboard-v5/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import Pages from 'vite-plugin-pages' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [vue(), Pages()], 8 | }) 9 | -------------------------------------------------------------------------------- /dashboard-v6/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import Pages from 'vite-plugin-pages' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [vue(), Pages()], 8 | }) 9 | -------------------------------------------------------------------------------- /dashboard-v7/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import Pages from 'vite-plugin-pages' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [vue(), Pages()], 8 | }) 9 | -------------------------------------------------------------------------------- /dashboard-v8/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import Pages from 'vite-plugin-pages' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [vue(), Pages()], 8 | }) 9 | -------------------------------------------------------------------------------- /dashboard-v9/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import Pages from 'vite-plugin-pages' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [vue(), Pages()], 8 | }) 9 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/sidebar/SidebarHeader.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v8/src/dashboard/sidebar/SidebarHeader.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v4/src/dashboard/sidebar/SidebarHeader.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/sidebar/SidebarHeader.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v1/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /dashboard-v2/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /dashboard-v3/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /dashboard-v4/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /dashboard-v5/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /dashboard-v6/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /dashboard-v7/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /dashboard-v8/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /dashboard-v9/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/store.ts: -------------------------------------------------------------------------------- 1 | import { ref } from "vue"; 2 | 3 | const sidebarOpen = ref(false); 4 | 5 | const openSidebar = () => { 6 | sidebarOpen.value = true; 7 | }; 8 | 9 | const closeSidebar = () => { 10 | sidebarOpen.value = false; 11 | }; 12 | 13 | export { sidebarOpen, openSidebar, closeSidebar }; 14 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/store.ts: -------------------------------------------------------------------------------- 1 | import { ref } from "vue"; 2 | 3 | const sidebarOpen = ref(false); 4 | 5 | const openSidebar = () => { 6 | sidebarOpen.value = true; 7 | }; 8 | 9 | const closeSidebar = () => { 10 | sidebarOpen.value = false; 11 | }; 12 | 13 | export { sidebarOpen, openSidebar, closeSidebar }; 14 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/store.ts: -------------------------------------------------------------------------------- 1 | import { ref } from "vue"; 2 | 3 | const sidebarOpen = ref(false); 4 | 5 | const openSidebar = () => { 6 | sidebarOpen.value = true; 7 | }; 8 | 9 | const closeSidebar = () => { 10 | sidebarOpen.value = false; 11 | }; 12 | 13 | export { sidebarOpen, openSidebar, closeSidebar }; 14 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/store.ts: -------------------------------------------------------------------------------- 1 | import { ref } from "vue"; 2 | 3 | const sidebarOpen = ref(false); 4 | 5 | const openSidebar = () => { 6 | sidebarOpen.value = true; 7 | }; 8 | 9 | const closeSidebar = () => { 10 | sidebarOpen.value = false; 11 | }; 12 | 13 | export { sidebarOpen, openSidebar, closeSidebar }; 14 | -------------------------------------------------------------------------------- /dashboard-v8/src/dashboard/store.ts: -------------------------------------------------------------------------------- 1 | import { ref } from "vue"; 2 | 3 | const sidebarOpen = ref(false); 4 | 5 | const openSidebar = () => { 6 | sidebarOpen.value = true; 7 | }; 8 | 9 | const closeSidebar = () => { 10 | sidebarOpen.value = false; 11 | }; 12 | 13 | export { sidebarOpen, openSidebar, closeSidebar }; 14 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/store.ts: -------------------------------------------------------------------------------- 1 | import { ref } from "vue"; 2 | 3 | const sidebarOpen = ref(false); 4 | 5 | const openSidebar = () => { 6 | sidebarOpen.value = true; 7 | }; 8 | 9 | const closeSidebar = () => { 10 | sidebarOpen.value = false; 11 | }; 12 | 13 | export { sidebarOpen, openSidebar, closeSidebar }; 14 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/store.ts: -------------------------------------------------------------------------------- 1 | import { ref } from "vue"; 2 | 3 | const sidebarOpen = ref(false); 4 | 5 | const toggleSidebar = () => { 6 | sidebarOpen.value = !sidebarOpen.value; 7 | }; 8 | 9 | const closeSidebar = () => { 10 | sidebarOpen.value = false; 11 | }; 12 | 13 | export { sidebarOpen, toggleSidebar, closeSidebar }; 14 | -------------------------------------------------------------------------------- /dashboard-v4/src/dashboard/store.ts: -------------------------------------------------------------------------------- 1 | import { ref } from "vue"; 2 | 3 | const sidebarOpen = ref(false); 4 | 5 | const toggleSidebar = () => { 6 | sidebarOpen.value = !sidebarOpen.value; 7 | }; 8 | 9 | const closeSidebar = () => { 10 | sidebarOpen.value = false; 11 | }; 12 | 13 | export { sidebarOpen, toggleSidebar, closeSidebar }; 14 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/store.ts: -------------------------------------------------------------------------------- 1 | import { ref } from "vue"; 2 | 3 | const sidebarOpen = ref(false); 4 | 5 | const toggleSidebar = () => { 6 | sidebarOpen.value = !sidebarOpen.value; 7 | }; 8 | 9 | const closeSidebar = () => { 10 | sidebarOpen.value = false; 11 | }; 12 | 13 | export { sidebarOpen, toggleSidebar, closeSidebar }; 14 | -------------------------------------------------------------------------------- /dashboard-v1/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "env": { 4 | "node": true 5 | }, 6 | "extends": [ 7 | "plugin:vue/vue3-recommended", 8 | "plugin:prettier/recommended", 9 | "plugin:tailwindcss/recommended", 10 | "eslint:recommended" 11 | ], 12 | "rules": { 13 | "vue/multi-word-component-names": "off" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /dashboard-v2/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "env": { 4 | "node": true 5 | }, 6 | "extends": [ 7 | "plugin:vue/vue3-recommended", 8 | "plugin:prettier/recommended", 9 | "plugin:tailwindcss/recommended", 10 | "eslint:recommended" 11 | ], 12 | "rules": { 13 | "vue/multi-word-component-names": "off" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /dashboard-v3/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "env": { 4 | "node": true 5 | }, 6 | "extends": [ 7 | "plugin:vue/vue3-recommended", 8 | "plugin:prettier/recommended", 9 | "plugin:tailwindcss/recommended", 10 | "eslint:recommended" 11 | ], 12 | "rules": { 13 | "vue/multi-word-component-names": "off" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /dashboard-v4/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "env": { 4 | "node": true 5 | }, 6 | "extends": [ 7 | "plugin:vue/vue3-recommended", 8 | "plugin:prettier/recommended", 9 | "plugin:tailwindcss/recommended", 10 | "eslint:recommended" 11 | ], 12 | "rules": { 13 | "vue/multi-word-component-names": "off" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /dashboard-v5/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "env": { 4 | "node": true 5 | }, 6 | "extends": [ 7 | "plugin:vue/vue3-recommended", 8 | "plugin:prettier/recommended", 9 | "plugin:tailwindcss/recommended", 10 | "eslint:recommended" 11 | ], 12 | "rules": { 13 | "vue/multi-word-component-names": "off" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /dashboard-v6/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "env": { 4 | "node": true 5 | }, 6 | "extends": [ 7 | "plugin:vue/vue3-recommended", 8 | "plugin:prettier/recommended", 9 | "plugin:tailwindcss/recommended", 10 | "eslint:recommended" 11 | ], 12 | "rules": { 13 | "vue/multi-word-component-names": "off" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /dashboard-v7/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "env": { 4 | "node": true 5 | }, 6 | "extends": [ 7 | "plugin:vue/vue3-recommended", 8 | "plugin:prettier/recommended", 9 | "plugin:tailwindcss/recommended", 10 | "eslint:recommended" 11 | ], 12 | "rules": { 13 | "vue/multi-word-component-names": "off" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /dashboard-v8/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "env": { 4 | "node": true 5 | }, 6 | "extends": [ 7 | "plugin:vue/vue3-recommended", 8 | "plugin:prettier/recommended", 9 | "plugin:tailwindcss/recommended", 10 | "eslint:recommended" 11 | ], 12 | "rules": { 13 | "vue/multi-word-component-names": "off" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /dashboard-v9/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "env": { 4 | "node": true 5 | }, 6 | "extends": [ 7 | "plugin:vue/vue3-recommended", 8 | "plugin:prettier/recommended", 9 | "plugin:tailwindcss/recommended", 10 | "eslint:recommended" 11 | ], 12 | "rules": { 13 | "vue/multi-word-component-names": "off" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/SidebarHeader.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 13 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/SidebarHeader.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 13 | -------------------------------------------------------------------------------- /dashboard-v1/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /dashboard-v2/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /dashboard-v3/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /dashboard-v4/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /dashboard-v5/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /dashboard-v6/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /dashboard-v7/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /dashboard-v8/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /dashboard-v9/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/SidebarItemSection.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 18 | -------------------------------------------------------------------------------- /dashboard-v1/src/main.ts: -------------------------------------------------------------------------------- 1 | import "tailwindcss/tailwind.css"; 2 | import { createApp } from "vue"; 3 | import { createRouter, createWebHistory } from "vue-router"; 4 | 5 | // @ts-ignore 6 | import routes from "~pages"; 7 | import App from "./App.vue"; 8 | 9 | // @ts-ignore 10 | const router = createRouter({ 11 | routes, 12 | history: createWebHistory(), 13 | }); 14 | 15 | createApp(App).use(router).mount("#app"); 16 | -------------------------------------------------------------------------------- /dashboard-v2/src/main.ts: -------------------------------------------------------------------------------- 1 | import "tailwindcss/tailwind.css"; 2 | import { createApp } from "vue"; 3 | import { createRouter, createWebHistory } from "vue-router"; 4 | 5 | // @ts-ignore 6 | import routes from "~pages"; 7 | import App from "./App.vue"; 8 | 9 | // @ts-ignore 10 | const router = createRouter({ 11 | routes, 12 | history: createWebHistory(), 13 | }); 14 | 15 | createApp(App).use(router).mount("#app"); 16 | -------------------------------------------------------------------------------- /dashboard-v3/src/main.ts: -------------------------------------------------------------------------------- 1 | import "tailwindcss/tailwind.css"; 2 | import { createApp } from "vue"; 3 | import { createRouter, createWebHistory } from "vue-router"; 4 | 5 | // @ts-ignore 6 | import routes from "~pages"; 7 | import App from "./App.vue"; 8 | 9 | // @ts-ignore 10 | const router = createRouter({ 11 | routes, 12 | history: createWebHistory(), 13 | }); 14 | 15 | createApp(App).use(router).mount("#app"); 16 | -------------------------------------------------------------------------------- /dashboard-v4/src/main.ts: -------------------------------------------------------------------------------- 1 | import "tailwindcss/tailwind.css"; 2 | import { createApp } from "vue"; 3 | import { createRouter, createWebHistory } from "vue-router"; 4 | 5 | // @ts-ignore 6 | import routes from "~pages"; 7 | import App from "./App.vue"; 8 | 9 | // @ts-ignore 10 | const router = createRouter({ 11 | routes, 12 | history: createWebHistory(), 13 | }); 14 | 15 | createApp(App).use(router).mount("#app"); 16 | -------------------------------------------------------------------------------- /dashboard-v5/src/main.ts: -------------------------------------------------------------------------------- 1 | import "tailwindcss/tailwind.css"; 2 | import { createApp } from "vue"; 3 | import { createRouter, createWebHistory } from "vue-router"; 4 | 5 | // @ts-ignore 6 | import routes from "~pages"; 7 | import App from "./App.vue"; 8 | 9 | // @ts-ignore 10 | const router = createRouter({ 11 | routes, 12 | history: createWebHistory(), 13 | }); 14 | 15 | createApp(App).use(router).mount("#app"); 16 | -------------------------------------------------------------------------------- /dashboard-v6/src/main.ts: -------------------------------------------------------------------------------- 1 | import "tailwindcss/tailwind.css"; 2 | import { createApp } from "vue"; 3 | import { createRouter, createWebHistory } from "vue-router"; 4 | 5 | // @ts-ignore 6 | import routes from "~pages"; 7 | import App from "./App.vue"; 8 | 9 | // @ts-ignore 10 | const router = createRouter({ 11 | routes, 12 | history: createWebHistory(), 13 | }); 14 | 15 | createApp(App).use(router).mount("#app"); 16 | -------------------------------------------------------------------------------- /dashboard-v7/src/main.ts: -------------------------------------------------------------------------------- 1 | import "tailwindcss/tailwind.css"; 2 | import { createApp } from "vue"; 3 | import { createRouter, createWebHistory } from "vue-router"; 4 | 5 | // @ts-ignore 6 | import routes from "~pages"; 7 | import App from "./App.vue"; 8 | 9 | // @ts-ignore 10 | const router = createRouter({ 11 | routes, 12 | history: createWebHistory(), 13 | }); 14 | 15 | createApp(App).use(router).mount("#app"); 16 | -------------------------------------------------------------------------------- /dashboard-v8/src/main.ts: -------------------------------------------------------------------------------- 1 | import "tailwindcss/tailwind.css"; 2 | import { createApp } from "vue"; 3 | import { createRouter, createWebHistory } from "vue-router"; 4 | 5 | // @ts-ignore 6 | import routes from "~pages"; 7 | import App from "./App.vue"; 8 | 9 | // @ts-ignore 10 | const router = createRouter({ 11 | routes, 12 | history: createWebHistory(), 13 | }); 14 | 15 | createApp(App).use(router).mount("#app"); 16 | -------------------------------------------------------------------------------- /dashboard-v9/src/main.ts: -------------------------------------------------------------------------------- 1 | import "tailwindcss/tailwind.css"; 2 | import { createApp } from "vue"; 3 | import { createRouter, createWebHistory } from "vue-router"; 4 | 5 | // @ts-ignore 6 | import routes from "~pages"; 7 | import App from "./App.vue"; 8 | 9 | // @ts-ignore 10 | const router = createRouter({ 11 | routes, 12 | history: createWebHistory(), 13 | }); 14 | 15 | createApp(App).use(router).mount("#app"); 16 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/sidebar/SidebarHeader.vue: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/sidebar/icons/UsersIcon.vue: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/icons/UsersIcon.vue: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/sidebar/icons/DashboardIcon.vue: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/sidebar/icons/AnalyticIcon.vue: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/sidebar/icons/DashboardIcon.vue: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /dashboard-v5/src/components/docs/Snippet.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 19 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/sidebar/icons/ContactIcon.vue: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/sidebar/icons/TerminalIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/icons/ContactIcon.vue: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/icons/TerminalIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v8/src/dashboard/sidebar/icons/EventIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v4/src/components/docs/Snippet.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 19 | -------------------------------------------------------------------------------- /dashboard-v6/src/components/docs/Snippet.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 19 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/SidebarItemSection.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 22 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/SidebarItemSection.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 22 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/sidebar/icons/TimeManageIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v8/src/dashboard/sidebar/icons/MessageIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/sidebar/icons/TimeManageIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v3/src/components/docs/Snippet.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 19 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/sidebar/icons/MonitoringIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/icons/VideoIcon.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/icons/VideoIcon.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/sidebar/icons/MediaIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/icons/MediaIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Salvia-kit Dashboard V1 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Salvia-kit Dashboard V2 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Salvia-kit Dashboard V3 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Salvia-kit Dashboard V4 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v5/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Salvia-kit Dashboard V5 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v6/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Salvia-kit Dashboard V6 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v7/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Salvia-kit Dashboard V7 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Salvia-kit Dashboard V8 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v9/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Salvia-kit Dashboard V9 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/sidebar/icons/RecycleBinIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/icons/RecycleBinIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v9/src/components/docs/Snippet.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 18 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/sidebar/icons/ServerIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/icons/ServerIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/Overlay.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/icons/IllustrationIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/Overlay.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/icons/IllustrationIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/Overlay.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/sidebar/icons/HomeIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/Overlay.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/Overlay.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /dashboard-v8/src/dashboard/Overlay.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/Overlay.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/icons/UpdatesIcon.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/icons/UpdatesIcon.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v4/src/dashboard/Overlay.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/Overlay.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /dashboard-v8/src/dashboard/sidebar/icons/DocIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v1/src/components/docs/Snippet.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 20 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/icons/GraphicDesignIcon.vue: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /dashboard-v2/src/components/docs/Snippet.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 20 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/icons/GraphicDesignIcon.vue: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /dashboard-v4/src/dashboard/sidebar/icons/ArchiveIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /dashboard-v4/src/dashboard/sidebar/icons/Crediticon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/sidebar/icons/CalendarIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/sidebar/icons/CalendarIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/icons/ArIcon.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/icons/ArIcon.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /dashboard-v4/src/dashboard/sidebar/icons/HomeIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /dashboard-v8/src/dashboard/sidebar/icons/StatisticIcon.vue: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/icons/DocIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/icons/DocIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/sidebar/icons/DocIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/sidebar/icons/DocIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/sidebar/icons/DocIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/icons/DocIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/sidebar/icons/DocIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v8/src/dashboard/sidebar/icons/GuideIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/sidebar/icons/BillsIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /dashboard-v7/src/components/docs/Snippet.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 23 | -------------------------------------------------------------------------------- /dashboard-v8/src/components/docs/Snippet.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 22 | -------------------------------------------------------------------------------- /dashboard-v8/src/dashboard/sidebar/icons/PictureIcon.vue: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/icons/PhotographyIcon.vue: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/icons/UxIcon.vue: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/icons/PhotographyIcon.vue: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/icons/UxIcon.vue: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /dashboard-v4/src/dashboard/sidebar/icons/DocIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/sidebar/icons/SettingsIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/sidebar/icons/SettingsIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/icons/SettingsIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/sidebar/icons/SettingsIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v1/src/components/docs/icons/FileIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /dashboard-v2/src/components/docs/icons/FileIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /dashboard-v3/src/components/docs/icons/FileIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /dashboard-v4/src/components/docs/icons/FileIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /dashboard-v5/src/components/docs/icons/FileIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /dashboard-v6/src/components/docs/icons/FileIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /dashboard-v7/src/components/docs/icons/FileIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /dashboard-v8/src/components/docs/icons/FileIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /dashboard-v9/src/components/docs/icons/FileIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 32 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing to Salvia-kit Dashboard 2 | 3 | You can contribute by fixing bugs or grammar. 4 | 5 | 1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device. 6 | 2. Create a new branch `git checkout -b MY_BRANCH_NAME` 7 | 3. Install yarn: `npm install -g yarn` 8 | 4. Install the dependencies: `yarn` 9 | 5. Run `yarn dev` to build and watch for code changes 10 | 6. Push your contribution to the branch you created `git push origin MY_BRANCH_NAME` 11 | 7. Navigate to the original repository where you created your fork 12 | 8. Click on `Compare and pull request` to view changes 13 | 9. Then click on `create pull request` 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v1/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "module": "ESNext", 6 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "preserve", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /dashboard-v2/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "module": "ESNext", 6 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "preserve", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /dashboard-v3/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "module": "ESNext", 6 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "preserve", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /dashboard-v4/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "module": "ESNext", 6 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "preserve", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /dashboard-v5/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "module": "ESNext", 6 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "preserve", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /dashboard-v6/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "module": "ESNext", 6 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "preserve", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /dashboard-v7/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "module": "ESNext", 6 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "preserve", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /dashboard-v8/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "module": "ESNext", 6 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "preserve", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /dashboard-v9/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "module": "ESNext", 6 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "preserve", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /dashboard-v3/contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing to Salvia-kit Dashboard 2 | 3 | You can contribute by fixing bugs or grammar. 4 | 5 | 1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device. 6 | 2. Create a new branch `git checkout -b MY_BRANCH_NAME` 7 | 3. Install yarn: `npm install -g yarn` 8 | 4. Install the dependencies: `yarn` 9 | 5. Run `yarn dev` to build and watch for code changes 10 | 6. Push your contribution to the branch you created `git push origin MY_BRANCH_NAME` 11 | 7. Navigate to the original repository where you created your fork 12 | 8. Click on `Compare and pull request` to view changes 13 | 9. Then click on `create pull request` 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v4/contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing to Salvia-kit Dashboard 2 | 3 | You can contribute by fixing bugs or grammar. 4 | 5 | 1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device. 6 | 2. Create a new branch `git checkout -b MY_BRANCH_NAME` 7 | 3. Install yarn: `npm install -g yarn` 8 | 4. Install the dependencies: `yarn` 9 | 5. Run `yarn dev` to build and watch for code changes 10 | 6. Push your contribution to the branch you created `git push origin MY_BRANCH_NAME` 11 | 7. Navigate to the original repository where you created your fork 12 | 8. Click on `Compare and pull request` to view changes 13 | 9. Then click on `create pull request` 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v6/contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing to Salvia-kit Dashboard 2 | 3 | You can contribute by fixing bugs or grammar. 4 | 5 | 1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device. 6 | 2. Create a new branch `git checkout -b MY_BRANCH_NAME` 7 | 3. Install yarn: `npm install -g yarn` 8 | 4. Install the dependencies: `yarn` 9 | 5. Run `yarn dev` to build and watch for code changes 10 | 6. Push your contribution to the branch you created `git push origin MY_BRANCH_NAME` 11 | 7. Navigate to the original repository where you created your fork 12 | 8. Click on `Compare and pull request` to view changes 13 | 9. Then click on `create pull request` 14 | 15 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/sidebar/icons/StatusIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /dashboard-v6/src/dashboard/sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 34 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/icons/AllAppIcon.vue: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/icons/AllAppIcon.vue: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /dashboard-v1/src/components/docs/icons/FolderIcon.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /dashboard-v1/src/dashboard/sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 35 | -------------------------------------------------------------------------------- /dashboard-v2/src/components/docs/icons/FolderIcon.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /dashboard-v3/src/components/docs/icons/FolderIcon.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /dashboard-v4/src/components/docs/icons/FolderIcon.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /dashboard-v5/src/components/docs/icons/FolderIcon.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /dashboard-v6/src/components/docs/icons/FolderIcon.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /dashboard-v7/src/components/docs/icons/FolderIcon.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /dashboard-v8/src/components/docs/icons/FolderIcon.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /dashboard-v9/src/components/docs/icons/FolderIcon.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /dashboard-v7/src/dashboard/sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 35 | -------------------------------------------------------------------------------- /dashboard-v8/src/dashboard/sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 34 | -------------------------------------------------------------------------------- /dashboard-v2/src/dashboard/sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 35 | -------------------------------------------------------------------------------- /dashboard-v4/src/dashboard/sidebar/icons/StatusIcon.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /dashboard-v1/public/images/ts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard-v2/public/images/ts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard-v3/public/images/ts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard-v4/public/images/ts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard-v5/public/images/ts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard-v6/public/images/ts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard-v7/public/images/ts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard-v8/public/images/ts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard-v9/public/images/ts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Salvia-kit Vue Dashboards 2 | 3 | ![Salvia-kit Dashboard v1](https://www.salvia-kit.com/images/dashboards/dashv1.png) 4 | 5 | ![Salvia-kit Dashboard v2](https://www.salvia-kit.com/images/dashboards/dashv2.jpg) 6 | 7 | ![Salvia-kit Dashboard v3](https://www.salvia-kit.com/images/dashboards/dashv3.png) 8 | 9 | ![Salvia-kit Dashboard v4](https://www.salvia-kit.com/images/dashboards/dashv4.jpg) 10 | 11 | ![Salvia-kit Dashboard v5](https://www.salvia-kit.com/images/dashboards/dashv5.jpg) 12 | 13 | ![Salvia-kit Dashboard v6](https://www.salvia-kit.com/images/dashboards/dashv6.jpg) 14 | 15 | ![Salvia-kit Dashboard v7](https://www.salvia-kit.com/images/dashboards/dashv7.jpg) 16 | 17 | ![Salvia-kit Dashboard v8](https://www.salvia-kit.com/images/dashboards/dashv8.jpg) 18 | 19 | ![Salvia-kit Dashboard v9](https://www.salvia-kit.com/images/dashboards/dashv9.png) 20 | 21 | ![Salvia-kit Dashboard v10](https://www.salvia-kit.com/images/dashboards/dashv10.png) 22 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/sidebar/icons/TaskIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/sidebar/icons/AppIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/sidebar/icons/TaskIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/sidebar/icons/DemographicIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v1/src/components/docs/icons/VueIcon.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /dashboard-v2/src/components/docs/icons/VueIcon.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /dashboard-v3/src/components/docs/icons/VueIcon.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /dashboard-v4/src/components/docs/icons/VueIcon.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /dashboard-v5/src/components/docs/icons/VueIcon.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /dashboard-v5/src/dashboard/sidebar/icons/SettingsIcon.vue: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /dashboard-v6/src/components/docs/icons/VueIcon.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /dashboard-v7/src/components/docs/icons/VueIcon.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /dashboard-v8/src/components/docs/icons/VueIcon.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /dashboard-v9/src/components/docs/icons/VueIcon.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /dashboard-v4/src/dashboard/sidebar/icons/SettingsIcon.vue: -------------------------------------------------------------------------------- 1 | 23 | 24 | 29 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/sidebar/icons/ProjectIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v3/src/dashboard/sidebar/icons/ReportIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/sidebar/icons/ProjectIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /dashboard-v9/src/dashboard/sidebar/icons/ReportIcon.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Enoch Ndika 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /dashboard-v3/LICENCE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Enoch Ndika 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /dashboard-v4/LICENCE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Enoch Ndika 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /dashboard-v6/LICENCE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Enoch Ndika 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /dashboard-v1/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "salvia-kit-dashboard-v1-vue", 3 | "version": "1.0.0", 4 | "author": { 5 | "name": "Enoch Ndika" 6 | }, 7 | "license": "MIT", 8 | "keywords": [ 9 | "ui", 10 | "vue", 11 | "components", 12 | "dashboard", 13 | "admin", 14 | "tailwindcss", 15 | "nuxt", 16 | "Nuxt.js", 17 | "layout" 18 | ], 19 | "type": "module", 20 | "scripts": { 21 | "dev": "vite", 22 | "build": "vue-tsc && vite build", 23 | "preview": "vite preview" 24 | }, 25 | "dependencies": { 26 | "vite-plugin-pages": "^0.31.0", 27 | "vue": "^3.2.47", 28 | "vue-router": "4" 29 | }, 30 | "devDependencies": { 31 | "@vitejs/plugin-vue": "^4.2.3", 32 | "autoprefixer": "^10.4.14", 33 | "eslint": "^8.43.0", 34 | "eslint-config-prettier": "^8.8.0", 35 | "eslint-plugin-prettier": "^4.2.1", 36 | "eslint-plugin-tailwindcss": "^3.12.1", 37 | "eslint-plugin-vue": "^9.15.0", 38 | "postcss": "^8.4.24", 39 | "prettier": "^2.8.8", 40 | "tailwindcss": "^3.3.2", 41 | "typescript": "^5.0.2", 42 | "vite": "^4.3.9", 43 | "vue-tsc": "^1.4.2" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /dashboard-v2/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "salvia-kit-dashboard-v2-vue", 3 | "version": "1.0.0", 4 | "author": { 5 | "name": "Enoch Ndika" 6 | }, 7 | "license": "MIT", 8 | "keywords": [ 9 | "ui", 10 | "vue", 11 | "components", 12 | "dashboard", 13 | "admin", 14 | "tailwindcss", 15 | "nuxt", 16 | "Nuxt.js", 17 | "layout" 18 | ], 19 | "type": "module", 20 | "scripts": { 21 | "dev": "vite", 22 | "build": "vue-tsc && vite build", 23 | "preview": "vite preview" 24 | }, 25 | "dependencies": { 26 | "vite-plugin-pages": "^0.31.0", 27 | "vue": "^3.2.47", 28 | "vue-router": "4" 29 | }, 30 | "devDependencies": { 31 | "@vitejs/plugin-vue": "^4.2.3", 32 | "autoprefixer": "^10.4.14", 33 | "eslint": "^8.43.0", 34 | "eslint-config-prettier": "^8.8.0", 35 | "eslint-plugin-prettier": "^4.2.1", 36 | "eslint-plugin-tailwindcss": "^3.12.1", 37 | "eslint-plugin-vue": "^9.15.0", 38 | "postcss": "^8.4.24", 39 | "prettier": "^2.8.8", 40 | "tailwindcss": "^3.3.2", 41 | "typescript": "^5.0.2", 42 | "vite": "^4.3.9", 43 | "vue-tsc": "^1.4.2" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /dashboard-v3/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "salvia-kit-dashboard-v3-vue", 3 | "version": "1.0.0", 4 | "author": { 5 | "name": "Enoch Ndika" 6 | }, 7 | "license": "MIT", 8 | "keywords": [ 9 | "ui", 10 | "vue", 11 | "components", 12 | "dashboard", 13 | "admin", 14 | "tailwindcss", 15 | "nuxt", 16 | "Nuxt.js", 17 | "layout" 18 | ], 19 | "type": "module", 20 | "scripts": { 21 | "dev": "vite", 22 | "build": "vue-tsc && vite build", 23 | "preview": "vite preview" 24 | }, 25 | "dependencies": { 26 | "vite-plugin-pages": "^0.31.0", 27 | "vue": "^3.2.47", 28 | "vue-router": "4" 29 | }, 30 | "devDependencies": { 31 | "@vitejs/plugin-vue": "^4.2.3", 32 | "autoprefixer": "^10.4.14", 33 | "eslint": "^8.43.0", 34 | "eslint-config-prettier": "^8.8.0", 35 | "eslint-plugin-prettier": "^4.2.1", 36 | "eslint-plugin-tailwindcss": "^3.12.1", 37 | "eslint-plugin-vue": "^9.15.0", 38 | "postcss": "^8.4.24", 39 | "prettier": "^2.8.8", 40 | "tailwindcss": "^3.3.2", 41 | "typescript": "^5.0.2", 42 | "vite": "^4.3.9", 43 | "vue-tsc": "^1.4.2" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /dashboard-v4/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "salvia-kit-dashboard-v4-vue", 3 | "version": "1.0.0", 4 | "author": { 5 | "name": "Enoch Ndika" 6 | }, 7 | "license": "MIT", 8 | "keywords": [ 9 | "ui", 10 | "vue", 11 | "components", 12 | "dashboard", 13 | "admin", 14 | "tailwindcss", 15 | "nuxt", 16 | "Nuxt.js", 17 | "layout" 18 | ], 19 | "type": "module", 20 | "scripts": { 21 | "dev": "vite", 22 | "build": "vue-tsc && vite build", 23 | "preview": "vite preview" 24 | }, 25 | "dependencies": { 26 | "vite-plugin-pages": "^0.31.0", 27 | "vue": "^3.2.47", 28 | "vue-router": "4" 29 | }, 30 | "devDependencies": { 31 | "@vitejs/plugin-vue": "^4.2.3", 32 | "autoprefixer": "^10.4.14", 33 | "eslint": "^8.43.0", 34 | "eslint-config-prettier": "^8.8.0", 35 | "eslint-plugin-prettier": "^4.2.1", 36 | "eslint-plugin-tailwindcss": "^3.12.1", 37 | "eslint-plugin-vue": "^9.15.0", 38 | "postcss": "^8.4.24", 39 | "prettier": "^2.8.8", 40 | "tailwindcss": "^3.3.2", 41 | "typescript": "^5.0.2", 42 | "vite": "^4.3.9", 43 | "vue-tsc": "^1.4.2" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /dashboard-v5/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "salvia-kit-dashboard-v5-vue", 3 | "version": "1.0.0", 4 | "author": { 5 | "name": "Enoch Ndika" 6 | }, 7 | "license": "MIT", 8 | "keywords": [ 9 | "ui", 10 | "vue", 11 | "components", 12 | "dashboard", 13 | "admin", 14 | "tailwindcss", 15 | "nuxt", 16 | "Nuxt.js", 17 | "layout" 18 | ], 19 | "type": "module", 20 | "scripts": { 21 | "dev": "vite", 22 | "build": "vue-tsc && vite build", 23 | "preview": "vite preview" 24 | }, 25 | "dependencies": { 26 | "vite-plugin-pages": "^0.31.0", 27 | "vue": "^3.2.47", 28 | "vue-router": "4" 29 | }, 30 | "devDependencies": { 31 | "@vitejs/plugin-vue": "^4.2.3", 32 | "autoprefixer": "^10.4.14", 33 | "eslint": "^8.43.0", 34 | "eslint-config-prettier": "^8.8.0", 35 | "eslint-plugin-prettier": "^4.2.1", 36 | "eslint-plugin-tailwindcss": "^3.12.1", 37 | "eslint-plugin-vue": "^9.15.0", 38 | "postcss": "^8.4.24", 39 | "prettier": "^2.8.8", 40 | "tailwindcss": "^3.3.2", 41 | "typescript": "^5.0.2", 42 | "vite": "^4.3.9", 43 | "vue-tsc": "^1.4.2" 44 | } 45 | } 46 | --------------------------------------------------------------------------------