From 26fd0c67e435ca61a6013555fe0495ee0e1b69fc Mon Sep 17 00:00:00 2001 From: Spythere Date: Sun, 7 Apr 2024 22:00:09 +0200 Subject: [PATCH] feat: team & sponsor restrictions added --- package.json | 2 +- src/components/sections/InputsSection.vue | 4 +- src/components/sections/LogoSection.vue | 1 - src/components/sections/TrainImageSection.vue | 77 +++--- src/components/tabs/StockGeneratorTab.vue | 3 +- src/components/tabs/StockListTab.vue | 240 +++++++++++------- src/components/tabs/WikiListTab.vue | 39 ++- src/components/utils/StockThumbnails.vue | 2 +- src/locales/en.json | 3 + src/locales/pl.json | 5 +- src/mixins/stockMixin.ts | 3 +- src/mixins/warningsMixin.ts | 42 --- src/styles/global.scss | 3 + src/types.ts | 22 +- src/utils/vehicleUtils.ts | 31 +-- 15 files changed, 243 insertions(+), 234 deletions(-) delete mode 100644 src/mixins/warningsMixin.ts diff --git a/package.json b/package.json index 8d80aaf..2aea9e6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pojazdownik", - "version": "1.8.3.1", + "version": "1.8.4", "private": true, "type": "module", "scripts": { diff --git a/src/components/sections/InputsSection.vue b/src/components/sections/InputsSection.vue index 98e67c3..a7728d7 100644 --- a/src/components/sections/InputsSection.vue +++ b/src/components/sections/InputsSection.vue @@ -28,7 +28,7 @@ {{ $t('inputs.input-vehicle') }} @@ -59,7 +59,7 @@ diff --git a/src/components/sections/LogoSection.vue b/src/components/sections/LogoSection.vue index e6e7d18..76c8f94 100644 --- a/src/components/sections/LogoSection.vue +++ b/src/components/sections/LogoSection.vue @@ -51,7 +51,6 @@ export default { .logo-section { grid-row: 1; grid-column: 1; - margin-bottom: 1.5em; display: flex; align-items: center; diff --git a/src/components/sections/TrainImageSection.vue b/src/components/sections/TrainImageSection.vue index 4ab8859..086a61c 100644 --- a/src/components/sections/TrainImageSection.vue +++ b/src/components/sections/TrainImageSection.vue @@ -1,21 +1,22 @@ @@ -121,7 +126,7 @@ export default defineComponent({