forked from forcedotcom/commerce-on-lightning-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuilderSearchResults.html
More file actions
31 lines (31 loc) · 1.49 KB
/
builderSearchResults.html
File metadata and controls
31 lines (31 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template lwc:render-mode="light">
<c-search-results
search-results={searchResults}
results-layout={resultsLayout}
grid-column-spacing={gridColumnSpacing}
grid-row-spacing={gridRowSpacing}
grid-max-columns-displayed={gridMaxColumnsDisplayed}
list-row-spacing={listRowSpacing}
show-product-image={showProductImage}
show-negotiated-price={showNegotiatedPrice}
show-original-price={showOriginalPrice}
show-call-to-action-button={showCallToActionButton}
negotiated-price-text-size={negotiatedPriceTextSize}
negotiated-price-text-color={negotiatedPriceTextColor}
original-price-text-size={originalPriceTextSize}
original-price-text-color={originalPriceTextColor}
add-to-cart-button-text={addToCartButtonText}
add-to-cart-button-style={addToCartButtonStyle}
add-to-cart-button-processing-text={addToCartButtonProcessingText}
view-options-button-text={viewOptionsButtonText}
card-content-mapping={normalizedCardContentMapping}
card-background-color={cardBackgroundColor}
card-alignment={cardAlignment}
card-border-color={cardBorderColor}
card-border-radius={cardBorderRadius}
card-divider-color={cardDividerColor}
current-page={currentPage}
onaddproducttocart={handleAddToCart}
onshowproduct={handleNavigateToProductPage}
onupdatecurrentpage={handleUpdateCurrentPage}></c-search-results>
</template>