randmarcomps 1.104.0 → 1.106.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/randmarcomps.d.ts +15 -0
- package/dist/randmarcomps.js +4534 -3314
- package/dist/randmarcomps.umd.cjs +73 -63
- package/package.json +3 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -20,8 +20,10 @@ import { ReactNode } from 'react';
|
|
|
20
20
|
import { RefAttributes } from 'react';
|
|
21
21
|
import { Reseller } from 'randmar-api-client';
|
|
22
22
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
23
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
23
24
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
24
25
|
import { SeparatorProps } from '@radix-ui/react-separator';
|
|
26
|
+
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
25
27
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
26
28
|
import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
27
29
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
@@ -38,6 +40,15 @@ export declare interface AreaChartProps {
|
|
|
38
40
|
className?: string;
|
|
39
41
|
}
|
|
40
42
|
|
|
43
|
+
export declare function AutomaticReorderingFormCard({ manufacturer, onSave, loading, saving, }: AutomaticReorderingFormCardProps): JSX.Element;
|
|
44
|
+
|
|
45
|
+
declare interface AutomaticReorderingFormCardProps {
|
|
46
|
+
manufacturer: Manufacturer;
|
|
47
|
+
onSave: (updatedManufacturer: Manufacturer) => void;
|
|
48
|
+
loading?: boolean;
|
|
49
|
+
saving?: boolean;
|
|
50
|
+
}
|
|
51
|
+
|
|
41
52
|
export declare const Avatar: React_2.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React_2.RefAttributes<HTMLSpanElement>, "ref"> & React_2.RefAttributes<HTMLSpanElement>>;
|
|
42
53
|
|
|
43
54
|
export declare const AvatarFallback: React_2.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React_2.RefAttributes<HTMLSpanElement>, "ref"> & React_2.RefAttributes<HTMLSpanElement>>;
|
|
@@ -325,6 +336,8 @@ export declare interface ScrollAreaProps extends React_2.ComponentPropsWithoutRe
|
|
|
325
336
|
|
|
326
337
|
export declare const ScrollBar: React_2.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
327
338
|
|
|
339
|
+
export declare const Select: React_2.FC<SelectPrimitive.SelectProps>;
|
|
340
|
+
|
|
328
341
|
export declare const Separator: React_2.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
329
342
|
|
|
330
343
|
export declare const Sheet: React_2.FC<DialogPrimitive.DialogProps>;
|
|
@@ -448,6 +461,8 @@ export declare const SidebarTrigger: React_2.ForwardRefExoticComponent<Omit<Butt
|
|
|
448
461
|
|
|
449
462
|
export declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
450
463
|
|
|
464
|
+
export declare const Switch: React_2.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
465
|
+
|
|
451
466
|
export declare const Tabs: React_2.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
452
467
|
|
|
453
468
|
export declare const TabsContent: React_2.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|