randmarcomps 1.441.0 → 1.443.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 +4 -6
- package/dist/randmarcomps.js +28682 -28705
- package/dist/randmarcomps.umd.cjs +120 -120
- package/package.json +2 -2
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -233,11 +233,11 @@ declare interface ChatContextType {
|
|
|
233
233
|
setHasUnreads: (value: boolean) => void;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
-
export declare function ChatLayout({ userId,
|
|
236
|
+
export declare function ChatLayout({ userId, userEmail, inputRef: externalInputRef, className }: ChatLayoutProps): JSX.Element;
|
|
237
237
|
|
|
238
238
|
export declare interface ChatLayoutProps {
|
|
239
239
|
userId: string;
|
|
240
|
-
|
|
240
|
+
userEmail: string;
|
|
241
241
|
inputRef?: React.RefObject<HTMLTextAreaElement | null>;
|
|
242
242
|
className?: string;
|
|
243
243
|
initialPrompt?: string;
|
|
@@ -584,7 +584,6 @@ declare interface IProps_2 {
|
|
|
584
584
|
userEmail: string;
|
|
585
585
|
isSuperAdmin: boolean;
|
|
586
586
|
reseller?: Reseller;
|
|
587
|
-
withPromptButtons?: boolean;
|
|
588
587
|
withoutReports?: boolean;
|
|
589
588
|
}
|
|
590
589
|
|
|
@@ -626,13 +625,12 @@ declare interface ManufacturerGetStartedButtonProps {
|
|
|
626
625
|
manufacturer: Manufacturer;
|
|
627
626
|
}
|
|
628
627
|
|
|
629
|
-
export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports,
|
|
628
|
+
export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports, manufacturer, userEmail, }: ManufacturerOverviewPageProps): JSX.Element;
|
|
630
629
|
|
|
631
630
|
declare interface ManufacturerOverviewPageProps {
|
|
632
631
|
applicationId: string;
|
|
633
632
|
readonly: boolean;
|
|
634
633
|
withReports?: boolean;
|
|
635
|
-
withPromptButtons?: boolean;
|
|
636
634
|
userEmail?: string;
|
|
637
635
|
manufacturer?: Manufacturer;
|
|
638
636
|
}
|
|
@@ -812,7 +810,7 @@ export declare interface ResellerCardProps {
|
|
|
812
810
|
loading?: boolean;
|
|
813
811
|
}
|
|
814
812
|
|
|
815
|
-
export declare function ResellerOverview({ appID, reseller, readonly, userEmail, isSuperAdmin,
|
|
813
|
+
export declare function ResellerOverview({ appID, reseller, readonly, userEmail, isSuperAdmin, withoutReports }: IProps_2): JSX.Element;
|
|
816
814
|
|
|
817
815
|
export declare function ResellerQualificationsCard({ qualifications, loading }: ResellerQualificationsCardProps): JSX.Element;
|
|
818
816
|
|