Documentation
Feedback
Guides
VTEX IO Apps

VTEX IO Apps
Basic components
Search Result
Official extension
Version: 3.106.1
Latest version: 3.131.0

This page is about version 3.106.1 of the app, which is not the most recent version. The latest stable version is 3.131.0.

{"base64":"  ","img":{"width":110,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square"}}

VTEX Search Result app is responsible for handling the result fetched by the VTEX Search API and displaying it to users.

The app therefore exports all store blocks expected in a search results page, such as the filters and the product gallery.

{"base64":"  ","img":{"width":2878,"height":1578,"type":"png","mime":"image/png","wUnits":"px","hUnits":"px","length":746685,"url":"https://user-images.githubusercontent.com/52087100/77557721-d96b6580-6e98-11ea-9178-77c8c4a6408e.png"}}

Configuration

Step 1 - Adding the Search Result app to your theme's dependencies

In your theme's manifest.json, add the Search Result app as a dependency:


_10
"dependencies": {
_10
"vtex.search-result": "3.x"
_10
}

Now, you are able to use all the blocks exported by the search-result app. Check out the full list below:

Block nameDescription
search-result-layout
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Layout block that enables you to build the search result page using its 3 children blocks: search-result-layout.desktop, search-result-layout.mobile and search-not-found-layout . It must be used in the store.search template since it uses the context provided by the VTEX Search API.
search-result-layout.customQuery
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Used instead of search-result-layout in scenarios in which the search result will be declared in a template that doesn't fetch Search context, such as Home. It accepts a querySchema prop that executes search custom queries. It also supports three children blocks: search-result-layout.desktop, search-result-layout.mobile and search-not-found-layout .
search-result-layout.desktop
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Builds the search result page structure for desktop mode.
search-result-layout.mobileBuilds the search result page structure for mobile mode. If the search-result-layout.mobile is not provided, the search-result-layout.desktop will be used instead.
search-layout-switcherEnables mobile users to switch between the available layout modes.
search-not-found-layoutBuilds the whole search result page structure for scenarios in which no result was fetched. It is rendered whenever users search for a term that doesn't return a product.
gallery
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Displays the gallery with all the products found in the search.
gallery-layout-switcherLogical block that allows users to switch between the available gallery's layouts. To know how to build your search results with multiple layouts, access the documentation.
gallery-layout-optionDefines how each layout option should be rendered for users. To know how to build your search results with multiple layouts, access the documentation.
not-foundBlock containing a text and a description for the page that was not found in the search. It must be declared as a child of search-not-found-layout.
search-content
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Decides, behind the scenes, which block will be displayed: either the gallery block (if products are found) or the not-found block (if the selected filters lead to an empty search results page). This means that both gallery and not-found must be declared as search-content children.
store.not-found#searchWhen configured, it displays a 404 error message whenever the server is not able to return what the browser request was or when it is configured to not handle that request.
search-products-count-per-pageDisplays the total number of products being displayed in the search results page.
search-products-progress-barDisplays a progress bar of products being displayed in the search results page.
order-by.v2Allows users to choose the product ordination in the search results page.
filter-navigator.v3Allows users to apply different filters to the search. On mobile, renders a button that, when clicked on, displays all available filters in a sidebar.
total-products.v2Displays the total amount of products found for that search.
search-title.v2Displays a title for the search that was done.
search-fetch-moreDisplays the "Show More" button. This button isn't rendered when the user is on the last page.
search-fetch-previousDisplays the "Show Previous" button. This button isn't rendered when the user is on the first page.
search-products-count-per-pageDisplays the quantity of products currently on the page.
sidebar-close-buttonDisplays an X button on the filter sidebar on mobile.
search-title.v2Displays a title for the search that was done.

:information_source: The Search Result app data may be displayed on search pages (store.search) or any other desired page. When added to the search page, the block that is used must be the search-result-layout, since it fetches data provided by the template's current search context. If you want to add the app to another page, the block that must be used is the search-result-layout.customQuery.

Step 2 - Adding the Search Result to page templates

According to the desired store page, add the search-result-layout block or the search-result-layout.customQuery to the correct template blocks list. For example:


_10
"store.search": {
_10
"blocks": ["search-result-layout"]
_10
}

or


_10
"store.home": {
_10
"blocks": [
_10
"carousel#home",
_10
"shelf#home",
_10
+ "search-result-layout.customQuery#home"
_10
]
_10
}

Now, before declaring all desired blocks for your search result layout, your first need to define how you want the search results to be fetched.

:warning: Remember: on the home page, you define these results through a custom query. On the search template, you just need to use the already provided context.

Step 3 - Defining how the search query data should be fetched

According to your store's scenario, define how the search query data should be fetched using props.

If you are using a search-result-layout, the blocks will define the data that is fetched from the context. If what you are using is a search-result-layout.customQuery, the props should be sent through the querySchema to configure the custom query.

For example:


_11
{
_11
"store.search": {
_11
"blocks": ["search-result-layout"],
_11
"props": {
_11
"context": {
_11
"skusFilter": "FIRST_AVAILABLE",
_11
"simulationBehavior": "skip"
_11
}
_11
}
_11
}
_11
}

or


_17
{
_17
"store.home": {
_17
"blocks": [
_17
"carousel#home",
_17
"shelf#home",
_17
"search-result-layout.customQuery#home"
_17
]
_17
},
_17
"search-result-layout.customQuery#home": {
_17
"props": {
_17
"querySchema": {
_17
"skusFilter": "FIRST_AVAILABLE",
_17
"simulationBehavior": "skip"
_17
}
_17
}
_17
}
_17
}

*When set as skip, the simulationBehavior prop defines that the search data should only be fetched using the store's Cache. Caution: In practice, this may impact the content displayed on store pages, since the cache storage changes according to user interaction in each page. In order to understand this prop behavior, take a look at the table below!

:warning: You must define the query for the following search pages: brand, department, category and subcategory. This will allow you to define custom behaviors for each of your store's possible search pages. For example:


_47
{
_47
"store.search": {
_47
"blocks": ["search-result-layout"],
_47
"props": {
_47
"context": {
_47
"skusFilter": "FIRST_AVAILABLE",
_47
"simulationBehavior": "skip"
_47
}
_47
}
_47
},
_47
"store.search#category": {
_47
"blocks": ["search-result-layout"],
_47
"props": {
_47
"context": {
_47
"skusFilter": "FIRST_AVAILABLE",
_47
"simulationBehavior": "skip"
_47
}
_47
}
_47
},
_47
"store.search#brand": {
_47
"blocks": ["search-result-layout"],
_47
"props": {
_47
"context": {
_47
"skusFilter": "FIRST_AVAILABLE",
_47
"simulationBehavior": "skip"
_47
}
_47
}
_47
},
_47
"store.search#department": {
_47
"blocks": ["search-result-layout"],
_47
"props": {
_47
"context": {
_47
"skusFilter": "FIRST_AVAILABLE",
_47
"simulationBehavior": "skip"
_47
}
_47
}
_47
},
_47
"store.search#subcategory": {
_47
"blocks": ["search-result-layout"],
_47
"props": {
_47
"context": {
_47
"skusFilter": "FIRST_AVAILABLE",
_47
"simulationBehavior": "skip"
_47
}
_47
}
_47
}
_47
}

*When set as skip, the simulationBehavior prop defines that the search data should only be fetched using the store's Cache. Caution: In practice, this may impact the content displayed on store pages, since the cache storage changes according to user interaction in each page. In order to understand this prop behavior, take a look at the table below!

Below you may find all available props to configure your search data (be it by using a context or a custom query through the querySchema block):

Prop nameTypeDescriptionDefault value
queryFieldstring
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Search URL's query string to define which results should be fetched in the custom query. For example: Blue. Caution: this prop only works if the mapField prop is declared as well.
undefined
mapFieldstring
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Search URL's map parameter to define which results should be fetched in the custom query. For example: specificationFilter_100. Caution: this prop only works if the queryField prop is declared as well.
undefined
maxItemsPerPagenumberMaximum number of items per search page. The maximum value of this prop is 50, if a larger number is passed, the query will fail.10
orderByFieldenumDecides which order products must follow when displayed. The possible values are named after the order type: OrderByTopSaleDESC, OrderByReleaseDateDESC, OrderByBestDiscountDESC, OrderByPriceDESC, OrderByPriceASC, OrderByNameASC, OrderByNameDESC or OrderByScoreDESC (relevance score). ASC and DESC stand for ascending order and descending order, respectively.OrderByScoreDESC
hideUnavailableItemsbooleanWhether the search result should hide unavailable items (true) or not (false).false
facetsBehaviorstringDefines the behavior filters will have. When set to dynamic, it restricts the results according to the filters that user have already selected. If set to Static, all filters will continue to be displayed to the user, even is no results exist.Static
skusFilterenumControls SKUs returned for each product in the query. The less SKUs needed to be returned, the more performant your shelf query will be. Available value options: FIRST_AVAILABLE (returns only the first available SKU), ALL_AVAILABLE (only returns available SKUs) and ALL (returns all product's SKUs).ALL_AVAILABLE
simulationBehaviorenumDefines whether the search data will be up-to-date (default) or fetched using the Cache (skip). The last option should be used only if you prefer faster queries over no having the most up-to-date prices or inventory.default
installmentCriteriaenumControls which price should be shown when there are different installments options for it. Possible values are: MAX_WITHOUT_INTEREST (displays the maximum installment option with no interest attached to it) or MAX_WITH_INTEREST (displays the maximum installment option whether it has interest attached to it or not)."MAX_WITHOUT_INTEREST"
excludedPaymentSystems[string]List of payment systems that should not be taken into account when displaying the installment options to users. Caution: this prop configuration only works in scenarios where the installmentCriteria prop was also declared. In case it was not, all available payment systems will be displayed regardless.undefined
includedPaymentSystems[string]List of payment systems that should be taken into account when displaying the installment options to users. Caution: this prop configuration only works in scenarios where the installmentCriteria prop was also declared. In case it was not, all available payment systems will be displayed regardless.undefined

Now it is time to structure the search-result-layout block (or the search-result-layout.customQuery). They both necessarily require a child: the search-result-layout.desktop. But you can also provide others, such as the search-result-layout.mobile and the search-not-found-layout.

Since these are layout blocks, you can use Flex Layout blocks to build your search results page.

Step 4 - Defining your search results page layouts and behavior

Structure the search-result-layout or the search-result-layout.customQuery, according to your store's scenario, by declaring their children and then configuring them using Flex Layout blocks and their props. For example:


_19
{
_19
"search-result-layout": {
_19
"blocks": [
_19
"search-result-layout.desktop",
_19
"search-result-layout.mobile",
_19
"search-not-found-layout"
_19
]
_19
},
_19
"search-result-layout.desktop": {
_19
"children": [
_19
"flex-layout.row#searchbread",
_19
"flex-layout.row#searchtitle",
_19
"flex-layout.row#result"
_19
],
_19
"props": {
_19
"preventRouteChange": true
_19
}
_19
}
_19
}

Available props for search-result-layout.desktop, search-result-layout.mobile and search-not-found-layout:

Prop nameTypeDescriptionDefault value
hiddenFacetsObjectIndicates which filters should be hidden. Possible props and their respective values can be found below.undefined.
showFacetQuantitybooleanWhether the result amount in each filter should appear besides its name on the filter-navigator.v3 block as (true) or (false)false
blockClassstringUnique block ID to be used in CSS customizationundefined
trackingIdstringID to be used in Google Analytics to track store metrics based on the Search Result block.Search result
mobileLayoutObjectControls how the search results page will be displayed to users when using the mobile layout. Possible props and their respective values can be found below.undefined
defaultGalleryLayoutstringName of the gallery layout to be used by default in the search results page. This prop is only required when several layouts are explicitly defined by the gallery block. Caution: this prop's value must match the layout name defined in the name prop from layouts object.undefined
thresholdForFacetSearchnumberMinimum number of facets that must be displayed on the interface for a search bar to be displayed. If you declare 0, the search bar will always be displayed.undefined
  • mobileLayout Object:
Prop nameTypeDescriptionDefault value
mode1EnumDefines the default layout for the mobile search results page. Possible values are: normal, small or inline.normal
mode2EnumDefines which layout will be set for the mobile search results page when users click on the layout selector button. Possible values also are: normal, small or inline.small
  • HiddenFacets Object:
Prop nameTypeDescriptionDefault value
brandsbooleanWhether Brand filters should be hidden (true) or not (false).false
categoriesbooleanWhether Category filters should be hidden (true) or not (false).false
priceRangebooleanWhether Price filters should be hidden (true) or not (false).false
specificationFiltersObjectIndicates which Specification filters should be hidden.undefined
  • SpecificationFilters Object:
Prop nameTypeDescriptionDefault value
hideAllbooleanWhether specification filters should be hidden (true) or not (false).false
hiddenFilters[object]Object array of specification filters that should be hidden.undefined
  • HiddenFilters object
Prop nameTypeDescriptionDefault value
namestringName of the specification filter that you want to hide.undefined

Step 5 - Using the Flex Layout to build your search results page

Using the Flex Layout app and the other blocks also exported by the Search Results app, such as the gallery, it's time for you to build your search results page!

Find below the available blocks to build your store's search results page and their existing props as well.

gallery block

The gallery block defines how fetched items should be displayed on the store's search results page.

When declared with no props, it expects as child the product-summary.shelf and consequently the block structure inherited from it.

It is possible, however, to use its layouts prop to provide several layouts to the page, allowing your store to have different arrangement of items according to what best fits your users' needs.

In a scenario where multiple layouts are provided, your store users will be able to shift between them according to their needs using the gallery-layout-switcher block (described further below). The gallery will then render the component provided by the currently selected layout.

To understand how to build your search results with multiple layouts using the layouts prop, access the documentation.

Prop nameTypeDescriptionDefault value
layoutsobjectList of layouts used to arrange and display the items on search results page. Caution: If no value is provided, the gallery block must receive instead a product-summary-shelf block as child.undefined
undefinedblockDefines which blocks should be rendered per layout. Caution: this prop name is not undefined. Instead, its name must be the value passed to the component prop. This prop's value, in turn, must match the block name of your choosing to be rendered in that specific layout. Check out the example below in order to understand the underlying logic behind this prop.undefined
customSummaryIntervalnumberDefines the item interval at which the Gallery should render a custom product-summary block. For example: declaring 5 would render a custom block at every 4 items rendered, as shown here. Caution: This prop doesn't support layouts yet.undefined
CustomSummaryblockDefines a block to be rendered according to the interval defined by the customSummaryInterval prop.undefined
  • layouts object:
Prop nameTypeDescriptionDefault value
namestring
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Layout name. This value must be unique i.e. not equal to other layout names declared in the gallery block.
undefined
componentstring
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Names the undefined prop from the gallery block, which is responsible for declaring the block to be rendered in this layout. This prop's value can be any of your choosing as long as it is PascalCased i.e. has the first letter of each word in its name capitalized. Caution: For this to work, the chosen value must name afterwards the gallery block' undefined prop - Do not use the component prop's value to directly pass the desired block name itself. Check out the example below in order to understand the underlying logic behind this prop.
undefined
itemsPerRownumber / object
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Number of items to be displayed in each row of this layout. This prop works with responsive values, therefore it also accepts an object with different numbers for desktop, tablet or phone screen sizes (see the table below).
undefined
  • itemsPerRow object:
Prop nameTypeDescriptionDefault value
desktopnumberNumber of slides to be shown on desktop devices.undefined
tabletnumberNumber of slides to be shown on tablet devices.undefined
phonenumberNumber of slides to be shown on phone devices.undefined

For example:


_28
{
_28
"gallery": {
_28
"props": {
_28
"layouts": [
_28
{
_28
"name": "whole",
_28
"component": "OneOrTwoLineSummary",
_28
"itemsPerRow": 1
_28
},
_28
{
_28
"name": "two",
_28
"component": "OneOrTwoLineSummary",
_28
"itemsPerRow": 2
_28
},
_28
{
_28
"name": "many",
_28
"component": "ManyByLineSummary",
_28
"itemsPerRow": {
_28
"desktop": 5,
_28
"mobile": 1
_28
}
_28
}
_28
],
_28
"OneOrTwoLineSummary": "product-summary.shelf",
_28
"ManyByLineSummary": "product-summary.shelf"
_28
}
_28
}
_28
}

gallery-layout-switcher block

Logical block that allows users to switch between the available gallery's layouts.

It receives no props and expects as child the gallery-layout-option block described below. It's important to define the options in the same order as the layouts, so the accessibility features can work properly.

gallery-layout-option block

Defines how each layout option should be rendered for users.

Prop nameTypeDescriptionDefault value
namestring
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Names the layout option. This prop's value must match the one passed to the name prop.
undefined

For example:


_37
{
_37
"gallery-layout-switcher": {
_37
"children": [
_37
//It follows the same whole -> two -> many order
_37
"gallery-layout-option#whole",
_37
"gallery-layout-option#two",
_37
"gallery-layout-option#many"
_37
]
_37
},
_37
"gallery-layout-option#whole": {
_37
"props": {
_37
"name": "whole"
_37
},
_37
"children": [
_37
"icon-single-grid",
_37
"rich-text#option-whole"
_37
]
_37
},
_37
"gallery-layout-option#two": {
_37
"props": {
_37
"name": "two"
_37
},
_37
"children": [
_37
"icon-inline-grid",
_37
"rich-text#option-two"
_37
]
_37
},
_37
"gallery-layout-option#many": {
_37
"props": {
_37
"name": "many"
_37
},
_37
"children": [
_37
"icon-menu",
_37
"rich-text#option-many"
_37
]
_37
}
_37
}

filter-navigator.v3 block

Renders a filter selector for the fetched results.

Prop nameTypeDescriptionDefault value
categoryFiltersModeenumWhether the category filters should use the href attribute with the category pages' URLs (href) or not (default). By default, the filters use HTML divs with role="link". You may change this behavior by setting this prop's value to href, thereby creating a link building to improve the SEO ranking of your category pages.default
layoutEnumWhether the Filter Navigator layout should be responsive (responsive) or not (desktop, phone). You may usephone when mobile layout is needed on the desktop resolution and desktop when the Filter Navigator was configured to be displayed in a drawer.responsive
maxItemsDepartmentnumberMaximum number of departments to be displayed before the See More button is triggered.8
maxItemsCategorynumberMaximum number of category items to be displayed before the See More button is triggered.8
initiallyCollapsedBooleanMakes the search filters start out collapsed (true) or open (false).false
openFiltersModeEnumDefines how many filters can be opened at the same time on the Filter Navigator component. Possible values are: many (more than one filter can be opened at the same time) and one (only one filter can be opened). Notice that if one is declared all filters will be collapsed before user interaction, regardless of what is passed to the initiallyCollapsed prop.many
filtersTitleHtmlTagstringHTML tag for the filter's title.h5
scrollToTopenumScrolls the page to the top (auto or smooth) or not (none) when selecting a facet.none
truncateFiltersbooleanWhether a filter selector with more than 10 filter options should shorten the list and display a See more button (true) or not (false).false
closeOnOutsideClickbooleanWhether the Filter Navigator component should be closed when users click outside of it (true) or not (false). Caution: This prop only works when the openFiltersMode prop is set as one.false
appliedFiltersOverviewEnumWhether an overview of the applied filters should be displayed ("show") or not ("hide")."hide
totalProductsOnMobileenumWhether the Filter Navigator should display the total number of products on mobile devices (show) or not (hide).hide
fullWidthOnMobilebooleanWhether the filter-navigator.v3 will be rendered on mobile using the screen full width (true) or not (false).false
navigationTypeOnMobileEnumDefines how mobile users should navigate on the filter selector component. Possible values are: page (only one list of options can be seen at a time) or collapsible (all lists of options can be seen at the same time).page
updateOnFilterSelectionOnMobilebooleanWhether the search results on mobile should be updated according to filter selection (true) or not (false). Notice: this prop only works if the preventRouteChange prop is declared as true.false
showClearByFilterbooleanWhether a clear button (responsible for erasing all filter options selected by the user) should be displayed alongside the filter name (true) or not (false).false
priceRangeLayoutenumWhether a text field to enter the desired price range should be displayed (inputAndSlider) or not (slider).slider

order-by block

Renders a dropdown button with sorting options to display the fetched results (the list of sorting options can be found in the second table below).

Prop nameTypeDescriptionDefault value
hiddenOptions[string]Indicates which sorting options will be hidden. (e.g. ["OrderByNameASC", "OrderByNameDESC"])undefined
showOrderTitlebooleanWhether the selected order value (e.g. Relevance) will be displayed (true) or not (false).true

The sorting options are:

Sorting optionValue
Relevance"OrderByScoreDESC"
Top Sales Descending"OrderByTopSaleDESC"
Release Date Descending"OrderByReleaseDateDESC"
Best Discount Descending"OrderByBestDiscountDESC"
Price Descending"OrderByPriceDESC"
Price Ascending"OrderByPriceASC"
Name Ascending"OrderByNameASC"
Name Descending"OrderByNameDESC"
Collection"OrderByCollection"

search-fetch-more block

Renders a Show More button used to load the results of the next search results page.

:information_source: This block is not rendered if there is no next page.

Prop nameTypeDescriptionDefault value
htmlElementForButtonenumWhich HTML element will be displayed for Show more button component. Possible values are: a (displays a <a> element with href and rel attributes) or button (displays a <button> element without href and rel attributes).button

search-fetch-previous block

Renders a Show Previous button used to load the results of the previous search results page.

:information_source: This block is not rendered if there is no previous page.

Prop nameTypeDescriptionDefault value
htmlElementForButtonenumWhich HTML element will be displayed for Show previous button component. Possible values are: a (displays a <a> element with href and rel attributes) or button (displays a <button> element without href and rel attributes).button

search-products-count-per-page block

Shows the product count per search page. This block does not need any prop when declared.

search-products-progress-bar block**

Shows a progress bar of search results. This block does not need any prop when declared.

sidebar-close-button block

Close button rendered on the top right of the mobile filter sidebar.

Prop nameTypeDescriptionDefault value
sizenumberSize of the button icon30
typestringType of the button iconline

Customization

In order to apply CSS customization in this and other blocks, follow the instructions given in the recipe on Using CSS Handles for store customization.

CSS handles
accordionFilter
accordionFilterContainer
accordionFilterContent
accordionFilterItemActive
accordionFilterItemBox
accordionFilterItemHidden
accordionFilterItemIcon
accordionFilterItemOptions
accordionFilterItemTitle
accordionFilterItem
accordionFilterOpen
accordionSelectedFilters
border
breadcrumb
buttonShowMore
categoriesContainer
categoryGroup
categoryParent
container
dropdownMobile
filter
filterAccordionBreadcrumbs
filterBreadcrumbsContent
filterBreadcrumbsText
filterBreadcrumbsItem
filterBreadcrumbsItemName
filterAccordionItemBox--{facetValue}
filterApplyButtonWrapper
filterAvailable
filterIsOpen
filterButtonsBox
filterClearButtonWrapper
filterContainer--{facetType}
filterContainer--b
filterContainer--c
filterContainer--priceRange
filterContainer--{selectedFilters}
filterContainer--{title}
filterContainer
filterIcon
filterItem--{facetValue}
filterItem--selected
filterItem
filterMessage
filterPopup
filterPopupArrowIcon
filterPopupButton
filterPopupContent
filterPopupContentContainer
filterPopupContentContainerOpen
filterPopupFooter
filterPopupOpen
filterPopupTitle
filterSelected
filterSelectedFilters
filterTotalProducts
filtersWrapper
filtersWrapperMobile
filterTemplateOverflow
filterTitle
footerButton
galleryItem
galleryItem--custom
galleryItem--{displayMode}
galleryTitle
gallery
galleryLayoutSwitcher
galleryLayoutOptionButton
layoutSwitcher
loadingOverlay
loadingSpinnerInnerContainer
loadingSpinnerOuterContainer
orderByButton
orderByDropdown
orderByOptionItem
orderByOptionItem--selected
orderByOptionsContainer
orderByText
orderBy
productCount
progressBarContainer
progressBar
progressBarFiller
resultGallery
searchNotFoundInfo
searchNotFoundOops
searchNotFoundTerm
searchNotFoundTextListLine
searchNotFoundWhatDoIDo
searchNotFoundWhatToDoDotsContainer
searchNotFoundWhatToDoDots
searchNotFound
searchResultContainer
seeMoreButton
selectedFilterItem
showingProductsContainer
showingProductsCount
showingProducts
switch
totalProductsMessage
totalProducts
See also
VTEX App Store
VTEX IO Apps