Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cegid/vsb-cds-react",
"version": "1.23.8",
"version": "1.23.9",
"description": "BAAM! Design System by Cegid - React component library",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavigationBar/NavItemButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const NavItemButton: React.FC<NavItemButtonProps> = ({
if (!isExpanded) {
tooltipTimer.current = window.setTimeout(() => {
setShowTooltip(true);
}, 1000);
}, 200);
}
onMouseEnter?.();
};
Expand Down
10 changes: 10 additions & 0 deletions src/stories/ReleaseNotes.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ interface ReleaseNote {
}

const releaseNotes: ReleaseNote[] = [
{
version: "1.23.9",
changes: [
{
component: "NavItemButton",
type: "enhancement",
description: "less tooltip timer",
Copy link

Copilot AI Jan 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The description "less tooltip timer" is grammatically incorrect and unclear. Based on other descriptions in this file (e.g., "add tooltip to IconButton" at line 451, "Add delay for rendering in a tooltip" at line 748), the description should be more specific and follow proper grammar. Consider changing it to something like "Reduced tooltip delay from 1000ms to 200ms" or "Faster tooltip display on hover".

Suggested change
description: "less tooltip timer",
description: "Reduced tooltip delay on hover",

Copilot uses AI. Check for mistakes.
}
],
},
{
version: "1.23.8",
changes: [
Expand Down
Loading