randmarcomps 1.243.0 → 1.245.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 +521 -122
- package/dist/randmarcomps.umd.cjs +6 -6
- package/package.json +2 -2
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -409,6 +409,19 @@ declare interface IProps {
|
|
|
409
409
|
withoutReports?: boolean;
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
+
declare interface IProps_2 {
|
|
413
|
+
applicationId: string;
|
|
414
|
+
sku: string;
|
|
415
|
+
productDefaultOpportunityNumber?: string;
|
|
416
|
+
productOnAddToCart?: (state: {
|
|
417
|
+
quantity: number;
|
|
418
|
+
bidNumber: string | null;
|
|
419
|
+
}) => void;
|
|
420
|
+
productAddingToCart?: boolean;
|
|
421
|
+
productShopifyHostname?: string;
|
|
422
|
+
productCustomAction?: React.ReactNode;
|
|
423
|
+
}
|
|
424
|
+
|
|
412
425
|
export declare function Label({ className, ...props }: React_2.ComponentProps<typeof LabelPrimitive.Root>): JSX.Element;
|
|
413
426
|
|
|
414
427
|
export declare const Layout: ForwardRefExoticComponent<LayoutProps & RefAttributes<HTMLInputElement>>;
|
|
@@ -576,6 +589,8 @@ declare interface ProductInventoryGridProps {
|
|
|
576
589
|
showBinLocation?: boolean;
|
|
577
590
|
}
|
|
578
591
|
|
|
592
|
+
export declare function ProductOverviewPage({ applicationId, sku, productDefaultOpportunityNumber, productOnAddToCart, productAddingToCart, productShopifyHostname, productCustomAction }: IProps_2): JSX.Element;
|
|
593
|
+
|
|
579
594
|
export declare const Progress: React_2.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
580
595
|
|
|
581
596
|
export declare const RadioGroup: React_2.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|