Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore small changes #148

Merged
merged 4 commits into from
Apr 8, 2024
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 docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@droz-js/visu-docs",
"version": "3.3.0",
"version": "3.3.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@droz-js/monorepo",
"version": "3.3.0",
"version": "3.3.1",
"private": true,
"workspaces": [
"package",
Expand Down
2 changes: 1 addition & 1 deletion package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@droz-js/visu",
"version": "3.3.0",
"version": "3.3.1",
"private": false,
"description": "A library to use for coaktion projects!",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion package/src/library/Select/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const SelectItem = forwardRef<HTMLInputElement, SelectItemProps>(
<RadixSelect.Item
ref={forwardedRef}
className={cn(
'cursor-pointer overflow-hidden text-ellipsis whitespace-nowrap rounded-lg px-3 py-2 transition-colors hover:bg-gray-300 hover:text-primary focus:bg-gray-300 focus:text-primary focus:outline-none active:outline-none data-[disabled]:pointer-events-none data-[disabled]:text-gray data-[state=checked]:text-primary',
'cursor-pointer overflow-hidden text-ellipsis whitespace-nowrap rounded-lg px-3 py-2 font-light transition-colors hover:bg-gray-300 hover:text-primary focus:bg-gray-300 focus:text-primary focus:outline-none active:outline-none data-[disabled]:pointer-events-none data-[state=checked]:font-normal data-[disabled]:text-gray data-[state=checked]:text-primary',
className,
)}
{...rest}
Expand Down
2 changes: 1 addition & 1 deletion package/src/library/Sidebar/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const SidebarButton: FC<SidebarButtonProps> = ({
)}
{...rest}
>
<Tooltip.Hover content={text} side="right">
<Tooltip.Hover content={text} side="right" delayDuration={0}>
<div className="mx-auto inline-table [&>svg]:h-6 [&>svg]:w-6">
{icon}
</div>
Expand Down
Loading