uilab-core 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "uilab-core",
3
3
  "description": "Uilab base components and blocks",
4
- "version": "0.1.4",
4
+ "version": "0.1.5",
5
5
  "license": "MIT",
6
6
  "author": "",
7
7
  "type": "module",
@@ -40,7 +40,6 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@eslint/js": "^9.38.0",
43
- "@hookform/resolvers": "^5.2.2",
44
43
  "@radix-ui/react-accordion": "^1.2.12",
45
44
  "@radix-ui/react-alert-dialog": "^1.1.15",
46
45
  "@radix-ui/react-aspect-ratio": "^1.1.7",
@@ -79,10 +78,8 @@
79
78
  "clsx": "^2.1.1",
80
79
  "cmdk": "^1.1.1",
81
80
  "date-fns": "^4.1.0",
82
- "embla-carousel-react": "^8.6.0",
83
81
  "input-otp": "^1.4.2",
84
82
  "lucide-react": "^0.546.0",
85
- "next-themes": "^0.4.6",
86
83
  "postcss-import": "^16.1.1",
87
84
  "react": "^19.2.0",
88
85
  "react-day-picker": "^9.11.1",
@@ -96,22 +93,19 @@
96
93
  "rollup-plugin-postcss": "^4.0.2",
97
94
  "rollup-plugin-tsconfig-paths": "^1.5.2",
98
95
  "rollup-preserve-directives": "^1.1.3",
99
- "sonner": "^2.0.7",
100
96
  "tailwind-merge": "^3.3.1",
101
97
  "tailwindcss": "^4.1.15",
102
- "tslib": "^2.8.1",
103
- "tsup": "^8.5.0",
104
98
  "tw-animate-css": "^1.4.0",
105
99
  "typescript": "^5.9.3",
106
100
  "typescript-eslint": "^8.46.2",
107
- "vaul": "^1.1.2",
108
- "zod": "^4.1.12"
101
+ "vaul": "^1.1.2"
109
102
  },
110
103
  "peerDependencies": {
111
- "class-variance-authority": "^0.7.x",
112
104
  "lucide-react": "^0.546.0",
105
+ "date-fns": "^4.x",
113
106
  "react": "^19.x",
114
107
  "react-dom": "^19.x",
108
+ "react-hook-form": "^7.x",
115
109
  "tailwindcss": "^4.x",
116
110
  "tw-animate-css": "^1.x"
117
111
  },
@@ -1,19 +0,0 @@
1
- import * as React from 'react';
2
- import useEmblaCarousel, { type UseEmblaCarouselType } from 'embla-carousel-react';
3
- import { Button } from './button';
4
- type CarouselApi = UseEmblaCarouselType[1];
5
- type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
6
- type CarouselOptions = UseCarouselParameters[0];
7
- type CarouselPlugin = UseCarouselParameters[1];
8
- type CarouselProps = {
9
- opts?: CarouselOptions;
10
- plugins?: CarouselPlugin;
11
- orientation?: 'horizontal' | 'vertical';
12
- setApi?: (api: CarouselApi) => void;
13
- };
14
- declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React.ComponentProps<'div'> & CarouselProps): import("react/jsx-runtime").JSX.Element;
15
- declare function CarouselContent({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
16
- declare function CarouselItem({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
17
- declare function CarouselPrevious({ className, variant, size, ...props }: React.ComponentProps<typeof Button>): import("react/jsx-runtime").JSX.Element;
18
- declare function CarouselNext({ className, variant, size, ...props }: React.ComponentProps<typeof Button>): import("react/jsx-runtime").JSX.Element;
19
- export { type CarouselApi, Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext, };
@@ -1,3 +0,0 @@
1
- import { ToasterProps } from 'sonner';
2
- declare const Toaster: ({ ...props }: ToasterProps) => import("react/jsx-runtime").JSX.Element;
3
- export { Toaster };