gitextract_vqblgh86/ ├── .editorconfig ├── .eslintrc.cjs ├── .gitattributes ├── .github/ │ ├── COMMIT_CONVENTION.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ └── playwright.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .storybook/ │ ├── main.ts │ ├── preview.ts │ └── storybook-main.scss ├── .vscode/ │ └── extensions.json ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.ja-JP.md ├── README.md ├── README.zh-CN.md ├── _redirects ├── docs/ │ └── pre-production.md ├── e2e/ │ ├── .gitignore │ ├── README.MD │ ├── package.json │ ├── playwright.config.ts │ ├── stubs/ │ │ ├── index.ts │ │ ├── projects.ts │ │ └── users.ts │ ├── tests/ │ │ └── vuestic-admin.spec.ts │ └── utils/ │ └── index.ts ├── index.html ├── netlify.toml ├── package.json ├── postcss.config.js ├── public/ │ └── site.webmanifest ├── src/ │ ├── App.vue │ ├── components/ │ │ ├── NotFoundImage.vue │ │ ├── VuesticLogo.stories.ts │ │ ├── VuesticLogo.vue │ │ ├── app-layout-navigation/ │ │ │ └── AppLayoutNavigation.vue │ │ ├── icons/ │ │ │ ├── VaIconCleanCode.vue │ │ │ ├── VaIconColor.vue │ │ │ ├── VaIconDiscord.vue │ │ │ ├── VaIconFaster.vue │ │ │ ├── VaIconFree.vue │ │ │ ├── VaIconFresh.vue │ │ │ ├── VaIconGitHub.vue │ │ │ ├── VaIconHideSidebar.vue │ │ │ ├── VaIconMenu.vue │ │ │ ├── VaIconMenuCollapsed.vue │ │ │ ├── VaIconMessage.vue │ │ │ ├── VaIconNotification.vue │ │ │ ├── VaIconResponsive.vue │ │ │ ├── VaIconRich.vue │ │ │ ├── VaIconSlower.vue │ │ │ ├── VaIconVue.vue │ │ │ └── VaIconVuestic.vue │ │ ├── navbar/ │ │ │ ├── AppNavbar.vue │ │ │ └── components/ │ │ │ ├── AppNavbarActions.vue │ │ │ ├── GitHubButton.vue │ │ │ └── dropdowns/ │ │ │ ├── NotificationDropdown.vue │ │ │ └── ProfileDropdown.vue │ │ ├── sidebar/ │ │ │ ├── AppSidebar.vue │ │ │ └── NavigationRoutes.ts │ │ ├── typography/ │ │ │ ├── Typography.stories.ts │ │ │ └── Typography.vue │ │ ├── va-charts/ │ │ │ ├── VaChart.vue │ │ │ ├── chart-types/ │ │ │ │ ├── BarChart.vue │ │ │ │ ├── BubbleChart.vue │ │ │ │ ├── DoughnutChart.vue │ │ │ │ ├── HorizontalBarChart.vue │ │ │ │ ├── LineChart.vue │ │ │ │ ├── Map.vue │ │ │ │ └── PieChart.vue │ │ │ ├── external-tooltip.ts │ │ │ └── vaChartConfigs.js │ │ ├── va-medium-editor/ │ │ │ ├── VaMediumEditor.vue │ │ │ └── _variables.scss │ │ └── va-timeline-item.vue │ ├── data/ │ │ ├── CountriesList.ts │ │ ├── charts/ │ │ │ ├── barChartData.ts │ │ │ ├── bubbleChartData.ts │ │ │ ├── composables/ │ │ │ │ ├── useChartColors.ts │ │ │ │ └── useChartData.ts │ │ │ ├── doughnutChartData.ts │ │ │ ├── horizontalBarChartData.ts │ │ │ ├── index.ts │ │ │ ├── lineChartData.ts │ │ │ ├── pieChartData.ts │ │ │ └── revenueChartData.ts │ │ ├── geo.json │ │ ├── pages/ │ │ │ ├── projects-db.json │ │ │ ├── projects.ts │ │ │ ├── users-db.json │ │ │ └── users.ts │ │ ├── types.ts │ │ └── users.json │ ├── env.d.ts │ ├── i18n/ │ │ ├── index.ts │ │ └── locales/ │ │ ├── br.json │ │ ├── cn.json │ │ ├── es.json │ │ ├── gb.json │ │ └── ir.json │ ├── layouts/ │ │ ├── AppLayout.vue │ │ ├── AuthLayout.vue │ │ └── RouterBypass.vue │ ├── main.ts │ ├── pages/ │ │ ├── 404.vue │ │ ├── admin/ │ │ │ ├── dashboard/ │ │ │ │ ├── Dashboard.vue │ │ │ │ ├── DataSection.vue │ │ │ │ ├── DataSectionItem.vue │ │ │ │ └── cards/ │ │ │ │ ├── MonthlyEarnings.vue │ │ │ │ ├── ProjectTable.vue │ │ │ │ ├── RegionRevenue.vue │ │ │ │ ├── RevenueByLocationMap.vue │ │ │ │ ├── RevenueReport.vue │ │ │ │ ├── RevenueReportChart.vue │ │ │ │ ├── Timeline.vue │ │ │ │ └── YearlyBreakup.vue │ │ │ └── pages/ │ │ │ └── 404PagesPage.vue │ │ ├── auth/ │ │ │ ├── CheckTheEmail.vue │ │ │ ├── Login.vue │ │ │ ├── RecoverPassword.vue │ │ │ └── Signup.vue │ │ ├── billing/ │ │ │ ├── BillingPage.vue │ │ │ ├── Invoices.vue │ │ │ ├── MembeshipTier.vue │ │ │ ├── PaymentInfo.vue │ │ │ ├── modals/ │ │ │ │ └── ChangeYourPaymentPlan.vue │ │ │ └── types.ts │ │ ├── faq/ │ │ │ ├── FaqPage.vue │ │ │ ├── data/ │ │ │ │ ├── navigationLinks.json │ │ │ │ └── popularCategories.json │ │ │ └── widgets/ │ │ │ ├── Categories.vue │ │ │ ├── Navigation.vue │ │ │ ├── Questions.vue │ │ │ └── RequestDemo.vue │ │ ├── payments/ │ │ │ ├── PaymentsPage.vue │ │ │ ├── payment-system/ │ │ │ │ ├── PaymentSystem.stories.ts │ │ │ │ └── PaymentSystem.vue │ │ │ ├── types.ts │ │ │ └── widgets/ │ │ │ ├── billing-address/ │ │ │ │ ├── BillingAddressCreateModal.stories.ts │ │ │ │ ├── BillingAddressCreateModal.vue │ │ │ │ ├── BillingAddressEdit.stories.ts │ │ │ │ ├── BillingAddressEdit.vue │ │ │ │ ├── BillingAddressList.stories.ts │ │ │ │ ├── BillingAddressList.vue │ │ │ │ ├── BillingAddressListItem.stories.ts │ │ │ │ ├── BillingAddressListItem.vue │ │ │ │ ├── BillingAddressUpdateModal.stories.ts │ │ │ │ └── BillingAddressUpdateModal.vue │ │ │ └── my-cards/ │ │ │ ├── PaymentCardCreateModal.stories.ts │ │ │ ├── PaymentCardCreateModal.vue │ │ │ ├── PaymentCardEdit.stories.ts │ │ │ ├── PaymentCardEdit.vue │ │ │ ├── PaymentCardList.stories.ts │ │ │ ├── PaymentCardList.vue │ │ │ ├── PaymentCardListItem.stories.ts │ │ │ ├── PaymentCardListItem.vue │ │ │ ├── PaymentCardUpdateModal.stories.ts │ │ │ └── PaymentCardUpdateModal.vue │ │ ├── preferences/ │ │ │ ├── Preferences.vue │ │ │ ├── modals/ │ │ │ │ ├── EditNameModal.vue │ │ │ │ └── ResetPasswordModal.vue │ │ │ ├── preferences-header/ │ │ │ │ └── PreferencesHeader.vue │ │ │ ├── settings/ │ │ │ │ └── Settings.vue │ │ │ └── styles.ts │ │ ├── pricing-plans/ │ │ │ ├── PricingPlans.vue │ │ │ ├── options.ts │ │ │ └── styles.ts │ │ ├── projects/ │ │ │ ├── ProjectsPage.vue │ │ │ ├── components/ │ │ │ │ └── ProjectStatusBadge.vue │ │ │ ├── composables/ │ │ │ │ ├── useProjectStatusColor.ts │ │ │ │ ├── useProjectUsers.ts │ │ │ │ └── useProjects.ts │ │ │ ├── types.ts │ │ │ └── widgets/ │ │ │ ├── EditProjectForm.vue │ │ │ ├── ProjectCards.vue │ │ │ └── ProjectsTable.vue │ │ ├── settings/ │ │ │ ├── Settings.vue │ │ │ ├── language-switcher/ │ │ │ │ └── LanguageSwitcher.vue │ │ │ ├── notifications/ │ │ │ │ └── Notifications.vue │ │ │ └── theme-switcher/ │ │ │ └── ThemeSwitcher.vue │ │ └── users/ │ │ ├── UsersPage.vue │ │ ├── composables/ │ │ │ └── useUsers.ts │ │ ├── types.ts │ │ └── widgets/ │ │ ├── EditUserForm.vue │ │ ├── UserAvatar.vue │ │ └── UsersTable.vue │ ├── router/ │ │ └── index.ts │ ├── scss/ │ │ ├── icon-fonts/ │ │ │ ├── index.scss │ │ │ └── vuestic-icons/ │ │ │ └── vuestic-icons.scss │ │ ├── main.scss │ │ ├── tailwind.scss │ │ └── vuestic.scss │ ├── services/ │ │ ├── api.ts │ │ ├── toCSV.ts │ │ ├── utils.ts │ │ └── vuestic-ui/ │ │ ├── global-config.ts │ │ ├── icons-config/ │ │ │ ├── aliases.ts │ │ │ └── icons-config.ts │ │ └── themes.ts │ └── stores/ │ ├── billing-addresses.ts │ ├── global-store.ts │ ├── index.ts │ ├── notifications.ts │ ├── payment-cards.ts │ ├── projects.ts │ ├── user-store.ts │ └── users.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts