randmarcomps 1.233.0 → 1.235.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 +5 -1
- package/dist/randmarcomps.js +513 -191
- package/dist/randmarcomps.umd.cjs +26 -21
- package/package.json +2 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import { OrderDetail } from 'randmar-api-client';
|
|
|
21
21
|
import { OTPInput } from 'input-otp';
|
|
22
22
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
23
23
|
import { Product } from 'randmar-api-client';
|
|
24
|
+
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
24
25
|
import { Qualification } from 'randmar-api-client';
|
|
25
26
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
26
27
|
import * as React_2 from 'react';
|
|
@@ -429,13 +430,14 @@ declare interface ManufacturerOverviewPageProps {
|
|
|
429
430
|
userEmail?: string;
|
|
430
431
|
}
|
|
431
432
|
|
|
432
|
-
export declare function ManufacturerReorderingCard({ manufacturer, onSave, loading, saving, }: ManufacturerReorderingCardProps): JSX.Element;
|
|
433
|
+
export declare function ManufacturerReorderingCard({ manufacturer, onSave, loading, saving, readonly, }: ManufacturerReorderingCardProps): JSX.Element;
|
|
433
434
|
|
|
434
435
|
declare interface ManufacturerReorderingCardProps {
|
|
435
436
|
manufacturer: Manufacturer;
|
|
436
437
|
onSave: (updatedManufacturer: Manufacturer) => void;
|
|
437
438
|
loading?: boolean;
|
|
438
439
|
saving?: boolean;
|
|
440
|
+
readonly?: boolean;
|
|
439
441
|
}
|
|
440
442
|
|
|
441
443
|
declare type MaskType = "phone" | "postal-code-ca" | "zip-code-us";
|
|
@@ -542,6 +544,8 @@ declare interface ProductInventoryGridProps {
|
|
|
542
544
|
showBinLocation?: boolean;
|
|
543
545
|
}
|
|
544
546
|
|
|
547
|
+
export declare const Progress: React_2.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
548
|
+
|
|
545
549
|
export declare const RadioGroup: React_2.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
546
550
|
|
|
547
551
|
export declare const RadioGroupItem: React_2.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|