@pixpilot/shadcn-ui 0.29.0 → 0.30.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.
@@ -1,7 +1,7 @@
1
1
  import { FileUploadProps } from "./types/index.js";
2
- import * as react_jsx_runtime12 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime6 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/file-upload/FileUpload.d.ts
5
- declare function FileUpload(props: FileUploadProps): react_jsx_runtime12.JSX.Element;
5
+ declare function FileUpload(props: FileUploadProps): react_jsx_runtime6.JSX.Element;
6
6
  //#endregion
7
7
  export { FileUpload };
@@ -1,10 +1,10 @@
1
1
  import { FileUploadInlineProps } from "./types.js";
2
- import * as react_jsx_runtime6 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime7 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/file-upload-inline/FileUploadInline.d.ts
5
5
  /**
6
6
  * FileUploadInline - An inline file upload component using FileUpload primitives
7
7
  */
8
- declare function FileUploadInline(props: FileUploadInlineProps): react_jsx_runtime6.JSX.Element;
8
+ declare function FileUploadInline(props: FileUploadInlineProps): react_jsx_runtime7.JSX.Element;
9
9
  //#endregion
10
10
  export { FileUploadInline };
@@ -5,6 +5,10 @@ require('../hooks/index.cjs');
5
5
  const require_constants = require('./constants.cjs');
6
6
  const require_icon_picker_container = require('./icon-picker-container.cjs');
7
7
  const require_icon_picker_content = require('./icon-picker-content.cjs');
8
+ let __pixpilot_shadcn = require("@pixpilot/shadcn");
9
+ __pixpilot_shadcn = require_rolldown_runtime.__toESM(__pixpilot_shadcn);
10
+ let lucide_react = require("lucide-react");
11
+ lucide_react = require_rolldown_runtime.__toESM(lucide_react);
8
12
  let react = require("react");
9
13
  react = require_rolldown_runtime.__toESM(react);
10
14
  let react_jsx_runtime = require("react/jsx-runtime");
@@ -13,7 +17,7 @@ let __iconify_react = require("@iconify/react");
13
17
  __iconify_react = require_rolldown_runtime.__toESM(__iconify_react);
14
18
 
15
19
  //#region src/icon-selector/IconPicker.tsx
16
- const IconPicker = ({ value, onChange, onOpenChange, pickerMode = "dialog", popover, variant = "default", providers: providersProp }) => {
20
+ const IconPicker = ({ value, onChange, onOpenChange, pickerMode = "dialog", popover, variant = "default", providers: providersProp, showValueText = true, emptyText = "+", showClearButton = true }) => {
17
21
  const [isOpen, setIsOpen] = (0, react.useState)(false);
18
22
  const isMobile = require_use_media_query.useMediaQuery({ maxWidth: 768 });
19
23
  const handleSelectIcon = (0, react.useCallback)((iconName) => {
@@ -21,15 +25,25 @@ const IconPicker = ({ value, onChange, onOpenChange, pickerMode = "dialog", popo
21
25
  setIsOpen(false);
22
26
  onOpenChange?.(false);
23
27
  }, [onChange, onOpenChange]);
28
+ const handleClearIcon = (0, react.useCallback)(() => {
29
+ onChange?.("");
30
+ setIsOpen(false);
31
+ onOpenChange?.(false);
32
+ }, [onChange, onOpenChange]);
24
33
  const hasValue = typeof value === "string" && value.length > 0;
25
- const displayIcon = hasValue ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__iconify_react.Icon, {
26
- icon: value,
27
- width: "20",
28
- height: "20"
29
- }) : /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
30
- className: "text-sm text-muted-foreground",
31
- children: "No icon selected"
32
- });
34
+ const renderIconDisplay = (emptyClassName, ariaHidden) => {
35
+ if (hasValue) return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__iconify_react.Icon, {
36
+ icon: value,
37
+ width: "20",
38
+ height: "20"
39
+ });
40
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
41
+ "aria-hidden": ariaHidden,
42
+ className: (0, __pixpilot_shadcn.cn)("min-w-6 text-muted-foreground flex items-center justify-center", emptyClassName),
43
+ children: emptyText
44
+ });
45
+ };
46
+ const displayIcon = renderIconDisplay("text-sm");
33
47
  const selectorContent = /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_icon_picker_content.default, {
34
48
  providers: providersProp,
35
49
  onChange: handleSelectIcon,
@@ -42,50 +56,67 @@ const IconPicker = ({ value, onChange, onOpenChange, pickerMode = "dialog", popo
42
56
  else effectiveMode = pickerMode;
43
57
  const isIconButtonVariant = variant === "icon-button";
44
58
  const iconButtonLabel = hasValue ? `Change selected icon (${value})` : "Select an icon";
45
- const iconButtonContent = hasValue ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__iconify_react.Icon, {
46
- icon: value,
47
- width: "20",
48
- height: "20"
49
- }) : /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
50
- "aria-hidden": "true",
51
- className: "text-muted-foreground text-lg",
52
- children: "+"
53
- });
59
+ const shouldShowClearButton = showClearButton && hasValue;
60
+ const iconButtonContent = renderIconDisplay("text-lg", true);
54
61
  if (isIconButtonVariant) return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_icon_picker_container.IconPickerContainer, {
55
62
  effectiveMode,
56
63
  isOpen,
57
64
  setIsOpen,
58
65
  selectorContent,
59
66
  popover,
60
- children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_Button.Button, {
61
- type: "button",
62
- variant: "outline",
63
- className: "p-2",
64
- "aria-label": iconButtonLabel,
65
- children: iconButtonContent
67
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("span", {
68
+ className: "relative inline-flex",
69
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_Button.Button, {
70
+ type: "button",
71
+ variant: "outline",
72
+ className: "p-2",
73
+ "aria-label": iconButtonLabel,
74
+ children: iconButtonContent
75
+ }), shouldShowClearButton && /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_Button.Button, {
76
+ type: "button",
77
+ title: "Clear selected icon",
78
+ className: (0, __pixpilot_shadcn.cn)("absolute -right-1 -top-1 inline-flex h-4 w-4 items-center justify-center rounded-full !p-1", "border border-border bg-background text-foreground", "hover:bg-muted focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"),
79
+ "aria-label": "Clear icon",
80
+ onClick: (event) => {
81
+ event.preventDefault();
82
+ event.stopPropagation();
83
+ handleClearIcon();
84
+ },
85
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(lucide_react.X, { className: "!h-3 !w-3" })
86
+ })]
66
87
  })
67
88
  });
68
89
  return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
69
90
  className: "flex items-center gap-2",
70
- children: [/* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
71
- className: "flex items-center gap-2 rounded-md border border-input bg-background px-3 py-2",
72
- children: [displayIcon, hasValue && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
73
- className: "text-sm text-muted-foreground",
74
- children: value
75
- })]
76
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_icon_picker_container.IconPickerContainer, {
77
- effectiveMode,
78
- isOpen,
79
- setIsOpen,
80
- selectorContent,
81
- popover,
82
- children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_Button.Button, {
91
+ children: [
92
+ /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
93
+ className: "flex items-center gap-2 rounded-md border border-input bg-background px-3 py-2",
94
+ children: [displayIcon, showValueText && hasValue && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
95
+ className: "text-sm text-muted-foreground",
96
+ children: value
97
+ })]
98
+ }),
99
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_icon_picker_container.IconPickerContainer, {
100
+ effectiveMode,
101
+ isOpen,
102
+ setIsOpen,
103
+ selectorContent,
104
+ popover,
105
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_Button.Button, {
106
+ type: "button",
107
+ variant: "outline",
108
+ className: "whitespace-nowrap",
109
+ children: hasValue ? "Change Icon" : "Select Icon"
110
+ })
111
+ }),
112
+ shouldShowClearButton && /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_Button.Button, {
83
113
  type: "button",
84
114
  variant: "outline",
85
115
  className: "whitespace-nowrap",
86
- children: hasValue ? "Change Icon" : "Select Icon"
116
+ onClick: handleClearIcon,
117
+ children: "Clear"
87
118
  })
88
- })]
119
+ ]
89
120
  });
90
121
  };
91
122
 
@@ -28,6 +28,9 @@ interface IconPickerProps {
28
28
  prefix: string;
29
29
  name: string;
30
30
  }>) => void;
31
+ showValueText?: boolean;
32
+ emptyText?: React.ReactNode;
33
+ showClearButton?: boolean;
31
34
  }
32
35
  declare const IconPicker: FC<IconPickerProps>;
33
36
  //#endregion
@@ -28,6 +28,9 @@ interface IconPickerProps {
28
28
  prefix: string;
29
29
  name: string;
30
30
  }>) => void;
31
+ showValueText?: boolean;
32
+ emptyText?: React.ReactNode;
33
+ showClearButton?: boolean;
31
34
  }
32
35
  declare const IconPicker: FC<IconPickerProps>;
33
36
  //#endregion
@@ -1,15 +1,17 @@
1
- import { Button } from "../Button.js";
1
+ import { Button as Button$1 } from "../Button.js";
2
2
  import { useMediaQuery } from "../hooks/use-media-query.js";
3
3
  import "../hooks/index.js";
4
4
  import { ICON_SELECTOR_ERROR_MESSAGE } from "./constants.js";
5
5
  import { IconPickerContainer } from "./icon-picker-container.js";
6
6
  import icon_picker_content_default from "./icon-picker-content.js";
7
+ import { cn } from "@pixpilot/shadcn";
8
+ import { X } from "lucide-react";
7
9
  import { useCallback, useState } from "react";
8
10
  import { jsx, jsxs } from "react/jsx-runtime";
9
11
  import { Icon } from "@iconify/react";
10
12
 
11
13
  //#region src/icon-selector/IconPicker.tsx
12
- const IconPicker = ({ value, onChange, onOpenChange, pickerMode = "dialog", popover, variant = "default", providers: providersProp }) => {
14
+ const IconPicker = ({ value, onChange, onOpenChange, pickerMode = "dialog", popover, variant = "default", providers: providersProp, showValueText = true, emptyText = "+", showClearButton = true }) => {
13
15
  const [isOpen, setIsOpen] = useState(false);
14
16
  const isMobile = useMediaQuery({ maxWidth: 768 });
15
17
  const handleSelectIcon = useCallback((iconName) => {
@@ -17,15 +19,25 @@ const IconPicker = ({ value, onChange, onOpenChange, pickerMode = "dialog", popo
17
19
  setIsOpen(false);
18
20
  onOpenChange?.(false);
19
21
  }, [onChange, onOpenChange]);
22
+ const handleClearIcon = useCallback(() => {
23
+ onChange?.("");
24
+ setIsOpen(false);
25
+ onOpenChange?.(false);
26
+ }, [onChange, onOpenChange]);
20
27
  const hasValue = typeof value === "string" && value.length > 0;
21
- const displayIcon = hasValue ? /* @__PURE__ */ jsx(Icon, {
22
- icon: value,
23
- width: "20",
24
- height: "20"
25
- }) : /* @__PURE__ */ jsx("span", {
26
- className: "text-sm text-muted-foreground",
27
- children: "No icon selected"
28
- });
28
+ const renderIconDisplay = (emptyClassName, ariaHidden) => {
29
+ if (hasValue) return /* @__PURE__ */ jsx(Icon, {
30
+ icon: value,
31
+ width: "20",
32
+ height: "20"
33
+ });
34
+ return /* @__PURE__ */ jsx("span", {
35
+ "aria-hidden": ariaHidden,
36
+ className: cn("min-w-6 text-muted-foreground flex items-center justify-center", emptyClassName),
37
+ children: emptyText
38
+ });
39
+ };
40
+ const displayIcon = renderIconDisplay("text-sm");
29
41
  const selectorContent = /* @__PURE__ */ jsx(icon_picker_content_default, {
30
42
  providers: providersProp,
31
43
  onChange: handleSelectIcon,
@@ -37,50 +49,67 @@ const IconPicker = ({ value, onChange, onOpenChange, pickerMode = "dialog", popo
37
49
  else effectiveMode = pickerMode;
38
50
  const isIconButtonVariant = variant === "icon-button";
39
51
  const iconButtonLabel = hasValue ? `Change selected icon (${value})` : "Select an icon";
40
- const iconButtonContent = hasValue ? /* @__PURE__ */ jsx(Icon, {
41
- icon: value,
42
- width: "20",
43
- height: "20"
44
- }) : /* @__PURE__ */ jsx("span", {
45
- "aria-hidden": "true",
46
- className: "text-muted-foreground text-lg",
47
- children: "+"
48
- });
52
+ const shouldShowClearButton = showClearButton && hasValue;
53
+ const iconButtonContent = renderIconDisplay("text-lg", true);
49
54
  if (isIconButtonVariant) return /* @__PURE__ */ jsx(IconPickerContainer, {
50
55
  effectiveMode,
51
56
  isOpen,
52
57
  setIsOpen,
53
58
  selectorContent,
54
59
  popover,
55
- children: /* @__PURE__ */ jsx(Button, {
56
- type: "button",
57
- variant: "outline",
58
- className: "p-2",
59
- "aria-label": iconButtonLabel,
60
- children: iconButtonContent
60
+ children: /* @__PURE__ */ jsxs("span", {
61
+ className: "relative inline-flex",
62
+ children: [/* @__PURE__ */ jsx(Button$1, {
63
+ type: "button",
64
+ variant: "outline",
65
+ className: "p-2",
66
+ "aria-label": iconButtonLabel,
67
+ children: iconButtonContent
68
+ }), shouldShowClearButton && /* @__PURE__ */ jsx(Button$1, {
69
+ type: "button",
70
+ title: "Clear selected icon",
71
+ className: cn("absolute -right-1 -top-1 inline-flex h-4 w-4 items-center justify-center rounded-full !p-1", "border border-border bg-background text-foreground", "hover:bg-muted focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"),
72
+ "aria-label": "Clear icon",
73
+ onClick: (event) => {
74
+ event.preventDefault();
75
+ event.stopPropagation();
76
+ handleClearIcon();
77
+ },
78
+ children: /* @__PURE__ */ jsx(X, { className: "!h-3 !w-3" })
79
+ })]
61
80
  })
62
81
  });
63
82
  return /* @__PURE__ */ jsxs("div", {
64
83
  className: "flex items-center gap-2",
65
- children: [/* @__PURE__ */ jsxs("div", {
66
- className: "flex items-center gap-2 rounded-md border border-input bg-background px-3 py-2",
67
- children: [displayIcon, hasValue && /* @__PURE__ */ jsx("span", {
68
- className: "text-sm text-muted-foreground",
69
- children: value
70
- })]
71
- }), /* @__PURE__ */ jsx(IconPickerContainer, {
72
- effectiveMode,
73
- isOpen,
74
- setIsOpen,
75
- selectorContent,
76
- popover,
77
- children: /* @__PURE__ */ jsx(Button, {
84
+ children: [
85
+ /* @__PURE__ */ jsxs("div", {
86
+ className: "flex items-center gap-2 rounded-md border border-input bg-background px-3 py-2",
87
+ children: [displayIcon, showValueText && hasValue && /* @__PURE__ */ jsx("span", {
88
+ className: "text-sm text-muted-foreground",
89
+ children: value
90
+ })]
91
+ }),
92
+ /* @__PURE__ */ jsx(IconPickerContainer, {
93
+ effectiveMode,
94
+ isOpen,
95
+ setIsOpen,
96
+ selectorContent,
97
+ popover,
98
+ children: /* @__PURE__ */ jsx(Button$1, {
99
+ type: "button",
100
+ variant: "outline",
101
+ className: "whitespace-nowrap",
102
+ children: hasValue ? "Change Icon" : "Select Icon"
103
+ })
104
+ }),
105
+ shouldShowClearButton && /* @__PURE__ */ jsx(Button$1, {
78
106
  type: "button",
79
107
  variant: "outline",
80
108
  className: "whitespace-nowrap",
81
- children: hasValue ? "Change Icon" : "Select Icon"
109
+ onClick: handleClearIcon,
110
+ children: "Clear"
82
111
  })
83
- })]
112
+ ]
84
113
  });
85
114
  };
86
115
 
@@ -1,6 +1,6 @@
1
1
  import { InputProps } from "@pixpilot/shadcn";
2
2
  import * as React$1 from "react";
3
- import * as react_jsx_runtime7 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime8 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/input/Input.d.ts
6
6
  type InputProps$1 = InputProps & {
@@ -10,6 +10,6 @@ type InputProps$1 = InputProps & {
10
10
  prefixClassName?: string;
11
11
  suffixClassName?: string;
12
12
  };
13
- declare function Input$1(props: InputProps$1): react_jsx_runtime7.JSX.Element;
13
+ declare function Input$1(props: InputProps$1): react_jsx_runtime8.JSX.Element;
14
14
  //#endregion
15
15
  export { Input$1 as Input, InputProps$1 as InputProps };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime10 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime11 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/theme-toggle/ThemeModeDropdown.d.ts
4
4
  interface ThemeModeDropdownProps {
@@ -17,7 +17,7 @@ interface ThemeModeDropdownProps {
17
17
  * Provides Light / Dark / System options.
18
18
  * Pure component - requires themeValue and onChange props.
19
19
  */
20
- declare function ThemeModeDropdown(props: ThemeModeDropdownProps): react_jsx_runtime10.JSX.Element;
20
+ declare function ThemeModeDropdown(props: ThemeModeDropdownProps): react_jsx_runtime11.JSX.Element;
21
21
  declare namespace ThemeModeDropdown {
22
22
  var displayName: string;
23
23
  }
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime9 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime10 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/theme-toggle/ThemeModeDropdown.d.ts
4
4
  interface ThemeModeDropdownProps {
@@ -17,7 +17,7 @@ interface ThemeModeDropdownProps {
17
17
  * Provides Light / Dark / System options.
18
18
  * Pure component - requires themeValue and onChange props.
19
19
  */
20
- declare function ThemeModeDropdown(props: ThemeModeDropdownProps): react_jsx_runtime9.JSX.Element;
20
+ declare function ThemeModeDropdown(props: ThemeModeDropdownProps): react_jsx_runtime10.JSX.Element;
21
21
  declare namespace ThemeModeDropdown {
22
22
  var displayName: string;
23
23
  }
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime11 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime10 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/theme-toggle/ThemeModeSwitchInside.d.ts
4
4
  type ThemeModeSwitchInsideSize = 'sm' | 'md' | 'lg';
@@ -25,7 +25,7 @@ interface ThemeModeSwitchInsideProps {
25
25
  * Icons are embedded within the switch control.
26
26
  * Pure component - requires value and onChange props.
27
27
  */
28
- declare function ThemeModeSwitchInside(props: ThemeModeSwitchInsideProps): react_jsx_runtime11.JSX.Element;
28
+ declare function ThemeModeSwitchInside(props: ThemeModeSwitchInsideProps): react_jsx_runtime10.JSX.Element;
29
29
  declare namespace ThemeModeSwitchInside {
30
30
  var displayName: string;
31
31
  }
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime10 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime11 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/theme-toggle/ThemeModeSwitchInside.d.ts
4
4
  type ThemeModeSwitchInsideSize = 'sm' | 'md' | 'lg';
@@ -25,7 +25,7 @@ interface ThemeModeSwitchInsideProps {
25
25
  * Icons are embedded within the switch control.
26
26
  * Pure component - requires value and onChange props.
27
27
  */
28
- declare function ThemeModeSwitchInside(props: ThemeModeSwitchInsideProps): react_jsx_runtime10.JSX.Element;
28
+ declare function ThemeModeSwitchInside(props: ThemeModeSwitchInsideProps): react_jsx_runtime11.JSX.Element;
29
29
  declare namespace ThemeModeSwitchInside {
30
30
  var displayName: string;
31
31
  }
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime11 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime12 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/theme-toggle/ThemeModeSwitchOutside.d.ts
4
4
  interface ThemeModeSwitchOutsideProps {
@@ -22,7 +22,7 @@ interface ThemeModeSwitchOutsideProps {
22
22
  * Icons flank the switch control on either side.
23
23
  * Pure component - requires value and onChange props.
24
24
  */
25
- declare function ThemeModeSwitchOutside(props: ThemeModeSwitchOutsideProps): react_jsx_runtime11.JSX.Element;
25
+ declare function ThemeModeSwitchOutside(props: ThemeModeSwitchOutsideProps): react_jsx_runtime12.JSX.Element;
26
26
  declare namespace ThemeModeSwitchOutside {
27
27
  var displayName: string;
28
28
  }
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime8 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime9 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/theme-toggle/ThemeModeToggleButton.d.ts
4
4
  interface ThemeModeToggleButtonProps {
@@ -13,7 +13,7 @@ interface ThemeModeToggleButtonProps {
13
13
  * Light/Dark toggle button.
14
14
  * Pure component - toggles between light and dark.
15
15
  */
16
- declare function ThemeModeToggleButton(props: ThemeModeToggleButtonProps): react_jsx_runtime8.JSX.Element;
16
+ declare function ThemeModeToggleButton(props: ThemeModeToggleButtonProps): react_jsx_runtime9.JSX.Element;
17
17
  declare namespace ThemeModeToggleButton {
18
18
  var displayName: string;
19
19
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/shadcn-ui",
3
3
  "type": "module",
4
- "version": "0.29.0",
4
+ "version": "0.30.0",
5
5
  "description": "Custom UI components and utilities built with shadcn/ui.",
6
6
  "author": "m.doaie <m.doaie@hotmail.com>",
7
7
  "license": "MIT",
@@ -57,11 +57,11 @@
57
57
  "react-dom": "19.2.0",
58
58
  "tsdown": "^0.15.12",
59
59
  "typescript": "^5.9.3",
60
- "@internal/hooks": "0.0.0",
61
60
  "@internal/eslint-config": "0.3.0",
62
61
  "@internal/prettier-config": "0.0.1",
63
- "@internal/tsdown-config": "0.1.0",
62
+ "@internal/hooks": "0.0.0",
64
63
  "@internal/tsconfig": "0.1.0",
64
+ "@internal/tsdown-config": "0.1.0",
65
65
  "@internal/vitest-config": "0.1.0"
66
66
  },
67
67
  "prettier": "@internal/prettier-config",