@pactor-app/ui 1.1.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
 
@@ -1711,11 +1729,11 @@ interface TypographyProps {
1711
1729
  declare function Typography({ variant, text, className, style, }: TypographyProps): React.JSX.Element;
1712
1730
 
1713
1731
  /**
1714
- * shadcn kit 组件表:DSL 类型名 → 组件适配器。
1715
- * 类型名集合与 pactor-components 的 builtinComponents 完全一致;
1732
+ * 内置组件表:DSL 类型名 → 组件适配器。
1733
+ * 类型名集合即 spec: builtin-components 的内置组件清单;
1716
1734
  * 容器组件(Tabs / Table)经 `useRenderer().renderChildren` 渲染 DSL 子树。
1717
1735
  */
1718
- declare const shadcnComponents: {
1736
+ declare const builtinComponents: {
1719
1737
  readonly Page: typeof Page;
1720
1738
  readonly Grid: typeof Grid;
1721
1739
  readonly Flex: typeof Flex;
@@ -1790,10 +1808,10 @@ declare const shadcnComponents: {
1790
1808
  readonly Chart: typeof Chart;
1791
1809
  readonly Icon: typeof Icon;
1792
1810
  };
1793
- /** 把全部 V1 内置组件(shadcn 实现)按 DSL 类型名注册到给定 ComponentRegistry */
1794
- declare function registerShadcnComponents(registry: ComponentRegistry): void;
1795
- /** 创建并返回注册了全部 V1 内置组件(shadcn 实现)的新 ComponentRegistry */
1796
- declare function createShadcnComponentRegistry(): ComponentRegistry;
1811
+ /** 把全部 V1 内置组件按 DSL 类型名注册到给定 ComponentRegistry */
1812
+ declare function registerBuiltinComponents(registry: ComponentRegistry): void;
1813
+ /** 创建并返回注册了全部 V1 内置组件的新 ComponentRegistry */
1814
+ declare function createComponentRegistry(): ComponentRegistry;
1797
1815
 
1798
1816
  /**
1799
1817
  * icon rail 提示(Sidebar 折叠态:Sidebar items 与 Menu 共用):
@@ -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, createShadcnComponentRegistry, normalizeIconName, registerShadcnComponents, shadcnComponents, 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
 
@@ -1711,11 +1729,11 @@ interface TypographyProps {
1711
1729
  declare function Typography({ variant, text, className, style, }: TypographyProps): React.JSX.Element;
1712
1730
 
1713
1731
  /**
1714
- * shadcn kit 组件表:DSL 类型名 → 组件适配器。
1715
- * 类型名集合与 pactor-components 的 builtinComponents 完全一致;
1732
+ * 内置组件表:DSL 类型名 → 组件适配器。
1733
+ * 类型名集合即 spec: builtin-components 的内置组件清单;
1716
1734
  * 容器组件(Tabs / Table)经 `useRenderer().renderChildren` 渲染 DSL 子树。
1717
1735
  */
1718
- declare const shadcnComponents: {
1736
+ declare const builtinComponents: {
1719
1737
  readonly Page: typeof Page;
1720
1738
  readonly Grid: typeof Grid;
1721
1739
  readonly Flex: typeof Flex;
@@ -1790,10 +1808,10 @@ declare const shadcnComponents: {
1790
1808
  readonly Chart: typeof Chart;
1791
1809
  readonly Icon: typeof Icon;
1792
1810
  };
1793
- /** 把全部 V1 内置组件(shadcn 实现)按 DSL 类型名注册到给定 ComponentRegistry */
1794
- declare function registerShadcnComponents(registry: ComponentRegistry): void;
1795
- /** 创建并返回注册了全部 V1 内置组件(shadcn 实现)的新 ComponentRegistry */
1796
- declare function createShadcnComponentRegistry(): ComponentRegistry;
1811
+ /** 把全部 V1 内置组件按 DSL 类型名注册到给定 ComponentRegistry */
1812
+ declare function registerBuiltinComponents(registry: ComponentRegistry): void;
1813
+ /** 创建并返回注册了全部 V1 内置组件的新 ComponentRegistry */
1814
+ declare function createComponentRegistry(): ComponentRegistry;
1797
1815
 
1798
1816
  /**
1799
1817
  * icon rail 提示(Sidebar 折叠态:Sidebar items 与 Menu 共用):
@@ -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, createShadcnComponentRegistry, normalizeIconName, registerShadcnComponents, shadcnComponents, 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,
@@ -38,7 +39,6 @@ import {
38
39
  Label,
39
40
  Layout,
40
41
  Link,
41
- Menu,
42
42
  Menubar,
43
43
  NavigationMenu,
44
44
  Page,
@@ -46,13 +46,11 @@ import {
46
46
  Popover,
47
47
  Progress,
48
48
  RadioGroup,
49
- RailTooltip,
50
49
  Resizable,
51
50
  ScrollArea,
52
51
  Select,
53
52
  Separator,
54
53
  Sheet,
55
- Sidebar,
56
54
  Sider,
57
55
  Skeleton,
58
56
  Slider,
@@ -68,21 +66,24 @@ import {
68
66
  ToggleGroup,
69
67
  Tooltip,
70
68
  Typography,
71
- createShadcnComponentRegistry,
72
- registerShadcnComponents,
73
- shadcnComponents,
74
- useFormContext,
75
- useSidebarDrawer
76
- } from "../chunk-6B5ZX7L3.js";
69
+ builtinComponents,
70
+ createComponentRegistry,
71
+ registerBuiltinComponents,
72
+ useFormContext
73
+ } from "../chunk-P54Y23AP.js";
77
74
  import {
78
75
  ICONS,
79
76
  Icon,
80
- normalizeIconName
81
- } from "../chunk-6JNCDPGS.js";
82
- import "../chunk-BVHAP22U.js";
83
- import "../chunk-F3H23KYG.js";
84
- import "../chunk-GL7IO22L.js";
85
- import "../chunk-RQHJBTEU.js";
77
+ Menu,
78
+ RailTooltip,
79
+ Sidebar,
80
+ normalizeIconName,
81
+ useSidebarDrawer
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,
@@ -155,10 +157,10 @@ export {
155
157
  ToggleGroup,
156
158
  Tooltip,
157
159
  Typography,
158
- createShadcnComponentRegistry,
160
+ builtinComponents,
161
+ createComponentRegistry,
159
162
  normalizeIconName,
160
- registerShadcnComponents,
161
- shadcnComponents,
163
+ registerBuiltinComponents,
162
164
  useFormContext,
163
165
  useSidebarDrawer
164
166
  };