You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### What problem is this solving?
Update docs links.
#### How to test it?
<!--- Don't forget to add a link to a Workspace where this branch is
linked -->
[Workspace](Link goes here!)
#### Screenshots or example usage:
<!--- Add some images or gifs to showcase changes in behaviour or
layout. Example: before and after images -->
#### Describe alternatives you've considered, if any.
<!--- Optional -->
#### Related to / Depends on
<!--- Optional -->
#### How does this PR make you feel? [:link:](http://giphy.com/)
<!-- Go to http://giphy.com/ and pick a gif that represents how this PR
makes you feel -->

Copy file name to clipboardExpand all lines: docs/Image.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ The `image` block renders images in the storefront.
51
51
52
52
## Customization
53
53
54
-
To apply CSS customizations in this and other blocks, follow the [Using CSS handles for store customization](https://developers.vtex.com/vtex-developer-docs/docs/vtex-io-documentation-using-css-handles-for-store-customization) guide.
54
+
To apply CSS customizations in this and other blocks, follow the [Using CSS handles for store customization](https://developers.vtex.com/docs/guides/vtex-io-documentation-using-css-handles-for-store-customization) guide.
1. Import the `vtex.store-components` app to your theme's dependencies in the `manifest.json` file, as in the following example:
@@ -92,7 +93,7 @@ These values are the same ones supported by HTML5 anchor tags. For more informat
92
93
93
94
## Customization
94
95
95
-
To apply CSS customizations in this and other blocks, follow the [Using CSS handles for store customization](https://developers.vtex.com/vtex-developer-docs/docs/vtex-io-documentation-using-css-handles-for-store-customization) guide.
96
+
To apply CSS customizations in this and other blocks, follow the [Using CSS handles for store customization](https://developers.vtex.com/docs/guides/vtex-io-documentation-using-css-handles-for-store-customization) guide.
Copy file name to clipboardExpand all lines: docs/ProductImages.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,9 +50,9 @@ The `product-images` block is responsible for rendering a product image or video
50
50
|`contentType`|`enum`| Controls the type of content that will be displayed in the block. Possible values are: `images`, `videos`, or `all`. |`all`|
51
51
|`displayMode`|`enum`| Defines how the product media should be displayed. Possible values are `carousel` (displays the product images and videos in a carousel), `list` (displays only the product images inline, with no extra markup) and `first-image` (displays only the first image available). *Caution*: The `list` and `first-image` values do not display product videos and are only compatible with the `maxHeight`, `hiddenImages`, `zoomFactor`, `aspectRatio`,`ModalZoomElement`, and `zoomMode` props. |`carousel`|
52
52
|`displayThumbnailsArrows`|`boolean`| Displays navigation arrows on the thumbnails media (if there are enough thumbnails for them to scroll) |`false`|
53
-
|`hiddenImages`|`string`| Hides images whose labels match the values listed in this prop. Intended to be used along with the `product-summary-sku-selector` block. You can have more information at the [SKU Selector](https://developers.vtex.com/vtex-developer-docs/docs/vtex-store-components-skuselector) documentation |`skuvariation`|
53
+
|`hiddenImages`|`string`| Hides images whose labels match the values listed in this prop. Intended to be used along with the `product-summary-sku-selector` block. You can have more information at the [SKU Selector](https://developers.vtex.com/docs/apps/vtex.store-components/skuselector) documentation |`skuvariation`|
54
54
|`maxHeight`|`number`| Maximum height for individual product images (in pixels). |`600`|
55
-
|`ModalZoom`|`block`| Opens a modal for product image zooming. This prop's value must match the name of the block responsible for triggering the modal containing the product image for zooming (e.g. `modal-layout` from [Modal layout](https://developers.vtex.com/vtex-developer-docs/docs/vtex-modal-layout) app). Notice that the `ModalZoom` prop will work only if the `zoomMode` prop is set as `open-modal`. To learn more, check out the [Advanced Configuration section](#Advanced-Configuration). |`undefined`|
55
+
|`ModalZoom`|`block`| Opens a modal for product image zooming. This prop's value must match the name of the block responsible for triggering the modal containing the product image for zooming (e.g. `modal-layout` from [Modal layout](https://developers.vtex.com/docs/apps/vtex.modal-layout) app). Notice that the `ModalZoom` prop will work only if the `zoomMode` prop is set as `open-modal`. To learn more, check out the [Advanced Configuration section](#Advanced-Configuration). |`undefined`|
56
56
|`placeholder`|`string`| Sets the URL for a placeholder image to be used in case there is no available image or video of the product. |`undefined`|
57
57
|`position`|`Enum`| Set the position of the thumbnails (`left` or `right`). Only used when `thumbnailsOrientation` is `vertical`|`left`|
58
58
|`showNavigationArrows`|`boolean`| Controls if the navigation arrows should appear |`true`|
@@ -106,7 +106,7 @@ Check out the following example:
106
106
}
107
107
```
108
108
109
-
Notice that the `product-images.high-quality-image` block must be declared as a child of `modal-layout` and, in addition to that, you can also declare other blocks exported by the [Modal Layout app](https://developers.vtex.com/vtex-developer-docs/docs/vtex-modal-layout) as children.
109
+
Notice that the `product-images.high-quality-image` block must be declared as a child of `modal-layout` and, in addition to that, you can also declare other blocks exported by the [Modal Layout app](https://developers.vtex.com/docs/apps/vtex.modal-layout) as children.
110
110
111
111
The following table shows the props allowed by `product-images.high-quality-image`:
112
112
@@ -121,7 +121,7 @@ The following table shows the props allowed by `product-images.high-quality-imag
121
121
122
122
## Customization
123
123
124
-
To apply CSS customizations in this and other blocks, follow the [Using CSS handles for store customization](https://developers.vtex.com/vtex-developer-docs/docs/vtex-io-documentation-using-css-handles-for-store-customization) guide.
124
+
To apply CSS customizations in this and other blocks, follow the [Using CSS handles for store customization](https://developers.vtex.com/docs/guides/vtex-io-documentation-using-css-handles-for-store-customization) guide.
Copy file name to clipboardExpand all lines: docs/SKUSelector.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ The `sku-selector` block is mainly used in Product Details Pages (PDPs) to displ
60
60
|`sliderItemsPerPage`|`object`| Controls how many slides should be shown on each type of device when `displayMode` is set as `slider`. Check out more information regarding this prop structure below this table. |`{desktop: 3, tablet: 2, phone: 1}`|
61
61
|`showVariationsErrorMessage`|`boolean`| Whether an error message should be displayed whenever the `BuyButton` is clicked on but no available variation was selected (`true`) or not (`false`). |`true`|
62
62
|`showVariationsLabels`|`enum`| Where variation names should be displayed. Possible values are: `none` (doesn't display the variation names. Replaces the previous `false` behavior), `variation` (shows the variation name as a header of the items. Replaces the previous `true` behavior), `itemValue` (displays the variation name before with each item's value) and `variationAndItemValue` (behaves as `variation` and `itemValue` at the same time). |`variation`|
63
-
|`thumbnailImage`|`string`| First image to be displayed. This prop value must be the same text string defined in the desired product image's `imageLabel` field (from the Catalog module). If you use this prop and no image declaring the same text string in its `imageLabel` field is found, any product image will be randomly rendered instead. To apply the `thumbnailImage` configuration, see the [Configuring custom images for the SKU Selector documentation](https://developers.vtex.com/vtex-developer-docs/docs/vtex-io-documentation-configuring-custom-images-for-the-sku-selector)|`undefined`|
63
+
|`thumbnailImage`|`string`| First image to be displayed. This prop value must be the same text string defined in the desired product image's `imageLabel` field (from the Catalog module). If you use this prop and no image declaring the same text string in its `imageLabel` field is found, any product image will be randomly rendered instead. To apply the `thumbnailImage` configuration, see the [Configuring custom images for the SKU Selector documentation](https://developers.vtex.com/docs/guides/vtex-io-documentation-configuring-custom-images-for-the-sku-selector)|`undefined`|
64
64
|`variationsSpacing`|`number`| Defines the `margin-bottom` size to be applied in the rendered product variations. Possible values are from `0` to `11` (the prop value is not in `px`, every value represents a tachyons class). |`7`|
65
65
|`visibility`|`enum`| Defines the scenarios in which the SKU selector should be displayed. Possible values are: `always` (it will always be displayed even if the product has only one SKU option) or `more-than-one` (the SKU Selector is only displayed when the product has more than one SKU option). |`always`|
66
66
|`visibleVariations`|`array`| Specifies which product variations should be displayed in the product details page. Notice the following: if you declare a name that doesn't represent a real product variation or an empty array, no variations will be displayed. Check out more information regarding this prop structure below this table. |`undefined`|
@@ -81,7 +81,7 @@ The `sku-selector` block is mainly used in Product Details Pages (PDPs) to displ
81
81
82
82
## Customization
83
83
84
-
To apply CSS customizations in this and other blocks, follow the [Using CSS handles for store customization](https://developers.vtex.com/vtex-developer-docs/docs/vtex-io-documentation-using-css-handles-for-store-customization) guide.
84
+
To apply CSS customizations in this and other blocks, follow the [Using CSS handles for store customization](https://developers.vtex.com/docs/guides/vtex-io-documentation-using-css-handles-for-store-customization) guide.
To improve the search experience usign the SearchBar component, such as the autocomplete option, you must use the component within [Search app](https://developers.vtex.com/vtex-developer-docs/docs/vtex-search) responsible for handling the [Intelligent Search (IS)](https://help.vtex.com/tracks/vtex-intelligent-search?_ga=2.220970832.979717665.1650285782-1001456323.1619912759) solution in IO stores.
71
+
To improve the search experience usign the SearchBar component, such as the autocomplete option, you must use the component within [Search app](https://developers.vtex.com/docs/apps/vtex.search) responsible for handling the [Intelligent Search (IS)](https://help.vtex.com/tracks/vtex-intelligent-search?_ga=2.220970832.979717665.1650285782-1001456323.1619912759) solution in IO stores.
72
72
73
73
The IS communicates with the `autocomplete-result-list.v2` block exported by the Search app, and the block displays previous search results based on current and previous searches.
74
74
75
-
Follow the [Search documentation](https://developers.vtex.com/vtex-developer-docs/docs/vtex-search) to add the Search app to your store.
75
+
Follow the [Search documentation](https://developers.vtex.com/docs/apps/vtex.search) to add the Search app to your store.
76
76
77
77
## Customization
78
78
79
-
To apply CSS customizations in this and other blocks, follow the [Using CSS handles for store customization](https://developers.vtex.com/vtex-developer-docs/docs/vtex-io-documentation-using-css-handles-for-store-customization) guide.
79
+
To apply CSS customizations in this and other blocks, follow the [Using CSS handles for store customization](https://developers.vtex.com/docs/guides/vtex-io-documentation-using-css-handles-for-store-customization) guide.
0 commit comments