Storybook stories for the `RenameChatModal` and `ArchiveChatModal` chat management dialogs, providing interactive previews of both modal variants used in the Mingo chat interface. ## Key Components | Export | Type | Description | |---|---|---| | `meta` | `Meta` | Storybook metadata under `Chat/MingoChatModals`; maps to Figma frames `7592:225962` (Rename) and `7592:226181` (Archive) | | `Rename` | `Story` | Interactive story for `RenameChatModal` — pre-seeded input, Cancel + Save actions | | `Archive` | `Story` | Interactive story for `ArchiveChatModal` — destructive confirmation dialog | ## Usage Example ```typescript // Simulate the Rename story in isolation import { RenameChatModal } from '../components/chat/mingo-chat-modals' setOpen(false)} onSave={(name) => { console.log('save', name) setOpen(false) }} /> // Simulate the Archive story in isolation import { ArchiveChatModal } from '../components/chat/mingo-chat-modals' setOpen(false)} onConfirm={() => { console.log('archive confirmed') setOpen(false) }} /> ``` Both stories open with `isOpen={true}` by default and include a toggle button to re-open the modal after dismissal. The decorator wraps each story in a full-viewport `bg-ods-bg` container. Modals are built on `ModalV2` with an Azeret Mono title, `p-40`/`gap-24` spacing, and an in-house overlay. ## Notes - Triggered from the chat header `⋯` menu and dialog-history row menus in production - `Archive` uses a destructive red action button; use with care in UI testing - Source: [`MingoChatModals.stories.tsx`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/MingoChatModals.stories.tsx)