Fix website reports route type error and pass teamId to board WebsiteSelect.
Remove invalid 3rd parameter from GET handler and parse report type from query params instead. Pass teamId to WebsiteSelect in BoardEditHeader so it shows team ...
Replace react-intl with next-intl and consolidate lang files.
Migrate i18n from react-intl to next-intl, eliminating the formatjs compilation pipeline. Translation files now live as nested JSON in public/intl/messages/ (si...
Rename session recording to session replay across the codebase.
Renames all files, components, database schema, API routes, hooks, messages, and build config from "recording" to "replay" terminology.
Rrweb 기반 세션 레코딩 기능을 추가합니다.
DOM 캡처 및 rrweb-player에 대한 rrweb로 전체 세션 레코딩 구현 재생을 위해. 포함 : SessionRecording 모델 Prisma schema, chunked gzip-compressed 저장, 롤업을 통해 내장 된 레코더 스크립트, 수집 API endpoint,...
오래된 CSS 변수를 새로운 react-zen 디자인 시스템에 마이그레이션합니다.
Journey 구성 요소, global.css 및 variables.css 모든 참조 오래된 CSS 사용자 정의 속성 (--base-color-*, --primary-color, --text-base) @analytics/react-zen에 더 이상 존재하지 않습니다. 새로운지도 변수 ...
웹 사이트에서 누락 된 백 버튼을 수정하십시오. sidenav-collapsed state를 false로 기본으로 설정하십시오.
Decompose BoardPage를 개별 구성 요소로 제거하고 디버그 로깅을 제거합니다.
BoardRow, BoardColumn, BoardViewHeader, BoardEditHeader를 추출하고, boardConstants는 별도의 파일로 구성됩니다. 9 console.log 문 제거 BoardBody 및 BoardProvider에서.
웹 사이트NavSection을 웹 사이트Nav로 통합하고 스크롤바 플래시를 수정합니다.
웹 사이트로 사이드바 렌더링 논리를 이동Nav isCollapsed prop 그래서 SideNav는 대신 웹 사이트를 사용합니다. 기타 제품 확장 전환 중에 수평 스크롤을 방지하기 위해 숨겨진 오버 플로우.
Fix WebsiteSelect showing empty value on initial load.
Fall back to queried website name when local state hasn't been set yet, since useState only captures the initial value which is undefined before the query resol...
Fix CompareTables select width, WebsiteSelect min height, and MetricCard gap.
Combine WebsiteNav into SideNav when viewing a website.
Replace the separate 240px WebsiteNav sidebar with website navigation integrated into the main SideNav. When a websiteId is active, SideNav shows a back arrow, ...
Fix ChangeLabel colors to use react-zen theme variables.
Replace old CSS variables with new theme tokens for success, error, and neutral states.
Fix WebsiteDateFilter width and date popup minimum width.
Remove unnecessary wrapper Row around DateFilter and set min-width on the date picker popover to 200px.
Fix NavButton text not showing and remove unused Sidebar.
Show NavButton text whenever sidebar is not collapsed, not only on pages without sub-navigation. Also remove unused Sidebar component.
Fix Select component usage by removing items prop and render functions.
Replace render function children with mapped ListItem elements and remove the unsupported items prop across all Select instances.
Rename SideMenu to NavMenu, fix tooltips, and update react-zen.
- Rename SideMenu to NavMenu with visible group title labels and selected item highlighting - Update react-zen to 0.242.0 and fix responsive breakpoints (xs -> ...
Merge branch 'dev' into boards
# Conflicts: # .gitignore # package.json # pnpm-lock.yaml # **************** # prisma/schema.prisma # src/app/(main)/MobileNav.tsx # **************** # ********...
Add board view/edit mode separation with cancel button.
/boards/[id] is now view mode (read-only) with an edit button. /boards/[id]/edit is edit mode with save and cancel buttons. Save navigates back to view, cancel ...