randmarcomps 1.594.0 → 1.603.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 -5
- package/dist/randmarcomps.js +4404 -4372
- package/dist/randmarcomps.umd.cjs +97 -96
- package/package.json +1 -2
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -71,8 +71,8 @@ declare interface ActiveOrdersCardProps {
|
|
|
71
71
|
export declare const AIChatLayout: NamedExoticComponent<AIChatLayoutProps & RefAttributes<AIChatLayoutHandle>>;
|
|
72
72
|
|
|
73
73
|
export declare interface AIChatLayoutHandle {
|
|
74
|
-
sendMessageToAssistant: (message: string | null) => void;
|
|
75
|
-
sendMessageToAssistantWithClear: (message: string | null) => void;
|
|
74
|
+
sendMessageToAssistant: (message: string | null, hiddenMessage: string | null, sopID: string | null) => void;
|
|
75
|
+
sendMessageToAssistantWithClear: (message: string | null, hiddenMessage: string | null, sopID: string | null) => void;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
export declare interface AIChatLayoutProps {
|
|
@@ -240,8 +240,8 @@ export declare const CardHeader: React_2.ForwardRefExoticComponent<React_2.HTMLA
|
|
|
240
240
|
export declare const CardTitle: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
|
|
241
241
|
|
|
242
242
|
declare interface ChatContextType {
|
|
243
|
-
sendMessage: (message?: string) => boolean;
|
|
244
|
-
sendMessageWithClear: (message?: string) => boolean;
|
|
243
|
+
sendMessage: (message?: string, hiddenMessage?: string, sopID?: string) => boolean;
|
|
244
|
+
sendMessageWithClear: (message?: string, hiddenMessage?: string, sopID?: string) => boolean;
|
|
245
245
|
chatRef: default_2.RefObject<AIChatLayoutHandle | null>;
|
|
246
246
|
hasUnreads: boolean;
|
|
247
247
|
setHasUnreads: (value: boolean) => void;
|
|
@@ -769,7 +769,7 @@ export declare interface PreloaderProps {
|
|
|
769
769
|
className?: string;
|
|
770
770
|
}
|
|
771
771
|
|
|
772
|
-
export declare function ProductCard({ applicationId, product, viewProductLink, defaultOpportunityNumber, onAddToCart, addingToCart, shopifyHostname, customAction }: ProductCardProps): JSX.Element;
|
|
772
|
+
export declare function ProductCard({ applicationId, product, viewProductLink, defaultOpportunityNumber, onAddToCart, addingToCart, shopifyHostname, customAction, showUsdLabelOnCost, }: ProductCardProps): JSX.Element;
|
|
773
773
|
|
|
774
774
|
export declare interface ProductCardProps {
|
|
775
775
|
applicationId?: string;
|
|
@@ -783,6 +783,7 @@ export declare interface ProductCardProps {
|
|
|
783
783
|
addingToCart?: boolean;
|
|
784
784
|
shopifyHostname?: string;
|
|
785
785
|
customAction?: default_2.ReactNode;
|
|
786
|
+
showUsdLabelOnCost?: boolean;
|
|
786
787
|
}
|
|
787
788
|
|
|
788
789
|
/**
|