Compare commits

..

No commits in common. "1.2.2" and "1.2.1" have entirely different histories.
1.2.2 ... 1.2.1

3 changed files with 4 additions and 17 deletions

View File

@ -2,17 +2,10 @@
All notable changes to this project will be documented in this file. Dates are displayed in UTC. All notable changes to this project will be documented in this file. Dates are displayed in UTC.
#### [1.2.2](https://git.odit.services/lfk/selfservice/compare/1.2.1...1.2.2)
- feat(profile): add cursor pointer [`1d7cd60`](https://git.odit.services/lfk/selfservice/commit/1d7cd601ee027dd7df0405079e208d03078210bb)
#### [1.2.1](https://git.odit.services/lfk/selfservice/compare/1.2.0...1.2.1) #### [1.2.1](https://git.odit.services/lfk/selfservice/compare/1.2.0...1.2.1)
> 16 December 2024
- feat(profile): show total distance [`55abb9e`](https://git.odit.services/lfk/selfservice/commit/55abb9ed22e4c66c05536897ba33b12915eea226) - feat(profile): show total distance [`55abb9e`](https://git.odit.services/lfk/selfservice/commit/55abb9ed22e4c66c05536897ba33b12915eea226)
- refactor(profile): replace styles with tailwindcss [`c34a8a7`](https://git.odit.services/lfk/selfservice/commit/c34a8a7fcc77a0fa27280365ebf2382fbffc1e61) - refactor(profile): replace styles with tailwindcss [`c34a8a7`](https://git.odit.services/lfk/selfservice/commit/c34a8a7fcc77a0fa27280365ebf2382fbffc1e61)
- 🚀Bumped version to v1.2.1 [`9ddb188`](https://git.odit.services/lfk/selfservice/commit/9ddb188ef659742018f00d786e030f80a0d9bbc5)
- feat(profile): updated tab alignment [`d564131`](https://git.odit.services/lfk/selfservice/commit/d5641312ca0b35a5c5ab9b7b19ed3a40971ac4fd) - feat(profile): updated tab alignment [`d564131`](https://git.odit.services/lfk/selfservice/commit/d5641312ca0b35a5c5ab9b7b19ed3a40971ac4fd)
#### [1.2.0](https://git.odit.services/lfk/selfservice/compare/1.1.2...1.2.0) #### [1.2.0](https://git.odit.services/lfk/selfservice/compare/1.1.2...1.2.0)

View File

@ -1,6 +1,6 @@
{ {
"name": "@odit/lfk-selfservice", "name": "@odit/lfk-selfservice",
"version": "1.2.2", "version": "1.2.1",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@ -9,7 +9,6 @@
pr-0 pr-0
w-full w-full
md:w-auto md:text-left md:w-auto md:text-left
cursor-pointer
text-center text-black text-center text-black
dark:text-gray-200 dark:text-gray-200
"> ">
@ -35,7 +34,6 @@
hover:bg-blue-600 hover:shadow-lg hover:bg-blue-600 hover:shadow-lg
w-full w-full
md:w-auto md:w-auto
cursor-pointer
mb-1 mb-1
md:mr-1 md:mr-1
" @click="get_registration"> " @click="get_registration">
@ -60,7 +58,6 @@
hover:bg-blue-600 hover:shadow-lg hover:bg-blue-600 hover:shadow-lg
w-full w-full
md:w-auto md:w-auto
cursor-pointer
mb-1 mb-1
md:mr-1 md:mr-1
" @click="get_certificate"> " @click="get_certificate">
@ -85,7 +82,6 @@
hover:bg-red-700 hover:shadow-lg hover:bg-red-700 hover:shadow-lg
w-full w-full
md:w-auto md:w-auto
cursor-pointer
" @click="() => { " @click="() => {
state.delete_active = true; state.delete_active = true;
} }
@ -113,7 +109,6 @@
md:mb-auto md:mb-auto
w-full w-full
md:w-auto md:w-auto
cursor-pointer
bg-blue-500 bg-blue-500
hover:bg-blue-600 hover:shadow-lg hover:bg-blue-600 hover:shadow-lg
" @click="() => { " @click="() => {
@ -138,7 +133,6 @@
rounded-md rounded-md
w-full w-full
md:w-auto md:w-auto
cursor-pointer
bg-red-600 bg-red-600
hover:bg-red-700 hover:shadow-lg hover:bg-red-700 hover:shadow-lg
md:ml-1 md:ml-1
@ -167,7 +161,7 @@
" :class="{ " :class="{
'tab-active border-b-2 font-medium border-blue-500': 'tab-active border-b-2 font-medium border-blue-500':
state.activetab === 'profile', state.activetab === 'profile',
}" class="tab tab-underline cursor-pointer py-4 px-6 block" type="button"> }" class="tab tab-underline py-4 px-6 block" type="button">
{{ $t("profile") }} {{ $t("profile") }}
</button> </button>
</div> </div>
@ -178,7 +172,7 @@
" :class="{ " :class="{
'tab-active border-b-2 font-medium border-blue-500': 'tab-active border-b-2 font-medium border-blue-500':
state.activetab === 'laptimes', state.activetab === 'laptimes',
}" class="tab tab-underline cursor-pointer py-4 px-6 block" type="button"> }" class="tab tab-underline py-4 px-6 block" type="button">
{{ $t("lap_times") }} {{ $t("lap_times") }}
</button> </button>
</div> </div>
@ -189,7 +183,7 @@
" :class="{ " :class="{
'tab-active border-b-2 font-medium border-blue-500': 'tab-active border-b-2 font-medium border-blue-500':
state.activetab === 'sponsorings', state.activetab === 'sponsorings',
}" class="tab tab-underline cursor-pointer py-4 px-6 block" type="button"> }" class="tab tab-underline py-4 px-6 block" type="button">
{{ $t("sponsoring") }} {{ $t("sponsoring") }}
</button> </button>
</div> </div>