@altimateai/ui-components 0.0.62 → 0.0.64-beta1
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/Carousel.js +8523 -0
- package/dist/CoachForm.js +8492 -8484
- package/dist/Stack.js +3 -3
- package/dist/_basePickBy.js +19 -19
- package/dist/_baseUniq.js +57 -57
- package/dist/arc.js +34 -34
- package/dist/architectureDiagram-VXUJARFQ.js +125 -125
- package/dist/assets/icons/index.js +1 -1
- package/dist/blockDiagram-VD42YOAC.js +1 -1
- package/dist/c4Diagram-YG6GDRKO.js +1 -1
- package/dist/channel.js +3 -3
- package/dist/chatbotV2/index.d.ts +11 -5
- package/dist/chatbotV2/index.js +21 -20
- package/dist/chunk-4BX2VUAB.js +1 -1
- package/dist/chunk-55IACEB6.js +1 -1
- package/dist/chunk-B4BG7PRW.js +1 -1
- package/dist/chunk-DI55MBZ5.js +1 -1
- package/dist/chunk-FMBD7UC4.js +1 -1
- package/dist/chunk-QN33PNHL.js +5 -5
- package/dist/chunk-QZHKN3VN.js +1 -1
- package/dist/chunk-TZMSLE5B.js +1 -1
- package/dist/classDiagram-2ON5EDUG.js +1 -1
- package/dist/classDiagram-v2-WZHVMYZB.js +1 -1
- package/dist/cose-bilkent-S5V4N54A.js +1 -1
- package/dist/dagre-6UL2VRFP.js +4 -4
- package/dist/diagram-PSM6KHXK.js +46 -46
- package/dist/diagram-QEK2KX5R.js +12 -12
- package/dist/diagram-S2PKOQOG.js +1 -1
- package/dist/erDiagram-Q2GNP2WA.js +1 -1
- package/dist/flowDiagram-NV44I4VS.js +11 -11
- package/dist/ganttDiagram-LVOFAZNH.js +1 -1
- package/dist/gitGraphDiagram-NY62KEGX.js +10 -10
- package/dist/graph.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +11 -11
- package/dist/index2.js +6 -6
- package/dist/infoDiagram-F6ZHWCRC.js +1 -1
- package/dist/journeyDiagram-XKPGCS4Q.js +1 -1
- package/dist/kanban-definition-3W4ZIXB7.js +23 -23
- package/dist/layout.js +18 -18
- package/dist/lineage/index.js +1 -1
- package/dist/main.js +2 -2
- package/dist/mermaid-parser.core.js +1 -1
- package/dist/mindmap-definition-VGOIOE7T.js +7 -7
- package/dist/pieDiagram-ADFJNKIX.js +14 -14
- package/dist/quadrantDiagram-AYHSOK5B.js +1 -1
- package/dist/requirementDiagram-UZGBJVZJ.js +38 -38
- package/dist/sankeyDiagram-TZEHDZUN.js +22 -22
- package/dist/sequenceDiagram-WL72ISMW.js +1 -1
- package/dist/shadcn/index.d.ts +36 -2
- package/dist/shadcn/index.js +3490 -2805
- package/dist/stateDiagram-FKZM4ZOC.js +16 -16
- package/dist/stateDiagram-v2-4FDKWEC3.js +3 -3
- package/dist/storybook/TagsInput.stories.tsx +34 -1
- package/dist/timeline-definition-IT6M3QCI.js +24 -24
- package/dist/{types-Bm5uFaKK.d.ts → types-C-PrgKT_.d.ts} +5 -1
- package/dist/xychartDiagram-PRI3JC2R.js +17 -17
- package/package.json +1 -1
- package/dist/TagsInput.js +0 -6935
package/dist/shadcn/index.d.ts
CHANGED
|
@@ -34,6 +34,9 @@ import * as ResizablePrimitive from 'react-resizable-panels';
|
|
|
34
34
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
35
35
|
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
36
36
|
import * as TagsInputPrimitive from '@diceui/tags-input';
|
|
37
|
+
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
38
|
+
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
39
|
+
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
37
40
|
|
|
38
41
|
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: ComponentProps<typeof DayPicker> & {
|
|
39
42
|
buttonVariant?: ComponentProps<typeof Button>["variant"];
|
|
@@ -671,11 +674,42 @@ interface DragAndDropFileUploadProps {
|
|
|
671
674
|
}
|
|
672
675
|
declare function DragAndDropFileUpload({ onFilesSelected, acceptedFileTypes, maxFiles, className, }: DragAndDropFileUploadProps): react_jsx_runtime.JSX.Element;
|
|
673
676
|
|
|
674
|
-
|
|
677
|
+
interface TagsInputProps extends React$1.ComponentPropsWithoutRef<typeof TagsInputPrimitive.Root> {
|
|
678
|
+
suggestions?: string[];
|
|
679
|
+
onSuggestionSelect?: (suggestion: string) => void;
|
|
680
|
+
}
|
|
681
|
+
declare const TagsInput: React$1.ForwardRefExoticComponent<TagsInputProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
675
682
|
declare const TagsInputLabel: React$1.ForwardRefExoticComponent<Omit<TagsInputPrimitive.TagsInputLabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
676
683
|
declare const TagsInputList: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
677
684
|
declare const TagsInputInput: React$1.ForwardRefExoticComponent<Omit<TagsInputPrimitive.TagsInputInputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
678
685
|
declare const TagsInputItem: React$1.ForwardRefExoticComponent<Omit<TagsInputPrimitive.TagsInputItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
679
686
|
declare const TagsInputClear: React$1.ForwardRefExoticComponent<Omit<TagsInputPrimitive.TagsInputClearProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
680
687
|
|
|
681
|
-
|
|
688
|
+
declare const toggleVariants: (props?: ({
|
|
689
|
+
variant?: "default" | "outline" | null | undefined;
|
|
690
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
691
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
692
|
+
declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
693
|
+
|
|
694
|
+
declare function ToggleGroup({ className, variant, size, spacing, children, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants> & {
|
|
695
|
+
spacing?: number;
|
|
696
|
+
}): react_jsx_runtime.JSX.Element;
|
|
697
|
+
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
698
|
+
|
|
699
|
+
type CarouselApi = UseEmblaCarouselType[1];
|
|
700
|
+
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
701
|
+
type CarouselOptions = UseCarouselParameters[0];
|
|
702
|
+
type CarouselPlugin = UseCarouselParameters[1];
|
|
703
|
+
type CarouselProps = {
|
|
704
|
+
opts?: CarouselOptions;
|
|
705
|
+
plugins?: CarouselPlugin;
|
|
706
|
+
orientation?: "horizontal" | "vertical";
|
|
707
|
+
setApi?: (api: CarouselApi) => void;
|
|
708
|
+
};
|
|
709
|
+
declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<"div"> & CarouselProps): react_jsx_runtime.JSX.Element;
|
|
710
|
+
declare function CarouselContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
711
|
+
declare function CarouselItem({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
712
|
+
declare function CarouselPrevious({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
713
|
+
declare function CarouselNext({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
714
|
+
|
|
715
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AutosizeTextAreaRef, AutosizeTextarea, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Combobox, ComboboxInner, type ComboboxOption, type ComboboxRef, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, DebouncedInput, type DebouncedInputProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragAndDropFileUpload, type DragAndDropFileUploadProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, type InputProps, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NativeSelect, type Option, PREDEFINED_RANGES, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Switch, TZDateRange, Tabs, TabsContent, TabsList, type TabsProps, TabsTrigger, TagsInput, TagsInputClear, TagsInputInput, TagsInputItem, TagsInputLabel, TagsInputList, Textarea, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipCore, TooltipProvider, TooltipTrigger, Typography, badgeVariants, reducer, tabsVariants, toast, toggleVariants, useAutosizeTextArea, useFormField, useSidebar, useToast };
|