randmarcomps 1.243.0 → 1.244.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 +8 -0
- package/dist/randmarcomps.js +516 -122
- package/dist/randmarcomps.umd.cjs +6 -6
- package/package.json +2 -2
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -409,6 +409,12 @@ declare interface IProps {
|
|
|
409
409
|
withoutReports?: boolean;
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
+
declare interface IProps_2 {
|
|
413
|
+
applicationId: string;
|
|
414
|
+
sku: string;
|
|
415
|
+
shopifyHostName?: string | undefined;
|
|
416
|
+
}
|
|
417
|
+
|
|
412
418
|
export declare function Label({ className, ...props }: React_2.ComponentProps<typeof LabelPrimitive.Root>): JSX.Element;
|
|
413
419
|
|
|
414
420
|
export declare const Layout: ForwardRefExoticComponent<LayoutProps & RefAttributes<HTMLInputElement>>;
|
|
@@ -576,6 +582,8 @@ declare interface ProductInventoryGridProps {
|
|
|
576
582
|
showBinLocation?: boolean;
|
|
577
583
|
}
|
|
578
584
|
|
|
585
|
+
export declare function ProductOverviewPage({ applicationId, sku, shopifyHostName }: IProps_2): JSX.Element;
|
|
586
|
+
|
|
579
587
|
export declare const Progress: React_2.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
580
588
|
|
|
581
589
|
export declare const RadioGroup: React_2.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|