randmarcomps 1.166.0 → 1.168.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 +21 -0
- package/dist/randmarcomps.js +960 -627
- package/dist/randmarcomps.umd.cjs +77 -77
- package/package.json +2 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -248,6 +248,14 @@ export declare interface InputProps extends Omit<React_2.ComponentProps<"input">
|
|
|
248
248
|
onChange?: (e: React_2.ChangeEvent<HTMLInputElement>) => void;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
+
declare interface IntroduceYourselfFormValues {
|
|
252
|
+
businessDescription: string;
|
|
253
|
+
salesChannels: string[];
|
|
254
|
+
otherSalesChannel: string;
|
|
255
|
+
markets: string[];
|
|
256
|
+
otherMarket: string;
|
|
257
|
+
}
|
|
258
|
+
|
|
251
259
|
export declare function Label({ className, ...props }: React_2.ComponentProps<typeof LabelPrimitive.Root>): JSX.Element;
|
|
252
260
|
|
|
253
261
|
export declare const Layout: ForwardRefExoticComponent<LayoutProps & RefAttributes<HTMLInputElement>>;
|
|
@@ -278,6 +286,15 @@ export declare interface ManufacturerCardProps {
|
|
|
278
286
|
loading?: boolean;
|
|
279
287
|
}
|
|
280
288
|
|
|
289
|
+
export declare function ManufacturerGetStartedButton({ manufacturer, loading, onQualificationSubmit, onIntroduceYourselfSubmit, }: ManufacturerGetStartedButtonProps): JSX.Element;
|
|
290
|
+
|
|
291
|
+
declare interface ManufacturerGetStartedButtonProps {
|
|
292
|
+
manufacturer: Manufacturer;
|
|
293
|
+
loading?: boolean;
|
|
294
|
+
onQualificationSubmit?: (manufacturer: Manufacturer, data: QualificationFormValues) => void;
|
|
295
|
+
onIntroduceYourselfSubmit?: (manufacturer: Manufacturer, data: IntroduceYourselfFormValues) => void;
|
|
296
|
+
}
|
|
297
|
+
|
|
281
298
|
export declare function ManufacturerReorderingCard({ manufacturer, onSave, loading, saving, }: ManufacturerReorderingCardProps): JSX.Element;
|
|
282
299
|
|
|
283
300
|
declare interface ManufacturerReorderingCardProps {
|
|
@@ -359,6 +376,10 @@ declare interface ProductInventoryGridProps {
|
|
|
359
376
|
showBinLocation?: boolean;
|
|
360
377
|
}
|
|
361
378
|
|
|
379
|
+
declare interface QualificationFormValues {
|
|
380
|
+
qualificationId: string;
|
|
381
|
+
}
|
|
382
|
+
|
|
362
383
|
export declare function ResellerBillingOverviewCard({ reseller, actions, loading }: ResellerBillingOverviewCardProps): JSX.Element;
|
|
363
384
|
|
|
364
385
|
declare interface ResellerBillingOverviewCardProps {
|