randmarcomps 1.235.0 → 1.237.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 +3 -2
- package/dist/randmarcomps.js +2014 -1997
- package/dist/randmarcomps.umd.cjs +76 -76
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -421,20 +421,21 @@ declare interface ManufacturerGetStartedButtonProps {
|
|
|
421
421
|
manufacturer: Manufacturer;
|
|
422
422
|
}
|
|
423
423
|
|
|
424
|
-
export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports, userEmail, }: ManufacturerOverviewPageProps): JSX.Element;
|
|
424
|
+
export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports, manufacturer, userEmail, }: ManufacturerOverviewPageProps): JSX.Element;
|
|
425
425
|
|
|
426
426
|
declare interface ManufacturerOverviewPageProps {
|
|
427
427
|
applicationId: string;
|
|
428
428
|
readonly: boolean;
|
|
429
429
|
withReports?: boolean;
|
|
430
430
|
userEmail?: string;
|
|
431
|
+
manufacturer?: Manufacturer;
|
|
431
432
|
}
|
|
432
433
|
|
|
433
434
|
export declare function ManufacturerReorderingCard({ manufacturer, onSave, loading, saving, readonly, }: ManufacturerReorderingCardProps): JSX.Element;
|
|
434
435
|
|
|
435
436
|
declare interface ManufacturerReorderingCardProps {
|
|
436
437
|
manufacturer: Manufacturer;
|
|
437
|
-
onSave: (updatedManufacturer: Manufacturer) => void;
|
|
438
|
+
onSave: (updatedManufacturer: Partial<Manufacturer>) => void;
|
|
438
439
|
loading?: boolean;
|
|
439
440
|
saving?: boolean;
|
|
440
441
|
readonly?: boolean;
|