randmarcomps 1.105.0 → 1.107.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 +5434 -4229
- package/dist/randmarcomps.umd.cjs +99 -89
- 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';
|
|
@@ -237,6 +239,15 @@ export declare interface ManufacturerCardProps {
|
|
|
237
239
|
loading?: boolean;
|
|
238
240
|
}
|
|
239
241
|
|
|
242
|
+
export declare function ManufacturerReorderingCard({ manufacturer, onSave, loading, saving, }: ManufacturerReorderingCardProps): JSX.Element;
|
|
243
|
+
|
|
244
|
+
declare interface ManufacturerReorderingCardProps {
|
|
245
|
+
manufacturer: Manufacturer;
|
|
246
|
+
onSave: (updatedManufacturer: Manufacturer) => void;
|
|
247
|
+
loading?: boolean;
|
|
248
|
+
saving?: boolean;
|
|
249
|
+
}
|
|
250
|
+
|
|
240
251
|
declare type MaskType = "phone" | "postal-code-ca" | "zip-code-us";
|
|
241
252
|
|
|
242
253
|
export declare const Navbar: default_2.ForwardRefExoticComponent<NavbarProps & default_2.RefAttributes<ChatLayoutHandle>>;
|
|
@@ -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>>;
|