uilab-core 0.1.3 → 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.3",
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",
@@ -75,14 +74,12 @@
75
74
  "@types/postcss-import": "^14.0.3",
76
75
  "@types/react": "^19.2.2",
77
76
  "@types/rollup-plugin-peer-deps-external": "^2.2.5",
77
+ "class-variance-authority": "^0.7.1",
78
78
  "clsx": "^2.1.1",
79
79
  "cmdk": "^1.1.1",
80
- "class-variance-authority": "^0.7.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,19 +93,16 @@
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
98
  "tw-animate-css": "^1.4.0",
104
99
  "typescript": "^5.9.3",
105
100
  "typescript-eslint": "^8.46.2",
106
- "vaul": "^1.1.2",
107
- "zod": "^4.1.12"
101
+ "vaul": "^1.1.2"
108
102
  },
109
103
  "peerDependencies": {
110
- "class-variance-authority": "^0.7.x",
111
104
  "lucide-react": "^0.546.0",
105
+ "date-fns": "^4.x",
112
106
  "react": "^19.x",
113
107
  "react-dom": "^19.x",
114
108
  "react-hook-form": "^7.x",
@@ -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 };