Storybook stories for the `InvestorUpdateCard` component, covering both compact chat-inline (`sm`) and full-size (`default`) display variants. ## Key Components | Export | Type | Description | |--------|------|-------------| | `meta` | `Meta` | Storybook metadata; registers stories under `Chat/EntityCards/InvestorUpdateCard` | | `ChatInlineSm` | `Story` | Compact `sm` size variant for inline chat display | | `Default` | `Story` | Standard `default` size variant | ## Usage Example ```typescript import { ChatInlineSm, Default } from './InvestorUpdateCard.stories' // Render the sm (chat-inline) variant // Render the default (full-size) variant ``` ## Notes - All stories are wrapped in `ChatColumnDecorator` to simulate a realistic chat column layout context. - The period badge (e.g. `"Mar 2025 - May 2025"`) is composed internally via `formatInvestorUpdatePeriod`. - Fixture data is sourced from [`__fixtures__/chat-cards`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/src/stories/__fixtures__/chat-cards.ts). - The `size` prop is the primary differentiator between stories: `sm` for compact chat use, `default` for full presentation.