The search
query has been enhanced to allow cross-selling and upselling of products. Also, the new subscribeToNewsletter
mutation is now available in the FastStore API. In the FastStore UI, the Slider
and PriceRange
components now allow ref forwarding.
FastStore UI
ProductTitle
-
๐ New component - #1418
Use the
ProductTitle
component to display a header with product details, such as its name, reference number, and labels. -
โจ
ProductTitle
now uses ref forwarding - #1427The
ProductTitle
component allows passing a previously received ref further down to a child.
PriceRange
-
โจ
PriceRange
now uses ref forwarding for min and max inputs - #1380The
PriceRange
component now accepts receiving refs for both min and max inputs. With the ref forwarding technique, other components using thePriceRange
can trigger input functions and control the min and max values ofPriceRange
. -
โจ New
PriceRange
look and feel - #1400The
PriceRange
component now displays the min/max values centered above theSlider
's thumbs and allows for more customizations. -
๐
PriceRange
track position fixed - #1404The track position of the
PriceRange
component has been adjusted for maximum absolute values greater than a hundred.
Slider
-
โจ
Slider
now uses ref forwarding for min and max inputs - #1380The
Slider
component now accepts receiving refs for both min and max inputs. With the ref forwarding technique, other components using theSlider
can trigger input functions and control the min and max values ofSlider
. -
โจ New prop added to
Slider
- #1415The
Slider
component now includes thestep
prop that allows specifying the interval between the input values. -
๐
Slider
values are now rounded - #1417
TheSlider
component now displays only rounded values. -
๐
Slider
thumb elements repositioned - #1423The
Slider
thumb elements' have been repositioned in the DOM so they can have customized behavior states.
FastStore API
-
๐งน Generated schema types updated - #1413/#1431
The generated TS types from the GraphQL schema have been updated.
VTEX Platform
-
๐ Support for Cross Selling now available - #1396
The following facets have been added to the existing
Search
query in order to allow cross-selling and upselling products:buy
view
similars
viewAndBought
accessories
suggestions
-
๐ New
subscribeToNewsletter
mutation available - #1385The new
subscribeToNewsletter
mutation allows stores to save data to their MasterData newsletter list. -
๐ New
skuSelector
-related properties added toProductGroup
- #1407The
ProductGroup
type now includes theskuVariations
attribute, which brings with it four new properties:allVariantsByName
- Returns all available options for each SKU variant property, indexed by their name.slugsMap
- Returns the slug for the SKU that matches the currently selected product variations.activeVariations
- Returns the property values for the current SKU.availableVariations
- Returns the available options for each varying SKU property, considering thedominantVariantName
property.
These new properties allow users to query data about SKU specification variants more quickly and are especially handy for implementing SKU Selector components.
-
๐
StoreOffer
resolver fixed - #1399The
priceCurrency
field fromStoreOffer
now grabs the same info from the current context's sales channel and fetches the correct price currency value. -
๐ Missing Catalog page types now available - #1411
The FastStore API now supports the following page types:
SubCategory
,Collection
,Cluster
. This should enable stores to render pages that match those types without issues. -
๐ Issues related to Collection pages fixed - #1429
Issues when trying to fetch the
StoreCollection.breadcrumbList
field for Collection pages have been fixed. Before detecting the page type of a certain route, theslufigyRoot
function now checks if the page is a Collection one.
FastStore SDK
-
๐งน Refactored SDKs' code - #1392
The FastStore SDK package has been refactored in order to remove all React dependencies.
Documentation
๐ New
Analytics SDK
- Analytics - #1393/#1419
- Troubleshooting Analytics and Partytown - #1397
- Analytics on FastStore - #1405
- Analytics on official starters - #1405
UI
AggregateRating
- #1395
API
VTEX Headless CMS
- VTEX Headless CMS Widgets - #1401
โจ Improved
- Configuring external DNS for a custom domain - #1406/#1422
- FasStore API overview - #1366
- Extending the GraphQL schema - #1416
- Using GraphiQL to explore the FastStore API - #1428 / #1432