forked from yvv/decision
- Aujourd'hui (Fil 13 sections + capture sticky) + Le chemin (tunnel 2 gestes, Q0 inline, 3 chips, dérogation asymétrique, alternatives réglage/consignation) - Registre + fiche décision (timeline, périmètre premier/second lieu auditable, affluence non-ignorable, S'instruire condensé, éléments + cartographie de clôture, épreuve du réel, Remettre en question, PV A4, gravure) - Salle de vote 5 modalités (consentement, nuancé+histogramme, binaire hérité avec jauge inertielle, Réglage collectif complet — faisceau, médiane basse, Pour moi, Explorer, cristallisation-geste —, élection à départage humain) - Textes (Pacte en clair, document vivant, diff, vue projetée, Atelier des formules porté du v1 sur le moteur unique) + Mandats (faits comptés, feux de la rampe, wizard 3 étapes) + Observatoire (consigner→observer→protocoliser) - Onboarding 7 gabarits + Données locales (export/import, attributs, atelier) - voting→framing gardé (Reformuler d'un réglage figé non cristallisé) - Pages v1 supprimées (login, documents, mandates, protocols, sanctuary, tools, decisions/new) — 342 tests verts, build zéro erreur Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
43 lines
1.0 KiB
Vue
43 lines
1.0 KiB
Vue
<script setup lang="ts">
|
|
// <!-- ld-v2 --> Tuile de stat de l'Observatoire — libellé, valeur, note.
|
|
// Chiffres proportionnels (pas de tabular à cette taille), encre = tokens texte.
|
|
defineProps<{ label: string; value: string; hint?: string }>()
|
|
</script>
|
|
|
|
<template>
|
|
<!-- ld-v2 -->
|
|
<div class="ostat">
|
|
<p class="ostat__label">{{ label }}</p>
|
|
<p class="ostat__value">{{ value }}</p>
|
|
<p v-if="hint" class="ostat__hint">{{ hint }}</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.ostat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
padding: 0.875rem 1rem;
|
|
border-radius: var(--r-icon);
|
|
background: var(--mood-accent-soft);
|
|
min-width: 0;
|
|
}
|
|
.ostat__label {
|
|
margin: 0;
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: var(--mood-text-muted);
|
|
}
|
|
.ostat__value {
|
|
margin: 0;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--mood-text);
|
|
line-height: 1.15;
|
|
}
|
|
.ostat__hint { margin: 0; font-size: 0.75rem; color: var(--mood-text-muted); }
|
|
</style>
|