Skip to content

Commit

Permalink
chore: updates + icons update
Browse files Browse the repository at this point in the history
  • Loading branch information
Yizack committed Oct 31, 2024
1 parent cc9e5ac commit 119a1c5
Show file tree
Hide file tree
Showing 7 changed files with 453 additions and 270 deletions.
1 change: 0 additions & 1 deletion .config/nuxt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ export default defineNuxtConfig({
hub: { database: true, blob: true, cache: true },
icon: {
mode: "svg",
serverBundle: "remote",
clientBundle: { scan: true, sizeLimitKb: 2048 }
},
eslint: {
Expand Down
2 changes: 1 addition & 1 deletion app/components/GeoSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ onMounted(() => {
<label>{{ t("location") }}</label>
</div>
<button v-if="selected" class="btn btn-primary" type="button" @click="changeLocation">
<Icon name="ic:round-close" size="1.5rem" />
<Icon name="tabler:x" size="1.5rem" />
</button>
</div>
<ul v-if="search && text" class="geosearch bg-body position-absolute top-100 rounded-bottom border py-2 px-0 shadow w-100 m-0">
Expand Down
2 changes: 1 addition & 1 deletion app/components/button/ButtonAdd.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<button class="btn btn-primary btn-sm rounded-circle p-1" role="button">
<Icon name="ic:round-add" size="2em" />
<Icon name="tabler:plus" size="2em" />
</button>
</template>
2 changes: 1 addition & 1 deletion app/pages/app/settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ useSeo({
<Icon name="solar:planet-3-linear" />
<span>{{ t("country_or_territory") }}</span>
</label>
<button v-if="country.focus" type="button" class="btn btn-danger position-absolute end-0 top-50 translate-middle-y p-2 me-2 d-flex" @click="removeCountry()"><Icon name="ic:round-close" size="1.3rem" /></button>
<button v-if="country.focus" type="button" class="btn btn-danger position-absolute end-0 top-50 translate-middle-y p-2 me-2 d-flex" @click="removeCountry()"><Icon name="tabler:x" size="1.3rem" /></button>
</div>
</div>
<div v-if="country.focus" class="position-relative z-3 mt-2">
Expand Down
2 changes: 1 addition & 1 deletion app/pages/map/[code].vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ useSeo({
</div>
<div class="d-flex gap-1">
<button v-if="filter.year" class="btn btn-sm btn-danger rounded-3">
<Icon name="ic:round-close" size="1.3rem" @click="clearFilter" />
<Icon name="tabler:x" size="1.3rem" @click="clearFilter" />
</button>
<ClientOnly v-if="!isMobile || expandCanvas">
<VueDatePicker v-model.number="filter.year" year-picker reverse-years :year-range="[currentYear - 100, currentYear]" :dark="$colorMode.preference === 'dark'">
Expand Down
34 changes: 18 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@
"devDependencies": {
"@cloudflare/workers-types": "^4.20241022.0",
"@dargmuesli/nuxt-cookie-control": "^8.4.15",
"@nuxt/eslint": "^0.6.0",
"@nuxt/icon": "^1.5.8",
"@nuxthub/core": "^0.8.2",
"@iconify-json/solar": "^1.2.1",
"@iconify-json/tabler": "^1.2.7",
"@nuxt/eslint": "^0.6.1",
"@nuxt/icon": "^1.6.1",
"@nuxthub/core": "^0.8.4",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/sitemap": "^6.1.2",
"@nuxtjs/sitemap": "^6.1.3",
"@nuxtjs/turnstile": "^0.9.10",
"@paddle/paddle-js": "^1.2.3",
"@paddle/paddle-js": "^1.3.1",
"@paddle/paddle-node-sdk": "^1.9.1",
"@types/bootstrap": "^5.2.10",
"@types/leaflet": "^1.9.14",
Expand All @@ -49,26 +51,26 @@
"@vuepic/vue-datepicker": "^9.0.3",
"@yeger/vue-masonry-wall": "^5.0.16",
"bootstrap": "^5.3.3",
"drizzle-kit": "^0.26.2",
"drizzle-orm": "^0.35.3",
"drizzle-kit": "^0.27.0",
"drizzle-orm": "^0.36.0",
"eslint": "^9.13.0",
"leaflet": "^1.9.4",
"leaflet-geosearch": "^4.0.0",
"nodemailer": "^6.9.15",
"nodemailer": "^6.9.16",
"nuxt": "^3.13.2",
"nuxt-auth-utils": "^0.5.0",
"nuxt-auth-utils": "^0.5.1",
"nuxt-twemoji": "3.6.2",
"nuxt-webhook-validators": "^0.1.2",
"sass": "^1.80.4",
"nuxt-webhook-validators": "^0.1.3",
"sass": "^1.80.5",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"tsx": "^4.19.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitepress": "^1.4.1",
"vitepress": "^1.4.3",
"vue-draggable-next": "^2.2.1",
"vue-tsc": "^2.1.8",
"wrangler": "^3.83.0",
"vue-tsc": "^2.1.10",
"wrangler": "^3.84.0",
"zod": "^3.23.8"
},
"packageManager": "[email protected].2"
"packageManager": "[email protected].3"
}
Loading

0 comments on commit 119a1c5

Please sign in to comment.