@stasho/ds 0.15.2 → 0.15.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -178,6 +178,7 @@ const ProjectSwitcher = forwardRef<HTMLButtonElement, ProjectSwitcherProps>(
|
|
|
178
178
|
value={query}
|
|
179
179
|
onValueChange={setQuery}
|
|
180
180
|
placeholder={searchPlaceholder}
|
|
181
|
+
aria-label={searchPlaceholder}
|
|
181
182
|
className={cn(
|
|
182
183
|
"w-full border-b border-edge bg-transparent px-4 py-2.5",
|
|
183
184
|
"text-sm text-foreground placeholder:text-muted-foreground",
|
|
@@ -160,9 +160,12 @@ export function SidebarNav({
|
|
|
160
160
|
return (
|
|
161
161
|
<nav
|
|
162
162
|
aria-label={ariaLabel}
|
|
163
|
-
className={cn(
|
|
163
|
+
className={cn(
|
|
164
|
+
"flex flex-1 flex-col gap-1 overflow-y-auto p-2",
|
|
165
|
+
className,
|
|
166
|
+
)}
|
|
164
167
|
>
|
|
165
|
-
|
|
168
|
+
{children}
|
|
166
169
|
</nav>
|
|
167
170
|
);
|
|
168
171
|
}
|