@altimateai/ui-components 0.0.51-beta.1 → 0.0.51-beta.2

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.
@@ -440,12 +440,13 @@ interface Props<TMultiSelect extends boolean = false> {
440
440
  valueLabels?: Record<string, string>;
441
441
  onOpenChange?: (open: boolean) => void;
442
442
  popoverContentProps?: Omit<ComponentPropsWithoutRef<typeof PopoverContent>, "children">;
443
+ popoverProps?: Omit<ComponentPropsWithoutRef<typeof Popover>, "children">;
443
444
  exactSearch?: boolean;
444
445
  disableAllDeselect?: boolean;
445
446
  onPageReset?: () => void;
446
447
  hoverDelayMs?: number;
447
448
  }
448
- declare const Combobox: <TMultiSelect extends boolean = false>({ options, value, onChange, placeholder, header, searchPlaceholder, buttonProps, id, icon, multiSelect, showOnlyPlaceholder, showApplyButton, showClearButton, onLoadMore, hasMore, valueLabels, onOpenChange, popoverContentProps, exactSearch, disableAllDeselect, onPageReset, hoverDelayMs, }: Props<TMultiSelect>) => react_jsx_runtime.JSX.Element;
449
+ declare const Combobox: <TMultiSelect extends boolean = false>({ options, value, onChange, placeholder, header, searchPlaceholder, buttonProps, id, icon, multiSelect, showOnlyPlaceholder, showApplyButton, showClearButton, onLoadMore, hasMore, valueLabels, onOpenChange, popoverContentProps, popoverProps, exactSearch, disableAllDeselect, onPageReset, hoverDelayMs, }: Props<TMultiSelect>) => react_jsx_runtime.JSX.Element;
449
450
 
450
451
  type SidebarContextType = {
451
452
  state: "expanded" | "collapsed";
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryFn } from "@storybook/react";
2
- import { AutosizeTextarea } from "./AutosizeTextarea";
2
+ import { AutosizeTextarea } from "../shadcn";
3
3
  import { useState } from "react";
4
4
 
5
5
  export default {
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryFn } from "@storybook/react";
2
- import { Tabs, TabsList, TabsTrigger, TabsContent } from "./Tabs";
2
+ import { Tabs, TabsList, TabsTrigger, TabsContent } from "../shadcn";
3
3
 
4
4
  export default {
5
5
  title: "Shadcn/Components/Tabs",
@@ -7,7 +7,7 @@ import {
7
7
  TagsInputInput,
8
8
  TagsInputItem,
9
9
  TagsInputClear,
10
- } from "./TagsInput.tsx";
10
+ } from "../shadcn";
11
11
 
12
12
  const meta = {
13
13
  title: "Shadcn/Components/TagsInput",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@altimateai/ui-components",
3
- "version": "0.0.51-beta.1",
3
+ "version": "0.0.51-beta.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/AltimateAI/altimate-components.git"