randmarcomps 1.79.0 → 1.81.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 +13 -1
- package/dist/randmarcomps.js +2239 -2132
- package/dist/randmarcomps.umd.cjs +41 -36
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -37,6 +37,17 @@ export declare const badgeVariants: (props?: ({
|
|
|
37
37
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
38
38
|
} & ClassProp) | undefined) => string;
|
|
39
39
|
|
|
40
|
+
export declare function BrandCard({ id, name, about, voiceName, voiceStyle, sceneName }: BrandCardProps): JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare interface BrandCardProps {
|
|
43
|
+
id: string;
|
|
44
|
+
name: string;
|
|
45
|
+
about: string;
|
|
46
|
+
voiceName?: string;
|
|
47
|
+
voiceStyle?: string;
|
|
48
|
+
sceneName?: string;
|
|
49
|
+
}
|
|
50
|
+
|
|
40
51
|
export declare const Button: React_2.ForwardRefExoticComponent<ButtonProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
41
52
|
|
|
42
53
|
export declare interface ButtonProps extends React_2.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -258,10 +269,11 @@ export declare interface ProductImageProps {
|
|
|
258
269
|
secondaryContent?: React_2.ReactNode;
|
|
259
270
|
}
|
|
260
271
|
|
|
261
|
-
export declare function ProductInventoryGrid({ inventory }: ProductInventoryGridProps): JSX.Element;
|
|
272
|
+
export declare function ProductInventoryGrid({ inventory, showBinLocation }: ProductInventoryGridProps): JSX.Element;
|
|
262
273
|
|
|
263
274
|
declare interface ProductInventoryGridProps {
|
|
264
275
|
inventory: WarehouseInventory[];
|
|
276
|
+
showBinLocation?: boolean;
|
|
265
277
|
}
|
|
266
278
|
|
|
267
279
|
export declare interface ProductOpportunity {
|