dc33cf4135
Polish across the form input components, plus two new features and a few
standalone fixes.
Fixes
-----
* Reserve hint/error/success paragraph space (min-h-[1rem]) in 15
components so a single error message no longer shifts neighboring grid
cells: InputText, Email, Password, Phone, Amount, Number, Upload,
Autocomplete, RichText, TextArea, Select, SelectCheckbox, Time,
TimePicker, CalendarField, Checkbox.
* InputPhone: the '+' add button now follows the icon-state cascade
(muted / primary on focus / black when filled / danger / success) like
the other field icons instead of being permanently primary.
* Select and SelectCheckbox: chevron color follows the field state
(muted by default, primary when open, black when an option is
selected, danger / success on error / success) instead of always being
text-current.
* InputTextArea: single-root component (was multi-root). The message
wrapper used to occupy its own grid cell, breaking row-span layouts.
Now flex flex-col, with the textarea area filling the available height
via flex-1 and the message inside the same root.
* Disabled labels use text-m-muted (border-gray) instead of text-black/60
(dark) across InputText, Email, Password, Amount, Phone, Upload,
Autocomplete, TextArea, RichText. Also removes an unreachable
peer-[&:not(:placeholder-shown):not(:focus)]:text-black/60 rule that
twMerge was silently overriding with text-black.
* InputAutocomplete: eliminates four sources of visual jitter when
focusing / opening a field that already has a selected value.
- Drop peer-focus:-translate-y-[1.55rem] extra label translate.
- Drop the .grow-height:focus padding rule (no more height growth or
downward text shift on focus).
- Drop focus:pl-[11px] (no more 1px horizontal jump).
- Replace !border-b-0 with !border-b-transparent so the bottom border
still reserves its 1px while remaining invisible against the
dropdown.
* Select / SelectCheckbox: same anti-jitter treatment.
- Drop .grow-height:focus padding rule (~12px height growth gone).
- Replace !border-b-0 / !border-t-0 with !border-b-transparent /
!border-t-transparent across danger / success / primary branches.
* Button: default width 240px -> 200px to match the form button sizing
used across the app. Test updated to match.
Features
--------
* InputTextArea: scrollbar turns primary blue on focus
(scrollbar-color: rgb(var(--m-primary)) transparent), matching the
Select listbox styling.
* InputAutocomplete: new localFilter prop (default false). When enabled,
filters the options prop client-side based on the input value
(case-insensitive label.includes(query)), so static lists no longer
need a @search listener. Async/API usage keeps the existing behavior.
Playground "Simple statique" and "Avec icône à gauche" examples use
local-filter.
Playground
----------
* client.vue: tighter grid gap (gap-y-5) plus an example error on a
SelectCheckbox to visually exercise the message-space fix.
Tests
-----
All component test files include regression coverage for the above.
720/720 tests pass.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
238 lines
4.9 KiB
Vue
238 lines
4.9 KiB
Vue
<template>
|
|
<div :class="mergedGroupClass">
|
|
<input
|
|
:id="inputId"
|
|
:name="name"
|
|
:checked="isChecked"
|
|
:required="required"
|
|
:disabled="disabled"
|
|
:aria-invalid="!!error"
|
|
:aria-describedby="describedBy"
|
|
:class="mergedInputClass"
|
|
v-bind="attrs"
|
|
type="checkbox"
|
|
@change="onChange"
|
|
>
|
|
|
|
<label
|
|
v-if="label"
|
|
:for="inputId"
|
|
:class="mergedLabelClass"
|
|
>
|
|
<span>
|
|
<svg width="12" height="10" viewBox="0 0 12 10" aria-hidden="true">
|
|
<polyline points="1.5 6 4.5 9 10.5 1"/>
|
|
</svg>
|
|
</span>
|
|
<span>
|
|
{{ label }}
|
|
</span>
|
|
</label>
|
|
|
|
<p
|
|
:id="`${inputId}-describedby`"
|
|
:class="mergedMessageClass"
|
|
>
|
|
{{ error || success || hint }}
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {computed, ref, useAttrs, useId} from 'vue'
|
|
import {twMerge} from 'tailwind-merge'
|
|
|
|
defineOptions({name: 'MalioCheckbox', inheritAttrs: false})
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
id?: string
|
|
label?: string
|
|
name?: string
|
|
modelValue?: boolean | null | undefined
|
|
inputClass?: string
|
|
labelClass?: string
|
|
groupClass?: string
|
|
required?: boolean
|
|
disabled?: boolean
|
|
readonly?: boolean
|
|
hint?: string
|
|
error?: string
|
|
success?: string
|
|
}>(),
|
|
{
|
|
id: '',
|
|
label: '',
|
|
name: '',
|
|
modelValue: undefined,
|
|
inputClass: '',
|
|
labelClass: '',
|
|
groupClass: '',
|
|
required: false,
|
|
disabled: false,
|
|
readonly: false,
|
|
hint: '',
|
|
error: '',
|
|
success: '',
|
|
},
|
|
)
|
|
|
|
const attrs = useAttrs()
|
|
const generatedId = useId()
|
|
const localChecked = ref(false)
|
|
|
|
const inputId = computed(() => props.id?.toString() || `malio-checkbox-${generatedId}`)
|
|
const isControlled = computed(() => props.modelValue !== undefined)
|
|
const isChecked = computed(() => (isControlled.value ? !!props.modelValue : localChecked.value))
|
|
const hasError = computed(() => !!props.error)
|
|
const hasSuccess = computed(() => !!props.success && !hasError.value)
|
|
const disabled = computed(() => props.disabled)
|
|
|
|
const describedBy = computed(() => {
|
|
if (!props.hint && !hasError.value && !hasSuccess.value) return undefined
|
|
return `${inputId.value}-describedby`
|
|
})
|
|
|
|
const mergedGroupClass = computed(() =>
|
|
twMerge(
|
|
'checkbox-wrapper-4 w-full',
|
|
props.groupClass,
|
|
),
|
|
)
|
|
|
|
const mergedInputClass = computed(() =>
|
|
twMerge(
|
|
'inp-cbx peer ',
|
|
props.inputClass,
|
|
),
|
|
)
|
|
|
|
const mergedLabelClass = computed(() =>
|
|
twMerge(
|
|
'cbx text-lg',
|
|
isChecked.value ? 'text-black' : 'text-m-muted',
|
|
disabled.value ? 'cursor-not-allowed text-black/60' : '',
|
|
hasError.value ? 'text-m-danger' : '',
|
|
hasSuccess.value ? 'text-m-success' : '',
|
|
props.labelClass,
|
|
),
|
|
)
|
|
|
|
const mergedMessageClass = computed(() =>
|
|
twMerge(
|
|
'text-xs min-h-[1rem]',
|
|
hasError.value
|
|
? 'text-m-danger'
|
|
: hasSuccess.value
|
|
? 'text-m-success'
|
|
: 'text-m-muted',
|
|
),
|
|
)
|
|
|
|
const emit = defineEmits<{
|
|
(event: 'update:modelValue', value: boolean): void
|
|
}>()
|
|
|
|
const onChange = (event: Event) => {
|
|
const target = event.target as HTMLInputElement
|
|
|
|
if (props.readonly) {
|
|
target.checked = isChecked.value
|
|
return
|
|
}
|
|
|
|
if (!isControlled.value) {
|
|
localChecked.value = target.checked
|
|
}
|
|
|
|
emit('update:modelValue', target.checked)
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.cbx {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cbx span {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.cbx span:first-child {
|
|
position: relative;
|
|
width: 18px;
|
|
height: 18px;
|
|
flex: 0 0 18px;
|
|
transform: scale(1);
|
|
border: 2px solid rgb(var(--m-muted) / 1);
|
|
transition: all 0.1s ease;
|
|
}
|
|
|
|
.inp-cbx:checked + .cbx span:first-child {
|
|
border-color: rgb(0, 0, 0);
|
|
}
|
|
|
|
.cbx span:first-child svg {
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 1px;
|
|
fill: none;
|
|
stroke: #000000;
|
|
stroke-width: 2;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
stroke-dasharray: 16px;
|
|
stroke-dashoffset: 16px;
|
|
transition: all 0.125s ease;
|
|
}
|
|
|
|
.cbx span:last-child {
|
|
padding-left: 12px;
|
|
line-height: 18px;
|
|
}
|
|
|
|
.inp-cbx {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
margin: -1px;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
clip-path: inset(50%);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
.inp-cbx:checked + .cbx span:first-child svg {
|
|
stroke-dashoffset: 0;
|
|
}
|
|
|
|
.inp-cbx + .cbx.text-m-danger span:first-child {
|
|
border-color: rgb(var(--m-danger) / 1);
|
|
}
|
|
.cbx.text-m-danger span:first-child svg {
|
|
stroke: rgb(var(--m-danger) / 1);
|
|
}
|
|
.inp-cbx:checked + .cbx.text-m-danger span:first-child {
|
|
border-color: rgb(var(--m-danger) / 1);
|
|
}
|
|
|
|
.inp-cbx + .cbx.text-m-success span:first-child {
|
|
border-color: rgb(var(--m-success) / 1);
|
|
}
|
|
.cbx.text-m-success span:first-child svg {
|
|
stroke: rgb(var(--m-success) / 1);
|
|
}
|
|
.inp-cbx:checked + .cbx.text-m-success span:first-child {
|
|
border-color: rgb(var(--m-success) / 1);
|
|
}
|
|
|
|
.inp-cbx:disabled + .cbx {
|
|
cursor: not-allowed;
|
|
opacity: 0.6;
|
|
}
|
|
</style>
|