@nerdjs/sales-kit 3.1.24 → 3.1.25
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/hooks/quote/result.d.ts +5 -2
- package/dist/hooks/quote/result.js +239 -245
- package/dist/hooks/quote/result.js.map +1 -1
- package/dist/hooks/quote/template.d.ts +1 -0
- package/dist/hooks/quote/template.js +2 -2
- package/dist/hooks/quote/template.js.map +1 -1
- package/dist/hooks/tender/form.js +4 -4
- package/dist/hooks/tender/form.js.map +1 -1
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ interface QuoteResultProps {
|
|
|
6
6
|
body: Partial<Quote_Entity>;
|
|
7
7
|
response: QuoteResponse | undefined;
|
|
8
8
|
openLoadLink?: string;
|
|
9
|
+
cargoLiability?: boolean;
|
|
9
10
|
}
|
|
10
11
|
/**
|
|
11
12
|
* QuoteResponse. A drawer that displays the quote response
|
|
@@ -22,18 +23,20 @@ export declare function QuoteResult(props: QuoteResultProps): import("react/jsx-
|
|
|
22
23
|
* @param {boolean} props.response response
|
|
23
24
|
* @returns {ReactElement} Response drawer
|
|
24
25
|
*/
|
|
25
|
-
export declare function ServiceLevels({ customerPortal, response, }: {
|
|
26
|
+
export declare function ServiceLevels({ customerPortal, response, showCargoLiability, }: {
|
|
26
27
|
customerPortal: boolean;
|
|
27
28
|
response: QuoteResponse | undefined;
|
|
29
|
+
showCargoLiability?: boolean;
|
|
28
30
|
}): import("react/jsx-runtime").JSX.Element;
|
|
29
31
|
export declare const CostBreakdown: ({ response, }: {
|
|
30
32
|
response: QuoteResponse | undefined;
|
|
31
33
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
export declare const Summary: ({ handleOnTenderLoadClick, customerPortal, response, body, hideTenderButton, }: {
|
|
34
|
+
export declare const Summary: ({ handleOnTenderLoadClick, customerPortal, response, body, hideTenderButton, showCargoLiability, }: {
|
|
33
35
|
customerPortal: boolean;
|
|
34
36
|
handleOnTenderLoadClick?: (quoteID: number, selectedServiceLevel: string, selectedDate: DateTime | null, creditLimit?: number, liabilityCoverage?: number) => void;
|
|
35
37
|
response: QuoteResponse | undefined;
|
|
36
38
|
body?: Partial<Quote_Entity>;
|
|
37
39
|
hideTenderButton?: boolean;
|
|
40
|
+
showCargoLiability?: boolean;
|
|
38
41
|
}) => import("react/jsx-runtime").JSX.Element | null;
|
|
39
42
|
export {};
|