randmarcomps 1.308.0 → 1.310.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 -2
- package/dist/randmarcomps.js +2540 -2386
- package/dist/randmarcomps.umd.cjs +104 -104
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -296,12 +296,14 @@ export declare interface DataPoint {
|
|
|
296
296
|
[key: string]: string | number;
|
|
297
297
|
}
|
|
298
298
|
|
|
299
|
-
export declare function DataTable<TData, TValue>({ columns, data, uniqueValues }: DataTableProps<TData, TValue>): JSX.Element;
|
|
299
|
+
export declare function DataTable<TData, TValue>({ columns, data, uniqueValues, tableClass, loading, }: DataTableProps<TData, TValue>): JSX.Element;
|
|
300
300
|
|
|
301
301
|
declare interface DataTableProps<TData, TValue> {
|
|
302
302
|
columns: ColumnDef<TData, TValue>[];
|
|
303
303
|
data: TData[];
|
|
304
304
|
uniqueValues: Record<string, string[]>;
|
|
305
|
+
tableClass?: string;
|
|
306
|
+
loading?: boolean;
|
|
305
307
|
}
|
|
306
308
|
|
|
307
309
|
export declare const Dialog: {
|
|
@@ -599,11 +601,12 @@ export declare interface ProductImageProps {
|
|
|
599
601
|
secondaryContent?: React_2.ReactNode;
|
|
600
602
|
}
|
|
601
603
|
|
|
602
|
-
export declare function ProductInventoryGrid({ inventory, showBinLocation }: ProductInventoryGridProps): JSX.Element;
|
|
604
|
+
export declare function ProductInventoryGrid({ inventory, showBinLocation, className }: ProductInventoryGridProps): JSX.Element;
|
|
603
605
|
|
|
604
606
|
declare interface ProductInventoryGridProps {
|
|
605
607
|
inventory: Inventory[];
|
|
606
608
|
showBinLocation?: boolean;
|
|
609
|
+
className?: string;
|
|
607
610
|
}
|
|
608
611
|
|
|
609
612
|
export declare function ProductOverviewPage({ applicationId, sku, productDefaultOpportunityNumber, productOnAddToCart, productAddingToCart, productShopifyHostname, productCustomAction }: IProps): JSX.Element;
|