@clidey/ux 0.33.0 → 0.34.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 +3 -0
- package/dist/index.js +2932 -2760
- package/dist/styles.css +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { JSX } from 'react/jsx-runtime';
|
|
|
12
12
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
13
13
|
import { LucideIcon } from 'lucide-react';
|
|
14
14
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
15
|
+
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
15
16
|
import * as React_2 from 'react';
|
|
16
17
|
import * as RechartsPrimitive from 'recharts';
|
|
17
18
|
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
@@ -342,6 +343,8 @@ export declare function PopoverContent({ className, align, sideOffset, ...props
|
|
|
342
343
|
|
|
343
344
|
export declare function PopoverTrigger({ ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Trigger>): JSX.Element;
|
|
344
345
|
|
|
346
|
+
export declare function Progress({ className, value, ...props }: React_2.ComponentProps<typeof ProgressPrimitive.Root>): JSX.Element;
|
|
347
|
+
|
|
345
348
|
export declare function ResizableHandle({ withHandle, className, ...props }: React_2.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
|
|
346
349
|
withHandle?: boolean;
|
|
347
350
|
}): JSX.Element;
|