@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.
package/dist/shadcn/index.d.ts
CHANGED
|
@@ -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";
|