Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
0.5.37
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed May 19, 2024
1 parent aa9afad commit 65ff8cb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion lib/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// latest version of netzo/cli (see https://github.com/netzo/netzo/releases)
export const VERSION = "0.5.36";
export const VERSION = "0.5.37";

// minimum version of Deno required to run this CLI
// (see https://github.com/denoland/deployctl/blob/main/src/version.ts)
Expand Down
4 changes: 2 additions & 2 deletions lib/components/combobox-virtualized.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ export function ComboboxVirtualized({
variant="outline"
aria-expanded={open}
disabled={disabled}
className="w-full justify-between hover:bg-secondary/20 active:scale-100"
className="w-full justify-between hover:bg-secondary/20 active:scale-100 whitespace-normal"
>
<span className="text-wrap line-clamp-1 text-left font-normal">
<span className="line-clamp-1 text-left font-normal">
{selectedOption ? selectedOptionLabel : searchPlaceholder}
</span>
<i className="mdi-unfold-more-horizontal h-4 w-4 shrink-0 opacity-50" />
Expand Down
14 changes: 7 additions & 7 deletions lib/components/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import * as React from "react";

import { Button } from "./button.tsx";
import {
Command,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
Command,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
} from "./command.tsx";
import { Popover, PopoverContent, PopoverTrigger } from "./popover.tsx";
import { ScrollArea } from "./scroll-area.tsx";
Expand Down Expand Up @@ -80,9 +80,9 @@ export const Combobox = React.forwardRef(
variant="outline"
aria-expanded={open}
disabled={props.disabled}
className="w-full justify-between hover:bg-secondary/20 active:scale-100"
className="w-full justify-between hover:bg-secondary/20 active:scale-100 whitespace-normal"
>
<span className="text-wrap line-clamp-1 text-left font-normal">
<span className="line-clamp-1 text-left font-normal">
{props.multiple && props.value && props.value.length === 1 && (
<span className="mr-2">{props.value}</span>
)}
Expand Down
3 changes: 2 additions & 1 deletion lib/plugins/unocss/preset-shadcn/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import type {
} from "../../../deps/@unocss/core.ts";
import {
h,
type Theme,
variantGetParameter,
type Theme,
} from "../../../deps/@unocss/preset-mini.ts";
import { generateCSSVars } from "./generate.ts";
import { PresetShadcnOptions } from "./types.ts";
Expand Down Expand Up @@ -245,6 +245,7 @@ export function presetShadcn(options: PresetShadcnOptions = {}): Preset<Theme> {
],
// combobox:
...[
'whitespace-normal',
"w-full",
"justify-between",
"hover:bg-secondary/20",
Expand Down

0 comments on commit 65ff8cb

Please sign in to comment.