@faststore/core 22.42.6
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/.babelrc +4 -0
- package/.editorconfig +13 -0
- package/.eslintignore +8 -0
- package/.eslintrc +21 -0
- package/.github/CODEOWNERS +2 -0
- package/.github/workflows/release.yml +40 -0
- package/.husky/pre-commit +4 -0
- package/.prettierignore +8 -0
- package/.prettierrc +1 -0
- package/.release-it.json +31 -0
- package/.storybook/components/BestPractices.tsx +18 -0
- package/.storybook/components/BestPracticesRule.tsx +43 -0
- package/.storybook/components/Callout.tsx +12 -0
- package/.storybook/components/SectionItem.tsx +44 -0
- package/.storybook/components/SectionList.tsx +27 -0
- package/.storybook/components/TokenDivider.tsx +12 -0
- package/.storybook/components/TokenRow.tsx +32 -0
- package/.storybook/components/TokenTable.tsx +33 -0
- package/.storybook/components/index.ts +8 -0
- package/.storybook/main.js +59 -0
- package/.storybook/manager-head.html +9 -0
- package/.storybook/manager.js +6 -0
- package/.storybook/mocks/cart-sidebar.js +40 -0
- package/.storybook/mocks/filter-slider.js +59 -0
- package/.storybook/mocks/index.ts +5 -0
- package/.storybook/mocks/product.ts +67 -0
- package/.storybook/mocks/productGridItems.ts +334 -0
- package/.storybook/mocks/searchHistory.ts +8 -0
- package/.storybook/mocks/searchTerms.ts +5 -0
- package/.storybook/preview-head.html +1 -0
- package/.storybook/preview.js +89 -0
- package/.storybook/storybook.css +550 -0
- package/.storybook/theme.js +21 -0
- package/.stylelintignore +1 -0
- package/.vscode/settings.json +7 -0
- package/@generated/graphql/index.ts +1133 -0
- package/@generated/graphql/persisted.json +12 -0
- package/CHANGELOG.md +730 -0
- package/LICENSE +21 -0
- package/README.md +437 -0
- package/bun.lockb +0 -0
- package/cms/content-types.json +52 -0
- package/cms/sections.json +350 -0
- package/cms/translation-keys.json +1 -0
- package/cms-webhook-urls.json +5 -0
- package/codegen.yml +22 -0
- package/cypress/fixtures/example.json +5 -0
- package/cypress/global.js +15 -0
- package/cypress/integration/a11y.test.js +45 -0
- package/cypress/integration/analytics.test.js +381 -0
- package/cypress/integration/cart.test.js +100 -0
- package/cypress/integration/performance.test.js +65 -0
- package/cypress/integration/plp.test.js +224 -0
- package/cypress/integration/search.test.js +38 -0
- package/cypress/integration/seo.test.js +318 -0
- package/cypress/plugins/index.js +41 -0
- package/cypress/support/commands.js +70 -0
- package/cypress/support/index.js +3 -0
- package/cypress.json +9 -0
- package/lighthouserc.js +22 -0
- package/next-env.d.ts +5 -0
- package/next.config.js +35 -0
- package/package.json +114 -0
- package/postcss.config.js +5 -0
- package/public/brandless-negative.png +0 -0
- package/public/brandless-neutral.png +0 -0
- package/public/brandless-positive.png +0 -0
- package/public/brandless-storybook.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/icons.svg +58 -0
- package/public/logo.svg +42 -0
- package/public/mockServiceWorker.js +367 -0
- package/public/robots.txt +5 -0
- package/pull_request_template.md +37 -0
- package/renovate.json +5 -0
- package/src/Layout.tsx +51 -0
- package/src/components/ThirdPartyScripts/GoogleTagManager.tsx +61 -0
- package/src/components/ThirdPartyScripts/ThirdPartyScripts.tsx +37 -0
- package/src/components/ThirdPartyScripts/index.ts +1 -0
- package/src/components/ThirdPartyScripts/vtex.tsx +23 -0
- package/src/components/cart/CartItem/CartItem.stories.mdx +134 -0
- package/src/components/cart/CartItem/CartItem.tsx +158 -0
- package/src/components/cart/CartItem/cart-item.module.scss +68 -0
- package/src/components/cart/CartItem/index.ts +1 -0
- package/src/components/cart/CartSidebar/CartSidebar.stories.mdx +119 -0
- package/src/components/cart/CartSidebar/CartSidebar.tsx +140 -0
- package/src/components/cart/CartSidebar/cart-sidebar.module.scss +69 -0
- package/src/components/cart/CartSidebar/index.ts +1 -0
- package/src/components/cart/CartToggle/CartToggle.tsx +20 -0
- package/src/components/cart/CartToggle/index.ts +1 -0
- package/src/components/cart/EmptyCart/EmptyCart.tsx +26 -0
- package/src/components/cart/EmptyCart/index.ts +1 -0
- package/src/components/cart/OrderSummary/OrderSummary.tsx +39 -0
- package/src/components/cart/OrderSummary/index.ts +1 -0
- package/src/components/cart/OrderSummary/order-summary.module.scss +22 -0
- package/src/components/cms/RenderPageSections.tsx +52 -0
- package/src/components/cms/SectionBoundary.tsx +34 -0
- package/src/components/common/Alert/Alert.tsx +53 -0
- package/src/components/common/Alert/index.ts +1 -0
- package/src/components/common/Footer/Footer.stories.mdx +158 -0
- package/src/components/common/Footer/Footer.tsx +160 -0
- package/src/components/common/Footer/FooterLinks.tsx +155 -0
- package/src/components/common/Footer/footer.module.scss +246 -0
- package/src/components/common/Footer/index.ts +2 -0
- package/src/components/common/Navbar/NavLinks.stories.mdx +122 -0
- package/src/components/common/Navbar/NavLinks.tsx +58 -0
- package/src/components/common/Navbar/Navbar.stories.mdx +179 -0
- package/src/components/common/Navbar/Navbar.tsx +97 -0
- package/src/components/common/Navbar/NavbarSlider.stories.mdx +108 -0
- package/src/components/common/Navbar/NavbarSlider.tsx +62 -0
- package/src/components/common/Navbar/index.ts +3 -0
- package/src/components/common/Navbar/navbar-slider.module.scss +60 -0
- package/src/components/common/Navbar/navbar.module.scss +204 -0
- package/src/components/common/Navbar/navlinks.module.scss +96 -0
- package/src/components/common/Toast/Toast.tsx +40 -0
- package/src/components/common/Toast/index.ts +1 -0
- package/src/components/product/OutOfStock/OutOfStock.stories.mdx +127 -0
- package/src/components/product/OutOfStock/OutOfStock.tsx +134 -0
- package/src/components/product/OutOfStock/index.ts +2 -0
- package/src/components/product/OutOfStock/out-of-stock.module.scss +55 -0
- package/src/components/product/ProductCard/ProductCard.stories.mdx +412 -0
- package/src/components/product/ProductCard/ProductCard.tsx +170 -0
- package/src/components/product/ProductCard/index.ts +2 -0
- package/src/components/product/ProductCard/product-card.module.scss +254 -0
- package/src/components/product/ProductGrid/ProductGrid.stories.mdx +97 -0
- package/src/components/product/ProductGrid/ProductGrid.tsx +37 -0
- package/src/components/product/ProductGrid/index.ts +1 -0
- package/src/components/product/ProductGrid/product-grid.module.scss +39 -0
- package/src/components/regionalization/Regionalization.stories.mdx +182 -0
- package/src/components/regionalization/RegionalizationBar/RegionalizationBar.stories.mdx +116 -0
- package/src/components/regionalization/RegionalizationBar/RegionalizationBar.tsx +40 -0
- package/src/components/regionalization/RegionalizationBar/index.ts +1 -0
- package/src/components/regionalization/RegionalizationBar/regionalization-bar.module.scss +56 -0
- package/src/components/regionalization/RegionalizationButton/RegionalizationButton.tsx +24 -0
- package/src/components/regionalization/RegionalizationButton/index.ts +1 -0
- package/src/components/regionalization/RegionalizationInput/RegionalizationInput.tsx +61 -0
- package/src/components/regionalization/RegionalizationInput/index.ts +1 -0
- package/src/components/regionalization/RegionalizationModal/RegionalizationModal.stories.mdx +161 -0
- package/src/components/regionalization/RegionalizationModal/RegionalizationModal.tsx +13 -0
- package/src/components/regionalization/RegionalizationModal/RegionalizationModalContent.tsx +48 -0
- package/src/components/regionalization/RegionalizationModal/index.ts +2 -0
- package/src/components/regionalization/RegionalizationModal/regionalization-modal-content.module.scss +79 -0
- package/src/components/search/Filter/Facets.stories.mdx +284 -0
- package/src/components/search/Filter/Facets.tsx +136 -0
- package/src/components/search/Filter/Filter.stories.mdx +209 -0
- package/src/components/search/Filter/Filter.tsx +91 -0
- package/src/components/search/Filter/FilterSlider.stories.mdx +226 -0
- package/src/components/search/Filter/FilterSlider.tsx +109 -0
- package/src/components/search/Filter/facets.module.scss +117 -0
- package/src/components/search/Filter/filter-slider.module.scss +63 -0
- package/src/components/search/Filter/index.ts +2 -0
- package/src/components/search/Filter/useFilter.ts +131 -0
- package/src/components/search/Search.stories.mdx +169 -0
- package/src/components/search/SearchDropdown/SearchDropdown.stories.mdx +62 -0
- package/src/components/search/SearchDropdown/SearchDropdown.tsx +44 -0
- package/src/components/search/SearchDropdown/index.ts +2 -0
- package/src/components/search/SearchHistory/SearchHistory.stories.mdx +59 -0
- package/src/components/search/SearchHistory/SearchHistory.tsx +51 -0
- package/src/components/search/SearchHistory/index.ts +1 -0
- package/src/components/search/SearchInput/SearchInput.stories.mdx +205 -0
- package/src/components/search/SearchInput/SearchInput.tsx +128 -0
- package/src/components/search/SearchInput/index.ts +2 -0
- package/src/components/search/SearchInput/search-input.module.scss +153 -0
- package/src/components/search/SearchProductCard/SearchProductCard.stories.mdx +96 -0
- package/src/components/search/SearchProductCard/SearchProductCard.tsx +103 -0
- package/src/components/search/SearchProductCard/index.ts +1 -0
- package/src/components/search/SearchProductCard/search-product-card.module.scss +54 -0
- package/src/components/search/SearchSharedTokenTable.mdx +98 -0
- package/src/components/search/SearchSuggestions/SearchSuggestions.stories.mdx +58 -0
- package/src/components/search/SearchSuggestions/SearchSuggestions.tsx +136 -0
- package/src/components/search/SearchSuggestions/index.ts +2 -0
- package/src/components/search/SearchTop/SearchTop.stories.mdx +58 -0
- package/src/components/search/SearchTop/SearchTop.tsx +78 -0
- package/src/components/search/SearchTop/index.ts +2 -0
- package/src/components/search/Sort/Sort.tsx +42 -0
- package/src/components/search/Sort/index.ts +1 -0
- package/src/components/search/search.module.scss +101 -0
- package/src/components/search/searchMock.ts +48 -0
- package/src/components/sections/BannerNewsletter/BannerNewsletter.tsx +28 -0
- package/src/components/sections/BannerNewsletter/banner-newsletter.module.scss +23 -0
- package/src/components/sections/BannerText/BannerText.stories.mdx +270 -0
- package/src/components/sections/BannerText/BannerText.tsx +87 -0
- package/src/components/sections/BannerText/banner-text.module.scss +127 -0
- package/src/components/sections/BannerText/index.ts +2 -0
- package/src/components/sections/Breadcrumb/Breadcrumb.tsx +24 -0
- package/src/components/sections/Breadcrumb/index.ts +1 -0
- package/src/components/sections/Hero/Hero.stories.mdx +277 -0
- package/src/components/sections/Hero/Hero.tsx +109 -0
- package/src/components/sections/Hero/hero.module.scss +180 -0
- package/src/components/sections/Hero/index.ts +2 -0
- package/src/components/sections/Incentives/Incentives.stories.mdx +159 -0
- package/src/components/sections/Incentives/Incentives.tsx +69 -0
- package/src/components/sections/Incentives/IncentivesFooter.tsx +8 -0
- package/src/components/sections/Incentives/IncentivesHeader.tsx +23 -0
- package/src/components/sections/Incentives/incentives.module.scss +122 -0
- package/src/components/sections/Incentives/incentivesMock.ts +55 -0
- package/src/components/sections/Incentives/index.ts +2 -0
- package/src/components/sections/Newsletter/Newsletter.stories.mdx +139 -0
- package/src/components/sections/Newsletter/Newsletter.tsx +151 -0
- package/src/components/sections/Newsletter/index.ts +2 -0
- package/src/components/sections/Newsletter/newsletter.module.scss +135 -0
- package/src/components/sections/ProducDetailsContent/ProductDetailsContent.stories.mdx +66 -0
- package/src/components/sections/ProducDetailsContent/ProductDetailsContent.tsx +278 -0
- package/src/components/sections/ProducDetailsContent/index.ts +1 -0
- package/src/components/sections/ProducDetailsContent/product-details-content.module.scss +50 -0
- package/src/components/sections/ProductDetails/ProductDetails.tsx +316 -0
- package/src/components/sections/ProductDetails/index.ts +1 -0
- package/src/components/sections/ProductDetails/product-details.module.scss +194 -0
- package/src/components/sections/ProductGallery/EmptyGallery.tsx +38 -0
- package/src/components/sections/ProductGallery/ProductGallery.tsx +186 -0
- package/src/components/sections/ProductGallery/ProductGalleryPage.tsx +70 -0
- package/src/components/sections/ProductGallery/index.ts +1 -0
- package/src/components/sections/ProductGallery/product-gallery.module.scss +184 -0
- package/src/components/sections/ProductGallery/useDelayedFacets.ts +18 -0
- package/src/components/sections/ProductGallery/useDelayedPagination.ts +16 -0
- package/src/components/sections/ProductGallery/useGalleryQuery.ts +58 -0
- package/src/components/sections/ProductGallery/usePageProducts.ts +48 -0
- package/src/components/sections/ProductShelf/ProductShelf.tsx +68 -0
- package/src/components/sections/ProductShelf/index.ts +1 -0
- package/src/components/sections/ProductShelf/product-shelf.module.scss +41 -0
- package/src/components/sections/ProductTiles/ProductTiles.tsx +83 -0
- package/src/components/sections/ProductTiles/index.ts +1 -0
- package/src/components/sections/ScrollToTopButton/ScrollToTopButton.tsx +45 -0
- package/src/components/sections/ScrollToTopButton/index.ts +1 -0
- package/src/components/sections/ScrollToTopButton/scroll-to-top-button.module.scss +12 -0
- package/src/components/sections/Section/Section.tsx +15 -0
- package/src/components/sections/Section/index.ts +1 -0
- package/src/components/sections/Section/section.scss +16 -0
- package/src/components/skeletons/FilterSkeleton/FilterSkeleton.stories.mdx +97 -0
- package/src/components/skeletons/FilterSkeleton/FilterSkeleton.tsx +34 -0
- package/src/components/skeletons/FilterSkeleton/filter-skeleton.module.scss +51 -0
- package/src/components/skeletons/FilterSkeleton/index.ts +1 -0
- package/src/components/skeletons/ProductCardSkeleton/ProductCardSkeleton.stories.mdx +176 -0
- package/src/components/skeletons/ProductCardSkeleton/ProductCardSkeleton.tsx +52 -0
- package/src/components/skeletons/ProductCardSkeleton/index.ts +1 -0
- package/src/components/skeletons/ProductCardSkeleton/product-card-skeleton.module.scss +97 -0
- package/src/components/skeletons/ProductGridSkeleton/ProductGridSkeleton.tsx +29 -0
- package/src/components/skeletons/ProductGridSkeleton/index.ts +1 -0
- package/src/components/skeletons/ProductShelfSkeleton/ProductShelfSkeleton.tsx +32 -0
- package/src/components/skeletons/ProductShelfSkeleton/index.ts +1 -0
- package/src/components/skeletons/ProductTilesSkeleton/ProductTileSkeleton/ProductTileSkeleton.tsx +57 -0
- package/src/components/skeletons/ProductTilesSkeleton/ProductTileSkeleton/index.ts +1 -0
- package/src/components/skeletons/ProductTilesSkeleton/ProductTileSkeleton/product-tile-skeleton.module.scss +218 -0
- package/src/components/skeletons/ProductTilesSkeleton/ProductTilesSkeleton.tsx +33 -0
- package/src/components/skeletons/ProductTilesSkeleton/index.ts +2 -0
- package/src/components/skeletons/Shimmer/Shimmer.tsx +11 -0
- package/src/components/skeletons/Shimmer/index.ts +1 -0
- package/src/components/skeletons/Shimmer/shimmer.module.scss +43 -0
- package/src/components/skeletons/Skeleton/Skeleton.tsx +49 -0
- package/src/components/skeletons/Skeleton/index.ts +1 -0
- package/src/components/skeletons/Skeleton/skeleton.module.scss +77 -0
- package/src/components/skeletons/Skeletons.stories.mdx +178 -0
- package/src/components/ui/Accordion/Accordion.stories.mdx +219 -0
- package/src/components/ui/Accordion/Accordion.tsx +39 -0
- package/src/components/ui/Accordion/AccordionItem.stories.mdx +116 -0
- package/src/components/ui/Accordion/AccordionItem.tsx +82 -0
- package/src/components/ui/Accordion/accordion.module.scss +65 -0
- package/src/components/ui/Accordion/index.ts +2 -0
- package/src/components/ui/Alert/Alert.stories.mdx +164 -0
- package/src/components/ui/Alert/Alert.tsx +78 -0
- package/src/components/ui/Alert/alert.module.scss +93 -0
- package/src/components/ui/Alert/index.ts +1 -0
- package/src/components/ui/Badge/Badge.stories.mdx +465 -0
- package/src/components/ui/Badge/Badge.tsx +76 -0
- package/src/components/ui/Badge/DiscountBadge.stories.mdx +191 -0
- package/src/components/ui/Badge/DiscountBadge.tsx +57 -0
- package/src/components/ui/Badge/badge.module.scss +252 -0
- package/src/components/ui/Badge/index.ts +4 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.stories.mdx +197 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.tsx +122 -0
- package/src/components/ui/Breadcrumb/breadcrumb.module.scss +144 -0
- package/src/components/ui/Breadcrumb/index.ts +2 -0
- package/src/components/ui/Button/Button.stories.mdx +685 -0
- package/src/components/ui/Button/Button.tsx +85 -0
- package/src/components/ui/Button/ButtonBuy/ButtonBuy.tsx +24 -0
- package/src/components/ui/Button/ButtonBuy/index.ts +1 -0
- package/src/components/ui/Button/ButtonLink/ButtonLink.tsx +49 -0
- package/src/components/ui/Button/ButtonLink/ButtonSignIn/ButtonSignIn.tsx +22 -0
- package/src/components/ui/Button/ButtonLink/ButtonSignIn/ButtonSignInFallback/ButtonSignInFallback.tsx +18 -0
- package/src/components/ui/Button/ButtonLink/ButtonSignIn/ButtonSignInFallback/index.ts +1 -0
- package/src/components/ui/Button/ButtonLink/ButtonSignIn/index.ts +1 -0
- package/src/components/ui/Button/ButtonLink/index.ts +1 -0
- package/src/components/ui/Button/button.module.scss +392 -0
- package/src/components/ui/Button/index.ts +6 -0
- package/src/components/ui/Checkbox/Checkbox.stories.mdx +268 -0
- package/src/components/ui/Checkbox/Checkbox.tsx +20 -0
- package/src/components/ui/Checkbox/checkbox.module.scss +157 -0
- package/src/components/ui/Checkbox/index.ts +2 -0
- package/src/components/ui/Dropdown/Dropdown.stories.mdx +232 -0
- package/src/components/ui/Dropdown/Dropdown.tsx +12 -0
- package/src/components/ui/Dropdown/DropdownButton.tsx +20 -0
- package/src/components/ui/Dropdown/DropdownItem.stories.mdx +139 -0
- package/src/components/ui/Dropdown/DropdownItem.tsx +26 -0
- package/src/components/ui/Dropdown/DropdownMenu.stories.mdx +115 -0
- package/src/components/ui/Dropdown/DropdownMenu.tsx +34 -0
- package/src/components/ui/Dropdown/dropdown.module.scss +101 -0
- package/src/components/ui/Dropdown/index.ts +4 -0
- package/src/components/ui/EmptyState/EmptyState.stories.mdx +146 -0
- package/src/components/ui/EmptyState/EmptyState.tsx +26 -0
- package/src/components/ui/EmptyState/empty-state.module.scss +63 -0
- package/src/components/ui/EmptyState/index.ts +1 -0
- package/src/components/ui/Gift/Gift.stories.mdx +99 -0
- package/src/components/ui/Gift/Gift.tsx +76 -0
- package/src/components/ui/Gift/gift.module.scss +94 -0
- package/src/components/ui/Gift/index.ts +2 -0
- package/src/components/ui/Icon/Icon.tsx +35 -0
- package/src/components/ui/Icon/index.ts +1 -0
- package/src/components/ui/Image/Image.tsx +59 -0
- package/src/components/ui/Image/index.ts +1 -0
- package/src/components/ui/Image/thumborUrlBuilder.ts +101 -0
- package/src/components/ui/Image/useImage.ts +46 -0
- package/src/components/ui/ImageGallery/ImageGallery.stories.mdx +173 -0
- package/src/components/ui/ImageGallery/ImageGallery.tsx +51 -0
- package/src/components/ui/ImageGallery/ImageGallerySelector.tsx +116 -0
- package/src/components/ui/ImageGallery/ImageZoom.tsx +12 -0
- package/src/components/ui/ImageGallery/image-gallery-selector.module.scss +131 -0
- package/src/components/ui/ImageGallery/image-gallery.module.scss +56 -0
- package/src/components/ui/ImageGallery/index.ts +4 -0
- package/src/components/ui/InputText/InputText.stories.mdx +311 -0
- package/src/components/ui/InputText/InputText.tsx +128 -0
- package/src/components/ui/InputText/index.ts +2 -0
- package/src/components/ui/InputText/input-text.module.scss +168 -0
- package/src/components/ui/Link/Link.stories.mdx +272 -0
- package/src/components/ui/Link/Link.tsx +68 -0
- package/src/components/ui/Link/index.ts +2 -0
- package/src/components/ui/Link/link.module.scss +98 -0
- package/src/components/ui/Logo/Logo.tsx +14 -0
- package/src/components/ui/Logo/index.ts +1 -0
- package/src/components/ui/Logo/logo.module.scss +12 -0
- package/src/components/ui/Modal/Modal.stories.mdx +142 -0
- package/src/components/ui/Modal/Modal.tsx +43 -0
- package/src/components/ui/Modal/index.ts +1 -0
- package/src/components/ui/Modal/modal.module.scss +46 -0
- package/src/components/ui/Price/Price.stories.mdx +194 -0
- package/src/components/ui/Price/Price.tsx +32 -0
- package/src/components/ui/Price/index.ts +1 -0
- package/src/components/ui/Price/price.module.scss +27 -0
- package/src/components/ui/PriceRange/PriceRange.stories.mdx +192 -0
- package/src/components/ui/PriceRange/PriceRange.tsx +138 -0
- package/src/components/ui/PriceRange/index.ts +1 -0
- package/src/components/ui/PriceRange/price-range.module.scss +176 -0
- package/src/components/ui/ProductTitle/ProductTitle.stories.mdx +107 -0
- package/src/components/ui/ProductTitle/ProductTitle.tsx +11 -0
- package/src/components/ui/ProductTitle/index.ts +1 -0
- package/src/components/ui/ProductTitle/product-title.module.scss +48 -0
- package/src/components/ui/QuantitySelector/QuantitySelector.stories.mdx +246 -0
- package/src/components/ui/QuantitySelector/QuantitySelector.tsx +103 -0
- package/src/components/ui/QuantitySelector/index.ts +1 -0
- package/src/components/ui/QuantitySelector/quantity-selector.module.scss +160 -0
- package/src/components/ui/Radio/Radio.stories.mdx +237 -0
- package/src/components/ui/Radio/Radio.tsx +36 -0
- package/src/components/ui/Radio/index.ts +2 -0
- package/src/components/ui/Radio/radio.module.scss +122 -0
- package/src/components/ui/SROnly/SROnly.tsx +20 -0
- package/src/components/ui/SROnly/index.ts +1 -0
- package/src/components/ui/SROnly/sr-only.module.scss +15 -0
- package/src/components/ui/Select/Select.stories.mdx +168 -0
- package/src/components/ui/Select/Select.tsx +70 -0
- package/src/components/ui/Select/index.ts +2 -0
- package/src/components/ui/Select/select.module.scss +85 -0
- package/src/components/ui/ShippingSimulation/ShippingSimulation.stories.mdx +140 -0
- package/src/components/ui/ShippingSimulation/ShippingSimulation.tsx +109 -0
- package/src/components/ui/ShippingSimulation/index.ts +1 -0
- package/src/components/ui/ShippingSimulation/shipping-simulation.module.scss +96 -0
- package/src/components/ui/ShippingSimulation/useShippingSimulation.ts +225 -0
- package/src/components/ui/SkuSelector/Selectors.stories.mdx +82 -0
- package/src/components/ui/SkuSelector/Selectors.tsx +87 -0
- package/src/components/ui/SkuSelector/SkuSelector.stories.mdx +345 -0
- package/src/components/ui/SkuSelector/SkuSelector.tsx +46 -0
- package/src/components/ui/SkuSelector/index.ts +3 -0
- package/src/components/ui/SkuSelector/sku-selector.module.scss +172 -0
- package/src/components/ui/SkuSelector/skuVariants.ts +59 -0
- package/src/components/ui/SlideOver/SlideOver.stories.mdx +285 -0
- package/src/components/ui/SlideOver/SlideOver.tsx +58 -0
- package/src/components/ui/SlideOver/index.ts +1 -0
- package/src/components/ui/SlideOver/overlay.scss +14 -0
- package/src/components/ui/SlideOver/slide-over.module.scss +63 -0
- package/src/components/ui/Tiles/Tiles.stories.mdx +153 -0
- package/src/components/ui/Tiles/Tiles.tsx +14 -0
- package/src/components/ui/Tiles/index.ts +5 -0
- package/src/components/ui/Tiles/tiles.module.scss +60 -0
- package/src/components/ui/Toast/Toast.stories.mdx +158 -0
- package/src/components/ui/Toast/Toast.tsx +56 -0
- package/src/components/ui/Toast/index.ts +1 -0
- package/src/components/ui/Toast/toast.module.scss +112 -0
- package/src/components/ui/Toggle/Toggle.stories.mdx +604 -0
- package/src/components/ui/Toggle/Toggle.tsx +75 -0
- package/src/components/ui/Toggle/index.ts +2 -0
- package/src/components/ui/Toggle/toggle.module.scss +200 -0
- package/src/constants.ts +2 -0
- package/src/fonts/WebFonts.tsx +15 -0
- package/src/images/icon.png +0 -0
- package/src/pages/404.tsx +27 -0
- package/src/pages/500.tsx +31 -0
- package/src/pages/[...slug].tsx +186 -0
- package/src/pages/[slug]/p.tsx +209 -0
- package/src/pages/_app.tsx +38 -0
- package/src/pages/_document.tsx +22 -0
- package/src/pages/account.tsx +20 -0
- package/src/pages/api/graphql.ts +72 -0
- package/src/pages/api/preview.ts +61 -0
- package/src/pages/checkout.tsx +20 -0
- package/src/pages/index.tsx +72 -0
- package/src/pages/login.tsx +20 -0
- package/src/pages/s.tsx +83 -0
- package/src/sdk/analytics/hooks/useViewItemListEvent.ts +51 -0
- package/src/sdk/analytics/index.tsx +30 -0
- package/src/sdk/analytics/platform/vtex/index.ts +11 -0
- package/src/sdk/analytics/platform/vtex/search.ts +102 -0
- package/src/sdk/analytics/types.ts +22 -0
- package/src/sdk/cart/index.ts +187 -0
- package/src/sdk/cart/useBuyButton.ts +62 -0
- package/src/sdk/cart/useCartToggleButton.ts +23 -0
- package/src/sdk/cart/useCheckoutButton.ts +22 -0
- package/src/sdk/cart/useRemoveButton.ts +56 -0
- package/src/sdk/error/ErrorBoundary/ErrorBoundary.tsx +67 -0
- package/src/sdk/error/ErrorBoundary/index.ts +1 -0
- package/src/sdk/graphql/prefetchQuery.ts +20 -0
- package/src/sdk/graphql/request.ts +25 -0
- package/src/sdk/graphql/useLazyQuery.ts +29 -0
- package/src/sdk/graphql/useQuery.ts +40 -0
- package/src/sdk/newsletter/useNewsletter.ts +31 -0
- package/src/sdk/product/useDiscountPercent.ts +10 -0
- package/src/sdk/product/useFormattedPrice.ts +27 -0
- package/src/sdk/product/useProduct.ts +46 -0
- package/src/sdk/product/useProductLink.ts +69 -0
- package/src/sdk/product/useProductsQuery.ts +107 -0
- package/src/sdk/search/Sentinel.tsx +78 -0
- package/src/sdk/search/state.ts +11 -0
- package/src/sdk/search/useSearchHistory.ts +40 -0
- package/src/sdk/search/useSearchInput.tsx +43 -0
- package/src/sdk/search/useSuggestions.ts +49 -0
- package/src/sdk/search/useTopSearch.ts +49 -0
- package/src/sdk/session/index.ts +71 -0
- package/src/sdk/tests/mark.tsx +10 -0
- package/src/sdk/ui/Provider.tsx +151 -0
- package/src/sdk/ui/useFadeEffect.ts +21 -0
- package/src/sdk/ui/useOnClickOutside.ts +39 -0
- package/src/sdk/ui/useScrollDirection.ts +31 -0
- package/src/sdk/useStore.ts +24 -0
- package/src/server/cms.ts +66 -0
- package/src/server/index.ts +105 -0
- package/src/stories/brandless.stories.mdx +85 -0
- package/src/stories/changelog-template.stories.mdx +10 -0
- package/src/stories/colors.stories.mdx +306 -0
- package/src/stories/customizing.stories.mdx +113 -0
- package/src/stories/getting-started.stories.mdx +65 -0
- package/src/stories/grid-layout.stories.mdx +53 -0
- package/src/stories/icons.stories.mdx +237 -0
- package/src/stories/interactive-controls.stories.mdx +50 -0
- package/src/stories/midnight.stories.mdx +56 -0
- package/src/stories/refinements.stories.mdx +96 -0
- package/src/stories/soft-blue.stories.mdx +56 -0
- package/src/stories/spacing.stories.mdx +38 -0
- package/src/stories/typography.stories.mdx +224 -0
- package/src/styles/global/components.scss +5 -0
- package/src/styles/global/layout.scss +80 -0
- package/src/styles/global/resets.scss +48 -0
- package/src/styles/global/storybook-components.scss +5 -0
- package/src/styles/global/tokens.scss +276 -0
- package/src/styles/global/typography.scss +66 -0
- package/src/styles/global/utilities.scss +69 -0
- package/src/styles/scaffold.scss +7 -0
- package/src/styles/themes/custom-theme.scss +36 -0
- package/src/styles/themes/midnight.scss +123 -0
- package/src/styles/themes/soft-blue.scss +79 -0
- package/src/styles/vendors/include-media.scss +4 -0
- package/src/styles/vendors/include-media_overwrite.scss +9 -0
- package/src/styles/vendors/modern-normalize.css +270 -0
- package/src/typings/global.d.ts +6 -0
- package/src/typings/module.css.d.ts +7 -0
- package/store.config.js +69 -0
- package/stylelint.config.js +82 -0
- package/tsconfig.json +25 -0
- package/vtex.env +14 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,730 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Conventional Changelog](https://github.com/conventional-changelog/conventional-changelog),
|
|
6
|
+
and this project adheres to [Calendar Versioning](https://calver.org/).
|
|
7
|
+
|
|
8
|
+
### [22.42.6](https://github.com/vtex-sites/nextjs.store/compare/22.42.5...22.42.6) (2022-10-24)
|
|
9
|
+
|
|
10
|
+
### [22.42.5](https://github.com/vtex-sites/nextjs.store/compare/22.42.4...22.42.5) (2022-10-24)
|
|
11
|
+
|
|
12
|
+
### [22.42.4](https://github.com/vtex-sites/nextjs.store/compare/22.42.3...22.42.4) (2022-10-21)
|
|
13
|
+
|
|
14
|
+
### [22.42.3](https://github.com/vtex-sites/nextjs.store/compare/22.42.2...22.42.3) (2022-10-20)
|
|
15
|
+
|
|
16
|
+
### [22.42.2](https://github.com/vtex-sites/nextjs.store/compare/22.42.1...22.42.2) (2022-10-20)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* Storybook Updates ([#271](https://github.com/vtex-sites/nextjs.store/issues/271)) ([176139a](https://github.com/vtex-sites/nextjs.store/commit/176139a3290330e2626d22f3ca23e2a1722883f3))
|
|
22
|
+
|
|
23
|
+
### [22.42.1](https://github.com/vtex-sites/nextjs.store/compare/22.42.0...22.42.1) (2022-10-19)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* Bad postal code on shipping data ([#279](https://github.com/vtex-sites/nextjs.store/issues/279)) ([3d71613](https://github.com/vtex-sites/nextjs.store/commit/3d71613130815768f72538c830e78650ae1babf4))
|
|
29
|
+
|
|
30
|
+
## [22.42.0](https://github.com/vtex-sites/nextjs.store/compare/22.41.1...22.42.0) (2022-10-19)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
|
|
35
|
+
* Add Page content-type ([#278](https://github.com/vtex-sites/nextjs.store/issues/278)) ([50a7998](https://github.com/vtex-sites/nextjs.store/commit/50a79989aeaacbed9a7f3873c04b6ae6014c467b))
|
|
36
|
+
|
|
37
|
+
### [22.41.1](https://github.com/vtex-sites/nextjs.store/compare/22.41.0...22.41.1) (2022-10-19)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Chores
|
|
41
|
+
|
|
42
|
+
* Renames data-attr ([#276](https://github.com/vtex-sites/nextjs.store/issues/276)) ([1dde467](https://github.com/vtex-sites/nextjs.store/commit/1dde467b8ed912832f100ddbf83e36deb37bbb2f))
|
|
43
|
+
|
|
44
|
+
## [22.41.0](https://github.com/vtex-sites/nextjs.store/compare/22.40.2...22.41.0) (2022-10-18)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
* CMS Error Boundaries ([#277](https://github.com/vtex-sites/nextjs.store/issues/277)) ([87d8236](https://github.com/vtex-sites/nextjs.store/commit/87d8236f762414071af2baa4338f164730bbea1f))
|
|
50
|
+
|
|
51
|
+
### [22.40.2](https://github.com/vtex-sites/nextjs.store/compare/22.40.1...22.40.2) (2022-10-17)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Chores
|
|
55
|
+
|
|
56
|
+
* use transition api to defer navbar behavior ([#269](https://github.com/vtex-sites/nextjs.store/issues/269)) ([1339bb8](https://github.com/vtex-sites/nextjs.store/commit/1339bb867d6c53e5e8575bcb39ca5ebc41c4207b))
|
|
57
|
+
|
|
58
|
+
### [22.40.1](https://github.com/vtex-sites/nextjs.store/compare/22.40.0...22.40.1) (2022-10-17)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Features
|
|
62
|
+
|
|
63
|
+
* Adjust Newsletter to match new designs ([#252](https://github.com/vtex-sites/nextjs.store/issues/252)) ([3fc67a7](https://github.com/vtex-sites/nextjs.store/commit/3fc67a755f3bb6ef396fb8580843066964de35dd))
|
|
64
|
+
|
|
65
|
+
## [22.40.0](https://github.com/vtex-sites/nextjs.store/compare/22.39.6...22.40.0) (2022-10-14)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
### Features
|
|
69
|
+
|
|
70
|
+
* Adds missing CSS modules ([#270](https://github.com/vtex-sites/nextjs.store/issues/270)) ([831011e](https://github.com/vtex-sites/nextjs.store/commit/831011ebaece3a2e818a2678dfdb484428eaaadf)), closes [vtex-sites/nextjs.store#267](https://github.com/vtex-sites/nextjs.store/issues/267)
|
|
71
|
+
|
|
72
|
+
### [22.39.6](https://github.com/vtex-sites/nextjs.store/compare/22.39.5...22.39.6) (2022-10-14)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
### Chores
|
|
76
|
+
|
|
77
|
+
* Change `resource-summary:stylesheet` Lighthouse metric to warning ([#272](https://github.com/vtex-sites/nextjs.store/issues/272)) ([bd405e9](https://github.com/vtex-sites/nextjs.store/commit/bd405e9fd5a04bcb6da7f2211a6beee32cb3f9a1))
|
|
78
|
+
|
|
79
|
+
### [22.39.5](https://github.com/vtex-sites/nextjs.store/compare/22.39.4...22.39.5) (2022-10-13)
|
|
80
|
+
|
|
81
|
+
### [22.39.4](https://github.com/vtex-sites/nextjs.store/compare/22.39.3...22.39.4) (2022-10-11)
|
|
82
|
+
|
|
83
|
+
### [22.39.3](https://github.com/vtex-sites/nextjs.store/compare/22.39.2...22.39.3) (2022-10-10)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Bug Fixes
|
|
87
|
+
|
|
88
|
+
* Top searches locale ([#264](https://github.com/vtex-sites/nextjs.store/issues/264)) ([ea3fd29](https://github.com/vtex-sites/nextjs.store/commit/ea3fd2961b40c04e3421ca3e24e3f89c7f402154))
|
|
89
|
+
|
|
90
|
+
### [22.39.2](https://github.com/vtex-sites/nextjs.store/compare/22.39.1...22.39.2) (2022-10-10)
|
|
91
|
+
|
|
92
|
+
### [22.39.1](https://github.com/vtex-sites/nextjs.store/compare/22.39.0...22.39.1) (2022-10-06)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
### Bug Fixes
|
|
96
|
+
|
|
97
|
+
* using data-fs instead data-store ([#265](https://github.com/vtex-sites/nextjs.store/issues/265)) ([0aebcd7](https://github.com/vtex-sites/nextjs.store/commit/0aebcd7fcc3a9a41278f082b1fdbdadbd2d6b9fe))
|
|
98
|
+
|
|
99
|
+
## [22.39.0](https://github.com/vtex-sites/nextjs.store/compare/22.38.3...22.39.0) (2022-09-29)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
### Features
|
|
103
|
+
|
|
104
|
+
* Create Product Details Content component ([#258](https://github.com/vtex-sites/nextjs.store/issues/258)) ([954e4b3](https://github.com/vtex-sites/nextjs.store/commit/954e4b38934dcf254350dc1d7ad1d4a7677a0bf3))
|
|
105
|
+
|
|
106
|
+
### [22.38.3](https://github.com/vtex-sites/nextjs.store/compare/22.38.2...22.38.3) (2022-09-29)
|
|
107
|
+
|
|
108
|
+
### [22.38.2](https://github.com/vtex-sites/nextjs.store/compare/22.38.1...22.38.2) (2022-09-29)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Bug Fixes
|
|
112
|
+
|
|
113
|
+
* Wrong sku being returned for slug ([#261](https://github.com/vtex-sites/nextjs.store/issues/261)) ([b4c6911](https://github.com/vtex-sites/nextjs.store/commit/b4c6911fadac42a12f935e606f6f812316840d39))
|
|
114
|
+
|
|
115
|
+
### [22.38.1](https://github.com/vtex-sites/nextjs.store/compare/22.38.0...22.38.1) (2022-09-28)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Bug Fixes
|
|
119
|
+
|
|
120
|
+
* ImageGallery height on responsive views ([#255](https://github.com/vtex-sites/nextjs.store/issues/255)) ([8f704c2](https://github.com/vtex-sites/nextjs.store/commit/8f704c2a23eadc3e2274abc483379972fd27fa8b))
|
|
121
|
+
|
|
122
|
+
## [22.38.0](https://github.com/vtex-sites/nextjs.store/compare/22.37.1...22.38.0) (2022-09-26)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Features
|
|
126
|
+
|
|
127
|
+
* add [@cache](https://github.com/cache)Control directive to GraphQL schema ([#259](https://github.com/vtex-sites/nextjs.store/issues/259)) ([f93597d](https://github.com/vtex-sites/nextjs.store/commit/f93597d0008f2459ba0816119298f6c067f13d23))
|
|
128
|
+
|
|
129
|
+
### [22.37.1](https://github.com/vtex-sites/nextjs.store/compare/22.37.0...22.37.1) (2022-09-19)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Bug Fixes
|
|
133
|
+
|
|
134
|
+
* improve the execute server type ([#254](https://github.com/vtex-sites/nextjs.store/issues/254)) ([c35ddd9](https://github.com/vtex-sites/nextjs.store/commit/c35ddd9b9b32c11e765680cf8bdadb5a948f2462))
|
|
135
|
+
|
|
136
|
+
## [22.37.0](https://github.com/vtex-sites/nextjs.store/compare/22.36.9...22.37.0) (2022-09-16)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Features
|
|
140
|
+
|
|
141
|
+
* Fire `view_cart` event when the minicart is opened ([#247](https://github.com/vtex-sites/nextjs.store/issues/247)) ([b9c2f61](https://github.com/vtex-sites/nextjs.store/commit/b9c2f6190368d9c4200e13b697a842fce7221378))
|
|
142
|
+
|
|
143
|
+
### [22.36.9](https://github.com/vtex-sites/nextjs.store/compare/22.36.8...22.36.9) (2022-09-16)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
### Bug Fixes
|
|
147
|
+
|
|
148
|
+
* A regression with CLS on the Home page ([#251](https://github.com/vtex-sites/nextjs.store/issues/251)) ([85bb9ce](https://github.com/vtex-sites/nextjs.store/commit/85bb9ce0b85f9ca2045a73acb5cb24857ba794f7))
|
|
149
|
+
|
|
150
|
+
### [22.36.8](https://github.com/vtex-sites/nextjs.store/compare/22.36.7...22.36.8) (2022-09-15)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Bug Fixes
|
|
154
|
+
|
|
155
|
+
* `ShippingSimulation` tokens ([#250](https://github.com/vtex-sites/nextjs.store/issues/250)) ([d2fddf2](https://github.com/vtex-sites/nextjs.store/commit/d2fddf2c16df1bb69a29eaecfaaec148168b9df3))
|
|
156
|
+
|
|
157
|
+
### [22.36.7](https://github.com/vtex-sites/nextjs.store/compare/22.36.6...22.36.7) (2022-09-15)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
### Bug Fixes
|
|
161
|
+
|
|
162
|
+
* Product Details Grid ([#236](https://github.com/vtex-sites/nextjs.store/issues/236)) ([61970cc](https://github.com/vtex-sites/nextjs.store/commit/61970cc64aacc60f1d1ca042ef0e2db16bffb438))
|
|
163
|
+
|
|
164
|
+
### [22.36.6](https://github.com/vtex-sites/nextjs.store/compare/22.36.5...22.36.6) (2022-09-14)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Bug Fixes
|
|
168
|
+
|
|
169
|
+
* `view_item_list` event being fired without products ([#242](https://github.com/vtex-sites/nextjs.store/issues/242)) ([5bb098b](https://github.com/vtex-sites/nextjs.store/commit/5bb098b900596f3aaec77a4d1137adc90c1d767a))
|
|
170
|
+
|
|
171
|
+
### [22.36.5](https://github.com/vtex-sites/nextjs.store/compare/22.36.4...22.36.5) (2022-09-13)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
### Refactoring
|
|
175
|
+
|
|
176
|
+
* Extract `SkuSelector` component to `@faststore/ui` ([#240](https://github.com/vtex-sites/nextjs.store/issues/240)) ([b446979](https://github.com/vtex-sites/nextjs.store/commit/b446979695f4eb0aa952d500bb2cae4ccfd8bf28))
|
|
177
|
+
|
|
178
|
+
### [22.36.4](https://github.com/vtex-sites/nextjs.store/compare/22.36.3...22.36.4) (2022-09-13)
|
|
179
|
+
|
|
180
|
+
### [22.36.3](https://github.com/vtex-sites/nextjs.store/compare/22.36.2...22.36.3) (2022-09-13)
|
|
181
|
+
|
|
182
|
+
### [22.36.2](https://github.com/vtex-sites/nextjs.store/compare/22.36.1...22.36.2) (2022-09-12)
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### Refactoring
|
|
186
|
+
|
|
187
|
+
* Extract `CartItem` from the starter to `@faststore/ui` ([#239](https://github.com/vtex-sites/nextjs.store/issues/239)) ([0319076](https://github.com/vtex-sites/nextjs.store/commit/0319076f0dd99b5d4757dd61ce64659ad9d86792))
|
|
188
|
+
|
|
189
|
+
### [22.36.1](https://github.com/vtex-sites/nextjs.store/compare/22.36.0...22.36.1) (2022-09-12)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
### Chores
|
|
193
|
+
|
|
194
|
+
* move OrderSummary to FastStore UI ([#238](https://github.com/vtex-sites/nextjs.store/issues/238)) ([055ff8b](https://github.com/vtex-sites/nextjs.store/commit/055ff8b308adc63587661f379927e276e23cca8c))
|
|
195
|
+
|
|
196
|
+
## [22.36.0](https://github.com/vtex-sites/nextjs.store/compare/22.35.3...22.36.0) (2022-09-06)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
### Features
|
|
200
|
+
|
|
201
|
+
* Adds `Gift` component ([#234](https://github.com/vtex-sites/nextjs.store/issues/234)) ([ef78f5d](https://github.com/vtex-sites/nextjs.store/commit/ef78f5d78d29d4ece856c0cb4fdcfa16853e3d75))
|
|
202
|
+
|
|
203
|
+
### [22.35.3](https://github.com/vtex-sites/nextjs.store/compare/22.35.2...22.35.3) (2022-09-02)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Chores
|
|
207
|
+
|
|
208
|
+
* Adds props description - Hero documentation (Storybook) ([#229](https://github.com/vtex-sites/nextjs.store/issues/229)) ([8a452b8](https://github.com/vtex-sites/nextjs.store/commit/8a452b8fcf5df65b849d5aa4ae9da2c2ec31a403))
|
|
209
|
+
|
|
210
|
+
### [22.35.2](https://github.com/vtex-sites/nextjs.store/compare/22.35.1...22.35.2) (2022-08-31)
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
### Bug Fixes
|
|
214
|
+
|
|
215
|
+
* Navigation links on mobile not being clickable ([#224](https://github.com/vtex-sites/nextjs.store/issues/224)) ([6c3f85f](https://github.com/vtex-sites/nextjs.store/commit/6c3f85f0228e6a63e95f6a43578d76c3b475c594))
|
|
216
|
+
|
|
217
|
+
### [22.35.1](https://github.com/vtex-sites/nextjs.store/compare/22.35.0...22.35.1) (2022-08-30)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### Chores
|
|
221
|
+
|
|
222
|
+
* Revisit `Hero` documentation (Storybook) ([#217](https://github.com/vtex-sites/nextjs.store/issues/217)) ([397046f](https://github.com/vtex-sites/nextjs.store/commit/397046f94bd2e38181a3aeef572338d65cb0eb99))
|
|
223
|
+
|
|
224
|
+
## [22.35.0](https://github.com/vtex-sites/nextjs.store/compare/22.34.8...22.35.0) (2022-08-29)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
### Features
|
|
228
|
+
|
|
229
|
+
* Cart with session info ([#218](https://github.com/vtex-sites/nextjs.store/issues/218)) ([0f56058](https://github.com/vtex-sites/nextjs.store/commit/0f5605826840839c3091e91daf428b10a7ea9081))
|
|
230
|
+
|
|
231
|
+
### [22.34.8](https://github.com/vtex-sites/nextjs.store/compare/22.34.7...22.34.8) (2022-08-23)
|
|
232
|
+
|
|
233
|
+
### [22.34.7](https://github.com/vtex-sites/nextjs.store/compare/22.34.6...22.34.7) (2022-08-22)
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
### Chores
|
|
237
|
+
|
|
238
|
+
* Include `Button` with only an icon on Storybook ([#213](https://github.com/vtex-sites/nextjs.store/issues/213)) ([7def16b](https://github.com/vtex-sites/nextjs.store/commit/7def16b27230ed01cbd7784ebd5105810131144f))
|
|
239
|
+
|
|
240
|
+
### [22.34.6](https://github.com/vtex-sites/nextjs.store/compare/22.34.5...22.34.6) (2022-08-19)
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
### Bug Fixes
|
|
244
|
+
|
|
245
|
+
* Fix cms config ([#214](https://github.com/vtex-sites/nextjs.store/issues/214)) ([46f7b7e](https://github.com/vtex-sites/nextjs.store/commit/46f7b7eb2b1e87e46a8bf6b2a5509ecc674beda7))
|
|
246
|
+
|
|
247
|
+
### [22.34.5](https://github.com/vtex-sites/nextjs.store/compare/22.34.4...22.34.5) (2022-08-19)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
### Features
|
|
251
|
+
|
|
252
|
+
* integrate with client-cms ([#205](https://github.com/vtex-sites/nextjs.store/issues/205)) ([edb1139](https://github.com/vtex-sites/nextjs.store/commit/edb113942b1163875b4c2d97d7cd88b85c42fbfe))
|
|
253
|
+
|
|
254
|
+
### [22.34.4](https://github.com/vtex-sites/nextjs.store/compare/22.34.3...22.34.4) (2022-08-19)
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
### Chores
|
|
258
|
+
|
|
259
|
+
* Renames/Updates breakpoints tokens ([#209](https://github.com/vtex-sites/nextjs.store/issues/209)) ([10f8865](https://github.com/vtex-sites/nextjs.store/commit/10f88651df7778d2012791d3e70bc1ae048c001e))
|
|
260
|
+
|
|
261
|
+
### [22.34.3](https://github.com/vtex-sites/nextjs.store/compare/22.34.2...22.34.3) (2022-08-19)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
### Bug Fixes
|
|
265
|
+
|
|
266
|
+
* Display `SearchDropdown` correctly ([#212](https://github.com/vtex-sites/nextjs.store/issues/212)) ([33667f8](https://github.com/vtex-sites/nextjs.store/commit/33667f83807639456e08088b84e55fc2295449ed))
|
|
267
|
+
|
|
268
|
+
### [22.34.2](https://github.com/vtex-sites/nextjs.store/compare/22.34.1...22.34.2) (2022-08-19)
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
### Chores
|
|
272
|
+
|
|
273
|
+
* Renames/Updates border tokens ([#208](https://github.com/vtex-sites/nextjs.store/issues/208)) ([0d4928f](https://github.com/vtex-sites/nextjs.store/commit/0d4928fa821b9d77d2fd3318a228310bef89f03a))
|
|
274
|
+
|
|
275
|
+
### [22.34.1](https://github.com/vtex-sites/nextjs.store/compare/22.34.0...22.34.1) (2022-08-16)
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
### Features
|
|
279
|
+
|
|
280
|
+
* [Refinements] Creates `ShippingSimulation` ([#183](https://github.com/vtex-sites/nextjs.store/issues/183)) ([35aca51](https://github.com/vtex-sites/nextjs.store/commit/35aca51bbc3c1a85b3bb08a69ea47fd4cda069a7))
|
|
281
|
+
|
|
282
|
+
## [22.34.0](https://github.com/vtex-sites/nextjs.store/compare/22.33.0...22.34.0) (2022-08-16)
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
### Features
|
|
286
|
+
|
|
287
|
+
* Add new tokens to `SkuSelector` ([#202](https://github.com/vtex-sites/nextjs.store/issues/202)) ([78f3221](https://github.com/vtex-sites/nextjs.store/commit/78f3221bd14c4bbffbc7fb2a9c0bf3be33a67cf3))
|
|
288
|
+
|
|
289
|
+
## [22.33.0](https://github.com/vtex-sites/nextjs.store/compare/22.32.1...22.33.0) (2022-08-15)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
### Features
|
|
293
|
+
|
|
294
|
+
* Product releaseDate ([#207](https://github.com/vtex-sites/nextjs.store/issues/207)) ([4d32208](https://github.com/vtex-sites/nextjs.store/commit/4d32208813e0e8c00656a4a9b3fa50297b07b9a9))
|
|
295
|
+
|
|
296
|
+
### [22.32.1](https://github.com/vtex-sites/nextjs.store/compare/22.32.0...22.32.1) (2022-08-15)
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
### Chores
|
|
300
|
+
|
|
301
|
+
* Adds `InputText` documentation to storybook ([#203](https://github.com/vtex-sites/nextjs.store/issues/203)) ([b6c3ba6](https://github.com/vtex-sites/nextjs.store/commit/b6c3ba6b468338954caa8d09820465aacc20a3cf))
|
|
302
|
+
|
|
303
|
+
## [22.32.0](https://github.com/vtex-sites/nextjs.store/compare/22.31.2...22.32.0) (2022-08-12)
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
### Features
|
|
307
|
+
|
|
308
|
+
* Handles `OutOfStock` error message through `InputText`'s `error` prop ([#200](https://github.com/vtex-sites/nextjs.store/issues/200)) ([1e81207](https://github.com/vtex-sites/nextjs.store/commit/1e81207bfd165d7140aefd1e029a10e631e198b8))
|
|
309
|
+
|
|
310
|
+
### [22.31.2](https://github.com/vtex-sites/nextjs.store/compare/22.31.1...22.31.2) (2022-08-10)
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
### Bug Fixes
|
|
314
|
+
|
|
315
|
+
* Cart promotions & more ([#201](https://github.com/vtex-sites/nextjs.store/issues/201)) ([e4c3b5b](https://github.com/vtex-sites/nextjs.store/commit/e4c3b5b85d5269a442a1f7d86fb10aba7a7e3f16))
|
|
316
|
+
|
|
317
|
+
### [22.31.1](https://github.com/vtex-sites/nextjs.store/compare/22.31.0...22.31.1) (2022-08-09)
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
### Features
|
|
321
|
+
|
|
322
|
+
* Refinements on `Navbar` and `Navlinks` ([#191](https://github.com/vtex-sites/nextjs.store/issues/191)) ([f950d19](https://github.com/vtex-sites/nextjs.store/commit/f950d1987e0ee212f5cec8391798e120b82a62e5))
|
|
323
|
+
|
|
324
|
+
## [22.31.0](https://github.com/vtex-sites/nextjs.store/compare/22.30.1...22.31.0) (2022-08-08)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
### Features
|
|
328
|
+
|
|
329
|
+
* Add new tokens to `SearchInput` [FS-496] ([#189](https://github.com/vtex-sites/nextjs.store/issues/189)) ([f682090](https://github.com/vtex-sites/nextjs.store/commit/f682090dc7102cba6ee37bd38c66b88f332e805d))
|
|
330
|
+
|
|
331
|
+
### [22.30.1](https://github.com/vtex-sites/nextjs.store/compare/22.30.0...22.30.1) (2022-08-04)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Refactoring
|
|
335
|
+
|
|
336
|
+
* Import `Tiles` & `Tile` components from `@faststore/ui` ([#185](https://github.com/vtex-sites/nextjs.store/issues/185)) ([491ed3d](https://github.com/vtex-sites/nextjs.store/commit/491ed3dbfe4c8b8b3109078591c5f7fe36a37cb1))
|
|
337
|
+
|
|
338
|
+
## [22.30.0](https://github.com/vtex-sites/nextjs.store/compare/22.29.3...22.30.0) (2022-08-04)
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
### Features
|
|
342
|
+
|
|
343
|
+
* Working `SkuSelector` component ([#158](https://github.com/vtex-sites/nextjs.store/issues/158)) ([1853f57](https://github.com/vtex-sites/nextjs.store/commit/1853f5750ea5c54e1afb225126dec8f4469da331))
|
|
344
|
+
|
|
345
|
+
### [22.29.3](https://github.com/vtex-sites/nextjs.store/compare/22.29.2...22.29.3) (2022-08-04)
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
### Chores
|
|
349
|
+
|
|
350
|
+
* Updates `BannerText` content example ([#198](https://github.com/vtex-sites/nextjs.store/issues/198)) ([9501aee](https://github.com/vtex-sites/nextjs.store/commit/9501aeef875b5ca0f6dfd960841b2adf71c65d54))
|
|
351
|
+
|
|
352
|
+
### [22.29.2](https://github.com/vtex-sites/nextjs.store/compare/22.29.1...22.29.2) (2022-08-03)
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
### Bug Fixes
|
|
356
|
+
|
|
357
|
+
* Avoids performing the search when user abandons the query ([#193](https://github.com/vtex-sites/nextjs.store/issues/193)) ([a5be6cd](https://github.com/vtex-sites/nextjs.store/commit/a5be6cd7a0abcaaab388b7531c79cc0c8160e81f))
|
|
358
|
+
|
|
359
|
+
### 22.29.1 (2022-08-03)
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
### Bug Fixes
|
|
363
|
+
|
|
364
|
+
* Attempt to fix automated changelog update ([#195](https://github.com/vtex-sites/nextjs.store/issues/195)) ([0d8e616](https://github.com/vtex-sites/nextjs.store/commit/0d8e61665811c03f99b0a03dd49e96f57ed489e4))
|
|
365
|
+
* Attempt to fix the automated changelog update ([#196](https://github.com/vtex-sites/nextjs.store/issues/196)) ([c4b6091](https://github.com/vtex-sites/nextjs.store/commit/c4b609130bbeac5c7cd769814bcb76d49121f51e)), closes [/github.com/vtex-sites/gatsby.store/blob/8d1b1a5d668b11578784c29a9b257c78c86a1a65/.github/workflows/release.yml#L24-L29](https://github.com/vtex-sites//github.com/vtex-sites/gatsby.store/blob/8d1b1a5d668b11578784c29a9b257c78c86a1a65/.github/workflows/release.yml/issues/L24-L29)
|
|
366
|
+
|
|
367
|
+
### Features
|
|
368
|
+
* Applies new local tokens to `Skeleton` and its related components ([#171](https://github.com/vtex-sites/nextjs.store/pull/171))
|
|
369
|
+
* The `useNewsletter` hook ([#154](https://github.com/vtex-sites/nextjs.store/pull/154))
|
|
370
|
+
* Creates Themes doc pages on storybook ([#175](https://github.com/vtex-sites/nextjs.store/pull/175))
|
|
371
|
+
* Applies new local tokens to `SearchHistory`, `SearchTop`, `SearchDropdown` and `SearchSuggestions` ([#173](https://github.com/vtex-sites/nextjs.store/pull/173))
|
|
372
|
+
* Added a new theme for testing purposes called midnight ([#119](https://github.com/vtex-sites/nextjs.store/pull/119))
|
|
373
|
+
* Extracted all BaseStore visual to a new theme called soft-blue ([#119](https://github.com/vtex-sites/nextjs.store/pull/119))
|
|
374
|
+
* Applies CSS Modules to `Incentives` ([#155](https://github.com/vtex-sites/nextjs.store/pull/155))
|
|
375
|
+
* Applies new local tokens to `Footer` ([#155](https://github.com/vtex-sites/nextjs.store/pull/155))
|
|
376
|
+
* Adds [MSW Addon](https://storybook.js.org/addons/msw-storybook-addon) ([#166](https://github.com/vtex-sites/nextjs.store/pull/166))
|
|
377
|
+
* Applies new local tokens to `Breadcrumb` ([#162](https://github.com/vtex-sites/nextjs.store/pull/162))
|
|
378
|
+
* Applies new local tokens to `SlideOver` ([#145](https://github.com/vtex-sites/nextjs.store/pull/145))
|
|
379
|
+
* Applies new local tokens to `CartSidebar` ([#145](https://github.com/vtex-sites/nextjs.store/pull/145))
|
|
380
|
+
* Global tokens doc page on storybook ([#147](https://github.com/vtex-sites/nextjs.store/pull/147))
|
|
381
|
+
* Adds [bun](https://bun.sh/) compatiblity ([#164](https://github.com/vtex-sites/nextjs.store/pull/164))
|
|
382
|
+
* Uses new cross selling API on PDP ([#159](https://github.com/vtex-sites/nextjs.store/pull/159))
|
|
383
|
+
* Applies new local tokens to `SuggestionProductCard` ([#151](https://github.com/vtex-sites/nextjs.store/pull/151))
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
### Bug Fixes
|
|
387
|
+
|
|
388
|
+
* priceCurrency field on SEO meta data ([#161](https://github.com/vtex-sites/nextjs.store/pull/161))
|
|
389
|
+
* Transfers responsibility of `InputText`'s main attributes and callbacks to the renderer ([#163](https://github.com/vtex-sites/nextjs.store/pull/163))
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
### Chores
|
|
393
|
+
|
|
394
|
+
* `ButtonIcon` component ([#181](https://github.com/vtex-sites/nextjs.store/pull/181))
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
### Refactoring
|
|
398
|
+
|
|
399
|
+
* Cypress version from 9.5.4 to 9.6.0 to match WebOps' ([#182](https://github.com/vtex-sites/nextjs.store/pull/182))
|
|
400
|
+
* Removes Themes dependencies ([#175](https://github.com/vtex-sites/nextjs.store/pull/175))
|
|
401
|
+
* Renames and refactors the components of Search feature ([#173](https://github.com/vtex-sites/nextjs.store/pull/173))
|
|
402
|
+
* A flaky PLP infinite scroll test to be more stable ([#180](https://github.com/vtex-sites/nextjs.store/pull/180))
|
|
403
|
+
* Cypress version from 6.6.0 to 9.5.4 to match WebOps' ([#177](https://github.com/vtex-sites/nextjs.store/pull/177))
|
|
404
|
+
* Updates global tokens to follow Brandless approach ([#119](https://github.com/vtex-sites/nextjs.store/pull/119))
|
|
405
|
+
* Sync `ModalProps` children between starters ([#169](https://github.com/vtex-sites/nextjs.store/pull/169))
|
|
406
|
+
* Updates `IncentivesFooter` content ([#155](https://github.com/vtex-sites/nextjs.store/pull/155))
|
|
407
|
+
* Updated Getting Started doc page and overall improvements ([#147](https://github.com/vtex-sites/nextjs.store/pull/147))
|
|
408
|
+
* Fix storybook mock structure ([#156](https://github.com/vtex-sites/nextjs.store/pull/156))
|
|
409
|
+
|
|
410
|
+
## [22.26.0.beta] - 2022-07-01
|
|
411
|
+
|
|
412
|
+
### Added
|
|
413
|
+
|
|
414
|
+
- Applies new local tokens to `Navbar` ([#142](https://github.com/vtex-sites/nextjs.store/pull/142))
|
|
415
|
+
- Applies new local tokens to `Filter` ([#139](https://github.com/vtex-sites/nextjs.store/pull/139))
|
|
416
|
+
- Applies new local tokens to `Tiles` ([#134](https://github.com/vtex-sites/nextjs.store/pull/134))
|
|
417
|
+
- Applies new local tokens to `ProductGrid` ([#144](https://github.com/vtex-sites/nextjs.store/pull/144))
|
|
418
|
+
- Applies new local tokens to `Accordion` ([#130](https://github.com/vtex-sites/nextjs.store/pull/130))
|
|
419
|
+
- Applies new local tokens to `ImageGallery` ([#143](https://github.com/vtex-sites/nextjs.store/pull/143))
|
|
420
|
+
- Creates Doc page for `Regionalization` Feature ([#110](https://github.com/vtex-sites/nextjs.store/pull/110))
|
|
421
|
+
- Applies new local tokens to `RegionalizationBar` ([#104](https://github.com/vtex-sites/nextjs.store/pull/104))
|
|
422
|
+
- Applies new local tokens to `Modal` and `RegionalizationModal` ([#128](https://github.com/vtex-sites/nextjs.store/pull/128))
|
|
423
|
+
- PriceRange component ([#124](https://github.com/vtex-sites/nextjs.store/pull/124))
|
|
424
|
+
- PriceRange component to PLP and StoryBook ([#121](https://github.com/vtex-sites/nextjs.store/pull/121))
|
|
425
|
+
- Displays the `Sandbox` tab on the storybook along with `Viewport` toolbar and `Accessibility` checks ([#129](https://github.com/vtex-sites/nextjs.store/pull/129))
|
|
426
|
+
- The search input now includes the last 4 previously searched terms (`SearchHistory`) ([#112](https://github.com/vtex-sites/nextjs.store/pull/112)).
|
|
427
|
+
- The top 5 searches (`SuggestionsTopSearch`) are now integrated into the search input ([#112](https://github.com/vtex-sites/nextjs.store/pull/112)).
|
|
428
|
+
- Applies new local tokens to `EmptyState` ([#122](https://github.com/vtex-sites/nextjs.store/pull/122))
|
|
429
|
+
- Applies new local tokens to `Dropdown` ([#118](https://github.com/vtex-sites/nextjs.store/pull/118))
|
|
430
|
+
- Creates and styles `Dropdown` component ([#118](https://github.com/vtex-sites/nextjs.store/pull/118))
|
|
431
|
+
- 301 redirects when visiting old VTEX product routes ([#93](https://github.com/vtex-sites/nextjs.store/pull/93))
|
|
432
|
+
- Support for the new type definitions from React 18 ([#113](https://github.com/vtex-sites/nextjs.store/pull/113)).
|
|
433
|
+
|
|
434
|
+
### Changed
|
|
435
|
+
|
|
436
|
+
- Updates `facets` breakpoints tokens ([#150](https://github.com/vtex-sites/nextjs.store/pull/150))
|
|
437
|
+
- Move logo's svg code from JS into static asset ([#135](https://github.com/vtex-sites/nextjs.store/pull/135))
|
|
438
|
+
- Upgrade dependencies ([#131](https://github.com/vtex-sites/nextjs.store/pull/131))
|
|
439
|
+
- Uses `[data-fs-dropdown-button]` instead of `[data-store-dropdown-button]` to select `DropdownButton` on breadcrumb stylesheet ([#123](https://github.com/vtex-sites/nextjs.store/pull/123))
|
|
440
|
+
- Replaces `EmptyState` Related Components with Use Cases section on storybook ([#126](https://github.com/vtex-sites/nextjs.store/pull/126))
|
|
441
|
+
- Tweaks `EmptyState` token name ([#125](https://github.com/vtex-sites/nextjs.store/pull/125))
|
|
442
|
+
- Storybook's version from 6.4.20 to 6.5.9 ([#120](https://github.com/vtex-sites/nextjs.store/pull/120))
|
|
443
|
+
- Unifies `Link` component usage by adding support for both external and client-side links ([#117](https://github.com/vtex-sites/nextjs.store/pull/117))
|
|
444
|
+
|
|
445
|
+
### Fixed
|
|
446
|
+
|
|
447
|
+
- `ImageGallerySelector` scroll that isn't working on Safari ([##132](https://github.com/vtex-sites/nextjs.store/pull/#132))
|
|
448
|
+
- Some console errors when running the storybook ([#129](https://github.com/vtex-sites/nextjs.store/pull/129))
|
|
449
|
+
- The search input's dropdown not closing when a suggested product was selected ([#112](https://github.com/vtex-sites/nextjs.store/pull/112).
|
|
450
|
+
- Status code when error occurs (404/500) ([#116](https://github.com/vtex-sites/nextjs.store/pull/116))
|
|
451
|
+
|
|
452
|
+
## [22.23.0.beta] - 2022-06-10
|
|
453
|
+
|
|
454
|
+
### Added
|
|
455
|
+
|
|
456
|
+
- Creates new Storybook section `BestPractices` ([#101](https://github.com/vtex-sites/nextjs.store/pull/101))
|
|
457
|
+
- Applies new local tokens to `OutOfStock` ([#97](https://github.com/vtex-sites/nextjs.store/pull/97))
|
|
458
|
+
- Applies new local tokens to `CartItem` ([#102](https://github.com/vtex-sites/nextjs.store/pull/102))
|
|
459
|
+
- Applies new local tokens to `ProductTitle` ([#84](https://github.com/vtex-sites/nextjs.store/pull/84))
|
|
460
|
+
- Applies new local tokens to `Alert` ([#94](https://github.com/vtex-sites/nextjs.store/pull/94))
|
|
461
|
+
- Applies new local tokens to `Price` ([#80](https://github.com/vtex-sites/nextjs.store/pull/80))
|
|
462
|
+
- Creates `Radio` component ([#87](https://github.com/vtex-sites/nextjs.store/pull/87))
|
|
463
|
+
- Add Storybook documentation for `QuantitySelector` component ([#81](https://github.com/vtex-sites/nextjs.store/pull/81))
|
|
464
|
+
- Applies new local tokens to `Checkbox` ([#59](https://github.com/vtex-sites/nextjs.store/pull/59))
|
|
465
|
+
- Applies new local tokens to `Incentives` ([#56](https://github.com/vtex-sites/nextjs.store/pull/56))
|
|
466
|
+
- Adds tests for analytics events on `CartItem` ([#66](https://github.com/vtex-sites/nextjs.store/pull/66))
|
|
467
|
+
- additionalProperty to CartItem id ([#47](https://github.com/vtex-sites/nextjs.store/pull/47))
|
|
468
|
+
- Applies new local tokens to `Link` ([#17](https://github.com/vtex-sites/nextjs.store/pull/17))
|
|
469
|
+
- Applies new local tokens to `Select` ([#16](https://github.com/vtex-sites/nextjs.store/pull/16))
|
|
470
|
+
- `Toggle` component ([#15](https://github.com/vtex-sites/nextjs.store/pull/15))
|
|
471
|
+
- Break into new tasks the `useQuery` fetcher execution ([#45](https://github.com/vtex-sites/nextjs.store/pull/45))
|
|
472
|
+
- Suspend queries in the `ButtonSignIn`, `ProductShelf` and `ProductTiles` ([#45](https://github.com/vtex-sites/nextjs.store/pull/45))
|
|
473
|
+
- Uses new WebOps Incremental Static Builds ([#39](https://github.com/vtex-sites/nextjs.store/pull/39))
|
|
474
|
+
- An initial integration of the search term & product suggestions ([#33](https://github.com/vtex-sites/nextjs.store/pull/33)).
|
|
475
|
+
- `ImageGallery` to PDP ([#6](https://github.com/vtex-sites/nextjs.store/pull/6))
|
|
476
|
+
- `add_to_cart` and `remove_from_cart` analytics events to `CartItem` ([#35](https://github.com/vtex-sites/nextjs.store/pull/35))
|
|
477
|
+
- `ButtonSignInFallback` component ([#45](https://github.com/vtex-sites/nextjs.store/pull/45))
|
|
478
|
+
|
|
479
|
+
### Changed
|
|
480
|
+
|
|
481
|
+
- `SearchHistory`, `Suggestions`, and `SuggestionsTopSearch` components to reuse shared markup and styles ([#86](https://github.com/vtex-sites/nextjs.store/pull/86)).
|
|
482
|
+
- Removed CSS Modules for the components `SuggestionProductCard` and `Suggestions` for now so they match what's currently on the Gatsby starter. It will be added again later ([#86](https://github.com/vtex-sites/nextjs.store/pull/86)).
|
|
483
|
+
- Merges UIProvider and ModalProvider into a single context provider ([#100](https://github.com/vtex-sites/nextjs.store/pull/100))
|
|
484
|
+
- Synchronizes the components' code of both starters ([#103](https://github.com/vtex-sites/nextjs.store/pull/103))
|
|
485
|
+
- Uses `--docs` option on storybook script ([#107](https://github.com/vtex-sites/nextjs.store/pull/107))
|
|
486
|
+
- Improves storybook doc's table rows ([#106](https://github.com/vtex-sites/nextjs.store/pull/106))
|
|
487
|
+
- Changes weird if logic in suspense hooks ([#96](https://github.com/vtex-sites/nextjs.store/pull/96))
|
|
488
|
+
- Adjust `Alert` component for `CMS` ([#31](https://github.com/vtex-sites/nextjs.store/pull/31))
|
|
489
|
+
- Refactors `Button` component and adds Storybook doc ([#99](https://github.com/vtex-sites/nextjs.store/pull/99))
|
|
490
|
+
- Uses `Hero` component from FSUI ([#98](https://github.com/vtex-sites/nextjs.store/pull/98))
|
|
491
|
+
- Change Storybook prop descriptions for `QuantitySelector` component ([#92](https://github.com/vtex-sites/nextjs.store/pull/92))
|
|
492
|
+
- Applied styles to `Toast` using CSS Modules ([#82](https://github.com/vtex-sites/nextjs.store/pull/82))
|
|
493
|
+
- Tweaks CSS Modules pattern on `Checkbox` component [#79](https://github.com/vtex-sites/nextjs.store/pull/79)
|
|
494
|
+
- Uses CSS Modules on `ProductCard` component [#61](https://github.com/vtex-sites/nextjs.store/pull/61)
|
|
495
|
+
- Uses CSS Modules on `ProductGrid` component [#61](https://github.com/vtex-sites/nextjs.store/pull/61)
|
|
496
|
+
- Uses CSS Modules on `QuantitySelector` component [#76](https://github.com/vtex-sites/nextjs.store/pull/76)
|
|
497
|
+
- Added base files (`Getting Started`, `Theming`, `Colors`, `Typography` and `Icons`) to Storybook ([#67](https://github.com/vtex-sites/nextjs.store/pull/67))
|
|
498
|
+
- Updated tokens' naming scheme ([#67](https://github.com/vtex-sites/nextjs.store/pull/67))
|
|
499
|
+
- `OutOfStock` component ([#72](https://github.com/vtex-sites/nextjs.store/pull/72))
|
|
500
|
+
- Displays 5 products on product suggestion for better mobile experience ([#74](https://github.com/vtex-sites/nextjs.store/pull/74))
|
|
501
|
+
- LCP images to be fetched with a higher priority and improve the score ([#49](https://github.com/vtex-sites/nextjs.store/pull/49)).
|
|
502
|
+
- Uses `ProductCard` component from FSUI instead of `Card` ([#41](https://github.com/vtex-sites/nextjs.store/pull/41))
|
|
503
|
+
- `EmptyState` component to be customized with a rounded `variant` prop (`default` | `rounded`) ([#11](https://github.com/vtex-sites/nextjs.store/pull/11)).
|
|
504
|
+
- Uses camelCase classes when using CSS Modules ([#42](https://github.com/vtex-sites/nextjs.store/pull/42))
|
|
505
|
+
- `ImageGallery` now uses native scroll instead of `useSlider` ([#6](https://github.com/vtex-sites/nextjs.store/pull/6))
|
|
506
|
+
|
|
507
|
+
### Removed
|
|
508
|
+
|
|
509
|
+
- Removes unnecessary logic in suspense hooks ([#96](https://github.com/vtex-sites/nextjs.store/pull/96))
|
|
510
|
+
- `Hero` component from `components/ui` ([#98](https://github.com/vtex-sites/nextjs.store/pull/98))
|
|
511
|
+
- Unused `-default` at css variables ([#78](https://github.com/vtex-sites/nextjs.store/pull/78))
|
|
512
|
+
- The `default` nomenclature from global tokens ([#51](https://github.com/vtex-sites/nextjs.store/pull/51))
|
|
513
|
+
|
|
514
|
+
### Fixed
|
|
515
|
+
|
|
516
|
+
- Use `SpotPrice` for low/high price on `aggretateOffer` ([#111](https://github.com/vtex-sites/nextjs.store/pull/111))
|
|
517
|
+
- Fix Region Input's behavior when setting zipCode ([#108](https://github.com/vtex-sites/nextjs.store/pull/108))
|
|
518
|
+
- Lighthouse complaining about missing robots.txt ([#89](https://github.com/vtex-sites/nextjs.store/pull/89))
|
|
519
|
+
- Fix 404 being returned for existing pages when the server fails to fetch data ([#88](https://github.com/vtex-sites/nextjs.store/pull/88))
|
|
520
|
+
- Search suggestions missing locale info ([#71](https://github.com/vtex-sites/nextjs.store/pull/71))
|
|
521
|
+
- Limit custom props only for `img` and `link` tags ([#60](https://github.com/vtex-sites/nextjs.store/pull/60))
|
|
522
|
+
- Warning related to `fetchPriority` prop not being recognized as `img` and `link`'s prop ([#54](https://github.com/vtex-sites/nextjs.store/pull/54))
|
|
523
|
+
- Error on Storybook build when trying to import base CSS styles/mixins in CSS module files ([#53](https://github.com/vtex-sites/nextjs.store/pull/53))
|
|
524
|
+
- A missing gap between the Sign In link and Cart button on desktop ([#11](https://github.com/vtex-sites/nextjs.store/pull/11)).
|
|
525
|
+
- A bugged vertical gap with the `EmptyState` component inside the cart ([#11](https://github.com/vtex-sites/nextjs.store/pull/11)).
|
|
526
|
+
- Fixes Storybook build removing unused imports ([#40](https://github.com/vtex-sites/nextjs.store/pull/40))
|
|
527
|
+
|
|
528
|
+
## [22.19.0.beta] - 2022-05-06
|
|
529
|
+
|
|
530
|
+
### Added
|
|
531
|
+
|
|
532
|
+
- Applies new local tokens to `Input Text` ([#15](https://github.com/vtex-sites/nextjs.store/pull/14))
|
|
533
|
+
- New items to the checklist of the `pull_request_template.md` ([#4](https://github.com/vtex-sites/nextjs.store/pull/4))
|
|
534
|
+
- Integrates with search.query event api ([#2](https://www.github.com/vtex-sites/nextjs.store/pull/2))
|
|
535
|
+
- Applies new local tokens to `Badge` ([#462](https://www.github.com/vtex-sites/base.store/pull/462))
|
|
536
|
+
- Applies new local tokens to `Hero` ([#435](https://www.github.com/vtex-sites/base.store/pull/435))
|
|
537
|
+
- Applies new local tokens to `Quantity Selector` ([#448](https://www.github.com/vtex-sites/base.store/pull/448))
|
|
538
|
+
|
|
539
|
+
### Changed
|
|
540
|
+
|
|
541
|
+
- Renames `Badge` component prop `interactive` to `actionable` ([#20](https://github.com/vtex-sites/nextjs.store/pull/20))
|
|
542
|
+
- Accessibility tests to output what were the actual violations, not just how many ([#12](https://github.com/vtex-sites/nextjs.store/pull/12)).
|
|
543
|
+
- Changed name from BaseStore to GatsbyStore ([#497](https://github.com/vtex-sites/base.store/pull/497))
|
|
544
|
+
- `CHANGELOG.md` to link to PRs, removed a duplicated section, and fixed some markdown ([#13](https://github.com/vtex-sites/nextjs.store/pull/13))
|
|
545
|
+
- Update Regionalization input to use the `TextInput` component ([#9](https://github.com/vtex-sites/nextjs.store/pull/9))
|
|
546
|
+
- Update `RegionalizationButton` and `RegionalizationBar` to show the postal code ([#7](https://github.com/vtex-sites/nextjs.store/pull/7))
|
|
547
|
+
- Migrates to Next.JS ([#475](https://www.github.com/vtex-sites/base.store/pull/475))
|
|
548
|
+
- Applies new local tokens to `ProductShelf` component ([#464](https://www.github.com/vtex-sites/base.store/pull/464))
|
|
549
|
+
- Adds Storybook configs ([#463](https://www.github.com/vtex-sites/base.store/pull/463))
|
|
550
|
+
- Adds vtex search tracking script. With this we will populate TopSearches and Autocomplete indices ([#389](https://www.github.com/vtex-sites/base.store/pull/389))
|
|
551
|
+
- Add `RegionalizationBar`, `RegionalizationButton` components and integrates it on Mobile and Desktop devices ([#424](https://www.github.com/vtex-sites/base.store/pull/424))
|
|
552
|
+
- Applies new local tokens to `BannerText` ([#470](https://www.github.com/vtex-sites/base.store/pull/470))
|
|
553
|
+
- Update the Incentives component to handle CMS data ([#474](https://www.github.com/vtex-sites/base.store/pull/474))
|
|
554
|
+
|
|
555
|
+
### Deprecated
|
|
556
|
+
|
|
557
|
+
### Removed
|
|
558
|
+
|
|
559
|
+
- The GitHub Action that was running Lighthouse, as it was frequently failing and WebOps already runs it ([#484](https://www.github.com/vtex-sites/base.store/pull/484))
|
|
560
|
+
- Removes CSS imports of components that are not being used ([#476](https://www.github.com/vtex-sites/base.store/pull/476))
|
|
561
|
+
|
|
562
|
+
### Fixed
|
|
563
|
+
|
|
564
|
+
- Fix `ImageGallerySelector` arrow toggle according to scroll position ([#43](https://github.com/vtex-sites/nextjs.store/pull/43))
|
|
565
|
+
- Fixes `ProductCard` bordered variant ([#5](https://github.com/vtex-sites/nextjs.store/pull/5))
|
|
566
|
+
- Fix Storybook initialization ([#492](https://www.github.com/vtex-sites/base.store/pull/492))
|
|
567
|
+
- Fix styling issue on Regionalization Modal by adding the missing imports in layout.scss ([#488](https://www.github.com/vtex-sites/base.store/pull/488))
|
|
568
|
+
- Fix unused CSS problem by separating imports into different files for each page ([#473](https://www.github.com/vtex-sites/base.store/pull/473))
|
|
569
|
+
- Potential layout shift on Hero section fixed ([#472](https://www.github.com/vtex-sites/base.store/pull/472))
|
|
570
|
+
- Fix layout section spacings style ([#469](https://www.github.com/vtex-sites/base.store/pull/469))
|
|
571
|
+
|
|
572
|
+
### Security
|
|
573
|
+
|
|
574
|
+
## [0.2.2] - 2022-04-07
|
|
575
|
+
|
|
576
|
+
### Added
|
|
577
|
+
|
|
578
|
+
- Add `InputText` component ([#440](https://www.github.com/vtex-sites/base.store/pull/440))
|
|
579
|
+
|
|
580
|
+
### Changed
|
|
581
|
+
|
|
582
|
+
- Enable Stylelint for some files and apply the rules after the Theme structure ([#430](https://www.github.com/vtex-sites/base.store/pull/430))
|
|
583
|
+
- Upgrades to React18 ([#461](https://www.github.com/vtex-sites/base.store/pull/461))
|
|
584
|
+
- Uses new Automatic JSX runtime ([#460](https://www.github.com/vtex-sites/base.store/pull/460))
|
|
585
|
+
- Migrates Gatsby config files to TypeScript ([#373](https://www.github.com/vtex-sites/base.store/pull/373))
|
|
586
|
+
- Migrates to Gatsby v4 ([#456](https://www.github.com/vtex-sites/base.store/pull/456))
|
|
587
|
+
- Reduces the padding of `Breadcrumb`component ([#453](https://www.github.com/vtex-sites/base.store/pull/453))
|
|
588
|
+
|
|
589
|
+
### Fixed
|
|
590
|
+
|
|
591
|
+
- Fix `SlideOver` scroll background behavior ([#420](https://www.github.com/vtex-sites/base.store/pull/420))
|
|
592
|
+
- `SearchInput` margin left on mobile ([#457](https://www.github.com/vtex-sites/base.store/pull/457))
|
|
593
|
+
- Fixed BaseStore logo right margin on mobile devices ([#455](https://www.github.com/vtex-sites/base.store/pull/455))
|
|
594
|
+
- Fix PLP scroll bug after applying filters for the mobile version ([#454](https://www.github.com/vtex-sites/base.store/pull/454))
|
|
595
|
+
|
|
596
|
+
## [0.2.1] - 2022-04-04
|
|
597
|
+
|
|
598
|
+
### Added
|
|
599
|
+
|
|
600
|
+
- `RegionalizationModal` component ([#426](https://www.github.com/vtex-sites/base.store/pull/426))
|
|
601
|
+
- Add preloadQuery function ([#445](https://www.github.com/vtex-sites/base.store/pull/445))
|
|
602
|
+
- New file `styles/global/tokens.scss` containing all global design tokens. ([#442](https://www.github.com/vtex-sites/base.store/pull/442))
|
|
603
|
+
- Send channel string as search facet ([#428](https://www.github.com/vtex-sites/base.store/pull/428))
|
|
604
|
+
- Add the brand new BaseStore logo ([#447](https://www.github.com/vtex-sites/base.store/pull/447))
|
|
605
|
+
- Add `Dropdown` component in `Breadcrumb` component ([#436](https://www.github.com/vtex-sites/base.store/pull/436))
|
|
606
|
+
|
|
607
|
+
### Changed
|
|
608
|
+
|
|
609
|
+
- Replaces `onDismissTransition` callback by a Provider that handles opening/closing of modal/slide over's behavior ([#426](https://www.github.com/vtex-sites/base.store/pull/426))
|
|
610
|
+
- `OutOfStock` integrated with regionalization ([#441](https://www.github.com/vtex-sites/base.store/pull/441))
|
|
611
|
+
- Move ProductShelf and ProductTiles to the client side ([#431](https://www.github.com/vtex-sites/base.store/pull/431))
|
|
612
|
+
- Drop gatsby-plugin-image in favor of custom/simpler component ([#401](https://www.github.com/vtex-sites/base.store/pull/401))
|
|
613
|
+
- Replace `stylelint-config-rational-order` with `stylelint-config-recess-order` ([#415](https://www.github.com/vtex-sites/base.store/pull/415))
|
|
614
|
+
- Simplify filters component by using `useReducer` instead of multiple `useState` ([#422](https://www.github.com/vtex-sites/base.store/pull/422))
|
|
615
|
+
- Applies new local tokens to `ProductCard`. ([#425](https://www.github.com/vtex-sites/base.store/pull/425))
|
|
616
|
+
- `OutOfStock` style and success message. ([#399](https://www.github.com/vtex-sites/base.store/pull/399))
|
|
617
|
+
- Apply new local tokens to `Button` ([#442](https://www.github.com/vtex-sites/base.store/pull/442))
|
|
618
|
+
- Gather all `Button` variants in the folder (`ButtonBuy`, `ButtonLink`, `ButtonIcon`, `ButtonSignIn`) ([#442](https://www.github.com/vtex-sites/base.store/pull/442))
|
|
619
|
+
|
|
620
|
+
### Fixed
|
|
621
|
+
|
|
622
|
+
- CSS Warnings ([#434](https://www.github.com/vtex-sites/base.store/pull/434))
|
|
623
|
+
- Fix alert banner colors ([#442](https://www.github.com/vtex-sites/base.store/pull/442))
|
|
624
|
+
|
|
625
|
+
## [0.2.0] - 2022-04-01
|
|
626
|
+
|
|
627
|
+
### Added
|
|
628
|
+
|
|
629
|
+
- Add hideUnavailableItems at store.config ([#400](https://www.github.com/vtex-sites/base.store/pull/400))
|
|
630
|
+
- Sections component with `content-visibility: auto` ([#368](https://www.github.com/vtex-sites/base.store/pull/368))
|
|
631
|
+
- Webpack Bundle analyzer ([#357](https://www.github.com/vtex-sites/base.store/pull/357))
|
|
632
|
+
- `GatsbyLink` to `Link` ui component. ([#329](https://www.github.com/vtex-sites/base.store/pull/329))
|
|
633
|
+
- `Skeleton` loading components. ([#317](https://www.github.com/vtex-sites/base.store/pull/317))
|
|
634
|
+
- `SuggestionsTopSearch` component ([#355](https://www.github.com/vtex-sites/base.store/pull/355))
|
|
635
|
+
- `PostalCodeInput` component and `usePostalCode` hook. ([#322](https://www.github.com/vtex-sites/base.store/pull/322))
|
|
636
|
+
- `SuggestionProductCard` component. ([#359](https://www.github.com/vtex-sites/base.store/pull/359))
|
|
637
|
+
- `EmptyState` component. ([#367](https://www.github.com/vtex-sites/base.store/pull/367))
|
|
638
|
+
- `EmptyState` at the `ProductGallery` section. ([#367](https://www.github.com/vtex-sites/base.store/pull/367))
|
|
639
|
+
- `IconSVG` component to load SVG Icons. ([#378](https://www.github.com/vtex-sites/base.store/pull/378))
|
|
640
|
+
- `Suggestions` component. ([#372](https://www.github.com/vtex-sites/base.store/pull/372))
|
|
641
|
+
- `SearchHistory` component. ([#391](https://www.github.com/vtex-sites/base.store/pull/391))
|
|
642
|
+
- `Badge` interactive variation. ([#396](https://www.github.com/vtex-sites/base.store/pull/396))
|
|
643
|
+
- New folder `styles/global` containing all global styles. ([#407](https://www.github.com/vtex-sites/base.store/pull/407))
|
|
644
|
+
- Session mutation when the user enters a new postal code. ([#392](https://www.github.com/vtex-sites/base.store/pull/392))
|
|
645
|
+
|
|
646
|
+
### Changed
|
|
647
|
+
|
|
648
|
+
- Move inline styles to external stylesheet to improve TBT ([#408](https://www.github.com/vtex-sites/base.store/pull/408))
|
|
649
|
+
- Changed ProductGallery and EmptyGallery styles to make the search results page ([#387](https://www.github.com/vtex-sites/base.store/pull/387))
|
|
650
|
+
- Moved all icons to use Icon component ([#386](https://www.github.com/vtex-sites/base.store/pull/386))
|
|
651
|
+
- Moved common/IconsSVG to ui/Icons ([#386](https://www.github.com/vtex-sites/base.store/pull/386))
|
|
652
|
+
- Moved EmptyState from common to ui folder ([#386](https://www.github.com/vtex-sites/base.store/pull/386))
|
|
653
|
+
- Removed fit-in property from image component ([#375](https://www.github.com/vtex-sites/base.store/pull/375))
|
|
654
|
+
- Sections are now self-contained ([#371](https://www.github.com/vtex-sites/base.store/pull/371))
|
|
655
|
+
- Moves icons to `/static/icons` folder ([#357](https://www.github.com/vtex-sites/base.store/pull/357))
|
|
656
|
+
- Replaces page type redirects, a.k.a. `/account`, `/login` to a corresponding file in `/pages` folder ([#310](https://www.github.com/vtex-sites/base.store/pull/310))
|
|
657
|
+
- Replaces `let` declarations for `useRef` for better React compatibility ([#319](https://www.github.com/vtex-sites/base.store/pull/319))
|
|
658
|
+
- Refactors cart sidebar ([#325](https://www.github.com/vtex-sites/base.store/pull/325))
|
|
659
|
+
- `BreadcrumbWrapper` from components/ui folder to `Breadcrumb` at components/sections ([#326](https://www.github.com/vtex-sites/base.store/pull/326))
|
|
660
|
+
- Replace relative stylesheets imports with absolute path ([#349](https://www.github.com/vtex-sites/base.store/pull/349))
|
|
661
|
+
- Moves some `Filter` component logic to the API ([#321](https://www.github.com/vtex-sites/base.store/pull/321))
|
|
662
|
+
- `Sort` and `Button Filter` (Mobile) `Skeleton's` loading criteria ([#362](https://www.github.com/vtex-sites/base.store/pull/362))
|
|
663
|
+
- Keep the latest `Filter` component state (Mobile) ([#362](https://www.github.com/vtex-sites/base.store/pull/362))
|
|
664
|
+
- Implements the expanded mode of `Searchbar` in mobile devices. ([#369](https://www.github.com/vtex-sites/base.store/pull/369))
|
|
665
|
+
- Updates Lighthouse and Cypress URL with valid product links ([#369](https://www.github.com/vtex-sites/base.store/pull/369))
|
|
666
|
+
- `Hero` image responsive sizes for mobile and desktop. ([#363](https://www.github.com/vtex-sites/base.store/pull/363))
|
|
667
|
+
- `Badge` variants names ([#381](https://www.github.com/vtex-sites/base.store/pull/381))
|
|
668
|
+
- `Tiles` and `Tile` to use semantic list elements. ([#383](https://www.github.com/vtex-sites/base.store/pull/383))
|
|
669
|
+
- `postalCode` from storage to Session context. ([#388](https://www.github.com/vtex-sites/base.store/pull/388))
|
|
670
|
+
- Updates all tokens naming and simplifies the global styles. ([#407](https://www.github.com/vtex-sites/base.store/pull/407))
|
|
671
|
+
- Changes `theme.scss` file to `global/tokens.scss`. ([#407](https://www.github.com/vtex-sites/base.store/pull/407))
|
|
672
|
+
|
|
673
|
+
### Deprecated
|
|
674
|
+
|
|
675
|
+
- useWindowDimensions hook ([#328](https://www.github.com/vtex-sites/base.store/pull/328))
|
|
676
|
+
|
|
677
|
+
### Removed
|
|
678
|
+
|
|
679
|
+
- Frontend computation in favor of backend processing ([#411](https://www.github.com/vtex-sites/base.store/pull/411))
|
|
680
|
+
- Removing hooks folder and migrating these hooks to sdk ou inline them on components ([#377](https://www.github.com/vtex-sites/base.store/pull/377))
|
|
681
|
+
- gatsby-plugin-offline due to CLS on recurrent users ([#348](https://www.github.com/vtex-sites/base.store/pull/348))
|
|
682
|
+
- useWindowDimensions hook ([#340](https://www.github.com/vtex-sites/base.store/pull/340))
|
|
683
|
+
- Removes unused `<FacetedFilter/>` component ([#345](https://www.github.com/vtex-sites/base.store/pull/345))
|
|
684
|
+
- Unnecessary map at hooks ([#323](https://www.github.com/vtex-sites/base.store/pull/323))
|
|
685
|
+
- API style redirects from `/_v/private/graphql` since they have no effect ([#310](https://www.github.com/vtex-sites/base.store/pull/310))
|
|
686
|
+
- Display box from `<ProductCard/>` component ([#354](https://www.github.com/vtex-sites/base.store/pull/354))
|
|
687
|
+
- `useTotalCount` hook ([#362](https://www.github.com/vtex-sites/base.store/pull/362))
|
|
688
|
+
- Phosphor-react library ([#378](https://www.github.com/vtex-sites/base.store/pull/378))
|
|
689
|
+
- `main::store::postalCode` value from storage. ([#388](https://www.github.com/vtex-sites/base.store/pull/388))
|
|
690
|
+
|
|
691
|
+
### Fixed
|
|
692
|
+
|
|
693
|
+
- Unnecessary app rerender after login feature ([#418](https://www.github.com/vtex-sites/base.store/pull/418))
|
|
694
|
+
- Fix typos found across the codebase ([#412](https://www.github.com/vtex-sites/base.store/pull/412))
|
|
695
|
+
- Fix border style for Product Card and its skeleton on mobile ([#379](https://www.github.com/vtex-sites/base.store/pull/379))
|
|
696
|
+
- The divisor for the `Breadcrumb` component not rendering valid HTML. ([#365](https://www.github.com/vtex-sites/base.store/pull/365))
|
|
697
|
+
- useBuyButton/useRemoveButton hooks with inconsistent typings/behaviors ([#360](https://www.github.com/vtex-sites/base.store/pull/360))
|
|
698
|
+
- React tree re-rendering ([#328](https://www.github.com/vtex-sites/base.store/pull/328))
|
|
699
|
+
- Footer rendering pipeline ([#328](https://www.github.com/vtex-sites/base.store/pull/328))
|
|
700
|
+
- Scroll lock when transitioning pages on mobile via `SlideOver` component navigation ([#344](https://www.github.com/vtex-sites/base.store/pull/344))
|
|
701
|
+
- Filter Button specificity on desktop ([#346](https://www.github.com/vtex-sites/base.store/pull/346))
|
|
702
|
+
- Filter facets are not being selected on mobile ([#380](https://www.github.com/vtex-sites/base.store/pull/380))
|
|
703
|
+
- `CartItem` image size and truncate long product's title ([#405](https://www.github.com/vtex-sites/base.store/pull/405))
|
|
704
|
+
- Entrusting the definition of the cursor property to the browser ([#419](https://www.github.com/vtex-sites/base.store/pull/419))
|
|
705
|
+
|
|
706
|
+
## [0.1.1] - 2022-02-07
|
|
707
|
+
|
|
708
|
+
### Added
|
|
709
|
+
|
|
710
|
+
- Feat: Style IconButton ([#290](https://www.github.com/vtex-sites/base.store/pull/290))
|
|
711
|
+
|
|
712
|
+
### Changed
|
|
713
|
+
|
|
714
|
+
- Chore: tweaks search page ([#293](https://www.github.com/vtex-sites/base.store/pull/293))
|
|
715
|
+
- Extract UISelect from Sort to its own component ([#299](https://www.github.com/vtex-sites/base.store/pull/299))
|
|
716
|
+
- Feat: lazy loading and improvements (CLS) ([#300](https://www.github.com/vtex-sites/base.store/pull/300))
|
|
717
|
+
|
|
718
|
+
### Fixed
|
|
719
|
+
|
|
720
|
+
- SonarQube warning ([#297](https://www.github.com/vtex-sites/base.store/pull/297))
|
|
721
|
+
- General fixes on Beta component ([#287](https://www.github.com/vtex-sites/base.store/pull/287))
|
|
722
|
+
- Fix/Adjust inappropriate rerenders ([#304](https://www.github.com/vtex-sites/base.store/pull/304))
|
|
723
|
+
|
|
724
|
+
## [0.1.0] - 2022-02-01
|
|
725
|
+
|
|
726
|
+
Version released for the Closed Beta
|
|
727
|
+
|
|
728
|
+
### Added
|
|
729
|
+
|
|
730
|
+
- This changelog
|