@object-ui/components 3.1.1 → 3.1.3

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.
Files changed (80) hide show
  1. package/.turbo/turbo-build.log +34 -12
  2. package/CHANGELOG.md +16 -0
  3. package/dist/index.css +1 -1
  4. package/dist/index.js +42898 -35689
  5. package/dist/index.umd.cjs +73 -43
  6. package/dist/src/custom/mobile-dialog-content.d.ts +1 -1
  7. package/dist/src/ui/accordion.d.ts +1 -1
  8. package/dist/src/ui/alert-dialog.d.ts +1 -1
  9. package/dist/src/ui/aspect-ratio.d.ts +1 -8
  10. package/dist/src/ui/avatar.d.ts +1 -1
  11. package/dist/src/ui/chart.d.ts +21 -15
  12. package/dist/src/ui/checkbox.d.ts +1 -1
  13. package/dist/src/ui/collapsible.d.ts +1 -8
  14. package/dist/src/ui/command.d.ts +2 -2
  15. package/dist/src/ui/context-menu.d.ts +1 -1
  16. package/dist/src/ui/dialog.d.ts +1 -1
  17. package/dist/src/ui/drawer.d.ts +10 -6
  18. package/dist/src/ui/dropdown-menu.d.ts +1 -1
  19. package/dist/src/ui/form.d.ts +2 -2
  20. package/dist/src/ui/hover-card.d.ts +1 -1
  21. package/dist/src/ui/label.d.ts +1 -1
  22. package/dist/src/ui/menubar.d.ts +1 -1
  23. package/dist/src/ui/navigation-menu.d.ts +1 -1
  24. package/dist/src/ui/popover.d.ts +1 -1
  25. package/dist/src/ui/progress.d.ts +1 -1
  26. package/dist/src/ui/radio-group.d.ts +1 -1
  27. package/dist/src/ui/scroll-area.d.ts +1 -1
  28. package/dist/src/ui/select.d.ts +1 -1
  29. package/dist/src/ui/separator.d.ts +1 -1
  30. package/dist/src/ui/sheet.d.ts +1 -1
  31. package/dist/src/ui/sidebar.d.ts +4 -1
  32. package/dist/src/ui/slider.d.ts +1 -1
  33. package/dist/src/ui/switch.d.ts +1 -1
  34. package/dist/src/ui/tabs.d.ts +1 -1
  35. package/dist/src/ui/toast.d.ts +1 -1
  36. package/dist/src/ui/toggle-group.d.ts +1 -1
  37. package/dist/src/ui/toggle.d.ts +1 -1
  38. package/dist/src/ui/tooltip.d.ts +1 -1
  39. package/package.json +14 -40
  40. package/shadcn-components.json +179 -54
  41. package/src/__tests__/navigation-overlay.test.tsx +2 -2
  42. package/src/custom/button-group.tsx +2 -2
  43. package/src/custom/field.tsx +3 -3
  44. package/src/custom/item.tsx +2 -2
  45. package/src/custom/mobile-dialog-content.tsx +1 -1
  46. package/src/renderers/form/form.tsx +7 -0
  47. package/src/ui/accordion.tsx +1 -1
  48. package/src/ui/alert-dialog.tsx +1 -1
  49. package/src/ui/aspect-ratio.tsx +1 -1
  50. package/src/ui/avatar.tsx +1 -1
  51. package/src/ui/breadcrumb.tsx +2 -2
  52. package/src/ui/button.tsx +2 -2
  53. package/src/ui/checkbox.tsx +1 -1
  54. package/src/ui/collapsible.tsx +1 -1
  55. package/src/ui/command.tsx +2 -2
  56. package/src/ui/context-menu.tsx +3 -3
  57. package/src/ui/dialog.tsx +1 -1
  58. package/src/ui/drawer.tsx +13 -13
  59. package/src/ui/dropdown-menu.tsx +3 -3
  60. package/src/ui/form.tsx +5 -5
  61. package/src/ui/hover-card.tsx +2 -2
  62. package/src/ui/label.tsx +1 -1
  63. package/src/ui/menubar.tsx +3 -3
  64. package/src/ui/navigation-menu.tsx +1 -1
  65. package/src/ui/popover.tsx +2 -2
  66. package/src/ui/progress.tsx +1 -1
  67. package/src/ui/radio-group.tsx +1 -1
  68. package/src/ui/scroll-area.tsx +1 -1
  69. package/src/ui/select.tsx +2 -2
  70. package/src/ui/separator.tsx +1 -1
  71. package/src/ui/sheet.tsx +1 -1
  72. package/src/ui/sidebar.tsx +11 -8
  73. package/src/ui/slider.tsx +1 -1
  74. package/src/ui/switch.tsx +1 -1
  75. package/src/ui/tabs.tsx +1 -1
  76. package/src/ui/toast.tsx +1 -1
  77. package/src/ui/toggle-group.tsx +1 -1
  78. package/src/ui/toggle.tsx +1 -1
  79. package/src/ui/tooltip.tsx +2 -2
  80. package/src/__tests__/Registry.test.ts +0 -21
@@ -1,3 +1,4 @@
1
+ import { Dialog as DialogPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -16,5 +17,4 @@
16
17
  * This lives in `custom/` to avoid modifying the Shadcn-synced `ui/dialog.tsx`.
17
18
  */
18
19
  import * as React from 'react';
19
- import * as DialogPrimitive from '@radix-ui/react-dialog';
20
20
  export declare const MobileDialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -1,3 +1,4 @@
1
+ import { Accordion as AccordionPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as AccordionPrimitive from "@radix-ui/react-accordion";
10
10
  declare const Accordion: React.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React.RefAttributes<HTMLDivElement>>;
11
11
  declare const AccordionItem: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
12
12
  declare const AccordionTrigger: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
@@ -1,3 +1,4 @@
1
+ import { AlertDialog as AlertDialogPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
10
10
  declare const AlertDialog: React.FC<AlertDialogPrimitive.AlertDialogProps>;
11
11
  declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
12
12
  declare const AlertDialogPortal: React.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
@@ -1,10 +1,3 @@
1
- /**
2
- * ObjectUI
3
- * Copyright (c) 2024-present ObjectStack Inc.
4
- *
5
- * This source code is licensed under the MIT license found in the
6
- * LICENSE file in the root directory of this source tree.
7
- */
8
- import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio";
1
+ import { AspectRatio as AspectRatioPrimitive } from 'radix-ui';
9
2
  declare const AspectRatio: import('react').ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & import('react').RefAttributes<HTMLDivElement>>;
10
3
  export { AspectRatio };
@@ -1,3 +1,4 @@
1
+ import { Avatar as AvatarPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as AvatarPrimitive from "@radix-ui/react-avatar";
10
10
  declare const Avatar: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
11
11
  declare const AvatarImage: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React.RefAttributes<HTMLImageElement>, "ref"> & React.RefAttributes<HTMLImageElement>>;
12
12
  declare const AvatarFallback: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
@@ -25,27 +25,33 @@ declare const ChartStyle: ({ id, config }: {
25
25
  config: ChartConfig;
26
26
  }) => import("react/jsx-runtime").JSX.Element | null;
27
27
  declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
28
- declare const ChartTooltipContent: React.ForwardRefExoticComponent<Omit<RechartsPrimitive.DefaultTooltipContentProps<import('recharts/types/component/DefaultTooltipContent').ValueType, import('recharts/types/component/DefaultTooltipContent').NameType> & {
29
- accessibilityLayer?: boolean;
30
- active?: boolean | undefined;
31
- includeHidden?: boolean | undefined;
28
+ declare const ChartTooltipContent: React.ForwardRefExoticComponent<Omit<Omit<RechartsPrimitive.DefaultTooltipContentProps<RechartsPrimitive.TooltipValueType, import('recharts/types/component/DefaultTooltipContent').NameType>, "label" | "viewBox" | "active" | "payload" | "coordinate" | "accessibilityLayer"> & {
29
+ active?: boolean;
32
30
  allowEscapeViewBox?: import('recharts/types/util/types').AllowInDimension;
33
31
  animationDuration?: import('recharts/types/util/types').AnimationDuration;
34
32
  animationEasing?: import('recharts/types/util/types').AnimationTiming;
35
- content?: import('recharts/types/component/Tooltip').ContentType<import('recharts/types/component/DefaultTooltipContent').ValueType, import('recharts/types/component/DefaultTooltipContent').NameType> | undefined;
36
- coordinate?: Partial<import('recharts/types/util/types').Coordinate>;
37
- cursor?: boolean | React.ReactElement | React.SVGProps<SVGElement>;
33
+ axisId?: RechartsPrimitive.AxisId;
34
+ content?: import('recharts/types/component/Tooltip').ContentType<RechartsPrimitive.TooltipValueType, import('recharts/types/component/DefaultTooltipContent').NameType> | undefined;
35
+ contentStyle?: React.CSSProperties;
36
+ cursor?: import('recharts/types/component/Cursor').CursorDefinition;
37
+ defaultIndex?: number | RechartsPrimitive.TooltipIndex;
38
38
  filterNull?: boolean;
39
- defaultIndex?: number;
40
- isAnimationActive?: boolean;
41
- offset?: number;
42
- payloadUniqBy?: import('recharts/types/util/payload/getUniqPayload').UniqueOption<import('recharts/types/component/DefaultTooltipContent').Payload<import('recharts/types/component/DefaultTooltipContent').ValueType, import('recharts/types/component/DefaultTooltipContent').NameType>> | undefined;
43
- position?: Partial<import('recharts/types/util/types').Coordinate>;
39
+ formatter?: ((value: RechartsPrimitive.TooltipValueType, name: import('recharts/types/component/DefaultTooltipContent').NameType, item: import('recharts/types/state/tooltipSlice').TooltipPayloadEntry, index: number, payload: RechartsPrimitive.TooltipPayload) => React.ReactNode | [React.ReactNode, React.ReactNode]) | undefined;
40
+ includeHidden?: boolean | undefined;
41
+ isAnimationActive?: boolean | "auto";
42
+ itemSorter?: RechartsPrimitive.TooltipItemSorter;
43
+ itemStyle?: React.CSSProperties;
44
+ labelFormatter?: (label: any, payload: RechartsPrimitive.TooltipPayload) => React.ReactNode;
45
+ labelStyle?: React.CSSProperties;
46
+ offset?: number | RechartsPrimitive.Coordinate;
47
+ payloadUniqBy?: import('recharts/types/util/payload/getUniqPayload').UniqueOption<import('recharts/types/state/tooltipSlice').TooltipPayloadEntry>;
48
+ portal?: HTMLElement | null;
49
+ position?: Partial<RechartsPrimitive.Coordinate>;
44
50
  reverseDirection?: import('recharts/types/util/types').AllowInDimension;
51
+ separator?: string;
45
52
  shared?: boolean;
46
- trigger?: "hover" | "click";
53
+ trigger?: import('recharts/types/chart/types').TooltipTrigger;
47
54
  useTranslate3d?: boolean;
48
- viewBox?: import('recharts/types/util/types').CartesianViewBox;
49
55
  wrapperStyle?: React.CSSProperties;
50
56
  } & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
51
57
  hideLabel?: boolean;
@@ -54,7 +60,7 @@ declare const ChartTooltipContent: React.ForwardRefExoticComponent<Omit<Recharts
54
60
  nameKey?: string;
55
61
  labelKey?: string;
56
62
  }, "ref"> & React.RefAttributes<HTMLDivElement>>;
57
- declare const ChartLegend: typeof RechartsPrimitive.Legend;
63
+ declare const ChartLegend: React.MemoExoticComponent<(outsideProps: RechartsPrimitive.LegendProps) => React.ReactPortal | null>;
58
64
  declare const ChartLegendContent: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Pick<RechartsPrimitive.LegendProps, "payload" | "verticalAlign"> & {
59
65
  hideIcon?: boolean;
60
66
  nameKey?: string;
@@ -1,3 +1,4 @@
1
+ import { Checkbox as CheckboxPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,6 +7,5 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
10
10
  declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
11
11
  export { Checkbox };
@@ -1,11 +1,4 @@
1
- /**
2
- * ObjectUI
3
- * Copyright (c) 2024-present ObjectStack Inc.
4
- *
5
- * This source code is licensed under the MIT license found in the
6
- * LICENSE file in the root directory of this source tree.
7
- */
8
- import * as CollapsiblePrimitive from "@radix-ui/react-collapsible";
1
+ import { Collapsible as CollapsiblePrimitive } from 'radix-ui';
9
2
  declare const Collapsible: import('react').ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & import('react').RefAttributes<HTMLDivElement>>;
10
3
  declare const CollapsibleTrigger: import('react').ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleTriggerProps & import('react').RefAttributes<HTMLButtonElement>>;
11
4
  declare const CollapsibleContent: import('react').ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleContentProps & import('react').RefAttributes<HTMLDivElement>>;
@@ -1,4 +1,4 @@
1
- import { DialogProps } from '@radix-ui/react-dialog';
1
+ import { Dialog as DialogPrimitive } from 'radix-ui';
2
2
  /**
3
3
  * ObjectUI
4
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -24,7 +24,7 @@ declare const Command: React.ForwardRefExoticComponent<Omit<{
24
24
  disablePointerSelection?: boolean;
25
25
  vimBindings?: boolean;
26
26
  } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
27
- declare const CommandDialog: ({ children, ...props }: DialogProps) => import("react/jsx-runtime").JSX.Element;
27
+ declare const CommandDialog: ({ children, ...props }: React.ComponentProps<typeof DialogPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
28
28
  declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "key" | keyof React.InputHTMLAttributes<HTMLInputElement>> & {
29
29
  ref?: React.Ref<HTMLInputElement>;
30
30
  } & {
@@ -1,3 +1,4 @@
1
+ import { ContextMenu as ContextMenuPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as ContextMenuPrimitive from "@radix-ui/react-context-menu";
10
10
  declare const ContextMenu: React.FC<ContextMenuPrimitive.ContextMenuProps>;
11
11
  declare const ContextMenuTrigger: React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React.RefAttributes<HTMLSpanElement>>;
12
12
  declare const ContextMenuGroup: React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
@@ -1,3 +1,4 @@
1
+ import { Dialog as DialogPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as DialogPrimitive from "@radix-ui/react-dialog";
10
10
  declare const Dialog: React.FC<DialogPrimitive.DialogProps>;
11
11
  declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
12
12
  declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
@@ -11,11 +11,15 @@ declare const Drawer: {
11
11
  ({ shouldScaleBackground, ...props }: React.ComponentProps<typeof DrawerPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
12
12
  displayName: string;
13
13
  };
14
- declare const DrawerTrigger: React.ForwardRefExoticComponent<import('@radix-ui/react-dialog').DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
14
+ declare const DrawerTrigger: React.FC<React.ComponentPropsWithoutRef<"button"> & {
15
+ asChild?: boolean;
16
+ }>;
15
17
  declare const DrawerPortal: typeof import('vaul').Portal;
16
- declare const DrawerClose: React.ForwardRefExoticComponent<import('@radix-ui/react-dialog').DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
17
- declare const DrawerOverlay: React.ForwardRefExoticComponent<Omit<Omit<import('@radix-ui/react-dialog').DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
18
- declare const DrawerContent: React.ForwardRefExoticComponent<Omit<Omit<import('@radix-ui/react-dialog').DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
18
+ declare const DrawerClose: React.FC<React.ComponentPropsWithoutRef<"button"> & {
19
+ asChild?: boolean;
20
+ }>;
21
+ declare const DrawerOverlay: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
22
+ declare const DrawerContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
19
23
  declare const DrawerHeader: {
20
24
  ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
21
25
  displayName: string;
@@ -24,6 +28,6 @@ declare const DrawerFooter: {
24
28
  ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
25
29
  displayName: string;
26
30
  };
27
- declare const DrawerTitle: React.ForwardRefExoticComponent<Omit<import('@radix-ui/react-dialog').DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
28
- declare const DrawerDescription: React.ForwardRefExoticComponent<Omit<import('@radix-ui/react-dialog').DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
31
+ declare const DrawerTitle: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
32
+ declare const DrawerDescription: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
29
33
  export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, };
@@ -1,3 +1,4 @@
1
+ import { DropdownMenu as DropdownMenuPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
10
10
  declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
11
11
  declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
12
12
  declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
@@ -1,3 +1,4 @@
1
+ import { Label as LabelPrimitive, Slot as SlotPrimitive } from 'radix-ui';
1
2
  import { ControllerProps, FieldPath, FieldValues } from 'react-hook-form';
2
3
  /**
3
4
  * ObjectUI
@@ -7,7 +8,6 @@ import { ControllerProps, FieldPath, FieldValues } from 'react-hook-form';
7
8
  * LICENSE file in the root directory of this source tree.
8
9
  */
9
10
  import * as React from "react";
10
- import * as LabelPrimitive from "@radix-ui/react-label";
11
11
  declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: import('react-hook-form').FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
12
12
  declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => import("react/jsx-runtime").JSX.Element;
13
13
  declare const useFormField: () => {
@@ -24,7 +24,7 @@ declare const useFormField: () => {
24
24
  };
25
25
  declare const FormItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
26
26
  declare const FormLabel: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & React.RefAttributes<HTMLLabelElement>>;
27
- declare const FormControl: React.ForwardRefExoticComponent<Omit<import('@radix-ui/react-slot').SlotProps & React.RefAttributes<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
27
+ declare const FormControl: React.ForwardRefExoticComponent<Omit<SlotPrimitive.SlotProps & React.RefAttributes<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
28
28
  declare const FormDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
29
29
  declare const FormMessage: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
30
30
  export { useFormField, Form, FormItem, FormLabel, FormControl, FormDescription, FormMessage, FormField, };
@@ -1,3 +1,4 @@
1
+ import { HoverCard as HoverCardPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as HoverCardPrimitive from "@radix-ui/react-hover-card";
10
10
  declare const HoverCard: React.FC<HoverCardPrimitive.HoverCardProps>;
11
11
  declare const HoverCardTrigger: React.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React.RefAttributes<HTMLAnchorElement>>;
12
12
  declare const HoverCardContent: React.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -1,3 +1,4 @@
1
+ import { Label as LabelPrimitive } from 'radix-ui';
1
2
  import { VariantProps } from 'class-variance-authority';
2
3
  /**
3
4
  * ObjectUI
@@ -7,6 +8,5 @@ import { VariantProps } from 'class-variance-authority';
7
8
  * LICENSE file in the root directory of this source tree.
8
9
  */
9
10
  import * as React from "react";
10
- import * as LabelPrimitive from "@radix-ui/react-label";
11
11
  declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: import('class-variance-authority/types').ClassProp | undefined) => string> & React.RefAttributes<HTMLLabelElement>>;
12
12
  export { Label };
@@ -1,3 +1,4 @@
1
+ import { Menubar as MenubarPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as MenubarPrimitive from "@radix-ui/react-menubar";
10
10
  declare function MenubarMenu({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Menu>): import("react/jsx-runtime").JSX.Element;
11
11
  declare function MenubarGroup({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Group>): import("react/jsx-runtime").JSX.Element;
12
12
  declare function MenubarPortal({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,4 @@
1
+ import { NavigationMenu as NavigationMenuPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
10
10
  declare const NavigationMenu: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuProps & React.RefAttributes<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
11
11
  declare const NavigationMenuList: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuListProps & React.RefAttributes<HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>;
12
12
  declare const NavigationMenuItem: React.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & React.RefAttributes<HTMLLIElement>>;
@@ -1,3 +1,4 @@
1
+ import { Popover as PopoverPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as PopoverPrimitive from "@radix-ui/react-popover";
10
10
  declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
11
11
  declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
12
12
  declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -1,3 +1,4 @@
1
+ import { Progress as ProgressPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,6 +7,5 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as ProgressPrimitive from "@radix-ui/react-progress";
10
10
  declare const Progress: React.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
11
11
  export { Progress };
@@ -1,3 +1,4 @@
1
+ import { RadioGroup as RadioGroupPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
10
10
  declare const RadioGroup: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
11
11
  declare const RadioGroupItem: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
12
12
  export { RadioGroup, RadioGroupItem };
@@ -1,3 +1,4 @@
1
+ import { ScrollArea as ScrollAreaPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
10
10
  declare const ScrollArea: React.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
11
11
  declare const ScrollBar: React.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
12
12
  export { ScrollArea, ScrollBar };
@@ -1,3 +1,4 @@
1
+ import { Select as SelectPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as SelectPrimitive from "@radix-ui/react-select";
10
10
  declare const Select: React.FC<SelectPrimitive.SelectProps>;
11
11
  declare const SelectGroup: React.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
12
12
  declare const SelectValue: React.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>>;
@@ -1,3 +1,4 @@
1
+ import { Separator as SeparatorPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,6 +7,5 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as SeparatorPrimitive from "@radix-ui/react-separator";
10
10
  declare const Separator: React.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
11
11
  export { Separator };
@@ -1,3 +1,4 @@
1
+ import { Dialog as SheetPrimitive } from 'radix-ui';
1
2
  import { VariantProps } from 'class-variance-authority';
2
3
  /**
3
4
  * ObjectUI
@@ -7,7 +8,6 @@ import { VariantProps } from 'class-variance-authority';
7
8
  * LICENSE file in the root directory of this source tree.
8
9
  */
9
10
  import * as React from "react";
10
- import * as SheetPrimitive from "@radix-ui/react-dialog";
11
11
  declare const Sheet: React.FC<SheetPrimitive.DialogProps>;
12
12
  declare const SheetTrigger: React.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
13
13
  declare const SheetClose: React.ForwardRefExoticComponent<SheetPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
@@ -38,7 +38,10 @@ declare const SidebarInset: React.ForwardRefExoticComponent<Omit<React.DetailedH
38
38
  declare const SidebarInput: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
39
39
  declare const SidebarHeader: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
40
40
  declare const SidebarFooter: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
41
- declare const SidebarSeparator: React.ForwardRefExoticComponent<Omit<Omit<import('@radix-ui/react-separator').SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
41
+ declare const SidebarSeparator: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
42
+ orientation?: "horizontal" | "vertical";
43
+ decorative?: boolean;
44
+ } & React.RefAttributes<HTMLDivElement>>;
42
45
  declare const SidebarContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
43
46
  declare const SidebarGroup: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
44
47
  declare const SidebarGroupLabel: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
@@ -1,3 +1,4 @@
1
+ import { Slider as SliderPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,6 +7,5 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as SliderPrimitive from "@radix-ui/react-slider";
10
10
  declare const Slider: React.ForwardRefExoticComponent<Omit<SliderPrimitive.SliderProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
11
11
  export { Slider };
@@ -1,3 +1,4 @@
1
+ import { Switch as SwitchPrimitives } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,6 +7,5 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as SwitchPrimitives from "@radix-ui/react-switch";
10
10
  declare const Switch: React.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
11
11
  export { Switch };
@@ -1,3 +1,4 @@
1
+ import { Tabs as TabsPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as TabsPrimitive from "@radix-ui/react-tabs";
10
10
  declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
11
11
  declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
12
12
  declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
@@ -1,3 +1,4 @@
1
+ import { Toast as ToastPrimitives } from 'radix-ui';
1
2
  import { VariantProps } from 'class-variance-authority';
2
3
  /**
3
4
  * ObjectUI
@@ -7,7 +8,6 @@ import { VariantProps } from 'class-variance-authority';
7
8
  * LICENSE file in the root directory of this source tree.
8
9
  */
9
10
  import * as React from "react";
10
- import * as ToastPrimitives from "@radix-ui/react-toast";
11
11
  declare const ToastProvider: React.FC<ToastPrimitives.ToastProviderProps>;
12
12
  declare const ToastViewport: React.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastViewportProps & React.RefAttributes<HTMLOListElement>, "ref"> & React.RefAttributes<HTMLOListElement>>;
13
13
  declare const Toast: React.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
@@ -1,3 +1,4 @@
1
+ import { ToggleGroup as ToggleGroupPrimitive } from 'radix-ui';
1
2
  import { VariantProps } from 'class-variance-authority';
2
3
  /**
3
4
  * ObjectUI
@@ -7,7 +8,6 @@ import { VariantProps } from 'class-variance-authority';
7
8
  * LICENSE file in the root directory of this source tree.
8
9
  */
9
10
  import * as React from "react";
10
- import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group";
11
11
  declare const ToggleGroup: React.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & React.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & React.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
12
12
  variant?: "default" | "outline" | null | undefined;
13
13
  size?: "default" | "sm" | "lg" | null | undefined;
@@ -1,3 +1,4 @@
1
+ import { Toggle as TogglePrimitive } from 'radix-ui';
1
2
  import { VariantProps } from 'class-variance-authority';
2
3
  /**
3
4
  * ObjectUI
@@ -7,7 +8,6 @@ import { VariantProps } from 'class-variance-authority';
7
8
  * LICENSE file in the root directory of this source tree.
8
9
  */
9
10
  import * as React from "react";
10
- import * as TogglePrimitive from "@radix-ui/react-toggle";
11
11
  declare const toggleVariants: (props?: ({
12
12
  variant?: "default" | "outline" | null | undefined;
13
13
  size?: "default" | "sm" | "lg" | null | undefined;
@@ -1,3 +1,4 @@
1
+ import { Tooltip as TooltipPrimitive } from 'radix-ui';
1
2
  /**
2
3
  * ObjectUI
3
4
  * Copyright (c) 2024-present ObjectStack Inc.
@@ -6,7 +7,6 @@
6
7
  * LICENSE file in the root directory of this source tree.
7
8
  */
8
9
  import * as React from "react";
9
- import * as TooltipPrimitive from "@radix-ui/react-tooltip";
10
10
  declare const TooltipProvider: React.FC<TooltipPrimitive.TooltipProviderProps>;
11
11
  declare const Tooltip: React.FC<TooltipPrimitive.TooltipProps>;
12
12
  declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@object-ui/components",
3
- "version": "3.1.1",
3
+ "version": "3.1.3",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Standard UI component library for Object UI, built with Shadcn UI + Tailwind CSS",
@@ -26,52 +26,26 @@
26
26
  "./style.css": "./dist/index.css"
27
27
  },
28
28
  "dependencies": {
29
- "@radix-ui/react-accordion": "^1.2.12",
30
- "@radix-ui/react-alert-dialog": "^1.1.15",
31
- "@radix-ui/react-aspect-ratio": "^1.1.8",
32
- "@radix-ui/react-avatar": "^1.1.11",
33
- "@radix-ui/react-checkbox": "^1.3.3",
34
- "@radix-ui/react-collapsible": "^1.1.12",
35
- "@radix-ui/react-context-menu": "^2.2.16",
36
- "@radix-ui/react-dialog": "^1.1.15",
37
- "@radix-ui/react-dropdown-menu": "^2.1.16",
38
- "@radix-ui/react-hover-card": "^1.1.15",
39
- "@radix-ui/react-label": "^2.1.8",
40
- "@radix-ui/react-menubar": "^1.1.16",
41
- "@radix-ui/react-navigation-menu": "^1.2.14",
42
- "@radix-ui/react-popover": "^1.1.15",
43
- "@radix-ui/react-progress": "^1.1.8",
44
- "@radix-ui/react-radio-group": "^1.3.8",
45
- "@radix-ui/react-scroll-area": "^1.2.10",
46
- "@radix-ui/react-select": "^2.2.6",
47
- "@radix-ui/react-separator": "^1.1.8",
48
- "@radix-ui/react-slider": "^1.3.6",
49
- "@radix-ui/react-slot": "^1.2.4",
50
- "@radix-ui/react-switch": "^1.2.6",
51
- "@radix-ui/react-tabs": "^1.1.13",
52
- "@radix-ui/react-toast": "^1.2.15",
53
- "@radix-ui/react-toggle": "^1.1.10",
54
- "@radix-ui/react-toggle-group": "^1.1.11",
55
- "@radix-ui/react-tooltip": "^1.2.8",
56
29
  "class-variance-authority": "^0.7.1",
57
30
  "clsx": "^2.1.1",
58
31
  "cmdk": "^1.1.1",
59
32
  "date-fns": "^4.1.0",
60
33
  "embla-carousel-react": "^8.6.0",
61
34
  "input-otp": "^1.4.2",
62
- "lucide-react": "^0.576.0",
35
+ "lucide-react": "^0.577.0",
63
36
  "next-themes": "^0.4.6",
37
+ "radix-ui": "^1.4.3",
64
38
  "react-day-picker": "^9.14.0",
65
39
  "react-hook-form": "^7.71.2",
66
- "react-resizable-panels": "^4.7.0",
67
- "recharts": "2.15.4",
40
+ "react-resizable-panels": "^4.7.2",
41
+ "recharts": "3.8.0",
68
42
  "sonner": "^2.0.7",
69
43
  "tailwind-merge": "^3.5.0",
70
44
  "tailwindcss-animate": "^1.0.7",
71
45
  "vaul": "^1.1.2",
72
- "@object-ui/core": "3.1.1",
73
- "@object-ui/react": "3.1.1",
74
- "@object-ui/types": "3.1.1"
46
+ "@object-ui/core": "3.1.3",
47
+ "@object-ui/react": "3.1.3",
48
+ "@object-ui/types": "3.1.3"
75
49
  },
76
50
  "peerDependencies": {
77
51
  "react": "^18.0.0 || ^19.0.0",
@@ -81,18 +55,18 @@
81
55
  "devDependencies": {
82
56
  "@storybook/addon-essentials": "^8.6.14",
83
57
  "@storybook/addon-interactions": "^8.6.14",
84
- "@storybook/addon-links": "^8.6.17",
58
+ "@storybook/addon-links": "^8.6.18",
85
59
  "@storybook/blocks": "^8.6.14",
86
- "@storybook/react": "^8.6.15",
87
- "@storybook/react-vite": "^8.6.15",
60
+ "@storybook/react": "^8.6.18",
61
+ "@storybook/react-vite": "^8.6.18",
88
62
  "@tailwindcss/postcss": "^4.2.1",
89
63
  "@types/react": "19.2.14",
90
64
  "@types/react-dom": "19.2.3",
91
65
  "@vitejs/plugin-react": "^5.1.4",
92
66
  "autoprefixer": "^10.4.27",
93
- "postcss": "^8.5.6",
94
- "shadcn": "^3.8.5",
95
- "storybook": "^8.6.17",
67
+ "postcss": "^8.5.8",
68
+ "shadcn": "^4.0.2",
69
+ "storybook": "^8.6.18",
96
70
  "tailwindcss": "^4.2.1",
97
71
  "typescript": "^5.9.3",
98
72
  "vite": "^7.3.1",