feat(ui) : required cohérent + astérisque label + sanitisation email (MUI-41) #60

Merged
tristan merged 51 commits from feature/MUI-41-props-required-asterisque-dans-le-label-sur-les-co into develop 2026-06-04 06:42:20 +00:00
Showing only changes of commit f97cb44870 - Show all commits
+3 -3
View File
@@ -1,13 +1,13 @@
<template>
<div v-bind="$attrs">
<div v-if="isWindowed" class="flex items-end justify-center border-b border-m-primary">
<div v-if="isWindowed" class="flex items-center justify-center gap-[36px] border-b border-m-primary">
<button
type="button"
aria-label="Onglets précédents"
data-test="tab-prev"
:disabled="!canPrev"
:class="[
'mr-[36px] pb-[6px] text-m-primary',
'text-m-primary',
canPrev ? 'cursor-pointer hover:text-m-primary/70' : 'cursor-not-allowed text-m-primary/30',
]"
@click="prev"
@@ -55,7 +55,7 @@
data-test="tab-next"
:disabled="!canNext"
:class="[
'ml-[36px] pb-[6px] text-m-primary',
'text-m-primary',
canNext ? 'cursor-pointer hover:text-m-primary/70' : 'cursor-not-allowed text-m-primary/30',
]"
@click="next"