diff --git a/CHANGELOG.md b/CHANGELOG.md index dcb7f8ba7..38d21c079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## react-components 5.34.6 (2024-03-28) + +- [Logo] Add standalone Puppet logo (by [@petergmurphy](https://github.com/petergmurphy)) + +## react-layouts 2.0.0-alpha.10 (2024-03-28) + +- [Logo] Fix Authentication component styling issue. This change resolves the problem where the Authentication component's +styling was not being applied due to the stylesheet not being bundled. (by [@petergmurphy](https://github.com/petergmurphy)) +- [Logo] Change the title of the Authentication component from a `h5` to a `h3` element. (by [@petergmurphy](https://github.com/petergmurphy)) + ## react-components 5.34.5 (2024-03-25) - [Logo] Bug fixing continuous delivery logo viewBox size (by [@danadoherty639](https://github.com/danadoherty639)) diff --git a/packages/react-components/package.json b/packages/react-components/package.json index b4735a740..67ff3a76d 100644 --- a/packages/react-components/package.json +++ b/packages/react-components/package.json @@ -1,6 +1,6 @@ { "name": "@puppet/react-components", - "version": "5.34.5", + "version": "5.34.6", "author": "Puppet, Inc.", "license": "Apache-2.0", "main": "build/library.js", diff --git a/packages/react-components/source/react/library/logo/Logo.js b/packages/react-components/source/react/library/logo/Logo.js index 75141949b..407ad9bc0 100644 --- a/packages/react-components/source/react/library/logo/Logo.js +++ b/packages/react-components/source/react/library/logo/Logo.js @@ -15,6 +15,7 @@ export const SUPPORTED_LOGOS = [ 'comply', 'security-compliance-management', 'continuous-delivery', + 'puppet-standalone', ]; const propTypes = { diff --git a/packages/react-components/source/react/library/logo/Logo.md b/packages/react-components/source/react/library/logo/Logo.md index 6ddb3b4f4..d75e26ec1 100644 --- a/packages/react-components/source/react/library/logo/Logo.md +++ b/packages/react-components/source/react/library/logo/Logo.md @@ -26,6 +26,7 @@ The standard style variation exists for light backgrounds. + ``` @@ -59,6 +60,7 @@ This style variation exists for dark backgrounds, where the Puppet logo uses whi style={{ margin: 5 }} /> + ``` diff --git a/packages/react-components/source/react/library/logo/logos.js b/packages/react-components/source/react/library/logo/logos.js index d4df3e875..a48f0e713 100644 --- a/packages/react-components/source/react/library/logo/logos.js +++ b/packages/react-components/source/react/library/logo/logos.js @@ -413,6 +413,57 @@ const continuousDelivery = () => ({ ), }); +const puppetStandalone = () => ({ + viewBox: '0 0 714.9 179', + svg: ( + <> + + + + + + + + + + + ), +}); + const logos = { 'container-registry': { full: containerRegistryFull, @@ -465,6 +516,10 @@ const logos = { full: continuousDelivery, bug: puppetBug, }, + 'puppet-standalone': { + full: puppetStandalone, + bug: puppetBug, + }, }; export default logos; diff --git a/packages/react-layouts/package.json b/packages/react-layouts/package.json index bec3be13d..2df1d66e9 100644 --- a/packages/react-layouts/package.json +++ b/packages/react-layouts/package.json @@ -1,6 +1,6 @@ { "name": "@puppet/react-layouts", - "version": "2.0.0-alpha.9", + "version": "2.0.0-alpha.10", "author": "Puppet, Inc.", "license": "Apache-2.0", "main": "dist/react-layouts.js", diff --git a/packages/react-layouts/src/Authentication/Authentication.jsx b/packages/react-layouts/src/Authentication/Authentication.jsx index 011397a27..24f1a1819 100644 --- a/packages/react-layouts/src/Authentication/Authentication.jsx +++ b/packages/react-layouts/src/Authentication/Authentication.jsx @@ -55,7 +55,7 @@ const Authentication = ({ />
- {title} + {title}
{subtitle}
{children}