@pactor-app/ui 1.2.0 → 1.3.0

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.
@@ -685,7 +685,11 @@ interface FlexProps {
685
685
  style?: CSSProperties;
686
686
  children?: ReactNode;
687
687
  }
688
- /** Flex 布局(shadcn kit):方向 / 对齐映射 Tailwind 工具类,数字 gap 内联 */
688
+ /**
689
+ * Flex 布局(shadcn kit):方向 / 对齐映射 Tailwind 工具类,数字 gap 内联。
690
+ * gap 未指定时应用默认间距令牌 `--flex-gap`(命名档位读
691
+ * `--flex-gap-sm/md/lg`),均可被皮肤 CSS 覆盖;`gap: 0` 显式关闭。
692
+ */
689
693
  declare function Flex({ direction, gap, justify, align, className, style, children, }: FlexProps): React.JSX.Element;
690
694
 
691
695
  interface FooterProps {
@@ -733,7 +737,7 @@ declare function Form({ name, layout, initialValues, className, style, children,
733
737
  interface GridProps {
734
738
  /** 列数,默认 1;每列等宽(columns 取整下限 1) */
735
739
  columns?: number;
736
- /** 栏间距 */
740
+ /** 栏间距(px);未指定时应用默认间距令牌 `--grid-gap`,`gap: 0` 显式关闭 */
737
741
  gap?: number;
738
742
  /** 通用:根节点 class(与内置样式合并) */
739
743
  className?: string;
@@ -1203,6 +1207,12 @@ interface ResizablePanelData {
1203
1207
  children?: DslNode[];
1204
1208
  /** 默认尺寸(百分比,0-100) */
1205
1209
  defaultSize?: number;
1210
+ /** 默认尺寸(像素;与 defaultSize 同时提供时优先生效) */
1211
+ defaultSizePx?: number;
1212
+ /** 最小尺寸(像素) */
1213
+ minSizePx?: number;
1214
+ /** 最大尺寸(像素) */
1215
+ maxSizePx?: number;
1206
1216
  }
1207
1217
  interface ResizableProps {
1208
1218
  /** 面板列表(相邻面板间渲染拖拽手柄) */
@@ -1217,7 +1227,8 @@ interface ResizableProps {
1217
1227
  /**
1218
1228
  * Resizable 适配器(shadcn kit):基于 vendored Resizable
1219
1229
  * (react-resizable-panels);panels 声明面板,相邻面板间为可拖拽手柄;
1220
- * DSL 的 defaultSize 统一按百分比解释。
1230
+ * DSL 的 defaultSize 统一按百分比解释,defaultSizePx/minSizePx/maxSizePx
1231
+ * 按像素解释(像素优先级高于百分比)。
1221
1232
  */
1222
1233
  declare function Resizable({ panels, direction, className, style, }: ResizableProps): React.JSX.Element;
1223
1234
 
@@ -1335,7 +1346,7 @@ interface SidebarProps {
1335
1346
  content?: ReactNode;
1336
1347
  /** 侧栏底部固定区(渲染在滚动区之后,不随内容滚动;未提供不渲染容器) */
1337
1348
  sidebarFooter?: ReactNode;
1338
- /** 是否渲染折叠触发器:折叠后桌面侧栏收窄为 icon rail(64px,导航仅图标) */
1349
+ /** 是否渲染折叠触发器:折叠后桌面侧栏收窄为 icon rail(导航仅图标) */
1339
1350
  collapsible?: boolean;
1340
1351
  /** 折叠状态变化事件,传出 boolean */
1341
1352
  onCollapse?: (collapsed: boolean) => void;
@@ -1350,21 +1361,28 @@ interface SidebarProps {
1350
1361
  /** 主内容区 */
1351
1362
  children?: ReactNode;
1352
1363
  }
1364
+ /**
1365
+ * 侧栏抽屉 context(向后兼容):侧栏内容(如 Menu)经 `useSidebarDrawer()` 取
1366
+ * `close()`(导航后关闭移动端抽屉)与 `collapsed`(桌面 icon rail 状态);
1367
+ * 不在 Sidebar 内时返回 null。
1368
+ *
1369
+ * 内部桥接 shadcn Sidebar 的 useSidebar context。
1370
+ */
1353
1371
  declare function useSidebarDrawer(): {
1354
1372
  close: () => void;
1355
1373
  collapsed: boolean;
1356
1374
  } | null;
1357
1375
  /**
1358
1376
  * Sidebar 页面级组合(shadcn kit):品牌区 + 侧栏(items 嵌套导航或
1359
- * content 自由内容槽)+ children 主内容区组成的页面外壳;样式取
1360
- * sidebar 系列语义令牌。
1377
+ * content 自由内容槽)+ children 主内容区组成的页面外壳。
1361
1378
  *
1362
- * - 桌面(≥768px):侧栏与主区 flex 同行;collapsible 时折叠触发器把
1363
- * 侧栏收窄为 icon rail(64px,导航仅图标、hover 经 RailTooltip 展示);
1364
- * - 移动端(<768px,drawer 缺省开启):侧栏退出文档流变为左侧覆盖
1365
- * 抽屉——顶栏菜单按钮开启,遮罩点击 / Escape / locationKey 变化
1366
- * 关闭,关闭时容器 inert;移动端不渲染折叠触发器;
1379
+ * 内部组合 shadcn Sidebar 原语(SidebarProvider / Sidebar / SidebarInset):
1380
+ * - 桌面(≥768px):侧栏与主区同行;collapsible 时折叠触发器把
1381
+ * 侧栏收窄为 icon rail(导航仅图标、hover 经 Tooltip 展示);
1382
+ * - 移动端(<768px,drawer 缺省开启):侧栏变为 Sheet 覆盖抽屉——
1383
+ * 顶栏菜单按钮开启,遮罩点击 / Escape / locationKey 变化关闭;
1367
1384
  * - 侧栏内容可经 useSidebarDrawer() 取 close / collapsed 自行适配。
1385
+ * - ⌘B / Ctrl+B 键盘快捷键切换侧栏(shadcn SidebarProvider 内建)。
1368
1386
  */
1369
1387
  declare function Sidebar({ brand, items, content, sidebarFooter, collapsible, onCollapse, locationKey, drawer, className, style, children, }: SidebarProps): React.JSX.Element;
1370
1388
 
@@ -1835,4 +1853,4 @@ interface FormContextValue {
1835
1853
  /** 在字段组件内探测 Form 上下文;不在 Form 内时返回 null */
1836
1854
  declare function useFormContext(): FormContextValue | null;
1837
1855
 
1838
- export { Accordion, type AccordionItemData, type AccordionProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, AspectRatio, type AspectRatioProps, Avatar, type AvatarProps, Badge, type BadgeProps, type BadgeVariant, Breadcrumb, type BreadcrumbItemData, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarProps, Card, type CardProps, Carousel, type CarouselImage, type CarouselItemData, type CarouselProps, Chart, type ChartProps, type ChartType, Checkbox, type CheckboxProps, Collapsible, type CollapsibleProps, Combobox, type ComboboxOption, type ComboboxProps, Command, type CommandGroupData, type CommandItemData, type CommandProps, Content, type ContentProps, ContextMenu, type ContextMenuItemData, type ContextMenuProps, DataTable, type DataTableColumn, type DataTablePagination, type DataTableProps, type DataTableSort, type DataTableSortOrder, Dialog, type DialogProps, Drawer, type DrawerPlacement, type DrawerProps, DropdownMenu, type DropdownMenuItemData, type DropdownMenuProps, Empty, type EmptyProps, Field, type FieldProps, type FieldRule, Flex, type FlexProps, Footer, type FooterProps, Form, type FormContextValue, type FormProps, Grid, type GridProps, Header, type HeaderBrandPosition, type HeaderDropdown, type HeaderDropdownItem, type HeaderLocale, type HeaderMenuItem, type HeaderProps, type HeaderUser, type HeaderUserItem, HoverCard, type HoverCardProps, ICONS, Icon, type IconProps, type IconSize, Input, InputGroup, type InputGroupProps, InputOTP, type InputOTPProps, type InputProps, Item, type ItemProps, Kbd, type KbdProps, Label, type LabelProps, Layout, type LayoutProps, Link, type LinkProps, Menu, type MenuItem, type MenuProps, Menubar, type MenubarLeafItem, type MenubarMenuData, type MenubarProps, NavigationMenu, type NavigationMenuChildItem, type NavigationMenuItemData, type NavigationMenuProps, Page, type PageProps, Pagination, type PaginationProps, Popover, type PopoverProps, Progress, type ProgressProps, RadioGroup, type RadioGroupOption, type RadioGroupProps, RailTooltip, Resizable, type ResizablePanelData, type ResizableProps, ScrollArea, type ScrollAreaProps, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, Sheet, type SheetProps, type SheetSide, Sidebar, type SidebarBrand, type SidebarNavItem, type SidebarProps, Sider, type SiderProps, Skeleton, type SkeletonProps, type SkeletonShape, Slider, type SliderProps, Sonner, type SonnerProps, Spinner, type SpinnerProps, type SpinnerSize, Statistic, type StatisticProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TablePagination, type TablePaginationInfo, type TableProps, Tabs, type TabsProps, Text, type TextProps, type TextType, Textarea, type TextareaProps, Toggle, ToggleGroup, type ToggleGroupOption, type ToggleGroupProps, type ToggleProps, Tooltip, type TooltipProps, Typography, type TypographyProps, type TypographyVariant, builtinComponents, createComponentRegistry, normalizeIconName, registerBuiltinComponents, useFormContext, useSidebarDrawer };
1856
+ export { Accordion, type AccordionItemData, type AccordionProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, AspectRatio, type AspectRatioProps, Avatar, type AvatarProps, Badge, type BadgeProps, type BadgeVariant, Breadcrumb, type BreadcrumbItemData, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarProps, Card, type CardProps, Carousel, type CarouselImage, type CarouselItemData, type CarouselProps, Chart, type ChartProps, type ChartType, ChatInput, type ChatInputProps, Checkbox, type CheckboxProps, Collapsible, type CollapsibleProps, Combobox, type ComboboxOption, type ComboboxProps, Command, type CommandGroupData, type CommandItemData, type CommandProps, Content, type ContentProps, ContextMenu, type ContextMenuItemData, type ContextMenuProps, DataTable, type DataTableColumn, type DataTablePagination, type DataTableProps, type DataTableSort, type DataTableSortOrder, Dialog, type DialogProps, Drawer, type DrawerPlacement, type DrawerProps, DropdownMenu, type DropdownMenuItemData, type DropdownMenuProps, Empty, type EmptyProps, Field, type FieldProps, type FieldRule, Flex, type FlexProps, Footer, type FooterProps, Form, type FormContextValue, type FormProps, Grid, type GridProps, Header, type HeaderBrandPosition, type HeaderDropdown, type HeaderDropdownItem, type HeaderLocale, type HeaderMenuItem, type HeaderProps, type HeaderUser, type HeaderUserItem, HoverCard, type HoverCardProps, ICONS, Icon, type IconProps, type IconSize, Input, InputGroup, type InputGroupProps, InputOTP, type InputOTPProps, type InputProps, Item, type ItemProps, Kbd, type KbdProps, Label, type LabelProps, Layout, type LayoutProps, Link, type LinkProps, Menu, type MenuItem, type MenuProps, Menubar, type MenubarLeafItem, type MenubarMenuData, type MenubarProps, NavigationMenu, type NavigationMenuChildItem, type NavigationMenuItemData, type NavigationMenuProps, Page, type PageProps, Pagination, type PaginationProps, Popover, type PopoverProps, Progress, type ProgressProps, RadioGroup, type RadioGroupOption, type RadioGroupProps, RailTooltip, Resizable, type ResizablePanelData, type ResizableProps, ScrollArea, type ScrollAreaProps, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, Sheet, type SheetProps, type SheetSide, Sidebar, type SidebarBrand, type SidebarNavItem, type SidebarProps, Sider, type SiderProps, Skeleton, type SkeletonProps, type SkeletonShape, Slider, type SliderProps, Sonner, type SonnerProps, Spinner, type SpinnerProps, type SpinnerSize, Statistic, type StatisticProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TablePagination, type TablePaginationInfo, type TableProps, Tabs, type TabsProps, Text, type TextProps, type TextType, Textarea, type TextareaProps, Toggle, ToggleGroup, type ToggleGroupOption, type ToggleGroupProps, type ToggleProps, Tooltip, type TooltipProps, Typography, type TypographyProps, type TypographyVariant, builtinComponents, createComponentRegistry, normalizeIconName, registerBuiltinComponents, useFormContext, useSidebarDrawer };
@@ -685,7 +685,11 @@ interface FlexProps {
685
685
  style?: CSSProperties;
686
686
  children?: ReactNode;
687
687
  }
688
- /** Flex 布局(shadcn kit):方向 / 对齐映射 Tailwind 工具类,数字 gap 内联 */
688
+ /**
689
+ * Flex 布局(shadcn kit):方向 / 对齐映射 Tailwind 工具类,数字 gap 内联。
690
+ * gap 未指定时应用默认间距令牌 `--flex-gap`(命名档位读
691
+ * `--flex-gap-sm/md/lg`),均可被皮肤 CSS 覆盖;`gap: 0` 显式关闭。
692
+ */
689
693
  declare function Flex({ direction, gap, justify, align, className, style, children, }: FlexProps): React.JSX.Element;
690
694
 
691
695
  interface FooterProps {
@@ -733,7 +737,7 @@ declare function Form({ name, layout, initialValues, className, style, children,
733
737
  interface GridProps {
734
738
  /** 列数,默认 1;每列等宽(columns 取整下限 1) */
735
739
  columns?: number;
736
- /** 栏间距 */
740
+ /** 栏间距(px);未指定时应用默认间距令牌 `--grid-gap`,`gap: 0` 显式关闭 */
737
741
  gap?: number;
738
742
  /** 通用:根节点 class(与内置样式合并) */
739
743
  className?: string;
@@ -1203,6 +1207,12 @@ interface ResizablePanelData {
1203
1207
  children?: DslNode[];
1204
1208
  /** 默认尺寸(百分比,0-100) */
1205
1209
  defaultSize?: number;
1210
+ /** 默认尺寸(像素;与 defaultSize 同时提供时优先生效) */
1211
+ defaultSizePx?: number;
1212
+ /** 最小尺寸(像素) */
1213
+ minSizePx?: number;
1214
+ /** 最大尺寸(像素) */
1215
+ maxSizePx?: number;
1206
1216
  }
1207
1217
  interface ResizableProps {
1208
1218
  /** 面板列表(相邻面板间渲染拖拽手柄) */
@@ -1217,7 +1227,8 @@ interface ResizableProps {
1217
1227
  /**
1218
1228
  * Resizable 适配器(shadcn kit):基于 vendored Resizable
1219
1229
  * (react-resizable-panels);panels 声明面板,相邻面板间为可拖拽手柄;
1220
- * DSL 的 defaultSize 统一按百分比解释。
1230
+ * DSL 的 defaultSize 统一按百分比解释,defaultSizePx/minSizePx/maxSizePx
1231
+ * 按像素解释(像素优先级高于百分比)。
1221
1232
  */
1222
1233
  declare function Resizable({ panels, direction, className, style, }: ResizableProps): React.JSX.Element;
1223
1234
 
@@ -1335,7 +1346,7 @@ interface SidebarProps {
1335
1346
  content?: ReactNode;
1336
1347
  /** 侧栏底部固定区(渲染在滚动区之后,不随内容滚动;未提供不渲染容器) */
1337
1348
  sidebarFooter?: ReactNode;
1338
- /** 是否渲染折叠触发器:折叠后桌面侧栏收窄为 icon rail(64px,导航仅图标) */
1349
+ /** 是否渲染折叠触发器:折叠后桌面侧栏收窄为 icon rail(导航仅图标) */
1339
1350
  collapsible?: boolean;
1340
1351
  /** 折叠状态变化事件,传出 boolean */
1341
1352
  onCollapse?: (collapsed: boolean) => void;
@@ -1350,21 +1361,28 @@ interface SidebarProps {
1350
1361
  /** 主内容区 */
1351
1362
  children?: ReactNode;
1352
1363
  }
1364
+ /**
1365
+ * 侧栏抽屉 context(向后兼容):侧栏内容(如 Menu)经 `useSidebarDrawer()` 取
1366
+ * `close()`(导航后关闭移动端抽屉)与 `collapsed`(桌面 icon rail 状态);
1367
+ * 不在 Sidebar 内时返回 null。
1368
+ *
1369
+ * 内部桥接 shadcn Sidebar 的 useSidebar context。
1370
+ */
1353
1371
  declare function useSidebarDrawer(): {
1354
1372
  close: () => void;
1355
1373
  collapsed: boolean;
1356
1374
  } | null;
1357
1375
  /**
1358
1376
  * Sidebar 页面级组合(shadcn kit):品牌区 + 侧栏(items 嵌套导航或
1359
- * content 自由内容槽)+ children 主内容区组成的页面外壳;样式取
1360
- * sidebar 系列语义令牌。
1377
+ * content 自由内容槽)+ children 主内容区组成的页面外壳。
1361
1378
  *
1362
- * - 桌面(≥768px):侧栏与主区 flex 同行;collapsible 时折叠触发器把
1363
- * 侧栏收窄为 icon rail(64px,导航仅图标、hover 经 RailTooltip 展示);
1364
- * - 移动端(<768px,drawer 缺省开启):侧栏退出文档流变为左侧覆盖
1365
- * 抽屉——顶栏菜单按钮开启,遮罩点击 / Escape / locationKey 变化
1366
- * 关闭,关闭时容器 inert;移动端不渲染折叠触发器;
1379
+ * 内部组合 shadcn Sidebar 原语(SidebarProvider / Sidebar / SidebarInset):
1380
+ * - 桌面(≥768px):侧栏与主区同行;collapsible 时折叠触发器把
1381
+ * 侧栏收窄为 icon rail(导航仅图标、hover 经 Tooltip 展示);
1382
+ * - 移动端(<768px,drawer 缺省开启):侧栏变为 Sheet 覆盖抽屉——
1383
+ * 顶栏菜单按钮开启,遮罩点击 / Escape / locationKey 变化关闭;
1367
1384
  * - 侧栏内容可经 useSidebarDrawer() 取 close / collapsed 自行适配。
1385
+ * - ⌘B / Ctrl+B 键盘快捷键切换侧栏(shadcn SidebarProvider 内建)。
1368
1386
  */
1369
1387
  declare function Sidebar({ brand, items, content, sidebarFooter, collapsible, onCollapse, locationKey, drawer, className, style, children, }: SidebarProps): React.JSX.Element;
1370
1388
 
@@ -1835,4 +1853,4 @@ interface FormContextValue {
1835
1853
  /** 在字段组件内探测 Form 上下文;不在 Form 内时返回 null */
1836
1854
  declare function useFormContext(): FormContextValue | null;
1837
1855
 
1838
- export { Accordion, type AccordionItemData, type AccordionProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, AspectRatio, type AspectRatioProps, Avatar, type AvatarProps, Badge, type BadgeProps, type BadgeVariant, Breadcrumb, type BreadcrumbItemData, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarProps, Card, type CardProps, Carousel, type CarouselImage, type CarouselItemData, type CarouselProps, Chart, type ChartProps, type ChartType, Checkbox, type CheckboxProps, Collapsible, type CollapsibleProps, Combobox, type ComboboxOption, type ComboboxProps, Command, type CommandGroupData, type CommandItemData, type CommandProps, Content, type ContentProps, ContextMenu, type ContextMenuItemData, type ContextMenuProps, DataTable, type DataTableColumn, type DataTablePagination, type DataTableProps, type DataTableSort, type DataTableSortOrder, Dialog, type DialogProps, Drawer, type DrawerPlacement, type DrawerProps, DropdownMenu, type DropdownMenuItemData, type DropdownMenuProps, Empty, type EmptyProps, Field, type FieldProps, type FieldRule, Flex, type FlexProps, Footer, type FooterProps, Form, type FormContextValue, type FormProps, Grid, type GridProps, Header, type HeaderBrandPosition, type HeaderDropdown, type HeaderDropdownItem, type HeaderLocale, type HeaderMenuItem, type HeaderProps, type HeaderUser, type HeaderUserItem, HoverCard, type HoverCardProps, ICONS, Icon, type IconProps, type IconSize, Input, InputGroup, type InputGroupProps, InputOTP, type InputOTPProps, type InputProps, Item, type ItemProps, Kbd, type KbdProps, Label, type LabelProps, Layout, type LayoutProps, Link, type LinkProps, Menu, type MenuItem, type MenuProps, Menubar, type MenubarLeafItem, type MenubarMenuData, type MenubarProps, NavigationMenu, type NavigationMenuChildItem, type NavigationMenuItemData, type NavigationMenuProps, Page, type PageProps, Pagination, type PaginationProps, Popover, type PopoverProps, Progress, type ProgressProps, RadioGroup, type RadioGroupOption, type RadioGroupProps, RailTooltip, Resizable, type ResizablePanelData, type ResizableProps, ScrollArea, type ScrollAreaProps, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, Sheet, type SheetProps, type SheetSide, Sidebar, type SidebarBrand, type SidebarNavItem, type SidebarProps, Sider, type SiderProps, Skeleton, type SkeletonProps, type SkeletonShape, Slider, type SliderProps, Sonner, type SonnerProps, Spinner, type SpinnerProps, type SpinnerSize, Statistic, type StatisticProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TablePagination, type TablePaginationInfo, type TableProps, Tabs, type TabsProps, Text, type TextProps, type TextType, Textarea, type TextareaProps, Toggle, ToggleGroup, type ToggleGroupOption, type ToggleGroupProps, type ToggleProps, Tooltip, type TooltipProps, Typography, type TypographyProps, type TypographyVariant, builtinComponents, createComponentRegistry, normalizeIconName, registerBuiltinComponents, useFormContext, useSidebarDrawer };
1856
+ export { Accordion, type AccordionItemData, type AccordionProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, AspectRatio, type AspectRatioProps, Avatar, type AvatarProps, Badge, type BadgeProps, type BadgeVariant, Breadcrumb, type BreadcrumbItemData, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarProps, Card, type CardProps, Carousel, type CarouselImage, type CarouselItemData, type CarouselProps, Chart, type ChartProps, type ChartType, ChatInput, type ChatInputProps, Checkbox, type CheckboxProps, Collapsible, type CollapsibleProps, Combobox, type ComboboxOption, type ComboboxProps, Command, type CommandGroupData, type CommandItemData, type CommandProps, Content, type ContentProps, ContextMenu, type ContextMenuItemData, type ContextMenuProps, DataTable, type DataTableColumn, type DataTablePagination, type DataTableProps, type DataTableSort, type DataTableSortOrder, Dialog, type DialogProps, Drawer, type DrawerPlacement, type DrawerProps, DropdownMenu, type DropdownMenuItemData, type DropdownMenuProps, Empty, type EmptyProps, Field, type FieldProps, type FieldRule, Flex, type FlexProps, Footer, type FooterProps, Form, type FormContextValue, type FormProps, Grid, type GridProps, Header, type HeaderBrandPosition, type HeaderDropdown, type HeaderDropdownItem, type HeaderLocale, type HeaderMenuItem, type HeaderProps, type HeaderUser, type HeaderUserItem, HoverCard, type HoverCardProps, ICONS, Icon, type IconProps, type IconSize, Input, InputGroup, type InputGroupProps, InputOTP, type InputOTPProps, type InputProps, Item, type ItemProps, Kbd, type KbdProps, Label, type LabelProps, Layout, type LayoutProps, Link, type LinkProps, Menu, type MenuItem, type MenuProps, Menubar, type MenubarLeafItem, type MenubarMenuData, type MenubarProps, NavigationMenu, type NavigationMenuChildItem, type NavigationMenuItemData, type NavigationMenuProps, Page, type PageProps, Pagination, type PaginationProps, Popover, type PopoverProps, Progress, type ProgressProps, RadioGroup, type RadioGroupOption, type RadioGroupProps, RailTooltip, Resizable, type ResizablePanelData, type ResizableProps, ScrollArea, type ScrollAreaProps, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, Sheet, type SheetProps, type SheetSide, Sidebar, type SidebarBrand, type SidebarNavItem, type SidebarProps, Sider, type SiderProps, Skeleton, type SkeletonProps, type SkeletonShape, Slider, type SliderProps, Sonner, type SonnerProps, Spinner, type SpinnerProps, type SpinnerSize, Statistic, type StatisticProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TablePagination, type TablePaginationInfo, type TableProps, Tabs, type TabsProps, Text, type TextProps, type TextType, Textarea, type TextareaProps, Toggle, ToggleGroup, type ToggleGroupOption, type ToggleGroupProps, type ToggleProps, Tooltip, type TooltipProps, Typography, type TypographyProps, type TypographyVariant, builtinComponents, createComponentRegistry, normalizeIconName, registerBuiltinComponents, useFormContext, useSidebarDrawer };
@@ -12,6 +12,7 @@ import {
12
12
  Card,
13
13
  Carousel,
14
14
  Chart,
15
+ ChatInput,
15
16
  Checkbox,
16
17
  Collapsible,
17
18
  Combobox,
@@ -69,7 +70,7 @@ import {
69
70
  createComponentRegistry,
70
71
  registerBuiltinComponents,
71
72
  useFormContext
72
- } from "../chunk-LMEJ242M.js";
73
+ } from "../chunk-P54Y23AP.js";
73
74
  import {
74
75
  ICONS,
75
76
  Icon,
@@ -78,11 +79,11 @@ import {
78
79
  Sidebar,
79
80
  normalizeIconName,
80
81
  useSidebarDrawer
81
- } from "../chunk-HJPHJKVA.js";
82
- import "../chunk-Q5NUGUJG.js";
83
- import "../chunk-F3H23KYG.js";
84
- import "../chunk-2LYMCWEJ.js";
85
- import "../chunk-RQHJBTEU.js";
82
+ } from "../chunk-EVGIS2ZE.js";
83
+ import "../chunk-UKA7C3JP.js";
84
+ import "../chunk-F42SGQNW.js";
85
+ import "../chunk-L4Z7MNYY.js";
86
+ import "../chunk-WKJUCGV4.js";
86
87
  export {
87
88
  Accordion,
88
89
  Alert,
@@ -97,6 +98,7 @@ export {
97
98
  Card,
98
99
  Carousel,
99
100
  Chart,
101
+ ChatInput,
100
102
  Checkbox,
101
103
  Collapsible,
102
104
  Combobox,