@clidey/ux 0.10.0 → 0.11.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.
- package/dist/index.d.ts +21 -1
- package/dist/index.js +1558 -788
- package/dist/styles.css +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,8 +7,10 @@ import { JSX } from 'react/jsx-runtime';
|
|
|
7
7
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
8
8
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
9
9
|
import * as React_2 from 'react';
|
|
10
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
10
11
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
11
12
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
13
|
+
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
12
14
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
13
15
|
import { toast } from 'sonner';
|
|
14
16
|
import { ToasterProps } from 'sonner';
|
|
@@ -172,6 +174,8 @@ export declare function PopoverContent({ className, align, sideOffset, ...props
|
|
|
172
174
|
|
|
173
175
|
export declare function PopoverTrigger({ ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Trigger>): JSX.Element;
|
|
174
176
|
|
|
177
|
+
export declare function ScrollArea({ className, children, ...props }: React_2.ComponentProps<typeof ScrollAreaPrimitive.Root>): JSX.Element;
|
|
178
|
+
|
|
175
179
|
export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;
|
|
176
180
|
|
|
177
181
|
export declare function SelectContent({ className, children, position, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Content>): JSX.Element;
|
|
@@ -188,7 +192,23 @@ export declare function SelectTrigger({ className, size, children, ...props }: R
|
|
|
188
192
|
|
|
189
193
|
export declare function SelectValue({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Value>): JSX.Element;
|
|
190
194
|
|
|
191
|
-
declare function Separator({ className, orientation, decorative, ...props }: React_2.ComponentProps<typeof SeparatorPrimitive.Root>): JSX.Element;
|
|
195
|
+
export declare function Separator({ className, orientation, decorative, ...props }: React_2.ComponentProps<typeof SeparatorPrimitive.Root>): JSX.Element;
|
|
196
|
+
|
|
197
|
+
export declare function Sheet({ ...props }: React_2.ComponentProps<typeof SheetPrimitive.Root>): JSX.Element;
|
|
198
|
+
|
|
199
|
+
export declare function SheetContent({ className, children, side, ...props }: React_2.ComponentProps<typeof SheetPrimitive.Content> & {
|
|
200
|
+
side?: "top" | "right" | "bottom" | "left";
|
|
201
|
+
}): JSX.Element;
|
|
202
|
+
|
|
203
|
+
export declare function SheetDescription({ className, ...props }: React_2.ComponentProps<typeof SheetPrimitive.Description>): JSX.Element;
|
|
204
|
+
|
|
205
|
+
export declare function SheetFooter({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
|
|
206
|
+
|
|
207
|
+
export declare function SheetHeader({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
|
|
208
|
+
|
|
209
|
+
export declare function SheetTitle({ className, ...props }: React_2.ComponentProps<typeof SheetPrimitive.Title>): JSX.Element;
|
|
210
|
+
|
|
211
|
+
export declare function SheetTrigger({ ...props }: React_2.ComponentProps<typeof SheetPrimitive.Trigger>): JSX.Element;
|
|
192
212
|
|
|
193
213
|
export declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React_2.ComponentProps<"div"> & {
|
|
194
214
|
side?: "left" | "right";
|