@nubase/frontend 0.1.28 → 0.1.29

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/dist/index.mjs CHANGED
@@ -16520,7 +16520,7 @@ var optionVariants4 = cva20(
16520
16520
  }
16521
16521
  }
16522
16522
  );
16523
- function SelectFilterInner({
16523
+ function SelectFilter({
16524
16524
  label,
16525
16525
  options,
16526
16526
  value,
@@ -16533,8 +16533,9 @@ function SelectFilterInner({
16533
16533
  maxHeight = 300,
16534
16534
  dropdownWidth = 280,
16535
16535
  disabled = false,
16536
- className
16537
- }, ref) {
16536
+ className,
16537
+ ref
16538
+ }) {
16538
16539
  const [searchQuery, setSearchQuery] = React12.useState("");
16539
16540
  const [isOpen, setIsOpen] = React12.useState(false);
16540
16541
  const [highlightedIndex, setHighlightedIndex] = React12.useState(-1);
@@ -16734,8 +16735,6 @@ function SelectFilterInner({
16734
16735
  }
16735
16736
  );
16736
16737
  }
16737
- var SelectFilter = React12.forwardRef(SelectFilterInner);
16738
- SelectFilter.displayName = "SelectFilter";
16739
16738
 
16740
16739
  // src/components/search-controls/TextFilter.tsx
16741
16740
  import { TypeIcon as TypeIcon2, XIcon as XIcon2 } from "lucide-react";
@@ -20524,9 +20523,9 @@ function TabsContent({ className, ...props }) {
20524
20523
 
20525
20524
  // src/components/top-bar/SearchBar.tsx
20526
20525
  import { Search as Search3 } from "lucide-react";
20527
- import { forwardRef as forwardRef28 } from "react";
20526
+ import { forwardRef as forwardRef27 } from "react";
20528
20527
  import { jsx as jsx137, jsxs as jsxs70 } from "react/jsx-runtime";
20529
- var SearchBar = forwardRef28(
20528
+ var SearchBar = forwardRef27(
20530
20529
  ({ className, context, placeholder = "Search commands...", ...props }, ref) => {
20531
20530
  const handleClick = () => {
20532
20531
  context.commands.execute("workbench.runCommand");
@@ -20559,7 +20558,7 @@ var SearchBar = forwardRef28(
20559
20558
  SearchBar.displayName = "SearchBar";
20560
20559
 
20561
20560
  // src/components/top-bar/TopBar.tsx
20562
- import { forwardRef as forwardRef29 } from "react";
20561
+ import { forwardRef as forwardRef28 } from "react";
20563
20562
 
20564
20563
  // src/components/user-avatar/UserAvatar.tsx
20565
20564
  import { jsx as jsx138 } from "react/jsx-runtime";
@@ -20638,7 +20637,7 @@ function UserMenu({ name, email, onSignOut, className }) {
20638
20637
 
20639
20638
  // src/components/top-bar/TopBar.tsx
20640
20639
  import { jsx as jsx140, jsxs as jsxs72 } from "react/jsx-runtime";
20641
- var TopBar = forwardRef29(
20640
+ var TopBar = forwardRef28(
20642
20641
  ({ className, context, ...props }, ref) => {
20643
20642
  const globalActions = context.config.globalActions || [];
20644
20643
  const hasGlobalActions = globalActions.length > 0;