diff --git a/.changeset/silver-gorillas-look.md b/.changeset/silver-gorillas-look.md deleted file mode 100644 index 73489a89..00000000 --- a/.changeset/silver-gorillas-look.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -'@giphy/react-components': major ---- - -Responsive `Grid`: - -Rewrite grid logic to support a `percentageWidth`, allowing the grid to be rendereded on the server. -The `width` property still determines the rendition selection of the grid items, but the grid will scale to the percentage value provided (e.g. `100%`) - -Remove `useTransform` property: - -This was used to layout grid items and has been replaced by a new strategy - - -`Gif`: - -Add `lazyLoad` property to Gif component, default true. If set to false, on screen logic won't be run and the img will always show. Should be used in SSR. - - -`Loader` height: - -The loader style was using a padding to allow for its height, this was a bad approach as padding is not applied in flex containers. diff --git a/packages/react-components/CHANGELOG.md b/packages/react-components/CHANGELOG.md index c2166799..be10de77 100644 --- a/packages/react-components/CHANGELOG.md +++ b/packages/react-components/CHANGELOG.md @@ -1,5 +1,26 @@ ## @giphy/react-components +## 10.0.0 + +### Major Changes + +- 0384eaf: Responsive `Grid`: + + Rewrite grid logic to support a `percentageWidth`, allowing the grid to be rendereded on the server. + The `width` property still determines the rendition selection of the grid items, but the grid will scale to the percentage value provided (e.g. `100%`) + + Remove `useTransform` property: + + This was used to layout grid items and has been replaced by a new strategy + + `Gif`: + + Add `lazyLoad` property to Gif component, default true. If set to false, on screen logic won't be run and the img will always show. Should be used in SSR. + + `Loader` height: + + The loader style was using a padding to allow for its height, this was a bad approach as padding is not applied in flex containers. + ## 9.8.0 ### Minor Changes diff --git a/packages/react-components/package.json b/packages/react-components/package.json index 44b8dd68..5b09ffdc 100644 --- a/packages/react-components/package.json +++ b/packages/react-components/package.json @@ -47,7 +47,7 @@ "vite": "^6.0.11" }, "name": "@giphy/react-components", - "version": "9.8.0", + "version": "10.0.0", "description": "A lightweight set of components, focused on easy-of-use and performance.", "homepage": "https://github.com/Giphy/giphy-js/tree/master/packages/react-components", "main": "dist/index.js",