randmarcomps 1.440.0 → 1.442.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 +6 -4
- package/dist/randmarcomps.js +27114 -27043
- package/dist/randmarcomps.umd.cjs +112 -112
- 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,6 +584,7 @@ declare interface IProps_2 {
|
|
|
584
584
|
userEmail: string;
|
|
585
585
|
isSuperAdmin: boolean;
|
|
586
586
|
reseller?: Reseller;
|
|
587
|
+
withPromptButtons?: boolean;
|
|
587
588
|
withoutReports?: boolean;
|
|
588
589
|
}
|
|
589
590
|
|
|
@@ -625,12 +626,13 @@ declare interface ManufacturerGetStartedButtonProps {
|
|
|
625
626
|
manufacturer: Manufacturer;
|
|
626
627
|
}
|
|
627
628
|
|
|
628
|
-
export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports, manufacturer, userEmail, }: ManufacturerOverviewPageProps): JSX.Element;
|
|
629
|
+
export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports, withPromptButtons, manufacturer, userEmail, }: ManufacturerOverviewPageProps): JSX.Element;
|
|
629
630
|
|
|
630
631
|
declare interface ManufacturerOverviewPageProps {
|
|
631
632
|
applicationId: string;
|
|
632
633
|
readonly: boolean;
|
|
633
634
|
withReports?: boolean;
|
|
635
|
+
withPromptButtons?: boolean;
|
|
634
636
|
userEmail?: string;
|
|
635
637
|
manufacturer?: Manufacturer;
|
|
636
638
|
}
|
|
@@ -810,7 +812,7 @@ export declare interface ResellerCardProps {
|
|
|
810
812
|
loading?: boolean;
|
|
811
813
|
}
|
|
812
814
|
|
|
813
|
-
export declare function ResellerOverview({ appID, reseller, readonly, userEmail, isSuperAdmin, withoutReports }: IProps_2): JSX.Element;
|
|
815
|
+
export declare function ResellerOverview({ appID, reseller, readonly, userEmail, isSuperAdmin, withPromptButtons, withoutReports }: IProps_2): JSX.Element;
|
|
814
816
|
|
|
815
817
|
export declare function ResellerQualificationsCard({ qualifications, loading }: ResellerQualificationsCardProps): JSX.Element;
|
|
816
818
|
|