From 9166290424880caf5255409d181b15b2304167c6 Mon Sep 17 00:00:00 2001 From: Kamil Emeleev Date: Mon, 10 Aug 2026 11:57:10 +0300 Subject: [PATCH 1/2] docs(roadmap): update roadmap table for Q3 2026 --- .../components/Roadmap/Roadmap.module.css | 4 ++ .storybook/components/Roadmap/Roadmap.tsx | 7 --- .storybook/components/Roadmap/data.ts | 54 +++++++++++++++++++ 3 files changed, 58 insertions(+), 7 deletions(-) diff --git a/.storybook/components/Roadmap/Roadmap.module.css b/.storybook/components/Roadmap/Roadmap.module.css index eecf328a4..8ab0d07fb 100644 --- a/.storybook/components/Roadmap/Roadmap.module.css +++ b/.storybook/components/Roadmap/Roadmap.module.css @@ -2,6 +2,10 @@ border: var(--table-border); border-radius: var(--kbq-size-s); inline-size: inherit; + + tbody tr:last-child td { + border-block-end: none; + } } .box { diff --git a/.storybook/components/Roadmap/Roadmap.tsx b/.storybook/components/Roadmap/Roadmap.tsx index de08c389f..1240562eb 100644 --- a/.storybook/components/Roadmap/Roadmap.tsx +++ b/.storybook/components/Roadmap/Roadmap.tsx @@ -5,7 +5,6 @@ import { ButtonToggleGroup, FlexBox, Table, - Alert, Typography, } from '@koobiq/react-components'; import { clsx } from '@koobiq/react-core'; @@ -30,12 +29,6 @@ export function Roadmap() { 2025 2026 - {selectedYear === '2026' && ( - - We're still working on the 2026 roadmap — we'll share an - update soon. - - )} Date: Mon, 10 Aug 2026 13:13:51 +0300 Subject: [PATCH 2/2] docs: add 'Highlight' component to 2026_Q3 --- .storybook/components/Roadmap/data.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.storybook/components/Roadmap/data.ts b/.storybook/components/Roadmap/data.ts index b351a7968..e6dd1cd2f 100644 --- a/.storybook/components/Roadmap/data.ts +++ b/.storybook/components/Roadmap/data.ts @@ -440,4 +440,9 @@ export const rows: Rows = [ status: '🚧 Planned', planned: 'Q3 2026', }, + { + component: 'Highlight', + status: '🚧 Planned', + planned: 'Q3 2026', + }, ];