randmarcomps 1.234.0 → 1.236.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 +7 -2
- package/dist/randmarcomps.js +2923 -2639
- package/dist/randmarcomps.umd.cjs +105 -100
- 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';
|
|
@@ -420,22 +421,24 @@ declare interface ManufacturerGetStartedButtonProps {
|
|
|
420
421
|
manufacturer: Manufacturer;
|
|
421
422
|
}
|
|
422
423
|
|
|
423
|
-
export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports, userEmail, }: ManufacturerOverviewPageProps): JSX.Element;
|
|
424
|
+
export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports, manufacturer, userEmail, }: ManufacturerOverviewPageProps): JSX.Element;
|
|
424
425
|
|
|
425
426
|
declare interface ManufacturerOverviewPageProps {
|
|
426
427
|
applicationId: string;
|
|
427
428
|
readonly: boolean;
|
|
428
429
|
withReports?: boolean;
|
|
429
430
|
userEmail?: string;
|
|
431
|
+
manufacturer?: Manufacturer;
|
|
430
432
|
}
|
|
431
433
|
|
|
432
|
-
export declare function ManufacturerReorderingCard({ manufacturer, onSave, loading, saving, }: ManufacturerReorderingCardProps): JSX.Element;
|
|
434
|
+
export declare function ManufacturerReorderingCard({ manufacturer, onSave, loading, saving, readonly, }: ManufacturerReorderingCardProps): JSX.Element;
|
|
433
435
|
|
|
434
436
|
declare interface ManufacturerReorderingCardProps {
|
|
435
437
|
manufacturer: Manufacturer;
|
|
436
438
|
onSave: (updatedManufacturer: Manufacturer) => void;
|
|
437
439
|
loading?: boolean;
|
|
438
440
|
saving?: boolean;
|
|
441
|
+
readonly?: boolean;
|
|
439
442
|
}
|
|
440
443
|
|
|
441
444
|
declare type MaskType = "phone" | "postal-code-ca" | "zip-code-us";
|
|
@@ -542,6 +545,8 @@ declare interface ProductInventoryGridProps {
|
|
|
542
545
|
showBinLocation?: boolean;
|
|
543
546
|
}
|
|
544
547
|
|
|
548
|
+
export declare const Progress: React_2.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
549
|
+
|
|
545
550
|
export declare const RadioGroup: React_2.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
546
551
|
|
|
547
552
|
export declare const RadioGroupItem: React_2.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|