- 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>
53 lines
1.3 KiB
Vue
53 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
// One section of the Fil — header + stacked items. Empty sections are hidden
|
|
// by the PARENT (v-if on length), never here.
|
|
defineProps<{
|
|
title: string
|
|
icon?: string
|
|
discrete?: boolean
|
|
priority?: boolean
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<!-- ld-v2 -->
|
|
<section
|
|
class="feed-section"
|
|
:class="{ 'feed-section--discrete': discrete, 'feed-section--priority': priority }"
|
|
>
|
|
<h2 class="feed-section__title">
|
|
<UIcon v-if="icon" :name="icon" class="feed-section__icon" />
|
|
<span>{{ title }}</span>
|
|
</h2>
|
|
<div class="feed-section__items">
|
|
<slot />
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.feed-section { margin-bottom: 1.75rem; }
|
|
.feed-section__title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin: 0 0 0.625rem;
|
|
font-size: 0.9375rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.01em;
|
|
color: var(--mood-text-muted);
|
|
}
|
|
.feed-section--priority .feed-section__title { color: var(--mood-status-fenetre); }
|
|
.feed-section--discrete .feed-section__title {
|
|
font-size: 0.8125rem;
|
|
opacity: 0.8;
|
|
}
|
|
.feed-section__icon { font-size: 1rem; }
|
|
.feed-section__items {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.625rem;
|
|
}
|
|
.feed-section--discrete .feed-section__items { opacity: 0.85; }
|
|
</style>
|