From 481822774d391729f9112f3c53cd7e4e3391b280 Mon Sep 17 00:00:00 2001 From: sarahgm <38324334+sarahgm@users.noreply.github.com> Date: Thu, 10 Oct 2024 13:30:06 +0200 Subject: [PATCH] docs([DST-570]): Added "Whats new" pages to our docs (#4186) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * try things out * trying stuff out - chaos * generate folder structure for changesets * add comments * improved structure of generated folders * save all the changelogs * having changelog navigatuon * save all changes * changed heading * update changelogs correctly * update to have frontmatter structure * fix layout * add caption * split the heading * save changes * save * update the script * days difference * have badges in frontmatter * have badges * clean up * rename function * add externallinks * try stuff * change function * change function * have nav * update * remove everything with changelogpage * save * save * fix dates * add docs changelog * rename to whats new * change order * overview page * make it easier * add slug page for blog posts * adjusted the pages * update in package json * save pages * save * fix navigation * fix command menu * update * padding * update date format * Fix code scanning alert no. 77: Incomplete string escaping or encoding Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * update * mybe better * Create modern-dancers-knock.md * try * hä * try out stuff with blog posts * try out stuff * test * last test * change back * update * maybe this helps * change back * update structure of how to generate routes for bllog dir * rename to releases * contentlayer * update release dir * Create friendly-plants-check.md * add metadata * Delete .changeset/modern-dancers-knock.md * hmmm revert * update padding for last update * update * change to ssr * metadata * add read more links * fix links in teaser cards * improve withh stacks * make changes on build script * update release files * update latestpost * update changeset * change back * update link buttons * add caption before post * update read more links * update link * rename to releases * update link * fix layout * change caption * add heading for changelog teaser cards * change caption in teaser list * remove github link from changelogs * Update overview.mdx * update --------- Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: Sebastian Sebald --- .changeset/config.json | 2 +- .changeset/friendly-plants-check.md | 8 + docs/CHANGELOG.md | 2 +- docs/app/[...slug]/layout.tsx | 29 +- docs/app/[...slug]/page.tsx | 19 +- docs/app/_components/CommandItems.tsx | 2 + docs/app/_components/SiteNavigation.tsx | 4 +- docs/app/releases/blog/[...slug]/layout.tsx | 10 + docs/app/releases/blog/[...slug]/page.tsx | 78 + docs/content/releases/blog-overview.mdx | 8 + .../releases/blog/release-2024-09-20.mdx | 17 + .../releases/blog/release-2024-09-26.mdx | 66 + .../releases/config/eslint/release.mdx | 175 ++ docs/content/releases/config/jest/release.mdx | 145 ++ .../releases/config/prettier/release.mdx | 17 + .../releases/config/storybook/release.mdx | 488 +++++ .../releases/config/tsconfig/release.mdx | 25 + docs/content/releases/docs/release.mdx | 834 ++++++++ docs/content/releases/overview.mdx | 296 +++ .../releases/packages/components/release.mdx | 1838 +++++++++++++++++ .../releases/packages/icons/release.mdx | 790 +++++++ .../releases/packages/system/release.mdx | 587 ++++++ .../packages/theme-preset/release.mdx | 392 ++++ .../releases/packages/types/release.mdx | 131 ++ .../releases/themes/theme-b2b/release.mdx | 668 ++++++ .../releases/themes/theme-core/release.mdx | 1217 +++++++++++ .../releases/themes/theme-docs/release.mdx | 92 + docs/contentlayer.config.ts | 33 +- docs/lib/config.ts | 22 + docs/package.json | 5 +- docs/scripts/build-changelog.mjs | 104 + docs/ui/blog/LatestPost.tsx | 39 + docs/ui/blog/PostList.tsx | 34 + docs/ui/layout/DefaultLayout.tsx | 31 + .../_components => ui/layout}/Footer.tsx | 0 .../layout}/SectionNavigation.tsx | 2 +- docs/ui/mdx.tsx | 8 +- docs/ui/navigation/Navigation.tsx | 32 +- package.json | 2 +- packages/components/CHANGELOG.md | 96 +- packages/icons/CHANGELOG.md | 12 +- packages/system/CHANGELOG.md | 18 +- themes/theme-b2b/CHANGELOG.md | 4 +- themes/theme-core/CHANGELOG.md | 22 +- 44 files changed, 8267 insertions(+), 137 deletions(-) create mode 100644 .changeset/friendly-plants-check.md create mode 100644 docs/app/releases/blog/[...slug]/layout.tsx create mode 100644 docs/app/releases/blog/[...slug]/page.tsx create mode 100644 docs/content/releases/blog-overview.mdx create mode 100644 docs/content/releases/blog/release-2024-09-20.mdx create mode 100644 docs/content/releases/blog/release-2024-09-26.mdx create mode 100644 docs/content/releases/config/eslint/release.mdx create mode 100644 docs/content/releases/config/jest/release.mdx create mode 100644 docs/content/releases/config/prettier/release.mdx create mode 100644 docs/content/releases/config/storybook/release.mdx create mode 100644 docs/content/releases/config/tsconfig/release.mdx create mode 100644 docs/content/releases/docs/release.mdx create mode 100644 docs/content/releases/overview.mdx create mode 100644 docs/content/releases/packages/components/release.mdx create mode 100644 docs/content/releases/packages/icons/release.mdx create mode 100644 docs/content/releases/packages/system/release.mdx create mode 100644 docs/content/releases/packages/theme-preset/release.mdx create mode 100644 docs/content/releases/packages/types/release.mdx create mode 100644 docs/content/releases/themes/theme-b2b/release.mdx create mode 100644 docs/content/releases/themes/theme-core/release.mdx create mode 100644 docs/content/releases/themes/theme-docs/release.mdx create mode 100644 docs/scripts/build-changelog.mjs create mode 100644 docs/ui/blog/LatestPost.tsx create mode 100644 docs/ui/blog/PostList.tsx create mode 100644 docs/ui/layout/DefaultLayout.tsx rename docs/{app/[...slug]/_components => ui/layout}/Footer.tsx (100%) rename docs/{app/[...slug]/_components => ui/layout}/SectionNavigation.tsx (97%) diff --git a/.changeset/config.json b/.changeset/config.json index c70f20977f..9cdc000831 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -3,7 +3,7 @@ "baseBranch": "main", "access": "public", "changelog": [ - "@changesets/changelog-github", + "@changesets/changelog-git", { "repo": "marigold-ui/marigold" } ], "fixed": [["@marigold/system", "@marigold/components", "@marigold/docs"]] diff --git a/.changeset/friendly-plants-check.md b/.changeset/friendly-plants-check.md new file mode 100644 index 0000000000..056695cefc --- /dev/null +++ b/.changeset/friendly-plants-check.md @@ -0,0 +1,8 @@ +--- +"@marigold/docs": patch +--- + +docs([DST-570]): Added "Release" pages to our documentation + +We now create for each changelog a page on our documentation, it is also possible to create release blog posts. +With these pages we improve communication, enhance user experience, and ensure all users have easy access to the latest updates in one central location. diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 294226cef0..b0863a6c5f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -124,7 +124,7 @@ ### Patch Changes -- [#3939](https://github.com/marigold-ui/marigold/pull/3939) [`2cde433`](https://github.com/marigold-ui/marigold/commit/2cde433e21bc49e378b96c9d812baf21914cf382) Thanks [@sarahgm](https://github.com/sarahgm)! - feat[DST-481]: rename in +- [#3939](https://github.com/marigold-ui/marigold/pull/3939) [`2cde433`](https://github.com/marigold-ui/marigold/commit/2cde433e21bc49e378b96c9d812baf21914cf382) Thanks [@sarahgm](https://github.com/sarahgm)! - feat[DST-481]: rename `` in `` - [#3967](https://github.com/marigold-ui/marigold/pull/3967) [`0773aa8`](https://github.com/marigold-ui/marigold/commit/0773aa8cd6ee71faf4f0d04f80f33cbe7fc56202) Thanks [@sebald](https://github.com/sebald)! - refa: Update TypeScript and adjust `` props diff --git a/docs/app/[...slug]/layout.tsx b/docs/app/[...slug]/layout.tsx index 4881b34139..1cfb21a76c 100644 --- a/docs/app/[...slug]/layout.tsx +++ b/docs/app/[...slug]/layout.tsx @@ -1,35 +1,10 @@ import type { PropsWithChildren } from 'react'; -import { Footer } from './_components/Footer'; -import { SectionNavigation } from './_components/SectionNavigation'; +import { DefaultLayout } from '@/ui/layout/DefaultLayout'; // Layout // --------------- const Layout = ({ children }: PropsWithChildren) => ( - <> - -
- {children} -
-
- + {children} ); export default Layout; diff --git a/docs/app/[...slug]/page.tsx b/docs/app/[...slug]/page.tsx index 10738d9f0b..caf60c2b73 100644 --- a/docs/app/[...slug]/page.tsx +++ b/docs/app/[...slug]/page.tsx @@ -16,6 +16,7 @@ interface ContentPageProps { async function getPageFromParams(params: ContentPageProps['params']) { const slug = params?.slug?.join('/'); const page = allContentPages.find(page => page.slug === slug); + return page || null; } @@ -23,6 +24,7 @@ export async function generateMetadata({ params, }: ContentPageProps): Promise { const page = await getPageFromParams(params); + return page ? { title: page.title, @@ -57,7 +59,6 @@ export async function generateStaticParams(): Promise< export default async function ContentPage({ params }: ContentPageProps) { const page = await getPageFromParams(params); - if (!page) { notFound(); } @@ -69,14 +70,16 @@ export default async function ContentPage({ params }: ContentPageProps) {
{page.caption}
- -
-
- -
-
- Last update: + +
+ Last update: +
+ {page.toc === false ? null : ( +
+ +
+ )} ); } diff --git a/docs/app/_components/CommandItems.tsx b/docs/app/_components/CommandItems.tsx index 1d2d1eb3d5..a2b0c08eff 100644 --- a/docs/app/_components/CommandItems.tsx +++ b/docs/app/_components/CommandItems.tsx @@ -225,6 +225,7 @@ export const PagesItem = ({ setPages, }: PagesItemProps) => { const goto = useGoto(setOpen, setPages); + return ( {items.map(page => ( @@ -233,6 +234,7 @@ export const PagesItem = ({ className={cn(classNames.item, 'group')} key={page.slug} value={page.slug} + keywords={[page.title]} onSelect={() => goto({ slug: page.slug })} > diff --git a/docs/app/_components/SiteNavigation.tsx b/docs/app/_components/SiteNavigation.tsx index eacd083ee7..e561ed91de 100644 --- a/docs/app/_components/SiteNavigation.tsx +++ b/docs/app/_components/SiteNavigation.tsx @@ -20,8 +20,8 @@ export const SiteNavigation = () => { variant="main" className="text-sm font-medium lg:px-1" key={index} - current={pathname.includes(slug)} - href={link?.href ?? '/'} + current={pathname.startsWith(`/${slug}`)} + href={link?.href ?? `/${slug}`} > {name} diff --git a/docs/app/releases/blog/[...slug]/layout.tsx b/docs/app/releases/blog/[...slug]/layout.tsx new file mode 100644 index 0000000000..bdeb7c9b1d --- /dev/null +++ b/docs/app/releases/blog/[...slug]/layout.tsx @@ -0,0 +1,10 @@ +import { PropsWithChildren } from 'react'; +import { DefaultLayout } from '@/ui/layout/DefaultLayout'; + +// Layout +// --------------- +const Layout = ({ children }: PropsWithChildren) => ( + {children} +); + +export default Layout; diff --git a/docs/app/releases/blog/[...slug]/page.tsx b/docs/app/releases/blog/[...slug]/page.tsx new file mode 100644 index 0000000000..44e279f358 --- /dev/null +++ b/docs/app/releases/blog/[...slug]/page.tsx @@ -0,0 +1,78 @@ +import { baseUrl } from '@/lib/config'; +import { DateFormat, Headline } from '@/ui'; +import { allBlogs } from 'contentlayer/generated'; +import { Metadata } from 'next'; +import { notFound } from 'next/navigation'; +import { TocContainer } from '@/ui/Toc'; +import { Mdx } from '@/ui/mdx'; + +interface BlogPostProps { + params: { + slug: string[]; + }; +} +async function getPostFromParams(params: BlogPostProps['params']) { + const fullPath = `releases/blog/${params.slug}`; + const currentPost = allBlogs.find(post => post.slug === fullPath); + + return currentPost || null; +} + +export async function generateMetadata({ + params, +}: BlogPostProps): Promise { + const post = await getPostFromParams(params); + + return post + ? { + title: post.title, + description: post.date, + applicationName: 'Marigold Design System', + appleWebApp: { + title: 'Marigold Design System', + }, + metadataBase: new URL(baseUrl), + openGraph: { + siteName: 'Marigold Design System', + title: post.title, + description: post.date, + images: `${baseUrl}/api/og.png?title=${encodeURIComponent(post.title)}`, + type: 'website', + }, + twitter: { + card: 'summary_large_image', + creator: '@reservix', + }, + } + : {}; +} + +const BlogPost = async ({ params }: BlogPostProps) => { + const currentPost = await getPostFromParams(params); + + if (!currentPost) { + notFound(); + } + + return ( +
+
+ {currentPost.title} +
+ +
+
+
+ +
+
+ +
+
+ ); +}; + +export default BlogPost; diff --git a/docs/content/releases/blog-overview.mdx b/docs/content/releases/blog-overview.mdx new file mode 100644 index 0000000000..019a3b9727 --- /dev/null +++ b/docs/content/releases/blog-overview.mdx @@ -0,0 +1,8 @@ +--- +title: Releases +caption: Find all release blogs. +order: 2 +badge: new +--- + + diff --git a/docs/content/releases/blog/release-2024-09-20.mdx b/docs/content/releases/blog/release-2024-09-20.mdx new file mode 100644 index 0000000000..fcb6af8cd9 --- /dev/null +++ b/docs/content/releases/blog/release-2024-09-20.mdx @@ -0,0 +1,17 @@ +--- +title: 'Watch out! Breaking Change incoming: Removing HTML-Properties' +date: 2024-07-19 +type: Blog +--- + +The Design System team is currently focusing on optimising the Marigold documentation, which includes adding new and higher quality content for users as well as cleaning up and removing outdated content. + +## Breaking Change + +We are removing all HTML properties on our Marigold components, as these should no longer be used in the future. If a user has used the HTML properties when using Marigold, he oder she must rewrite them after the breaking change. If this is not the case you can sit back and relax. + +As part of this process, the upcoming Marigold release will remove content from the documentation that is not used and should no longer be used. + +Removing content from the Marigold documentation is particularly necessary if it is not relevant for our users. This ensures that the documentation is not unnecessarily "bloated" with content and thus creates more space for content that our users really need and can find more quickly. + +In addition, allowing the use of HTML properties was incorrectly authorised by the Design System Team in the past. This error is hereby corrected to prevent incorrect use of Marigold components in the future. diff --git a/docs/content/releases/blog/release-2024-09-26.mdx b/docs/content/releases/blog/release-2024-09-26.mdx new file mode 100644 index 0000000000..a8549d305a --- /dev/null +++ b/docs/content/releases/blog/release-2024-09-26.mdx @@ -0,0 +1,66 @@ +--- +title: Big news from Marigold +date: 2024-09-26 +type: Blog +changed: + - components/content/card + - component/layout/inline + - component/layout/stack +--- + +We’re thrilled to introduce Marigold UI v2.0—a major upgrade designed to make building beautiful, accessible interfaces faster and easier than ever. Whether you’re crafting an enterprise-level web app or a sleek personal project, v2.0 offers the tools and flexibility you need to create polished UIs with minimal effort. + +## Breaking Change + +We’re thrilled to introduce Marigold UI v2.0—a major upgrade designed to make building beautiful, accessible interfaces faster and easier than ever. Whether you’re crafting an enterprise-level web app or a sleek personal project, v2.0 offers the tools and flexibility you need to create polished UIs with minimal effort. + +## New + +We’ve reimagined our theming system from the ground up. You can now: + +Toggle dark mode in a single click. +Define custom color schemes with easy CSS variable support. +Build dynamic themes based on user preferences—no complex CSS required. + +With performance optimizations in v2.0, your app’s UI will load faster and feel more responsive: + +Smaller bundle sizes: We’ve trimmed down the library for better performance. +Lazy loading: Load components on demand to keep things snappy. +Optimized rendering: Minimized reflows and repaints for improved performance. +♿ 4. Accessibility That Works Out of the Box +We believe in making the web accessible to all. With improved ARIA support, better keyboard navigation, and enhanced screen reader compatibility, v2.0 ensures your app is usable by everyone. + +## Changes + +Our documentation has been revamped for clarity and ease of use: + +Interactive code examples and live playgrounds for real-time testing. +Step-by-step guides for React, Vue, and vanilla JS integrations. +A streamlined customization guide to make theming and extending components simple. + +## Bug fixes + +### @marigold/components + +- Card Layouts: For building stunning, responsive grids. +- Advanced Tables: With built-in sorting, filtering, and pagination. +- Notification Toasts: Fully customizable, ideal for real-time feedback. +- Sidebars & Drawers: Smooth, mobile-friendly navigation components. +- Skeleton Loaders: Keep users engaged while content loads. + +### @marigold/system + +- fixed blablabla + +## Why Upgrade to v2.0? + +Marigold UI v2.0 offers a significant upgrade in terms of performance, customization, and ease of use. By upgrading, you’ll be able to: + +Build UIs faster with new, ready-to-use components. +Customize every aspect of your design system without hassle. +Offer a superior user experience with faster loading and better accessibility. +Migrating from v1.x? We’ve got you covered! Check out our migration guide for an easy, hassle-free update. + +## What’s Next for Marigold UI? + +We’re just getting started! In the coming months, expect more components, performance improvements, and an upcoming Figma plugin to bridge the gap between design and development. diff --git a/docs/content/releases/config/eslint/release.mdx b/docs/content/releases/config/eslint/release.mdx new file mode 100644 index 0000000000..b264092c10 --- /dev/null +++ b/docs/content/releases/config/eslint/release.mdx @@ -0,0 +1,175 @@ +--- +title: '@marigold/eslint-config' +caption: 'Have a look on the latest changes regarding @marigold/eslint-config' +toc: false +--- + +## 0.4.16 (Released on ) + +### Patch Changes + +- [#3967](https://github.com/marigold-ui/marigold/pull/3967) [`0773aa8`](https://github.com/marigold-ui/marigold/commit/0773aa8cd6ee71faf4f0d04f80f33cbe7fc56202) Thanks [@sebald](https://github.com/sebald)! - refa: Update TypeScript and adjust `` props + +## 0.4.15 (Released on ) + +### Patch Changes + +- [#3880](https://github.com/marigold-ui/marigold/pull/3880) [`4a59427`](https://github.com/marigold-ui/marigold/commit/4a59427fc1d4c14b1971c07778de1977cdde5dda) Thanks [@sebald](https://github.com/sebald)! - chore: cleanup peerdeeps + +## 0.4.14 (Released on ) + +### Patch Changes + +- [#3726](https://github.com/marigold-ui/marigold/pull/3726) [`973e52d`](https://github.com/marigold-ui/marigold/commit/973e52d0a8d74e7ec11051563e1e3e93f5017356) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint to v5.54.1 + +## 0.4.13 (Released on ) + +### Patch Changes + +- [#3353](https://github.com/marigold-ui/marigold/pull/3353) [`ca2cddb10`](https://github.com/marigold-ui/marigold/commit/ca2cddb104c00bcfda369df58b6f443c5ae7be5e) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +## 0.4.12 (Released on ) + +### Patch Changes + +- [#3333](https://github.com/marigold-ui/marigold/pull/3333) [`d5e3745bf`](https://github.com/marigold-ui/marigold/commit/d5e3745bf5d45511dd7480f859293e77ffb7d40c) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +## 0.4.11 (Released on ) + +### Patch Changes + +- [#3286](https://github.com/marigold-ui/marigold/pull/3286) [`f710122b3`](https://github.com/marigold-ui/marigold/commit/f710122b3825fbaa35f1a3198ae0e83b370f06af) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +## 0.4.10 (Released on ) + +### Patch Changes + +- [#2934](https://github.com/marigold-ui/marigold/pull/2934) [`41eccbce6`](https://github.com/marigold-ui/marigold/commit/41eccbce6e78e33e3c769adb5dd4b52a7ad43c92) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update testing + +## 0.4.9 (Released on ) + +### Patch Changes + +- [#2923](https://github.com/marigold-ui/marigold/pull/2923) [`307d1c5b5`](https://github.com/marigold-ui/marigold/commit/307d1c5b532a1fa9b6640618fda04e8d3e1ff57a) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +## 0.4.8 (Released on ) + +### Patch Changes + +- [#2856](https://github.com/marigold-ui/marigold/pull/2856) [`003d291b3`](https://github.com/marigold-ui/marigold/commit/003d291b39ed51ffb33cc56bccbfcfa9fd374c2f) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint to v5.54.1 + +- [#2863](https://github.com/marigold-ui/marigold/pull/2863) [`9494d692d`](https://github.com/marigold-ui/marigold/commit/9494d692d0f82220c972fb46e941e67923416fa8) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +- [#2839](https://github.com/marigold-ui/marigold/pull/2839) [`c93c67a2c`](https://github.com/marigold-ui/marigold/commit/c93c67a2c9132baeda0d35c252ac553cd574ec58) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint to v5.54.0 + +## 0.4.7 (Released on ) + +### Patch Changes + +- [#2822](https://github.com/marigold-ui/marigold/pull/2822) [`fb21bde37`](https://github.com/marigold-ui/marigold/commit/fb21bde377d32695c81368e665e461ad5173e0f8) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +## 0.4.6 (Released on ) + +### Patch Changes + +- [#2723](https://github.com/marigold-ui/marigold/pull/2723) [`44379e863`](https://github.com/marigold-ui/marigold/commit/44379e8639e4197939cfe20416f1c63163b495a8) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +## 0.4.5 (Released on ) + +### Patch Changes + +- [#2645](https://github.com/marigold-ui/marigold/pull/2645) [`65f87570`](https://github.com/marigold-ui/marigold/commit/65f87570f047e1af18280bccd80abef365ee25be) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +- [#2627](https://github.com/marigold-ui/marigold/pull/2627) [`d250fc00`](https://github.com/marigold-ui/marigold/commit/d250fc0041f2beca498107d3e60e2d50e9ffb293) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update babel monorepo + +## 0.4.4 (Released on ) + +### Patch Changes + +- [#2591](https://github.com/marigold-ui/marigold/pull/2591) [`be3f2060`](https://github.com/marigold-ui/marigold/commit/be3f20600b195f62d8d5bc1b784329d7bf152d9a) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @babel/core to v7.19.6 + +- [#2600](https://github.com/marigold-ui/marigold/pull/2600) [`7056cb3d`](https://github.com/marigold-ui/marigold/commit/7056cb3d820531b905813a5888a6876ed82db7e3) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +## 0.4.3 (Released on ) + +### Patch Changes + +- [#2545](https://github.com/marigold-ui/marigold/pull/2545) [`e65171c6`](https://github.com/marigold-ui/marigold/commit/e65171c6b30f0091491a7e0394e5ddafc0d72bf4) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @babel/core to v7.19.3 + +## 0.4.2 (Released on ) + +### Patch Changes + +- [#2544](https://github.com/marigold-ui/marigold/pull/2544) [`db4cb323`](https://github.com/marigold-ui/marigold/commit/db4cb323ed6b58fac1ba424ca50349bdb981bc6b) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency typescript to v4.8.4 + +## 0.4.1 (Released on ) + +### Patch Changes + +- [#2446](https://github.com/marigold-ui/marigold/pull/2446) [`bc13abed`](https://github.com/marigold-ui/marigold/commit/bc13abedb3abc56cf6e1cc9ea8725b99c9eb9468) Thanks [@sebald](https://github.com/sebald)! - feat: losen peer deps for usage with npm + +## 0.4.0 (Released on ) + +### Minor Changes + +- [#2406](https://github.com/marigold-ui/marigold/pull/2406) [`32fb8417`](https://github.com/marigold-ui/marigold/commit/32fb8417c411166fece7d779b226ae5c536ea5f7) Thanks [@sebald](https://github.com/sebald)! - feat: eslint-config can handle import assertions + +### Patch Changes + +- [#2423](https://github.com/marigold-ui/marigold/pull/2423) [`7b46298f`](https://github.com/marigold-ui/marigold/commit/7b46298f0461fa07947768fe6caba0f9645a9ea9) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency typescript to v4.8.3 + +- [#2424](https://github.com/marigold-ui/marigold/pull/2424) [`570e64ee`](https://github.com/marigold-ui/marigold/commit/570e64ee26bcf6b79a8f7f69a2d9621363056df0) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +- [#2437](https://github.com/marigold-ui/marigold/pull/2437) [`23a78264`](https://github.com/marigold-ui/marigold/commit/23a78264cf713ebf439c264a45ff946fd58472de) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update testing (major) + +## 0.3.4 (Released on ) + +### Patch Changes + +- [#2275](https://github.com/marigold-ui/marigold/pull/2275) [`fbcbda63`](https://github.com/marigold-ui/marigold/commit/fbcbda63ba4ea240ea1b911ea25237d125a229d1) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +* [#2318](https://github.com/marigold-ui/marigold/pull/2318) [`389aae8a`](https://github.com/marigold-ui/marigold/commit/389aae8a49444b34a22ed311c4e05fb12965ea3f) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint to v5.33.0 + +- [#2265](https://github.com/marigold-ui/marigold/pull/2265) [`88a3d4b0`](https://github.com/marigold-ui/marigold/commit/88a3d4b030e67e46a4af429b01a884195601b7a2) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @babel/core to v7.18.10 + +* [#2272](https://github.com/marigold-ui/marigold/pull/2272) [`fb9df312`](https://github.com/marigold-ui/marigold/commit/fb9df312e50a5d4be27a528e339f0d2c5768324d) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update testing + +## 0.3.3 (Released on ) + +### Patch Changes + +- [#2213](https://github.com/marigold-ui/marigold/pull/2213) [`a5088e04`](https://github.com/marigold-ui/marigold/commit/a5088e042b42210ea20850b208fb31ff6e525026) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +* [#2204](https://github.com/marigold-ui/marigold/pull/2204) [`e3d63a5e`](https://github.com/marigold-ui/marigold/commit/e3d63a5e156b7455bb0959e26facd547bd0a9390) Thanks [@sebald](https://github.com/sebald)! - chore: Update dependencies + +- [#2221](https://github.com/marigold-ui/marigold/pull/2221) [`c60f8527`](https://github.com/marigold-ui/marigold/commit/c60f8527cc4d61c3b7d8eeb2ec29a0cd7679e8dc) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @babel/core to v7.18.9 + +* [#2215](https://github.com/marigold-ui/marigold/pull/2215) [`247d615e`](https://github.com/marigold-ui/marigold/commit/247d615e9b127c3f2a94d0ad7561c09d11000366) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update testing + +- [#2200](https://github.com/marigold-ui/marigold/pull/2200) [`f9b9655b`](https://github.com/marigold-ui/marigold/commit/f9b9655b66aaa1a81bed8c19b2a84a3b604cbd49) Thanks [@sebald](https://github.com/sebald)! - fix: losen peer dep of eslint + +## 0.3.2 (Released on ) + +### Patch Changes + +- [#2124](https://github.com/marigold-ui/marigold/pull/2124) [`bdd3e2bd`](https://github.com/marigold-ui/marigold/commit/bdd3e2bd04af7e1419b4264935967bf2e3990040) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update jest + +* [#2123](https://github.com/marigold-ui/marigold/pull/2123) [`ca4433f2`](https://github.com/marigold-ui/marigold/commit/ca4433f24e65b5d9c438f12708e71eb3d2489d75) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update eslint + +## 0.3.1 + +### Patch Changes + +- [#1971](https://github.com/marigold-ui/marigold/pull/1971) [`be0bf6c2`](https://github.com/marigold-ui/marigold/commit/be0bf6c22956f34807db23949f9c1fa634d4a821) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update typescript-eslint monorepo to v5.18.0 + +* [#1970](https://github.com/marigold-ui/marigold/pull/1970) [`cd120bd9`](https://github.com/marigold-ui/marigold/commit/cd120bd9d94f841e622f0d254e82f214756ffa14) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency eslint-plugin-testing-library to v5.2.1 + +## 0.3.0 + +### Minor Changes + +- [`f9526234`](https://github.com/marigold-ui/marigold/commit/f9526234257a149b12c14191a524691470da3942) Thanks [@sebald](https://github.com/sebald)! - Improved size in node_modules + +### Patch Changes + +- [`f9526234`](https://github.com/marigold-ui/marigold/commit/f9526234257a149b12c14191a524691470da3942) Thanks [@sebald](https://github.com/sebald)! - fix(deps): update typescript-eslint deps diff --git a/docs/content/releases/config/jest/release.mdx b/docs/content/releases/config/jest/release.mdx new file mode 100644 index 0000000000..75fdd8b927 --- /dev/null +++ b/docs/content/releases/config/jest/release.mdx @@ -0,0 +1,145 @@ +--- +title: '@marigold/jest-config' +caption: 'Have a look on the latest changes regarding @marigold/jest-config' +toc: false +--- + +## 1.2.2 (Released on ) + +### Patch Changes + +- [#3967](https://github.com/marigold-ui/marigold/pull/3967) [`0773aa8`](https://github.com/marigold-ui/marigold/commit/0773aa8cd6ee71faf4f0d04f80f33cbe7fc56202) Thanks [@sebald](https://github.com/sebald)! - refa: Update TypeScript and adjust `` props + +## 1.2.1 (Released on ) + +### Patch Changes + +- [#3880](https://github.com/marigold-ui/marigold/pull/3880) [`4a59427`](https://github.com/marigold-ui/marigold/commit/4a59427fc1d4c14b1971c07778de1977cdde5dda) Thanks [@sebald](https://github.com/sebald)! - chore: cleanup peerdeeps + +## 1.2.0 (Released on ) + +### Minor Changes + +- [#3278](https://github.com/marigold-ui/marigold/pull/3278) [`74c49bfee`](https://github.com/marigold-ui/marigold/commit/74c49bfeed05cf2e20cf2c93ff59654002e4e747) Thanks [@sebald](https://github.com/sebald)! - fix: support ESM only modules better + +## 1.1.2 (Released on ) + +### Patch Changes + +- [#2934](https://github.com/marigold-ui/marigold/pull/2934) [`41eccbce6`](https://github.com/marigold-ui/marigold/commit/41eccbce6e78e33e3c769adb5dd4b52a7ad43c92) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update testing + +## 1.1.1 (Released on ) + +### Patch Changes + +- [#2887](https://github.com/marigold-ui/marigold/pull/2887) [`539544841`](https://github.com/marigold-ui/marigold/commit/53954484120a34460ddb5bb6f3b3bc7106f2ce63) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update testing + +## 1.1.0 (Released on ) + +### Minor Changes + +- [#2807](https://github.com/marigold-ui/marigold/pull/2807) [`f9175829d`](https://github.com/marigold-ui/marigold/commit/f9175829db6ab268a6c9620430a99a69d0d57c7c) Thanks [@sarahgm](https://github.com/sarahgm)! - chore: update storybook to version 7 + fix coverage + +- [#2801](https://github.com/marigold-ui/marigold/pull/2801) [`9e682b73d`](https://github.com/marigold-ui/marigold/commit/9e682b73dafd03ca59df1f4aba71cc284a7df296) Thanks [@sebald](https://github.com/sebald)! - refa: remove ts-jest dependency + +## 1.0.10 (Released on ) + +### Patch Changes + +- [#2627](https://github.com/marigold-ui/marigold/pull/2627) [`d250fc00`](https://github.com/marigold-ui/marigold/commit/d250fc0041f2beca498107d3e60e2d50e9ffb293) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update babel monorepo + +## 1.0.9 (Released on ) + +### Patch Changes + +- [#2591](https://github.com/marigold-ui/marigold/pull/2591) [`be3f2060`](https://github.com/marigold-ui/marigold/commit/be3f20600b195f62d8d5bc1b784329d7bf152d9a) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @babel/core to v7.19.6 + +- [#2599](https://github.com/marigold-ui/marigold/pull/2599) [`940bc912`](https://github.com/marigold-ui/marigold/commit/940bc912d30b311e275174bc6ada34a996e8c767) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update testing + +## 1.0.8 (Released on ) + +### Patch Changes + +- [#2555](https://github.com/marigold-ui/marigold/pull/2555) [`e9eca20b`](https://github.com/marigold-ui/marigold/commit/e9eca20b13f087edf6897fd90c49460ec258f257) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @swc/core to v1.3.5 + +- [#2545](https://github.com/marigold-ui/marigold/pull/2545) [`e65171c6`](https://github.com/marigold-ui/marigold/commit/e65171c6b30f0091491a7e0394e5ddafc0d72bf4) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @babel/core to v7.19.3 + +## 1.0.7 (Released on ) + +### Patch Changes + +- [#2544](https://github.com/marigold-ui/marigold/pull/2544) [`db4cb323`](https://github.com/marigold-ui/marigold/commit/db4cb323ed6b58fac1ba424ca50349bdb981bc6b) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency typescript to v4.8.4 + +## 1.0.6 (Released on ) + +### Patch Changes + +- [#2446](https://github.com/marigold-ui/marigold/pull/2446) [`bc13abed`](https://github.com/marigold-ui/marigold/commit/bc13abedb3abc56cf6e1cc9ea8725b99c9eb9468) Thanks [@sebald](https://github.com/sebald)! - feat: losen peer deps for usage with npm + +## 1.0.5 (Released on ) + +### Patch Changes + +- [#2423](https://github.com/marigold-ui/marigold/pull/2423) [`7b46298f`](https://github.com/marigold-ui/marigold/commit/7b46298f0461fa07947768fe6caba0f9645a9ea9) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency typescript to v4.8.3 + +- [#2437](https://github.com/marigold-ui/marigold/pull/2437) [`23a78264`](https://github.com/marigold-ui/marigold/commit/23a78264cf713ebf439c264a45ff946fd58472de) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update testing (major) + +## 1.0.4 (Released on ) + +### Patch Changes + +- [#2311](https://github.com/marigold-ui/marigold/pull/2311) [`ee16fb00`](https://github.com/marigold-ui/marigold/commit/ee16fb0036ee6e19e3d0a98e3ecc5f87db382cdf) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @swc/core to v1.2.226 + +* [#2266](https://github.com/marigold-ui/marigold/pull/2266) [`8022dfba`](https://github.com/marigold-ui/marigold/commit/8022dfba77317d2fd0ff263942b92a57be276505) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @swc/core to v1.2.224 + +- [#2265](https://github.com/marigold-ui/marigold/pull/2265) [`88a3d4b0`](https://github.com/marigold-ui/marigold/commit/88a3d4b030e67e46a4af429b01a884195601b7a2) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @babel/core to v7.18.10 + +* [#2272](https://github.com/marigold-ui/marigold/pull/2272) [`fb9df312`](https://github.com/marigold-ui/marigold/commit/fb9df312e50a5d4be27a528e339f0d2c5768324d) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update testing + +## 1.0.3 (Released on ) + +### Patch Changes + +- [#2217](https://github.com/marigold-ui/marigold/pull/2217) [`164d7caf`](https://github.com/marigold-ui/marigold/commit/164d7caf24ab4b14060bc6af73e230d981d30a83) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency jest-watch-typeahead to v2 + +* [#2221](https://github.com/marigold-ui/marigold/pull/2221) [`c60f8527`](https://github.com/marigold-ui/marigold/commit/c60f8527cc4d61c3b7d8eeb2ec29a0cd7679e8dc) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @babel/core to v7.18.9 + +- [#2215](https://github.com/marigold-ui/marigold/pull/2215) [`247d615e`](https://github.com/marigold-ui/marigold/commit/247d615e9b127c3f2a94d0ad7561c09d11000366) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update testing + +## 1.0.2 (Released on ) + +### Patch Changes + +- [#2164](https://github.com/marigold-ui/marigold/pull/2164) [`b43464fc`](https://github.com/marigold-ui/marigold/commit/b43464fce6f7e2662b27313c6f74190e8c0f540f) Thanks [@sarahgm](https://github.com/sarahgm)! - refa: update to React 18 + +## 1.0.1 (Released on ) + +### Patch Changes + +- [#2124](https://github.com/marigold-ui/marigold/pull/2124) [`bdd3e2bd`](https://github.com/marigold-ui/marigold/commit/bdd3e2bd04af7e1419b4264935967bf2e3990040) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update jest + +* [#2126](https://github.com/marigold-ui/marigold/pull/2126) [`85ec457f`](https://github.com/marigold-ui/marigold/commit/85ec457f974d9ffa326330096b0532c32b1ca37a) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency @swc/core to v1.2.196 + +## 1.0.0 + +### Major Changes + +- [#2078](https://github.com/marigold-ui/marigold/pull/2078) [`dc07c277`](https://github.com/marigold-ui/marigold/commit/dc07c2773c8c248eb47f02b08a3df3048fd4261c) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update jest to 28 + +## 0.5.0 + +### Minor Changes + +- [#2009](https://github.com/marigold-ui/marigold/pull/2009) [`6abb9051`](https://github.com/marigold-ui/marigold/commit/6abb90515312af180fe799a61e97ced49dfce4e6) Thanks [@sebald](https://github.com/sebald)! - feat: don't collect coverage by default + +## 0.4.0 + +### Minor Changes + +- [`f9526234`](https://github.com/marigold-ui/marigold/commit/f9526234257a149b12c14191a524691470da3942) Thanks [@sebald](https://github.com/sebald)! - Improved size in node_modules + +## 0.3.0 + +### Patch Changes + +- [#1591](https://github.com/marigold-ui/marigold/pull/1591) [`1448ddca`](https://github.com/marigold-ui/marigold/commit/1448ddcaa0f647f48b018fa74a8686af30eccc53) Thanks [@sebald](https://github.com/sebald)! - feat(jest): Improve snapshot readability diff --git a/docs/content/releases/config/prettier/release.mdx b/docs/content/releases/config/prettier/release.mdx new file mode 100644 index 0000000000..33614c14e1 --- /dev/null +++ b/docs/content/releases/config/prettier/release.mdx @@ -0,0 +1,17 @@ +--- +title: '@marigold/prettier-config' +caption: 'Have a look on the latest changes regarding @marigold/prettier-config' +toc: false +--- + +## 0.3.1 (Released on ) + +### Patch Changes + +- [#2896](https://github.com/marigold-ui/marigold/pull/2896) [`1edd2dff9`](https://github.com/marigold-ui/marigold/commit/1edd2dff93ab8424b422cb1d198292c13fa1affb) Thanks [@sebald](https://github.com/sebald)! - feat: explicitly set tabWidth so it is not overriden by editorconfigs + +## 0.3.0 + +### Minor Changes + +- [`f9526234`](https://github.com/marigold-ui/marigold/commit/f9526234257a149b12c14191a524691470da3942) Thanks [@sebald](https://github.com/sebald)! - Improved size in node_modules diff --git a/docs/content/releases/config/storybook/release.mdx b/docs/content/releases/config/storybook/release.mdx new file mode 100644 index 0000000000..b2c028f050 --- /dev/null +++ b/docs/content/releases/config/storybook/release.mdx @@ -0,0 +1,488 @@ +--- +title: '@marigold/storybook-config' +caption: 'Have a look on the latest changes regarding @marigold/storybook-config' +badge: new +toc: false +--- + +## 1.1.49 (Released on ) + +### Patch Changes + +- Updated dependencies [[`de0c9e9`](https://github.com/marigold-ui/marigold/commit/de0c9e94584b3f1733bda09722b0e2eb2fc0a8eb), [`d700af0`](https://github.com/marigold-ui/marigold/commit/d700af043a720a231cd4f6de03f59b62b945727f), [`406fd1f`](https://github.com/marigold-ui/marigold/commit/406fd1fed939f75a6731d5e0ec4baa40751dedc8), [`46f06db`](https://github.com/marigold-ui/marigold/commit/46f06dbb3cc38c17aeb1734fa0b8733c4055fcc4), [`66eae8f`](https://github.com/marigold-ui/marigold/commit/66eae8f4ba8949ebabfcfa26de36a147b7765d38), [`77fe4ad`](https://github.com/marigold-ui/marigold/commit/77fe4adb2a9184d52d375eeca4f0993e8d43b7de), [`d35cc6d`](https://github.com/marigold-ui/marigold/commit/d35cc6d7a66996e9da91936e736a7db57a4a2fd3), [`b2b79d4`](https://github.com/marigold-ui/marigold/commit/b2b79d4daf0ab4950a255039729d216023af1764), [`340af20`](https://github.com/marigold-ui/marigold/commit/340af2058b38f8a595567f72a688d40c34335094), [`0523f69`](https://github.com/marigold-ui/marigold/commit/0523f69e6bd370ae5be57a5b28cc341b3bb34b82), [`b8c991f`](https://github.com/marigold-ui/marigold/commit/b8c991fc249f69fab09d9aa3c6a71923cf8324de)]: + - @marigold/components@9.0.2 + - @marigold/theme-b2b@27.2.1 + - @marigold/theme-core@26.2.1 + +## 1.1.48 (Released on ) + +### Patch Changes + +- Updated dependencies [[`5d53af4`](https://github.com/marigold-ui/marigold/commit/5d53af4ef32d8f70ae8d2d84db4fbfdd60998e79), [`f3d3974`](https://github.com/marigold-ui/marigold/commit/f3d3974313d4b2c0be54202121a4c78677eb88cb), [`965512c`](https://github.com/marigold-ui/marigold/commit/965512c113938cac629bb6cc518926f0d600b40f), [`0fb763d`](https://github.com/marigold-ui/marigold/commit/0fb763ddd199c4f8f2477064d4008fdf22b949a4), [`9598df4`](https://github.com/marigold-ui/marigold/commit/9598df4ed6ac3fa72620d3b2b41d47a451a55d79)]: + - @marigold/components@9.0.1 + - @marigold/theme-b2b@27.2.0 + - @marigold/theme-core@26.2.0 + +## 1.1.47 (Released on ) + +### Patch Changes + +- Updated dependencies [[`0bf0940`](https://github.com/marigold-ui/marigold/commit/0bf0940842eca39810cb644e4b3b935eaf0f2f4c), [`94e9a1b`](https://github.com/marigold-ui/marigold/commit/94e9a1be5ec8ed56aabab335b4867903161c60b8), [`db4fa1d`](https://github.com/marigold-ui/marigold/commit/db4fa1d08c80a90b05352bd4ec2e53b0084f843f), [`27bb054`](https://github.com/marigold-ui/marigold/commit/27bb054f81e3e4145bab8a935b264a5ad02c6afd), [`6195189`](https://github.com/marigold-ui/marigold/commit/619518955f1a98046820d9a577355d07da3f819d), [`449de9b`](https://github.com/marigold-ui/marigold/commit/449de9b61c95b1fd848dc31d33143f5e73197383), [`41428b3`](https://github.com/marigold-ui/marigold/commit/41428b3ac939ff970149e046cd31d1d8aacbd9bc), [`5073419`](https://github.com/marigold-ui/marigold/commit/5073419a72d9a0557eb1a3a945298fa7b4558728), [`391dcd1`](https://github.com/marigold-ui/marigold/commit/391dcd18ea761494ac242ffbfe3e356ab6bbdea8)]: + - @marigold/components@9.0.0 + - @marigold/theme-b2b@27.1.15 + - @marigold/theme-core@26.1.15 + +## 1.1.46 (Released on ) + +### Patch Changes + +- Updated dependencies [[`ed3bd89`](https://github.com/marigold-ui/marigold/commit/ed3bd8975c535817ca904bd1f17b1a4009950e2b), [`c64d71e`](https://github.com/marigold-ui/marigold/commit/c64d71e190ba7b361fefeb94e25daa8715050448), [`864ed08`](https://github.com/marigold-ui/marigold/commit/864ed08bbc7305292e4777baad795b39e8c171f1)]: + - @marigold/components@8.0.2 + - @marigold/theme-b2b@27.1.14 + - @marigold/theme-core@26.1.14 + +## 1.1.45 (Released on ) + +### Patch Changes + +- Updated dependencies [[`a02f284`](https://github.com/marigold-ui/marigold/commit/a02f284baa1e4bc78dbad960377810a1665a5c49)]: + - @marigold/components@8.0.1 + - @marigold/theme-b2b@27.1.13 + - @marigold/theme-core@26.1.13 + +## 1.1.44 (Released on ) + +### Patch Changes + +- [#3967](https://github.com/marigold-ui/marigold/pull/3967) [`0773aa8`](https://github.com/marigold-ui/marigold/commit/0773aa8cd6ee71faf4f0d04f80f33cbe7fc56202) Thanks [@sebald](https://github.com/sebald)! - refa: Update TypeScript and adjust `` props + +- Updated dependencies [[`2cde433`](https://github.com/marigold-ui/marigold/commit/2cde433e21bc49e378b96c9d812baf21914cf382), [`d053e37`](https://github.com/marigold-ui/marigold/commit/d053e37f49ef382ea33c7743d0d67d89153ccc9e), [`0773aa8`](https://github.com/marigold-ui/marigold/commit/0773aa8cd6ee71faf4f0d04f80f33cbe7fc56202), [`9c5b80c`](https://github.com/marigold-ui/marigold/commit/9c5b80c7a1dbfef5e1e7c2a557fc17f81640945c), [`5977cba`](https://github.com/marigold-ui/marigold/commit/5977cba2ce729ea32f9db869e9c19e16032e58ec)]: + - @marigold/components@8.0.0 + - @marigold/theme-b2b@27.1.12 + - @marigold/theme-core@26.1.12 + +## 1.1.43 (Released on ) + +### Patch Changes + +- Updated dependencies []: + - @marigold/components@7.8.2 + - @marigold/theme-b2b@27.1.11 + - @marigold/theme-core@26.1.11 + +## 1.1.42 (Released on ) + +### Patch Changes + +- Updated dependencies [[`bc08a48`](https://github.com/marigold-ui/marigold/commit/bc08a48087c31b501b5e4aeb9a992cb97ad9e21d), [`290dc0e`](https://github.com/marigold-ui/marigold/commit/290dc0e8b5b5fc1492d391d8e6156bd849f0b37d)]: + - @marigold/theme-core@26.1.10 + - @marigold/components@7.8.1 + - @marigold/theme-b2b@27.1.10 + +## 1.1.41 (Released on ) + +### Patch Changes + +- Updated dependencies [[`8c4631f`](https://github.com/marigold-ui/marigold/commit/8c4631f53744e9316f4d6ae325602de8287bbe86)]: + - @marigold/components@7.8.0 + - @marigold/theme-b2b@27.1.9 + - @marigold/theme-core@26.1.9 + +## 1.1.40 (Released on ) + +### Patch Changes + +- Updated dependencies [[`3e448ed`](https://github.com/marigold-ui/marigold/commit/3e448ede593cc4e4070366a1e6ac1ac8870dc102), [`bdd23ec`](https://github.com/marigold-ui/marigold/commit/bdd23ec48895543b9a4bd3d925c47dd02da8aefd), [`f0c0bc1`](https://github.com/marigold-ui/marigold/commit/f0c0bc18b0ad22984ad344e99222a7119c47ed36)]: + - @marigold/theme-core@26.1.8 + - @marigold/theme-b2b@27.1.8 + - @marigold/components@7.7.2 + +## 1.1.39 (Released on ) + +### Patch Changes + +- [#3893](https://github.com/marigold-ui/marigold/pull/3893) [`f57caec`](https://github.com/marigold-ui/marigold/commit/f57caecd8c964ba2012bf1fcab9b15a15a58080d) Thanks [@sarahgm](https://github.com/sarahgm)! - feat: add className to MarigoldProvider + +- Updated dependencies [[`f57caec`](https://github.com/marigold-ui/marigold/commit/f57caecd8c964ba2012bf1fcab9b15a15a58080d), [`a54d186`](https://github.com/marigold-ui/marigold/commit/a54d186bf53da1a0afa6ee22a7711a803a155d6a), [`99d68a4`](https://github.com/marigold-ui/marigold/commit/99d68a42e1c4b9fbf70bf3a182270922bb042e0c)]: + - @marigold/components@7.7.1 + - @marigold/theme-core@26.1.7 + - @marigold/theme-b2b@27.1.7 + +## 1.1.38 (Released on ) + +### Patch Changes + +- [#3880](https://github.com/marigold-ui/marigold/pull/3880) [`4a59427`](https://github.com/marigold-ui/marigold/commit/4a59427fc1d4c14b1971c07778de1977cdde5dda) Thanks [@sebald](https://github.com/sebald)! - chore: cleanup peerdeeps + +- Updated dependencies [[`b62872d`](https://github.com/marigold-ui/marigold/commit/b62872dd557a8c35d56bc09d12b960752a466d46), [`72ece08`](https://github.com/marigold-ui/marigold/commit/72ece08fe8009ee19b05c2ad8796658dfa91ebb8), [`3f02ea1`](https://github.com/marigold-ui/marigold/commit/3f02ea15fab7b27907b0b478d479d6f2766e3ab2), [`5ea2604`](https://github.com/marigold-ui/marigold/commit/5ea26047d1b53f86a7a56f40e378172b69580593), [`78889c6`](https://github.com/marigold-ui/marigold/commit/78889c6a205085b355c3838792b8a9b3989a51f7), [`4a59427`](https://github.com/marigold-ui/marigold/commit/4a59427fc1d4c14b1971c07778de1977cdde5dda)]: + - @marigold/theme-core@26.1.6 + - @marigold/components@7.7.0 + - @marigold/theme-b2b@27.1.6 + +## 1.1.37 (Released on ) + +### Patch Changes + +- Updated dependencies [[`8d0203f`](https://github.com/marigold-ui/marigold/commit/8d0203f0a1b6bc8a090758745a0ecf94d8180ec4), [`05d2ca0`](https://github.com/marigold-ui/marigold/commit/05d2ca03fbac80de9a1b6887932301b0d91691f2), [`10050d4`](https://github.com/marigold-ui/marigold/commit/10050d4a83ab5cdc984031689cfc05ee52c32700), [`af1807b`](https://github.com/marigold-ui/marigold/commit/af1807b4335022bcd12db0d454992ef8bf6b2cc7), [`e8927dc`](https://github.com/marigold-ui/marigold/commit/e8927dc48a61e4d29e214a58cb7958d7990b8d3f)]: + - @marigold/theme-b2b@27.1.5 + - @marigold/components@7.6.0 + - @marigold/theme-core@26.1.5 + +## 1.1.36 (Released on ) + +### Patch Changes + +- [#3838](https://github.com/marigold-ui/marigold/pull/3838) [`17a5870`](https://github.com/marigold-ui/marigold/commit/17a5870ab7676c0aa412ca9378525bd803374591) Thanks [@sebald](https://github.com/sebald)! - feat: add story code plugin + +- Updated dependencies [[`4c3cad5`](https://github.com/marigold-ui/marigold/commit/4c3cad52f3d6d85fdea89603682876fe35935b15), [`ea9c6b5`](https://github.com/marigold-ui/marigold/commit/ea9c6b5d74f514b25207792f8a0e4520836c2917)]: + - @marigold/theme-core@26.1.4 + - @marigold/components@7.5.4 + - @marigold/theme-b2b@27.1.4 + +## 1.1.35 (Released on ) + +### Patch Changes + +- Updated dependencies [[`7fd7ad7`](https://github.com/marigold-ui/marigold/commit/7fd7ad7393ed524e5c72b4eecea896ffc67e7c86), [`879a0e1`](https://github.com/marigold-ui/marigold/commit/879a0e12368318f4535792ed09917481fbd46f3b), [`81a84e5`](https://github.com/marigold-ui/marigold/commit/81a84e520dc9021d2b813ee345e8af14368b237e)]: + - @marigold/components@7.5.3 + - @marigold/theme-b2b@27.1.3 + - @marigold/theme-core@26.1.3 + +## 1.1.34 (Released on ) + +### Patch Changes + +- Updated dependencies [[`f996764`](https://github.com/marigold-ui/marigold/commit/f99676498dd62ffa671314b18be140967162b69b), [`f6a7035`](https://github.com/marigold-ui/marigold/commit/f6a7035d1f54dc6ebe7bb256f8071846be1c9216), [`8cc639d`](https://github.com/marigold-ui/marigold/commit/8cc639da7d9b97ec915067ea67883652f774e6c2), [`95ce246`](https://github.com/marigold-ui/marigold/commit/95ce246e7367031ec2241c9dd40e89a56bbb3547)]: + - @marigold/components@7.5.2 + - @marigold/theme-core@26.1.2 + - @marigold/theme-b2b@27.1.2 + +## 1.1.33 (Released on ) + +### Patch Changes + +- Updated dependencies [[`4b952f2`](https://github.com/marigold-ui/marigold/commit/4b952f2d58ce8f183cb3e29f631897a95c1b99ab), [`d4479c7`](https://github.com/marigold-ui/marigold/commit/d4479c770b3833f0dbdaa488fabed5aee5d009ce), [`02f1934`](https://github.com/marigold-ui/marigold/commit/02f1934f85d58ffd694e234a0b7e45dadc7e55cf), [`bac4337`](https://github.com/marigold-ui/marigold/commit/bac4337efffa8751c39ed5fa999243a7eaef09a1), [`dea175a`](https://github.com/marigold-ui/marigold/commit/dea175a3c3d848db98a8ab5664c35e2bbce41d74), [`3d1e813`](https://github.com/marigold-ui/marigold/commit/3d1e8135d6af203400b4610b128037bed05ab0b1), [`886ff54`](https://github.com/marigold-ui/marigold/commit/886ff5424e44e20f8e65551bde6e3d8373d849a7), [`f21ad28`](https://github.com/marigold-ui/marigold/commit/f21ad28740c04161543b277d4fb5447156ed4aad)]: + - @marigold/theme-core@26.1.1 + - @marigold/components@7.5.1 + - @marigold/theme-b2b@27.1.1 + +## 1.1.32 (Released on ) + +### Patch Changes + +- Updated dependencies [[`e99387f`](https://github.com/marigold-ui/marigold/commit/e99387f7d4510108272e7a12882d4fcb74993252), [`7ddf5d0`](https://github.com/marigold-ui/marigold/commit/7ddf5d051f74f4311cab2b31b224d7fe257e19b7), [`fc7adee`](https://github.com/marigold-ui/marigold/commit/fc7adee62047fa24584666ee17f15f255aa0ba91), [`81783b6`](https://github.com/marigold-ui/marigold/commit/81783b6807dfd05900f6ef862e16c14c58f3d6da), [`ade96cf`](https://github.com/marigold-ui/marigold/commit/ade96cf23f071140d8d935dc16c9096659b70bce), [`5920c98`](https://github.com/marigold-ui/marigold/commit/5920c98e7df4b4fdeafc9fdc49d08469bea02f94), [`6de0cb6`](https://github.com/marigold-ui/marigold/commit/6de0cb6ab5b7acc2638c3ce2ee54ea9f961097c6), [`477e375`](https://github.com/marigold-ui/marigold/commit/477e3757045a048bf76a138f82047c02a348b32a), [`ee50a2a`](https://github.com/marigold-ui/marigold/commit/ee50a2a96679cb5935e2881763b65276194710ce), [`33ceefc`](https://github.com/marigold-ui/marigold/commit/33ceefcebbc7271bef563b722caeada5ce698144), [`7a5bc5f`](https://github.com/marigold-ui/marigold/commit/7a5bc5fcc9103c714fa8ca8c9e12a9364dd7a03a), [`e1bcf1c`](https://github.com/marigold-ui/marigold/commit/e1bcf1c855a7df613ae7254a4bb7ef823515b148), [`6de438b`](https://github.com/marigold-ui/marigold/commit/6de438b81cd21da9d57e1312692938817b359b16), [`d6c44fa`](https://github.com/marigold-ui/marigold/commit/d6c44fa342d1221f42a8d4f82889c70865b97b39), [`e77fbb0`](https://github.com/marigold-ui/marigold/commit/e77fbb070396e78961548a0ee3656562f6f1fdc1), [`fc7f0bf`](https://github.com/marigold-ui/marigold/commit/fc7f0bfa56e03de542e9faf6e0951b6901c10381), [`f04eeb5`](https://github.com/marigold-ui/marigold/commit/f04eeb52645eb595396feca92dc66b94dbc62e8e), [`f306d06`](https://github.com/marigold-ui/marigold/commit/f306d065937b3b2c5ae10a73e5b6e0776016634b)]: + - @marigold/theme-core@26.1.0 + - @marigold/theme-b2b@27.1.0 + - @marigold/components@7.5.0 + +## 1.1.31 (Released on ) + +### Patch Changes + +- Updated dependencies [[`dbaadeb`](https://github.com/marigold-ui/marigold/commit/dbaadeb54251f39f54c49ab9144f837711c764d5), [`ebea32e`](https://github.com/marigold-ui/marigold/commit/ebea32e2e2d875de430eea07d7f31e2ed23fd21a), [`21fc7cf`](https://github.com/marigold-ui/marigold/commit/21fc7cf6ce095b987f64b000826653bd78c7c88d), [`c61895d`](https://github.com/marigold-ui/marigold/commit/c61895db7fbc3cee7fd0d622518f64d881da7f9b), [`2b9e03e`](https://github.com/marigold-ui/marigold/commit/2b9e03effbbcc63e50781448b89f4e9062c4d0e5), [`3d66a58`](https://github.com/marigold-ui/marigold/commit/3d66a58ca0843a9586e37a87cdfb41b6a6318fd6), [`f9a4a4c`](https://github.com/marigold-ui/marigold/commit/f9a4a4c2dedc31ded547a55f17d35da382b58aec), [`4d2f94f`](https://github.com/marigold-ui/marigold/commit/4d2f94fcfe17d510298ef0e545736f6dfd6b5992), [`36c6301`](https://github.com/marigold-ui/marigold/commit/36c63014fba2211c64b0a93ce387e9ebbe3ef6e0), [`7969fd9`](https://github.com/marigold-ui/marigold/commit/7969fd9d38275c6dbad0d80d2b84c8e8e365dfa4), [`59a9285`](https://github.com/marigold-ui/marigold/commit/59a9285fe8eb46be26ebc7f272081343023fceae), [`45489d9`](https://github.com/marigold-ui/marigold/commit/45489d93ff9ff99206ea233d744a553e943f7bb0)]: + - @marigold/components@7.4.0 + - @marigold/theme-core@26.0.7 + - @marigold/theme-b2b@27.0.4 + +## 1.1.30 (Released on ) + +### Patch Changes + +- Updated dependencies [[`b37c3ee`](https://github.com/marigold-ui/marigold/commit/b37c3eebc8b859d7c6b6e35290203d0eb393a1eb)]: + - @marigold/components@7.3.3 + - @marigold/theme-b2b@27.0.3 + - @marigold/theme-core@26.0.6 + +## 1.1.29 (Released on ) + +### Patch Changes + +- Updated dependencies [[`c2c7e71`](https://github.com/marigold-ui/marigold/commit/c2c7e71a405adabec937a5ff0b087b7a8b6c1c8d)]: + - @marigold/components@7.3.2 + - @marigold/theme-b2b@27.0.2 + - @marigold/theme-core@26.0.5 + +## 1.1.28 (Released on ) + +### Patch Changes + +- Updated dependencies [[`e41f61d`](https://github.com/marigold-ui/marigold/commit/e41f61dc7d8fc2368ac54741f6134e39048eb3a5), [`c2af52b`](https://github.com/marigold-ui/marigold/commit/c2af52b3390edc83eee6816398dadebbb7bd9353), [`35ff260`](https://github.com/marigold-ui/marigold/commit/35ff26022c0815f37037ea1054471ac3a5302910), [`3d2d172`](https://github.com/marigold-ui/marigold/commit/3d2d17236849efff952968a394121ed4c5b11658), [`01148ac`](https://github.com/marigold-ui/marigold/commit/01148aca8c0dc0c236bc698b2fcc8980a5aa6470), [`63d407e`](https://github.com/marigold-ui/marigold/commit/63d407e11c8ec31ce5375868f174b306d5cda8f1)]: + - @marigold/theme-b2b@27.0.1 + - @marigold/theme-core@26.0.4 + - @marigold/components@7.3.1 + +## 1.1.27 (Released on ) + +### Patch Changes + +- Updated dependencies [[`b5cb086`](https://github.com/marigold-ui/marigold/commit/b5cb08634900c007060b50b4055c7c75847e4598), [`34a7482`](https://github.com/marigold-ui/marigold/commit/34a748234747b91cb3b4fb9cb4c6708508ac05aa), [`6f3d81d`](https://github.com/marigold-ui/marigold/commit/6f3d81df18041f55a2e2a40077a7b97cc9befa42), [`645ab22`](https://github.com/marigold-ui/marigold/commit/645ab22b911079c8d874c980cc137005e94dd69c), [`fd16ef5`](https://github.com/marigold-ui/marigold/commit/fd16ef5f593d0bebaff24563edf663ad5a542feb), [`b4999d8`](https://github.com/marigold-ui/marigold/commit/b4999d8ecc9118df94b57f03dd67a80df4af7576), [`8b6f34a`](https://github.com/marigold-ui/marigold/commit/8b6f34abf562158ea4bfbd6ad7a8a33c143a929f), [`7e3aa28`](https://github.com/marigold-ui/marigold/commit/7e3aa287a2d3987ff82d2f7cda37194db3533cfa), [`3c72997`](https://github.com/marigold-ui/marigold/commit/3c729971879d41543ef074bab6b9874a283039d4), [`c1fb6aa`](https://github.com/marigold-ui/marigold/commit/c1fb6aa690caa0bd316ad93a9ffa3ac045afeb2e), [`299941b`](https://github.com/marigold-ui/marigold/commit/299941b52c027f8c203ba5b13335ab22b9441e13)]: + - @marigold/theme-core@26.0.3 + - @marigold/components@7.3.0 + - @marigold/theme-b2b@27.0.0 + +## 1.1.26 (Released on ) + +### Patch Changes + +- Updated dependencies [[`0b23a25`](https://github.com/marigold-ui/marigold/commit/0b23a25efa8be6bf0dcc6cbb315b6fb4a0ad9dfd), [`f7d3f7e`](https://github.com/marigold-ui/marigold/commit/f7d3f7e1347adf85e3d1e9c9203cd885d961fd08), [`7a8d40a`](https://github.com/marigold-ui/marigold/commit/7a8d40abdeb34d28cab0771269e1cfc6b7f4b1f0), [`6697a67`](https://github.com/marigold-ui/marigold/commit/6697a67c11f251b8361f8be522b8c4be608455dc), [`9f1ae32`](https://github.com/marigold-ui/marigold/commit/9f1ae32297f6e5d3c08ce861b4e497a15bf06b37), [`4ff1f57`](https://github.com/marigold-ui/marigold/commit/4ff1f57562da920a03dff46505a78d150239fe51), [`b228e09`](https://github.com/marigold-ui/marigold/commit/b228e099be8940b6ea50bdc6ad8ef6e52ddc4c3d), [`cba7099`](https://github.com/marigold-ui/marigold/commit/cba7099f1f89b30f23be0074134c224c7ba173b1), [`d76a835`](https://github.com/marigold-ui/marigold/commit/d76a83587c3d839c50deceb7303ddb59fc38f4b1), [`46e1a41`](https://github.com/marigold-ui/marigold/commit/46e1a41551b9524668836dc4ed085a6780e10d10)]: + - @marigold/components@7.2.0 + - @marigold/theme-core@26.0.2 + - @marigold/theme-b2b@26.1.0 + +## 1.1.25 (Released on ) + +### Patch Changes + +- Updated dependencies [[`6a4d1e8d0`](https://github.com/marigold-ui/marigold/commit/6a4d1e8d0fbf2270d0b393f4c89a0d6187964037), [`b6cb6edce`](https://github.com/marigold-ui/marigold/commit/b6cb6edce3872cde0b49161b838147914b1976a3), [`4fa5dee85`](https://github.com/marigold-ui/marigold/commit/4fa5dee853c31cf81121ce1f9ff22fff0db0b415), [`a984d90e2`](https://github.com/marigold-ui/marigold/commit/a984d90e2e8d937b600af72a895db934f9d6d674), [`b3fd3e5e0`](https://github.com/marigold-ui/marigold/commit/b3fd3e5e09c044e52fcdeac19ebdd6d6361b7f6a), [`47f300029`](https://github.com/marigold-ui/marigold/commit/47f3000292bb387cba4f904e729b55792864832b), [`63b093ad8`](https://github.com/marigold-ui/marigold/commit/63b093ad8ca6d7bf1767db2b42c467016871ce49), [`49a702446`](https://github.com/marigold-ui/marigold/commit/49a702446394e82c72df1691f53709a70a4be41a), [`535d1088b`](https://github.com/marigold-ui/marigold/commit/535d1088b5d0de60ec07e72d2b5faac7b918ad01), [`08e89a407`](https://github.com/marigold-ui/marigold/commit/08e89a40738e78459be976b8c6f6a5d23ffd8720), [`e2fa304a6`](https://github.com/marigold-ui/marigold/commit/e2fa304a6528c51a1f1ded1d954ae36d2113a70f)]: + - @marigold/components@7.1.0 + - @marigold/theme-b2b@26.0.1 + - @marigold/theme-core@26.0.1 + +## 1.1.24 (Released on ) + +### Patch Changes + +- Updated dependencies [[`3952ee0e8`](https://github.com/marigold-ui/marigold/commit/3952ee0e893704e791bc6a51ed57b3dc80b78ece), [`dc5c193e0`](https://github.com/marigold-ui/marigold/commit/dc5c193e02a71eb16a064b50dad5a51d4f9b0c2b), [`e4cfbc7d1`](https://github.com/marigold-ui/marigold/commit/e4cfbc7d1f07015532f359217d2b8d0d74f932bf), [`9c61ffe09`](https://github.com/marigold-ui/marigold/commit/9c61ffe09271c4f4b2ab9907472763d222d24f04), [`4ae97c004`](https://github.com/marigold-ui/marigold/commit/4ae97c004a68c4331cd8fa0fdbc276fc3f7f452d), [`72125e114`](https://github.com/marigold-ui/marigold/commit/72125e11492d60f08665054e4427de24cde337be), [`30167bb78`](https://github.com/marigold-ui/marigold/commit/30167bb78f11c557c45c19dc25a7d66db805879b), [`f3a45c302`](https://github.com/marigold-ui/marigold/commit/f3a45c302852c460395411cdafa1558120227efb)]: + - @marigold/components@7.0.0 + - @marigold/theme-b2b@26.0.0 + - @marigold/theme-core@26.0.0 + +## 1.1.23 (Released on ) + +### Patch Changes + +- Updated dependencies [[`a748252c5`](https://github.com/marigold-ui/marigold/commit/a748252c5e233d37548dd0b9d9dd18cbbbd6fdb5), [`148034202`](https://github.com/marigold-ui/marigold/commit/148034202a502f9c669c5c500c6dcae13924b409), [`071bd792a`](https://github.com/marigold-ui/marigold/commit/071bd792ac0ed9fc0adbb7aa9ae781ed7fa280fd), [`51611dbe0`](https://github.com/marigold-ui/marigold/commit/51611dbe075fa43aef219bf30a196b34b3ec7d73), [`bc96dda88`](https://github.com/marigold-ui/marigold/commit/bc96dda88894271bc7fdc4a01270932855337af8), [`f972b3a25`](https://github.com/marigold-ui/marigold/commit/f972b3a2579483c5e8632cc13ce6d4dbacc18a73), [`cf59ce1e4`](https://github.com/marigold-ui/marigold/commit/cf59ce1e4154e670b51ee43387e372e3f7ec8e60), [`bc09a9ce1`](https://github.com/marigold-ui/marigold/commit/bc09a9ce1c917b0fc3cfbd3459a0c83cf804308e), [`849f4c534`](https://github.com/marigold-ui/marigold/commit/849f4c534f71ce64bb7181b2bdc60ff4864b3ce1), [`cdc17ee83`](https://github.com/marigold-ui/marigold/commit/cdc17ee83771dc367d29126903feca831c43a421), [`91badb0e1`](https://github.com/marigold-ui/marigold/commit/91badb0e1da21d8cefa36c48c57d53c5abe54123)]: + - @marigold/components@6.11.0 + - @marigold/theme-b2b@25.9.0 + - @marigold/theme-core@25.9.0 + +## 1.1.22 (Released on ) + +### Patch Changes + +- Updated dependencies [[`14f5d5d30`](https://github.com/marigold-ui/marigold/commit/14f5d5d301f6e2dd49667439ecda54c2ce7d08a7), [`f58919ad5`](https://github.com/marigold-ui/marigold/commit/f58919ad5b5a3b51fa5d26ca67931949c262c9a3), [`213d32f5b`](https://github.com/marigold-ui/marigold/commit/213d32f5b79ee9063e30fbe52c064560f771df21), [`5a3d71cae`](https://github.com/marigold-ui/marigold/commit/5a3d71cae1b4243db94ff997313ceada2fa3bfeb), [`aac41db30`](https://github.com/marigold-ui/marigold/commit/aac41db30bfb7613bf9ba537d1030cd5c8d1baa0), [`71eb13b30`](https://github.com/marigold-ui/marigold/commit/71eb13b30b3d94a8bacb1f69f457c13d7e33fad2), [`09ed4b46e`](https://github.com/marigold-ui/marigold/commit/09ed4b46e254cb314ff6b6bd6e7b2d42112aaee9)]: + - @marigold/components@6.10.0 + - @marigold/theme-core@25.8.0 + - @marigold/theme-b2b@25.8.0 + +## 1.1.21 (Released on ) + +### Patch Changes + +- Updated dependencies []: + - @marigold/components@6.9.1 + - @marigold/theme-b2b@25.7.1 + - @marigold/theme-core@25.7.1 + +## 1.1.20 (Released on ) + +### Patch Changes + +- Updated dependencies [[`79eaec78c`](https://github.com/marigold-ui/marigold/commit/79eaec78c8c1a5d99d4ad09f93f8b2ca39aaade2), [`c068869a9`](https://github.com/marigold-ui/marigold/commit/c068869a98f3c7ceb91bd04b59342668d546f589), [`a16541314`](https://github.com/marigold-ui/marigold/commit/a165413142b6d64f9995678498c6d68091ce526e), [`7507ac7f5`](https://github.com/marigold-ui/marigold/commit/7507ac7f52d9a6d0826534b4035bb0dce7f074aa), [`729158c87`](https://github.com/marigold-ui/marigold/commit/729158c8799205cdc6a733cd01f6a2239850ac2a), [`17ee74d46`](https://github.com/marigold-ui/marigold/commit/17ee74d4686e003b133dab2598eb2bbb6d87e948), [`f19a502d4`](https://github.com/marigold-ui/marigold/commit/f19a502d4badd559a27e86e6e74747dfccb0a6c2), [`75bad8b84`](https://github.com/marigold-ui/marigold/commit/75bad8b84c127cd38a30f70af26795aa8e8d4ae0)]: + - @marigold/components@6.9.0 + - @marigold/theme-b2b@25.7.0 + - @marigold/theme-core@25.7.0 + +## 1.1.19 (Released on ) + +### Patch Changes + +- Updated dependencies [[`30b94e542`](https://github.com/marigold-ui/marigold/commit/30b94e542fe3d60676b2e00868e48b28e8c12ff6), [`c76bd48a2`](https://github.com/marigold-ui/marigold/commit/c76bd48a2f12b488f58de09e38c4d78da62c2e3b), [`3a21b538a`](https://github.com/marigold-ui/marigold/commit/3a21b538a5f72fb021bf7cb023f565d6e84e2ea7), [`4c76cf114`](https://github.com/marigold-ui/marigold/commit/4c76cf114adf3c2485518f386ebd14c0415df3ac), [`84c427dec`](https://github.com/marigold-ui/marigold/commit/84c427dec67be6ef488ece0afb179dc95c403447)]: + - @marigold/components@6.8.0 + - @marigold/theme-b2b@25.6.2 + - @marigold/theme-core@25.6.2 + +## 1.1.18 (Released on ) + +### Patch Changes + +- Updated dependencies [[`22446fa66`](https://github.com/marigold-ui/marigold/commit/22446fa66d38b34d975ed88b4dcd0b1ca7190a57)]: + - @marigold/components@6.7.0 + - @marigold/theme-b2b@25.6.1 + - @marigold/theme-core@25.6.1 + +## 1.1.17 (Released on ) + +### Patch Changes + +- Updated dependencies [[`174f534b5`](https://github.com/marigold-ui/marigold/commit/174f534b5bcb5c3d34284d7cdeb5bf6fd372a350), [`4f6d1c78d`](https://github.com/marigold-ui/marigold/commit/4f6d1c78d5b5155e09f7f92cf78b83a614af13d9), [`cac5ef60d`](https://github.com/marigold-ui/marigold/commit/cac5ef60d36c2c7c0eea5cc9096a849315eefeed)]: + - @marigold/components@6.6.4 + - @marigold/theme-core@25.6.0 + - @marigold/theme-b2b@25.6.0 + +## 1.1.16 (Released on ) + +### Patch Changes + +- Updated dependencies [[`fd0e1d6d0`](https://github.com/marigold-ui/marigold/commit/fd0e1d6d06f6860932e0b9a9b156b8adc9087b72)]: + - @marigold/theme-core@25.5.3 + - @marigold/components@6.6.3 + - @marigold/theme-b2b@25.5.3 + +## 1.1.15 (Released on ) + +### Patch Changes + +- Updated dependencies [[`611956377`](https://github.com/marigold-ui/marigold/commit/61195637796327c148597fa4b495c43e24e3fe77)]: + - @marigold/theme-core@25.5.2 + - @marigold/components@6.6.2 + - @marigold/theme-b2b@25.5.2 + +## 1.1.14 (Released on ) + +### Patch Changes + +- Updated dependencies [[`ea9d457a4`](https://github.com/marigold-ui/marigold/commit/ea9d457a4c762d740d6c249ca4907b76cbe80f25)]: + - @marigold/theme-core@25.5.1 + - @marigold/components@6.6.1 + - @marigold/theme-b2b@25.5.1 + +## 1.1.13 (Released on ) + +### Patch Changes + +- Updated dependencies [[`547fca472`](https://github.com/marigold-ui/marigold/commit/547fca47212de69da8366988d2e7e1d29c3411ca), [`4cb379e5a`](https://github.com/marigold-ui/marigold/commit/4cb379e5ac0a5ba36cc8de55a73b901c701f80c6), [`f3bbad3e7`](https://github.com/marigold-ui/marigold/commit/f3bbad3e794f0c2474c5fbe0eea2263f399a227a), [`43e792d6a`](https://github.com/marigold-ui/marigold/commit/43e792d6a55b60429a208e206f00cdab5bd23a9f), [`7704debbe`](https://github.com/marigold-ui/marigold/commit/7704debbea339917eedf8182e2e5986798b34aff), [`f2b764380`](https://github.com/marigold-ui/marigold/commit/f2b764380c3775c640b56e2a2fdd838762699318)]: + - @marigold/components@6.6.0 + - @marigold/theme-b2b@25.5.0 + - @marigold/theme-core@25.5.0 + +## 1.1.12 (Released on ) + +### Patch Changes + +- Updated dependencies [[`80ac67eac`](https://github.com/marigold-ui/marigold/commit/80ac67eac8ad065c8c0f458e5f888c3f0e42a02b)]: + - @marigold/components@6.5.1 + - @marigold/theme-b2b@25.4.1 + - @marigold/theme-core@25.4.1 + +## 1.1.11 (Released on ) + +### Patch Changes + +- Updated dependencies [[`5e1219c84`](https://github.com/marigold-ui/marigold/commit/5e1219c84810991be0253186a7f7ec19bd916689), [`1ce0cabbf`](https://github.com/marigold-ui/marigold/commit/1ce0cabbf8e04cab4345265dbe131d48be773d68)]: + - @marigold/components@6.5.0 + - @marigold/theme-b2b@25.4.0 + - @marigold/theme-core@25.4.0 + +## 1.1.10 (Released on ) + +### Patch Changes + +- Updated dependencies [[`1eb93352a`](https://github.com/marigold-ui/marigold/commit/1eb93352a8c08cac7903ac08fb91d8f9be8c0bfd), [`0b1ac52e5`](https://github.com/marigold-ui/marigold/commit/0b1ac52e54ba5a8693a2894f389497f36a9041ac), [`9b0ed3862`](https://github.com/marigold-ui/marigold/commit/9b0ed38624cbed0edde8a3cb502ba34259ed5bfc), [`3e328198c`](https://github.com/marigold-ui/marigold/commit/3e328198ca5ab18ef4218c8252463ea5d76091bd), [`dc2b1484c`](https://github.com/marigold-ui/marigold/commit/dc2b1484cd77141e5bc8c94d50ecfaf29a8a3571), [`e5869b2f3`](https://github.com/marigold-ui/marigold/commit/e5869b2f3bf0f3b69a2e37f377d51786d23ccc56), [`e968e5eb5`](https://github.com/marigold-ui/marigold/commit/e968e5eb5ce58b37c364b01b7617b1bc108c5f74), [`67ab41a40`](https://github.com/marigold-ui/marigold/commit/67ab41a40384c5ef1f17c013913ea2ee01edc5de), [`470d00c6d`](https://github.com/marigold-ui/marigold/commit/470d00c6d6be571d6fc9cb82cde7f4756b360b83), [`78840aa04`](https://github.com/marigold-ui/marigold/commit/78840aa04e83dce5f8fbfa7357f7099eddf71126), [`60c7f1dc5`](https://github.com/marigold-ui/marigold/commit/60c7f1dc549e6b489a1852a18da849fcbb052f5c), [`0fbb7f963`](https://github.com/marigold-ui/marigold/commit/0fbb7f96327d0af6acb9c9d2f4e6bfa76cb5384d), [`4be30b28a`](https://github.com/marigold-ui/marigold/commit/4be30b28a7bd64807c28bc8371d9162f922905f6), [`700cdf296`](https://github.com/marigold-ui/marigold/commit/700cdf2963f7b0b46ed715599646fa7ed71e7c0b), [`5a2a03ae0`](https://github.com/marigold-ui/marigold/commit/5a2a03ae0766a417c208c8624d8b6a0f370edcd9), [`5ed86abd0`](https://github.com/marigold-ui/marigold/commit/5ed86abd0643b0fcf4254a7a2fec74266085346d)]: + - @marigold/components@6.4.0 + - @marigold/theme-b2b@25.3.0 + - @marigold/theme-core@25.3.0 + +## 1.1.9 (Released on ) + +### Patch Changes + +- Updated dependencies [[`310aeb450`](https://github.com/marigold-ui/marigold/commit/310aeb450fdf9d9778ee107ad817531e533ee846), [`d8b3cca2d`](https://github.com/marigold-ui/marigold/commit/d8b3cca2dfe5ff199c5045c1e77cec7d6384c725)]: + - @marigold/theme-b2b@25.2.8 + - @marigold/components@6.3.1 + - @marigold/theme-core@25.2.8 + +## 1.1.8 (Released on ) + +### Patch Changes + +- Updated dependencies [[`cdebe707a`](https://github.com/marigold-ui/marigold/commit/cdebe707a2a851304b1185ac9aa8d2994502869a), [`ea9db88fd`](https://github.com/marigold-ui/marigold/commit/ea9db88fdee91e3e9d912f58ae7a99e90633fa42), [`d8d4af573`](https://github.com/marigold-ui/marigold/commit/d8d4af573268d663df2c9c23e84590683cb92dc1), [`958477f43`](https://github.com/marigold-ui/marigold/commit/958477f43da2b599430d4bb91470673b8cf04608)]: + - @marigold/theme-b2b@25.2.7 + - @marigold/components@6.3.0 + - @marigold/theme-core@25.2.7 + +## 1.1.7 (Released on ) + +### Patch Changes + +- Updated dependencies [[`1d305f963`](https://github.com/marigold-ui/marigold/commit/1d305f963af96b5ad7b087dbd3365550e2eaae6b)]: + - @marigold/components@6.2.6 + - @marigold/theme-b2b@25.2.6 + - @marigold/theme-core@25.2.6 + +## 1.1.6 (Released on ) + +### Patch Changes + +- Updated dependencies [[`b9e1d147a`](https://github.com/marigold-ui/marigold/commit/b9e1d147a0ab61393ba4704dc4bef6fce70fe854), [`581702881`](https://github.com/marigold-ui/marigold/commit/5817028810f503d941be93b66e63ea545c4f17c3)]: + - @marigold/components@6.2.5 + - @marigold/theme-b2b@25.2.5 + - @marigold/theme-core@25.2.5 + +## 1.1.5 (Released on ) + +### Patch Changes + +- Updated dependencies [[`9c18ea52b`](https://github.com/marigold-ui/marigold/commit/9c18ea52b3fa0f58b64349cb25f4872763a2f5fd)]: + - @marigold/theme-b2b@25.2.4 + - @marigold/theme-core@25.2.4 + - @marigold/components@6.2.4 + +## 1.1.4 (Released on ) + +### Patch Changes + +- Updated dependencies [[`f7c475053`](https://github.com/marigold-ui/marigold/commit/f7c4750533aadc9119e2dfb4bb5745cb56684a86)]: + - @marigold/components@6.2.3 + - @marigold/theme-b2b@25.2.3 + - @marigold/theme-core@25.2.3 + +## 1.1.3 (Released on ) + +### Patch Changes + +- Updated dependencies [[`46e86e2b3`](https://github.com/marigold-ui/marigold/commit/46e86e2b3969a4c95c9e49c202e922bfc22d28a2), [`bf527799a`](https://github.com/marigold-ui/marigold/commit/bf527799a6f606e7e19df14246ed3621a2359fcd)]: + - @marigold/components@6.2.2 + - @marigold/theme-b2b@25.2.2 + - @marigold/theme-core@25.2.2 + +## 1.1.2 (Released on ) + +### Patch Changes + +- Updated dependencies [[`979ab73c4`](https://github.com/marigold-ui/marigold/commit/979ab73c4aca9811fec13c2bf6a716dcaea9f62b), [`a5515f34b`](https://github.com/marigold-ui/marigold/commit/a5515f34b35e3c4677daf05d36a2ac1f2a45cfb4)]: + - @marigold/theme-b2b@25.2.1 + - @marigold/components@6.2.1 + - @marigold/theme-core@25.2.1 + +## 1.1.1 (Released on ) + +### Patch Changes + +- Updated dependencies [[`0a82332ba`](https://github.com/marigold-ui/marigold/commit/0a82332ba247f2eaddfd4abdf6fe284120565320), [`6329c32ac`](https://github.com/marigold-ui/marigold/commit/6329c32acb34ff963c0afbd85a76e7a788db45c8), [`3c1fc3097`](https://github.com/marigold-ui/marigold/commit/3c1fc3097b2de22363c5afe1ba1659594729652f), [`3eba5fdd4`](https://github.com/marigold-ui/marigold/commit/3eba5fdd4dac255923b1063be8731c0e5924023f)]: + - @marigold/theme-b2b@25.2.0 + - @marigold/theme-core@25.2.0 + - @marigold/components@6.2.0 + +## 1.1.0 (Released on ) + +### Minor Changes + +- [#3268](https://github.com/marigold-ui/marigold/pull/3268) [`c61999892`](https://github.com/marigold-ui/marigold/commit/c619998923fec65d099c1a16b1d5d22601e97d22) Thanks [@sebald](https://github.com/sebald)! - feat: checkbox adheres labelwidth when inside `` + +### Patch Changes + +- [#3280](https://github.com/marigold-ui/marigold/pull/3280) [`74810de3d`](https://github.com/marigold-ui/marigold/commit/74810de3de05458618aa4b5389dbb930e63cf0ba) Thanks [@sebald](https://github.com/sebald)! - chore: remove unused deps from storybook config + +- Updated dependencies [[`c2629d7c8`](https://github.com/marigold-ui/marigold/commit/c2629d7c88ee5870ba78361bbfb4db11c8c1af48), [`989f094e7`](https://github.com/marigold-ui/marigold/commit/989f094e76510e9ff6f4f8d675a9dd6f768099da), [`c61999892`](https://github.com/marigold-ui/marigold/commit/c619998923fec65d099c1a16b1d5d22601e97d22), [`49674045d`](https://github.com/marigold-ui/marigold/commit/49674045db92bb9778de6d9d84dbc04b052b62c3), [`8a4ef1805`](https://github.com/marigold-ui/marigold/commit/8a4ef1805a57a878f2f050c5523af2f921111bfd)]: + - @marigold/components@6.1.0 + - @marigold/theme-b2b@25.1.0 + - @marigold/theme-core@25.1.0 + +## 1.0.6 (Released on ) + +### Patch Changes + +- Updated dependencies [[`df21788c7`](https://github.com/marigold-ui/marigold/commit/df21788c7e65fe848b161fb2a6fb98f3937d0a8a), [`ad54c498e`](https://github.com/marigold-ui/marigold/commit/ad54c498e8b0e86c6de7bfaa2f72ef31bc34b2d5), [`62d5599cb`](https://github.com/marigold-ui/marigold/commit/62d5599cb61d7c3af31cddfe0d22faea640236be), [`63009ad56`](https://github.com/marigold-ui/marigold/commit/63009ad56ca0135573685fb33972059db758ab91), [`fd10c294a`](https://github.com/marigold-ui/marigold/commit/fd10c294a352642f1f98a8c2d70eb4fbd7d93a22)]: + - @marigold/theme-b2b@25.0.1 + - @marigold/theme-core@25.0.1 + - @marigold/components@6.0.1 + +## 1.0.5 (Released on ) + +### Patch Changes + +- Updated dependencies [[`9a19dba84`](https://github.com/marigold-ui/marigold/commit/9a19dba843fd9007f82362d47550283d55200b5b), [`54416dc6c`](https://github.com/marigold-ui/marigold/commit/54416dc6c87a8de39893a23678d716553a0d991c), [`1d0fd2ac5`](https://github.com/marigold-ui/marigold/commit/1d0fd2ac5e45a9a05ef311fc811b9e6049535641), [`7b7348f30`](https://github.com/marigold-ui/marigold/commit/7b7348f30f62662ccb86930ac4bf65ef063d2065), [`79be927e6`](https://github.com/marigold-ui/marigold/commit/79be927e6b2f73c9f75487dfe14a3ce56444afaa), [`44dd7408a`](https://github.com/marigold-ui/marigold/commit/44dd7408a27dc5031598ebbd818e911981b8c9d3), [`9082cfe4f`](https://github.com/marigold-ui/marigold/commit/9082cfe4fd8d9cd848c185041dabcec46622822b)]: + - @marigold/theme-b2b@25.0.0 + - @marigold/components@6.0.0 + - @marigold/theme-core@25.0.0 diff --git a/docs/content/releases/config/tsconfig/release.mdx b/docs/content/releases/config/tsconfig/release.mdx new file mode 100644 index 0000000000..bc5211567c --- /dev/null +++ b/docs/content/releases/config/tsconfig/release.mdx @@ -0,0 +1,25 @@ +--- +title: '@marigold/tsconfig' +caption: 'Have a look on the latest changes regarding @marigold/tsconfig' +toc: false +--- + +## 0.4.0 (Released on ) + +### Minor Changes + +- [#2691](https://github.com/marigold-ui/marigold/pull/2691) [`23df35f0`](https://github.com/marigold-ui/marigold/commit/23df35f0869dfbf7cc7a921cdfd44ef1915e90fb) Thanks [@sebald](https://github.com/sebald)! - feat: explicitly set strict rules in tsconfig + +## 0.3.1 (Released on ) + +### Patch Changes + +- [#2674](https://github.com/marigold-ui/marigold/pull/2674) [`832da2a6`](https://github.com/marigold-ui/marigold/commit/832da2a69f9bad5adcbcc57cba3cb215dfaa51e2) Thanks [@sarahgm](https://github.com/sarahgm)! - refa: refactoring Popover with usePopover + +## 0.3.0 + +### Minor Changes + +- [`f9526234`](https://github.com/marigold-ui/marigold/commit/f9526234257a149b12c14191a524691470da3942) Thanks [@sebald](https://github.com/sebald)! - chore: Use `tsup` to build packages + +- [`f9526234`](https://github.com/marigold-ui/marigold/commit/f9526234257a149b12c14191a524691470da3942) Thanks [@sebald](https://github.com/sebald)! - Improved size in node_modules diff --git a/docs/content/releases/docs/release.mdx b/docs/content/releases/docs/release.mdx new file mode 100644 index 0000000000..94b0052716 --- /dev/null +++ b/docs/content/releases/docs/release.mdx @@ -0,0 +1,834 @@ +--- +title: '@marigold/docs' +caption: 'Have a look on the latest changes regarding @marigold/docs' +badge: new +toc: false +--- + +## 9.0.2 (Released on ) + +### Patch Changes + +- [#4124](https://github.com/marigold-ui/marigold/pull/4124) [`7c38527`](https://github.com/marigold-ui/marigold/commit/7c38527b46e81c4a5d395e565e867bc8ac6c7163) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - [DST-518]: Revise "Menu" Page + +- [#4070](https://github.com/marigold-ui/marigold/pull/4070) [`2486dac`](https://github.com/marigold-ui/marigold/commit/2486dacd7f41cb84a270d1519281831767c8c983) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - [DST-505]: Revise "Radio" Examples + +- [#4116](https://github.com/marigold-ui/marigold/pull/4116) [`de0c9e9`](https://github.com/marigold-ui/marigold/commit/de0c9e94584b3f1733bda09722b0e2eb2fc0a8eb) Thanks [@aromko](https://github.com/aromko)! - docs[DST-513]: Revise `` component page. + +- [#4111](https://github.com/marigold-ui/marigold/pull/4111) [`766aef5`](https://github.com/marigold-ui/marigold/commit/766aef5d063ca72a30b032f915150aebdb6f8d4b) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[DST-512]: Revise `` Page + +- [#4102](https://github.com/marigold-ui/marigold/pull/4102) [`d700af0`](https://github.com/marigold-ui/marigold/commit/d700af043a720a231cd4f6de03f59b62b945727f) Thanks [@sebald](https://github.com/sebald)! - feat: add `as` prop to Text to render different elements + +- [#4122](https://github.com/marigold-ui/marigold/pull/4122) [`6470e00`](https://github.com/marigold-ui/marigold/commit/6470e00609f642067ec77a397bd375bc9616cf25) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - docs[DST-514]: Revise `` component page + +- [#4071](https://github.com/marigold-ui/marigold/pull/4071) [`406fd1f`](https://github.com/marigold-ui/marigold/commit/406fd1fed939f75a6731d5e0ec4baa40751dedc8) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[DST-503]:Revise Select and add slots to text component + +- [#4125](https://github.com/marigold-ui/marigold/pull/4125) [`46f06db`](https://github.com/marigold-ui/marigold/commit/46f06dbb3cc38c17aeb1734fa0b8733c4055fcc4) Thanks [@aromko](https://github.com/aromko)! - docs[DST-517]: revise `` component + +- [#4151](https://github.com/marigold-ui/marigold/pull/4151) [`0a317d9`](https://github.com/marigold-ui/marigold/commit/0a317d9db358892fc4bd92c5f0608f7f13428bef) Thanks [@sarahgm](https://github.com/sarahgm)! - chore: add internal page to command menu + +- [#4117](https://github.com/marigold-ui/marigold/pull/4117) [`986e90e`](https://github.com/marigold-ui/marigold/commit/986e90e04956ccaa63c0801c423521dd43d28f99) Thanks [@aromko](https://github.com/aromko)! - [DST-515]: The properties of the props tables are now sorted by name ascending. + +- [#4105](https://github.com/marigold-ui/marigold/pull/4105) [`a9f3fad`](https://github.com/marigold-ui/marigold/commit/a9f3fad38f5ff0ddfbfc192f23de22f6a296a87b) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[DST-509]:Revise `` page + +- [#4123](https://github.com/marigold-ui/marigold/pull/4123) [`c684a93`](https://github.com/marigold-ui/marigold/commit/c684a934148a707c0ce34c9f24d81c5970f3296d) Thanks [@aromko](https://github.com/aromko)! - docs[DST-516]: Revise`` component page + +- [#4138](https://github.com/marigold-ui/marigold/pull/4138) [`5cdece1`](https://github.com/marigold-ui/marigold/commit/5cdece18edd89338a697a6d8d742887446840c89) Thanks [@sarahgm](https://github.com/sarahgm)! - docs: update internal component guidelines + +- [#4110](https://github.com/marigold-ui/marigold/pull/4110) [`b2b79d4`](https://github.com/marigold-ui/marigold/commit/b2b79d4daf0ab4950a255039729d216023af1764) Thanks [@aromko](https://github.com/aromko)! - docs[DST-511]: Revise switch component. + +- [#4108](https://github.com/marigold-ui/marigold/pull/4108) [`37a2157`](https://github.com/marigold-ui/marigold/commit/37a21574bd0a0ce9f53944854ca2a00c2377265c) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - docs[DST-512]: Revise `` Page + +- [#4107](https://github.com/marigold-ui/marigold/pull/4107) [`972d536`](https://github.com/marigold-ui/marigold/commit/972d536404fbcba9c5597a2e03bc5b0ee7695f21) Thanks [@aromko](https://github.com/aromko)! - docs-[DST-508]: Revise text field component + +- [#4103](https://github.com/marigold-ui/marigold/pull/4103) [`b8c991f`](https://github.com/marigold-ui/marigold/commit/b8c991fc249f69fab09d9aa3c6a71923cf8324de) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[DST-507]: revise `` page + +- Updated dependencies [[`de0c9e9`](https://github.com/marigold-ui/marigold/commit/de0c9e94584b3f1733bda09722b0e2eb2fc0a8eb), [`d700af0`](https://github.com/marigold-ui/marigold/commit/d700af043a720a231cd4f6de03f59b62b945727f), [`406fd1f`](https://github.com/marigold-ui/marigold/commit/406fd1fed939f75a6731d5e0ec4baa40751dedc8), [`46f06db`](https://github.com/marigold-ui/marigold/commit/46f06dbb3cc38c17aeb1734fa0b8733c4055fcc4), [`66eae8f`](https://github.com/marigold-ui/marigold/commit/66eae8f4ba8949ebabfcfa26de36a147b7765d38), [`77fe4ad`](https://github.com/marigold-ui/marigold/commit/77fe4adb2a9184d52d375eeca4f0993e8d43b7de), [`d35cc6d`](https://github.com/marigold-ui/marigold/commit/d35cc6d7a66996e9da91936e736a7db57a4a2fd3), [`b2b79d4`](https://github.com/marigold-ui/marigold/commit/b2b79d4daf0ab4950a255039729d216023af1764), [`340af20`](https://github.com/marigold-ui/marigold/commit/340af2058b38f8a595567f72a688d40c34335094), [`0523f69`](https://github.com/marigold-ui/marigold/commit/0523f69e6bd370ae5be57a5b28cc341b3bb34b82), [`b8c991f`](https://github.com/marigold-ui/marigold/commit/b8c991fc249f69fab09d9aa3c6a71923cf8324de)]: + - @marigold/components@9.0.2 + - @marigold/theme-b2b@27.2.1 + - @marigold/theme-core@26.2.1 + - @marigold/theme-docs@2.1.1 + - @marigold/system@9.0.2 + - @marigold/icons@1.2.57 + - @marigold/theme-preset@1.3.22 + +## 9.0.1 (Released on ) + +### Patch Changes + +- [#4036](https://github.com/marigold-ui/marigold/pull/4036) [`fd24743`](https://github.com/marigold-ui/marigold/commit/fd2474357e22363c57a30abff8f973696628401d) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[DST-451]:Guidelines for Table component + +- Updated dependencies [[`5d53af4`](https://github.com/marigold-ui/marigold/commit/5d53af4ef32d8f70ae8d2d84db4fbfdd60998e79), [`f3d3974`](https://github.com/marigold-ui/marigold/commit/f3d3974313d4b2c0be54202121a4c78677eb88cb), [`965512c`](https://github.com/marigold-ui/marigold/commit/965512c113938cac629bb6cc518926f0d600b40f), [`0fb763d`](https://github.com/marigold-ui/marigold/commit/0fb763ddd199c4f8f2477064d4008fdf22b949a4), [`9598df4`](https://github.com/marigold-ui/marigold/commit/9598df4ed6ac3fa72620d3b2b41d47a451a55d79)]: + - @marigold/components@9.0.1 + - @marigold/theme-b2b@27.2.0 + - @marigold/theme-core@26.2.0 + - @marigold/theme-docs@2.1.0 + - @marigold/system@9.0.1 + - @marigold/icons@1.2.56 + - @marigold/theme-preset@1.3.21 + +## 9.0.0 (Released on ) + +### Major Changes + +- [#3994](https://github.com/marigold-ui/marigold/pull/3994) [`41428b3`](https://github.com/marigold-ui/marigold/commit/41428b3ac939ff970149e046cd31d1d8aacbd9bc) Thanks [@sebald](https://github.com/sebald)! - fix: remove `HTMLProps` from components + +### Minor Changes + +- [#3968](https://github.com/marigold-ui/marigold/pull/3968) [`9f491e3`](https://github.com/marigold-ui/marigold/commit/9f491e3a80d07150d8c239a37269ae889549c4fe) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - Adding AdviceCard component + +### Patch Changes + +- [#4023](https://github.com/marigold-ui/marigold/pull/4023) [`918b6c4`](https://github.com/marigold-ui/marigold/commit/918b6c40c23e7880c74d557c1ace14a198e5d982) Thanks [@sebald](https://github.com/sebald)! - docs: refa `DonAndDonts` to work without an image + +- [#4028](https://github.com/marigold-ui/marigold/pull/4028) [`db4fa1d`](https://github.com/marigold-ui/marigold/commit/db4fa1d08c80a90b05352bd4ec2e53b0084f843f) Thanks [@sebald](https://github.com/sebald)! - docs: Introduce an appearance demo + +- [#4034](https://github.com/marigold-ui/marigold/pull/4034) [`6195189`](https://github.com/marigold-ui/marigold/commit/619518955f1a98046820d9a577355d07da3f819d) Thanks [@sebald](https://github.com/sebald)! - fix([DST-500]): fix popover placement + +- Updated dependencies [[`0bf0940`](https://github.com/marigold-ui/marigold/commit/0bf0940842eca39810cb644e4b3b935eaf0f2f4c), [`94e9a1b`](https://github.com/marigold-ui/marigold/commit/94e9a1be5ec8ed56aabab335b4867903161c60b8), [`db4fa1d`](https://github.com/marigold-ui/marigold/commit/db4fa1d08c80a90b05352bd4ec2e53b0084f843f), [`27bb054`](https://github.com/marigold-ui/marigold/commit/27bb054f81e3e4145bab8a935b264a5ad02c6afd), [`6195189`](https://github.com/marigold-ui/marigold/commit/619518955f1a98046820d9a577355d07da3f819d), [`449de9b`](https://github.com/marigold-ui/marigold/commit/449de9b61c95b1fd848dc31d33143f5e73197383), [`41428b3`](https://github.com/marigold-ui/marigold/commit/41428b3ac939ff970149e046cd31d1d8aacbd9bc), [`5073419`](https://github.com/marigold-ui/marigold/commit/5073419a72d9a0557eb1a3a945298fa7b4558728), [`391dcd1`](https://github.com/marigold-ui/marigold/commit/391dcd18ea761494ac242ffbfe3e356ab6bbdea8)]: + - @marigold/components@9.0.0 + - @marigold/theme-b2b@27.1.15 + - @marigold/theme-docs@2.0.5 + - @marigold/theme-core@26.1.15 + - @marigold/icons@1.2.55 + - @marigold/theme-preset@1.3.20 + +## 8.0.2 (Released on ) + +### Patch Changes + +- Updated dependencies [[`ed3bd89`](https://github.com/marigold-ui/marigold/commit/ed3bd8975c535817ca904bd1f17b1a4009950e2b), [`c64d71e`](https://github.com/marigold-ui/marigold/commit/c64d71e190ba7b361fefeb94e25daa8715050448), [`864ed08`](https://github.com/marigold-ui/marigold/commit/864ed08bbc7305292e4777baad795b39e8c171f1)]: + - @marigold/components@8.0.2 + - @marigold/theme-b2b@27.1.14 + - @marigold/theme-core@26.1.14 + - @marigold/theme-docs@2.0.4 + - @marigold/icons@1.2.54 + - @marigold/theme-preset@1.3.19 + +## 8.0.1 (Released on ) + +### Patch Changes + +- [#3979](https://github.com/marigold-ui/marigold/pull/3979) [`a02f284`](https://github.com/marigold-ui/marigold/commit/a02f284baa1e4bc78dbad960377810a1665a5c49) Thanks [@sarahgm](https://github.com/sarahgm)! - Fix: fix some props and add command to build step + +- Updated dependencies [[`a02f284`](https://github.com/marigold-ui/marigold/commit/a02f284baa1e4bc78dbad960377810a1665a5c49)]: + - @marigold/components@8.0.1 + - @marigold/theme-b2b@27.1.13 + - @marigold/theme-core@26.1.13 + - @marigold/theme-docs@2.0.3 + - @marigold/icons@1.2.53 + - @marigold/theme-preset@1.3.18 + +## 8.0.0 (Released on ) + +### Minor Changes + +- [#3927](https://github.com/marigold-ui/marigold/pull/3927) [`317f9eb`](https://github.com/marigold-ui/marigold/commit/317f9ebed863291e45e2e3e1d279afcf9b34ad33) Thanks [@sebald](https://github.com/sebald)! - docs: introduce design principles page + +- [#3942](https://github.com/marigold-ui/marigold/pull/3942) [`5977cba`](https://github.com/marigold-ui/marigold/commit/5977cba2ce729ea32f9db869e9c19e16032e58ec) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - Keep our documentation props table dynamic + +### Patch Changes + +- [#3939](https://github.com/marigold-ui/marigold/pull/3939) [`2cde433`](https://github.com/marigold-ui/marigold/commit/2cde433e21bc49e378b96c9d812baf21914cf382) Thanks [@sarahgm](https://github.com/sarahgm)! - feat[DST-481]: rename `` in `` + +- [#3967](https://github.com/marigold-ui/marigold/pull/3967) [`0773aa8`](https://github.com/marigold-ui/marigold/commit/0773aa8cd6ee71faf4f0d04f80f33cbe7fc56202) Thanks [@sebald](https://github.com/sebald)! - refa: Update TypeScript and adjust `` props + +- [#3957](https://github.com/marigold-ui/marigold/pull/3957) [`aa36186`](https://github.com/marigold-ui/marigold/commit/aa36186f8e8fcffe29c8af575df811690d7702ae) Thanks [@sarahgm](https://github.com/sarahgm)! - [DST-449]docs: add values and principles to documentation + +- [#3937](https://github.com/marigold-ui/marigold/pull/3937) [`2658e2f`](https://github.com/marigold-ui/marigold/commit/2658e2f075c9aaae89b5817a864313f887c1a8fe) Thanks [@sarahgm](https://github.com/sarahgm)! - [DSTSUP-79]feat: add new icon for download + +- [#3944](https://github.com/marigold-ui/marigold/pull/3944) [`9a7f349`](https://github.com/marigold-ui/marigold/commit/9a7f349a17ae9ab2726d1578bfdf5a64eb0481c9) Thanks [@sarahgm](https://github.com/sarahgm)! - [DST-446]docs: adding governance process page + +- [#3962](https://github.com/marigold-ui/marigold/pull/3962) [`10c2932`](https://github.com/marigold-ui/marigold/commit/10c2932d9d8db3ac03e1adf52a6de8c0635dfb03) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[DST-465]: adding message pattern to documentation + +- [#3940](https://github.com/marigold-ui/marigold/pull/3940) [`9c5b80c`](https://github.com/marigold-ui/marigold/commit/9c5b80c7a1dbfef5e1e7c2a557fc17f81640945c) Thanks [@sarahgm](https://github.com/sarahgm)! - [DST-461]: refactor `` component + +- [#3920](https://github.com/marigold-ui/marigold/pull/3920) [`cd3d52d`](https://github.com/marigold-ui/marigold/commit/cd3d52dec9df0f803daef4694ffb73adc56d71c7) Thanks [@sarahgm](https://github.com/sarahgm)! - [DST-407]: enhance command menu + +- Updated dependencies [[`2cde433`](https://github.com/marigold-ui/marigold/commit/2cde433e21bc49e378b96c9d812baf21914cf382), [`d053e37`](https://github.com/marigold-ui/marigold/commit/d053e37f49ef382ea33c7743d0d67d89153ccc9e), [`0773aa8`](https://github.com/marigold-ui/marigold/commit/0773aa8cd6ee71faf4f0d04f80f33cbe7fc56202), [`2658e2f`](https://github.com/marigold-ui/marigold/commit/2658e2f075c9aaae89b5817a864313f887c1a8fe), [`9c5b80c`](https://github.com/marigold-ui/marigold/commit/9c5b80c7a1dbfef5e1e7c2a557fc17f81640945c), [`5977cba`](https://github.com/marigold-ui/marigold/commit/5977cba2ce729ea32f9db869e9c19e16032e58ec)]: + - @marigold/components@8.0.0 + - @marigold/theme-b2b@27.1.12 + - @marigold/eslint-config@0.4.16 + - @marigold/icons@1.2.52 + - @marigold/theme-core@26.1.12 + - @marigold/theme-docs@2.0.2 + - @marigold/theme-preset@1.3.17 + +## 7.8.2 (Released on ) + +### Patch Changes + +- [#3934](https://github.com/marigold-ui/marigold/pull/3934) [`de73b5a`](https://github.com/marigold-ui/marigold/commit/de73b5af0f1108e1fbe33feaa62a52348f942e1c) Thanks [@sebald](https://github.com/sebald)! - refa: don't use tailwinds color import + +- Updated dependencies [[`de73b5a`](https://github.com/marigold-ui/marigold/commit/de73b5af0f1108e1fbe33feaa62a52348f942e1c)]: + - @marigold/theme-docs@2.0.1 + - @marigold/components@7.8.2 + - @marigold/icons@1.2.51 + - @marigold/theme-preset@1.3.16 + - @marigold/theme-b2b@27.1.11 + - @marigold/theme-core@26.1.11 + +## 7.8.1 (Released on ) + +### Patch Changes + +- [#3933](https://github.com/marigold-ui/marigold/pull/3933) [`bc08a48`](https://github.com/marigold-ui/marigold/commit/bc08a48087c31b501b5e4aeb9a992cb97ad9e21d) Thanks [@sebald](https://github.com/sebald)! - feat: new package `@marigold/theme-docs` + +- [#3924](https://github.com/marigold-ui/marigold/pull/3924) [`290dc0e`](https://github.com/marigold-ui/marigold/commit/290dc0e8b5b5fc1492d391d8e6156bd849f0b37d) Thanks [@sebald](https://github.com/sebald)! - fix: inconsistent naming of `SelectList` + +- Updated dependencies [[`bc08a48`](https://github.com/marigold-ui/marigold/commit/bc08a48087c31b501b5e4aeb9a992cb97ad9e21d), [`290dc0e`](https://github.com/marigold-ui/marigold/commit/290dc0e8b5b5fc1492d391d8e6156bd849f0b37d)]: + - @marigold/theme-core@26.1.10 + - @marigold/theme-docs@2.0.0 + - @marigold/components@7.8.1 + - @marigold/theme-b2b@27.1.10 + - @marigold/icons@1.2.50 + - @marigold/theme-preset@1.3.15 + +## 7.8.0 (Released on ) + +### Minor Changes + +- [#3913](https://github.com/marigold-ui/marigold/pull/3913) [`8c4631f`](https://github.com/marigold-ui/marigold/commit/8c4631f53744e9316f4d6ae325602de8287bbe86) Thanks [@sebald](https://github.com/sebald)! - feat: Introduce `Grid` component + +### Patch Changes + +- Updated dependencies [[`8c4631f`](https://github.com/marigold-ui/marigold/commit/8c4631f53744e9316f4d6ae325602de8287bbe86)]: + - @marigold/components@7.8.0 + - @marigold/theme-b2b@27.1.9 + - @marigold/theme-core@26.1.9 + - @marigold/icons@1.2.49 + - @marigold/theme-preset@1.3.14 + +## 7.7.2 (Released on ) + +### Patch Changes + +- [#3908](https://github.com/marigold-ui/marigold/pull/3908) [`20fb4f4`](https://github.com/marigold-ui/marigold/commit/20fb4f4868747b3a965688aebe48f3247d397d57) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - Fixing icons into docs to be copied in the right way + +- [#3865](https://github.com/marigold-ui/marigold/pull/3865) [`5eafe50`](https://github.com/marigold-ui/marigold/commit/5eafe50e4f03ab782b6dcb03bed82ec9b9460fc2) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - [DST-379]: Docs: The selected theme on marigold docs is now persisted in the local storage. + +- Updated dependencies [[`3e448ed`](https://github.com/marigold-ui/marigold/commit/3e448ede593cc4e4070366a1e6ac1ac8870dc102), [`bdd23ec`](https://github.com/marigold-ui/marigold/commit/bdd23ec48895543b9a4bd3d925c47dd02da8aefd), [`f0c0bc1`](https://github.com/marigold-ui/marigold/commit/f0c0bc18b0ad22984ad344e99222a7119c47ed36)]: + - @marigold/theme-core@26.1.8 + - @marigold/theme-b2b@27.1.8 + - @marigold/components@7.7.2 + - @marigold/icons@1.2.48 + - @marigold/theme-preset@1.3.13 + +## 7.7.1 (Released on ) + +### Patch Changes + +- [#3893](https://github.com/marigold-ui/marigold/pull/3893) [`f57caec`](https://github.com/marigold-ui/marigold/commit/f57caecd8c964ba2012bf1fcab9b15a15a58080d) Thanks [@sarahgm](https://github.com/sarahgm)! - feat: add className to MarigoldProvider + +- [#3898](https://github.com/marigold-ui/marigold/pull/3898) [`a54d186`](https://github.com/marigold-ui/marigold/commit/a54d186bf53da1a0afa6ee22a7711a803a155d6a) Thanks [@sebald](https://github.com/sebald)! - feat: Ensure datepicker shows only date by default + +- Updated dependencies [[`f57caec`](https://github.com/marigold-ui/marigold/commit/f57caecd8c964ba2012bf1fcab9b15a15a58080d), [`a54d186`](https://github.com/marigold-ui/marigold/commit/a54d186bf53da1a0afa6ee22a7711a803a155d6a), [`99d68a4`](https://github.com/marigold-ui/marigold/commit/99d68a42e1c4b9fbf70bf3a182270922bb042e0c)]: + - @marigold/components@7.7.1 + - @marigold/theme-core@26.1.7 + - @marigold/theme-b2b@27.1.7 + - @marigold/icons@1.2.47 + - @marigold/theme-preset@1.3.12 + +## 7.7.0 (Released on ) + +### Minor Changes + +- [#3892](https://github.com/marigold-ui/marigold/pull/3892) [`3f02ea1`](https://github.com/marigold-ui/marigold/commit/3f02ea15fab7b27907b0b478d479d6f2766e3ab2) Thanks [@sebald](https://github.com/sebald)! - feat: Allow to disable keyboard navigation on `Table` + +### Patch Changes + +- [#3891](https://github.com/marigold-ui/marigold/pull/3891) [`4ac7cc6`](https://github.com/marigold-ui/marigold/commit/4ac7cc684bfdda4a6eebb312712aec4711182ec1) Thanks [@sebald](https://github.com/sebald)! - docs: make `core` the default theme + +- [#3871](https://github.com/marigold-ui/marigold/pull/3871) [`64f9892`](https://github.com/marigold-ui/marigold/commit/64f98925842753832cfe4321cfff4027021f6846) Thanks [@sarahgm](https://github.com/sarahgm)! - [DST-381]:docs: Reintroduce Table of Contents to docs + +- [#3868](https://github.com/marigold-ui/marigold/pull/3868) [`3eac2f9`](https://github.com/marigold-ui/marigold/commit/3eac2f947935038653925c84a5fb1539d86cb59d) Thanks [@sarahgm](https://github.com/sarahgm)! - [DST-235]docs: add contact us page in docs + +- [#3879](https://github.com/marigold-ui/marigold/pull/3879) [`78889c6`](https://github.com/marigold-ui/marigold/commit/78889c6a205085b355c3838792b8a9b3989a51f7) Thanks [@sarahgm](https://github.com/sarahgm)! - [DSTSUP-64]: add mastermark/adminmark as token in our system + +- [#3881](https://github.com/marigold-ui/marigold/pull/3881) [`355eb6a`](https://github.com/marigold-ui/marigold/commit/355eb6a7864a0e01722d9db7596369c0ee9f79c1) Thanks [@sarahgm](https://github.com/sarahgm)! - [DST-405]:chore: adjust Command styles and menu + +- Updated dependencies [[`b62872d`](https://github.com/marigold-ui/marigold/commit/b62872dd557a8c35d56bc09d12b960752a466d46), [`72ece08`](https://github.com/marigold-ui/marigold/commit/72ece08fe8009ee19b05c2ad8796658dfa91ebb8), [`3f02ea1`](https://github.com/marigold-ui/marigold/commit/3f02ea15fab7b27907b0b478d479d6f2766e3ab2), [`5ea2604`](https://github.com/marigold-ui/marigold/commit/5ea26047d1b53f86a7a56f40e378172b69580593), [`78889c6`](https://github.com/marigold-ui/marigold/commit/78889c6a205085b355c3838792b8a9b3989a51f7), [`4a59427`](https://github.com/marigold-ui/marigold/commit/4a59427fc1d4c14b1971c07778de1977cdde5dda)]: + - @marigold/theme-core@26.1.6 + - @marigold/components@7.7.0 + - @marigold/theme-b2b@27.1.6 + - @marigold/eslint-config@0.4.15 + - @marigold/icons@1.2.46 + - @marigold/theme-preset@1.3.11 + +## 7.6.0 (Released on ) + +### Minor Changes + +- [#3841](https://github.com/marigold-ui/marigold/pull/3841) [`05d2ca0`](https://github.com/marigold-ui/marigold/commit/05d2ca03fbac80de9a1b6887932301b0d91691f2) Thanks [@sebald](https://github.com/sebald)! - feat: Allow configure position of menu popover + +- [#3708](https://github.com/marigold-ui/marigold/pull/3708) [`af1807b`](https://github.com/marigold-ui/marigold/commit/af1807b4335022bcd12db0d454992ef8bf6b2cc7) Thanks [@aromko](https://github.com/aromko)! - Creating new component `SelectList` + +### Patch Changes + +- [#3869](https://github.com/marigold-ui/marigold/pull/3869) [`f4af73c`](https://github.com/marigold-ui/marigold/commit/f4af73c3aa53d1c97da2eaca72db57811b5ffaa1) Thanks [@sarahgm](https://github.com/sarahgm)! - docs: add selectlist in guidelines + +- [#3866](https://github.com/marigold-ui/marigold/pull/3866) [`b517a2d`](https://github.com/marigold-ui/marigold/commit/b517a2d3d9d654f40768179bcc1b2afeeea39ae9) Thanks [@sarahgm](https://github.com/sarahgm)! - [DST-380]feat(docs): add fullscreen view for code demos + +- Updated dependencies [[`8d0203f`](https://github.com/marigold-ui/marigold/commit/8d0203f0a1b6bc8a090758745a0ecf94d8180ec4), [`05d2ca0`](https://github.com/marigold-ui/marigold/commit/05d2ca03fbac80de9a1b6887932301b0d91691f2), [`10050d4`](https://github.com/marigold-ui/marigold/commit/10050d4a83ab5cdc984031689cfc05ee52c32700), [`af1807b`](https://github.com/marigold-ui/marigold/commit/af1807b4335022bcd12db0d454992ef8bf6b2cc7), [`e8927dc`](https://github.com/marigold-ui/marigold/commit/e8927dc48a61e4d29e214a58cb7958d7990b8d3f)]: + - @marigold/theme-b2b@27.1.5 + - @marigold/components@7.6.0 + - @marigold/theme-core@26.1.5 + - @marigold/icons@1.2.45 + - @marigold/theme-preset@1.3.10 + +## 7.5.4 (Released on ) + +### Patch Changes + +- [#3840](https://github.com/marigold-ui/marigold/pull/3840) [`c8320d3`](https://github.com/marigold-ui/marigold/commit/c8320d30e6a2b311d2ff3ec74d713b5362806942) Thanks [@aromko](https://github.com/aromko)! - docs: change multiselect recipe + +- Updated dependencies [[`4c3cad5`](https://github.com/marigold-ui/marigold/commit/4c3cad52f3d6d85fdea89603682876fe35935b15), [`ea9c6b5`](https://github.com/marigold-ui/marigold/commit/ea9c6b5d74f514b25207792f8a0e4520836c2917)]: + - @marigold/theme-core@26.1.4 + - @marigold/components@7.5.4 + - @marigold/icons@1.2.44 + - @marigold/theme-preset@1.3.9 + - @marigold/theme-b2b@27.1.4 + +## 7.5.3 (Released on ) + +### Patch Changes + +- [#3824](https://github.com/marigold-ui/marigold/pull/3824) [`879a0e1`](https://github.com/marigold-ui/marigold/commit/879a0e12368318f4535792ed09917481fbd46f3b) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - Adding Multiselect guideline + +- [#3829](https://github.com/marigold-ui/marigold/pull/3829) [`81a84e5`](https://github.com/marigold-ui/marigold/commit/81a84e520dc9021d2b813ee345e8af14368b237e) Thanks [@sarahgm](https://github.com/sarahgm)! - chore[DSTSUP-65]: fix demo and add overlayprovider to tooltip + +- Updated dependencies [[`7fd7ad7`](https://github.com/marigold-ui/marigold/commit/7fd7ad7393ed524e5c72b4eecea896ffc67e7c86), [`879a0e1`](https://github.com/marigold-ui/marigold/commit/879a0e12368318f4535792ed09917481fbd46f3b), [`81a84e5`](https://github.com/marigold-ui/marigold/commit/81a84e520dc9021d2b813ee345e8af14368b237e)]: + - @marigold/components@7.5.3 + - @marigold/theme-b2b@27.1.3 + - @marigold/theme-core@26.1.3 + - @marigold/icons@1.2.43 + - @marigold/theme-preset@1.3.8 + +## 7.5.2 (Released on ) + +### Patch Changes + +- Updated dependencies [[`f996764`](https://github.com/marigold-ui/marigold/commit/f99676498dd62ffa671314b18be140967162b69b), [`f6a7035`](https://github.com/marigold-ui/marigold/commit/f6a7035d1f54dc6ebe7bb256f8071846be1c9216), [`8cc639d`](https://github.com/marigold-ui/marigold/commit/8cc639da7d9b97ec915067ea67883652f774e6c2), [`95ce246`](https://github.com/marigold-ui/marigold/commit/95ce246e7367031ec2241c9dd40e89a56bbb3547)]: + - @marigold/components@7.5.2 + - @marigold/theme-core@26.1.2 + - @marigold/theme-b2b@27.1.2 + - @marigold/icons@1.2.42 + - @marigold/theme-preset@1.3.7 + +## 7.5.1 (Released on ) + +### Patch Changes + +- [#3811](https://github.com/marigold-ui/marigold/pull/3811) [`c9d687e`](https://github.com/marigold-ui/marigold/commit/c9d687e14f04cbbada64acc0ecb87ec6c16bc38e) Thanks [@sebald](https://github.com/sebald)! - docs: move hooks and utils under components + +- [#3777](https://github.com/marigold-ui/marigold/pull/3777) [`02f1934`](https://github.com/marigold-ui/marigold/commit/02f1934f85d58ffd694e234a0b7e45dadc7e55cf) Thanks [@sarahgm](https://github.com/sarahgm)! - [DST-271]:feat: Column allow fit width of item + +- [#3810](https://github.com/marigold-ui/marigold/pull/3810) [`dea175a`](https://github.com/marigold-ui/marigold/commit/dea175a3c3d848db98a8ab5664c35e2bbce41d74) Thanks [@aromko](https://github.com/aromko)! - [DSTSUP-60]: add examples using state in table with input fields + [DSTSUP-60]: add `useListData` hook to docs +- Updated dependencies [[`4b952f2`](https://github.com/marigold-ui/marigold/commit/4b952f2d58ce8f183cb3e29f631897a95c1b99ab), [`d4479c7`](https://github.com/marigold-ui/marigold/commit/d4479c770b3833f0dbdaa488fabed5aee5d009ce), [`02f1934`](https://github.com/marigold-ui/marigold/commit/02f1934f85d58ffd694e234a0b7e45dadc7e55cf), [`bac4337`](https://github.com/marigold-ui/marigold/commit/bac4337efffa8751c39ed5fa999243a7eaef09a1), [`dea175a`](https://github.com/marigold-ui/marigold/commit/dea175a3c3d848db98a8ab5664c35e2bbce41d74), [`3d1e813`](https://github.com/marigold-ui/marigold/commit/3d1e8135d6af203400b4610b128037bed05ab0b1), [`886ff54`](https://github.com/marigold-ui/marigold/commit/886ff5424e44e20f8e65551bde6e3d8373d849a7), [`f21ad28`](https://github.com/marigold-ui/marigold/commit/f21ad28740c04161543b277d4fb5447156ed4aad)]: + - @marigold/theme-core@26.1.1 + - @marigold/components@7.5.1 + - @marigold/theme-b2b@27.1.1 + - @marigold/icons@1.2.41 + - @marigold/theme-preset@1.3.6 + +## 7.5.0 (Released on ) + +### Patch Changes + +- [#3751](https://github.com/marigold-ui/marigold/pull/3751) [`7601d6d`](https://github.com/marigold-ui/marigold/commit/7601d6d91027b5264e27ac4fedf3f07c18090d6f) Thanks [@aromko](https://github.com/aromko)! - [DST-288]: new `Formatters` category added to docs + +- [#3785](https://github.com/marigold-ui/marigold/pull/3785) [`07d9277`](https://github.com/marigold-ui/marigold/commit/07d927746893c846200c2ca6ee6977d50a4ed5a4) Thanks [@aromko](https://github.com/aromko)! - chore: added missing half space tokens. See [tailwind](https://tailwindcss.com/docs/padding). + +- [#3755](https://github.com/marigold-ui/marigold/pull/3755) [`5920c98`](https://github.com/marigold-ui/marigold/commit/5920c98e7df4b4fdeafc9fdc49d08469bea02f94) Thanks [@sarahgm](https://github.com/sarahgm)! - [DST-282]: docs: add Elevation documentation + +- Updated dependencies [[`e99387f`](https://github.com/marigold-ui/marigold/commit/e99387f7d4510108272e7a12882d4fcb74993252), [`7ddf5d0`](https://github.com/marigold-ui/marigold/commit/7ddf5d051f74f4311cab2b31b224d7fe257e19b7), [`fc7adee`](https://github.com/marigold-ui/marigold/commit/fc7adee62047fa24584666ee17f15f255aa0ba91), [`973e52d`](https://github.com/marigold-ui/marigold/commit/973e52d0a8d74e7ec11051563e1e3e93f5017356), [`81783b6`](https://github.com/marigold-ui/marigold/commit/81783b6807dfd05900f6ef862e16c14c58f3d6da), [`ade96cf`](https://github.com/marigold-ui/marigold/commit/ade96cf23f071140d8d935dc16c9096659b70bce), [`5920c98`](https://github.com/marigold-ui/marigold/commit/5920c98e7df4b4fdeafc9fdc49d08469bea02f94), [`6de0cb6`](https://github.com/marigold-ui/marigold/commit/6de0cb6ab5b7acc2638c3ce2ee54ea9f961097c6), [`477e375`](https://github.com/marigold-ui/marigold/commit/477e3757045a048bf76a138f82047c02a348b32a), [`ee50a2a`](https://github.com/marigold-ui/marigold/commit/ee50a2a96679cb5935e2881763b65276194710ce), [`33ceefc`](https://github.com/marigold-ui/marigold/commit/33ceefcebbc7271bef563b722caeada5ce698144), [`7a5bc5f`](https://github.com/marigold-ui/marigold/commit/7a5bc5fcc9103c714fa8ca8c9e12a9364dd7a03a), [`e1bcf1c`](https://github.com/marigold-ui/marigold/commit/e1bcf1c855a7df613ae7254a4bb7ef823515b148), [`6de438b`](https://github.com/marigold-ui/marigold/commit/6de438b81cd21da9d57e1312692938817b359b16), [`d6c44fa`](https://github.com/marigold-ui/marigold/commit/d6c44fa342d1221f42a8d4f82889c70865b97b39), [`e77fbb0`](https://github.com/marigold-ui/marigold/commit/e77fbb070396e78961548a0ee3656562f6f1fdc1), [`fc7f0bf`](https://github.com/marigold-ui/marigold/commit/fc7f0bfa56e03de542e9faf6e0951b6901c10381), [`f04eeb5`](https://github.com/marigold-ui/marigold/commit/f04eeb52645eb595396feca92dc66b94dbc62e8e), [`f306d06`](https://github.com/marigold-ui/marigold/commit/f306d065937b3b2c5ae10a73e5b6e0776016634b)]: + - @marigold/theme-core@26.1.0 + - @marigold/theme-b2b@27.1.0 + - @marigold/eslint-config@0.4.14 + - @marigold/components@7.5.0 + - @marigold/icons@1.2.40 + - @marigold/theme-preset@1.3.5 + +## 7.4.0 (Released on ) + +### Minor Changes + +- [#3713](https://github.com/marigold-ui/marigold/pull/3713) [`2b9e03e`](https://github.com/marigold-ui/marigold/commit/2b9e03effbbcc63e50781448b89f4e9062c4d0e5) Thanks [@sebald](https://github.com/sebald)! - feat: Render empty state of `` + +- [#3674](https://github.com/marigold-ui/marigold/pull/3674) [`3d66a58`](https://github.com/marigold-ui/marigold/commit/3d66a58ca0843a9586e37a87cdfb41b6a6318fd6) Thanks [@sebald](https://github.com/sebald)! - docs: Add docs for `
` + +### Patch Changes + +- [#3715](https://github.com/marigold-ui/marigold/pull/3715) [`7969fd9`](https://github.com/marigold-ui/marigold/commit/7969fd9d38275c6dbad0d80d2b84c8e8e365dfa4) Thanks [@sebald](https://github.com/sebald)! - fix: add placeholder prop to `Combobox` types + +- [#3711](https://github.com/marigold-ui/marigold/pull/3711) [`8bffe0d`](https://github.com/marigold-ui/marigold/commit/8bffe0d1ca6cc6e63344f7e95f845aa3971e5092) Thanks [@aromko](https://github.com/aromko)! - [DST-285]: restructure forms and validation section + +- Updated dependencies [[`dbaadeb`](https://github.com/marigold-ui/marigold/commit/dbaadeb54251f39f54c49ab9144f837711c764d5), [`ebea32e`](https://github.com/marigold-ui/marigold/commit/ebea32e2e2d875de430eea07d7f31e2ed23fd21a), [`21fc7cf`](https://github.com/marigold-ui/marigold/commit/21fc7cf6ce095b987f64b000826653bd78c7c88d), [`c61895d`](https://github.com/marigold-ui/marigold/commit/c61895db7fbc3cee7fd0d622518f64d881da7f9b), [`2b9e03e`](https://github.com/marigold-ui/marigold/commit/2b9e03effbbcc63e50781448b89f4e9062c4d0e5), [`3d66a58`](https://github.com/marigold-ui/marigold/commit/3d66a58ca0843a9586e37a87cdfb41b6a6318fd6), [`f9a4a4c`](https://github.com/marigold-ui/marigold/commit/f9a4a4c2dedc31ded547a55f17d35da382b58aec), [`4d2f94f`](https://github.com/marigold-ui/marigold/commit/4d2f94fcfe17d510298ef0e545736f6dfd6b5992), [`36c6301`](https://github.com/marigold-ui/marigold/commit/36c63014fba2211c64b0a93ce387e9ebbe3ef6e0), [`7969fd9`](https://github.com/marigold-ui/marigold/commit/7969fd9d38275c6dbad0d80d2b84c8e8e365dfa4), [`59a9285`](https://github.com/marigold-ui/marigold/commit/59a9285fe8eb46be26ebc7f272081343023fceae), [`45489d9`](https://github.com/marigold-ui/marigold/commit/45489d93ff9ff99206ea233d744a553e943f7bb0)]: + - @marigold/components@7.4.0 + - @marigold/theme-core@26.0.7 + - @marigold/theme-b2b@27.0.4 + - @marigold/icons@1.2.39 + - @marigold/theme-preset@1.3.4 + +## 7.3.3 (Released on ) + +### Patch Changes + +- Updated dependencies [[`b37c3ee`](https://github.com/marigold-ui/marigold/commit/b37c3eebc8b859d7c6b6e35290203d0eb393a1eb)]: + - @marigold/components@7.3.3 + - @marigold/theme-b2b@27.0.3 + - @marigold/theme-core@26.0.6 + - @marigold/icons@1.2.38 + - @marigold/theme-preset@1.3.3 + +## 7.3.2 (Released on ) + +### Patch Changes + +- [#3670](https://github.com/marigold-ui/marigold/pull/3670) [`4472bb7`](https://github.com/marigold-ui/marigold/commit/4472bb7115877802bc7aa92bda303dbf5e68b6da) Thanks [@sarahgm](https://github.com/sarahgm)! - docs: fix ThemeSwitcher in docs + +- Updated dependencies [[`c2c7e71`](https://github.com/marigold-ui/marigold/commit/c2c7e71a405adabec937a5ff0b087b7a8b6c1c8d)]: + - @marigold/components@7.3.2 + - @marigold/theme-b2b@27.0.2 + - @marigold/theme-core@26.0.5 + - @marigold/icons@1.2.37 + - @marigold/theme-preset@1.3.2 + +## 7.3.1 (Released on ) + +### Patch Changes + +- [#3672](https://github.com/marigold-ui/marigold/pull/3672) [`f8ed8d1`](https://github.com/marigold-ui/marigold/commit/f8ed8d13ef4bfcbe150cf1ffcfefff0aee233e8a) Thanks [@sarahgm](https://github.com/sarahgm)! - [DSTSUP-32]feat: add new icons to marigold + +- [#3669](https://github.com/marigold-ui/marigold/pull/3669) [`88eb6b7`](https://github.com/marigold-ui/marigold/commit/88eb6b720581b408462b9f42d01926d999693c31) Thanks [@sarahgm](https://github.com/sarahgm)! - docs: fix demos in select docs page + +- [#3676](https://github.com/marigold-ui/marigold/pull/3676) [`63d407e`](https://github.com/marigold-ui/marigold/commit/63d407e11c8ec31ce5375868f174b306d5cda8f1) Thanks [@sebald](https://github.com/sebald)! - feat: use `size-` util (also fixes linting) + +- Updated dependencies [[`e41f61d`](https://github.com/marigold-ui/marigold/commit/e41f61dc7d8fc2368ac54741f6134e39048eb3a5), [`c2af52b`](https://github.com/marigold-ui/marigold/commit/c2af52b3390edc83eee6816398dadebbb7bd9353), [`35ff260`](https://github.com/marigold-ui/marigold/commit/35ff26022c0815f37037ea1054471ac3a5302910), [`f8ed8d1`](https://github.com/marigold-ui/marigold/commit/f8ed8d13ef4bfcbe150cf1ffcfefff0aee233e8a), [`3d2d172`](https://github.com/marigold-ui/marigold/commit/3d2d17236849efff952968a394121ed4c5b11658), [`01148ac`](https://github.com/marigold-ui/marigold/commit/01148aca8c0dc0c236bc698b2fcc8980a5aa6470), [`63d407e`](https://github.com/marigold-ui/marigold/commit/63d407e11c8ec31ce5375868f174b306d5cda8f1)]: + - @marigold/theme-b2b@27.0.1 + - @marigold/theme-core@26.0.4 + - @marigold/components@7.3.1 + - @marigold/icons@1.2.36 + - @marigold/theme-preset@1.3.1 + +## 7.3.0 (Released on ) + +### Patch Changes + +- Updated dependencies [[`b5cb086`](https://github.com/marigold-ui/marigold/commit/b5cb08634900c007060b50b4055c7c75847e4598), [`34a7482`](https://github.com/marigold-ui/marigold/commit/34a748234747b91cb3b4fb9cb4c6708508ac05aa), [`6f3d81d`](https://github.com/marigold-ui/marigold/commit/6f3d81df18041f55a2e2a40077a7b97cc9befa42), [`645ab22`](https://github.com/marigold-ui/marigold/commit/645ab22b911079c8d874c980cc137005e94dd69c), [`fd16ef5`](https://github.com/marigold-ui/marigold/commit/fd16ef5f593d0bebaff24563edf663ad5a542feb), [`b4999d8`](https://github.com/marigold-ui/marigold/commit/b4999d8ecc9118df94b57f03dd67a80df4af7576), [`8b6f34a`](https://github.com/marigold-ui/marigold/commit/8b6f34abf562158ea4bfbd6ad7a8a33c143a929f), [`7e3aa28`](https://github.com/marigold-ui/marigold/commit/7e3aa287a2d3987ff82d2f7cda37194db3533cfa), [`3c72997`](https://github.com/marigold-ui/marigold/commit/3c729971879d41543ef074bab6b9874a283039d4), [`c1fb6aa`](https://github.com/marigold-ui/marigold/commit/c1fb6aa690caa0bd316ad93a9ffa3ac045afeb2e), [`299941b`](https://github.com/marigold-ui/marigold/commit/299941b52c027f8c203ba5b13335ab22b9441e13)]: + - @marigold/theme-core@26.0.3 + - @marigold/components@7.3.0 + - @marigold/theme-b2b@27.0.0 + - @marigold/theme-preset@1.3.0 + - @marigold/icons@1.2.35 + +## 7.2.0 (Released on ) + +### Minor Changes + +- [#3575](https://github.com/marigold-ui/marigold/pull/3575) [`cba7099`](https://github.com/marigold-ui/marigold/commit/cba7099f1f89b30f23be0074134c224c7ba173b1) Thanks [@sarahgm](https://github.com/sarahgm)! - feat[DST-263]: new component ``!!! + +- [#3593](https://github.com/marigold-ui/marigold/pull/3593) [`46e1a41`](https://github.com/marigold-ui/marigold/commit/46e1a41551b9524668836dc4ed085a6780e10d10) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - Adding sticky header feature to tables + +### Patch Changes + +- [#3573](https://github.com/marigold-ui/marigold/pull/3573) [`6125442`](https://github.com/marigold-ui/marigold/commit/612544295dbd2d5966fc44ed6d5f3876f054d344) Thanks [@aromko](https://github.com/aromko)! - [DST-264]: update token guidelines component height + +- [#3566](https://github.com/marigold-ui/marigold/pull/3566) [`2fd272d`](https://github.com/marigold-ui/marigold/commit/2fd272d99eaa0b057120e09da251044cf5bbece4) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - Improve navigation in doku + +- [#3517](https://github.com/marigold-ui/marigold/pull/3517) [`7a8d40a`](https://github.com/marigold-ui/marigold/commit/7a8d40abdeb34d28cab0771269e1cfc6b7f4b1f0) Thanks [@sarahgm](https://github.com/sarahgm)! - chore[DST-220]: seperate data-theme attribute and classnames on provider (so you don't need any data-theme attribute anymore) + +- Updated dependencies [[`0b23a25`](https://github.com/marigold-ui/marigold/commit/0b23a25efa8be6bf0dcc6cbb315b6fb4a0ad9dfd), [`f7d3f7e`](https://github.com/marigold-ui/marigold/commit/f7d3f7e1347adf85e3d1e9c9203cd885d961fd08), [`7a8d40a`](https://github.com/marigold-ui/marigold/commit/7a8d40abdeb34d28cab0771269e1cfc6b7f4b1f0), [`6697a67`](https://github.com/marigold-ui/marigold/commit/6697a67c11f251b8361f8be522b8c4be608455dc), [`9f1ae32`](https://github.com/marigold-ui/marigold/commit/9f1ae32297f6e5d3c08ce861b4e497a15bf06b37), [`4ff1f57`](https://github.com/marigold-ui/marigold/commit/4ff1f57562da920a03dff46505a78d150239fe51), [`add4d9e`](https://github.com/marigold-ui/marigold/commit/add4d9e3e0b3d61ac08fb5a4588decf5c2e796f6), [`b228e09`](https://github.com/marigold-ui/marigold/commit/b228e099be8940b6ea50bdc6ad8ef6e52ddc4c3d), [`cba7099`](https://github.com/marigold-ui/marigold/commit/cba7099f1f89b30f23be0074134c224c7ba173b1), [`d76a835`](https://github.com/marigold-ui/marigold/commit/d76a83587c3d839c50deceb7303ddb59fc38f4b1), [`46e1a41`](https://github.com/marigold-ui/marigold/commit/46e1a41551b9524668836dc4ed085a6780e10d10)]: + - @marigold/components@7.2.0 + - @marigold/theme-core@26.0.2 + - @marigold/theme-b2b@26.1.0 + - @marigold/theme-preset@1.2.8 + - @marigold/icons@1.2.34 + +## 7.1.0 (Released on ) + +### Minor Changes + +- [#3551](https://github.com/marigold-ui/marigold/pull/3551) [`49a702446`](https://github.com/marigold-ui/marigold/commit/49a702446394e82c72df1691f53709a70a4be41a) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - Adding Table Column alignment feature + +### Patch Changes + +- [#3556](https://github.com/marigold-ui/marigold/pull/3556) [`cbe79e36a`](https://github.com/marigold-ui/marigold/commit/cbe79e36a3de22104db832a972000a7279cb7c1d) Thanks [@sarahgm](https://github.com/sarahgm)! - docs: fix Menu Selection demo + +- Updated dependencies [[`6a4d1e8d0`](https://github.com/marigold-ui/marigold/commit/6a4d1e8d0fbf2270d0b393f4c89a0d6187964037), [`b6cb6edce`](https://github.com/marigold-ui/marigold/commit/b6cb6edce3872cde0b49161b838147914b1976a3), [`4fa5dee85`](https://github.com/marigold-ui/marigold/commit/4fa5dee853c31cf81121ce1f9ff22fff0db0b415), [`a984d90e2`](https://github.com/marigold-ui/marigold/commit/a984d90e2e8d937b600af72a895db934f9d6d674), [`b3fd3e5e0`](https://github.com/marigold-ui/marigold/commit/b3fd3e5e09c044e52fcdeac19ebdd6d6361b7f6a), [`47f300029`](https://github.com/marigold-ui/marigold/commit/47f3000292bb387cba4f904e729b55792864832b), [`63b093ad8`](https://github.com/marigold-ui/marigold/commit/63b093ad8ca6d7bf1767db2b42c467016871ce49), [`49a702446`](https://github.com/marigold-ui/marigold/commit/49a702446394e82c72df1691f53709a70a4be41a), [`535d1088b`](https://github.com/marigold-ui/marigold/commit/535d1088b5d0de60ec07e72d2b5faac7b918ad01), [`08e89a407`](https://github.com/marigold-ui/marigold/commit/08e89a40738e78459be976b8c6f6a5d23ffd8720), [`e2fa304a6`](https://github.com/marigold-ui/marigold/commit/e2fa304a6528c51a1f1ded1d954ae36d2113a70f)]: + - @marigold/components@7.1.0 + - @marigold/theme-b2b@26.0.1 + - @marigold/theme-core@26.0.1 + - @marigold/theme-preset@1.2.7 + - @marigold/icons@1.2.33 + +## 7.0.0 (Released on ) + +### Major Changes + +- [#3542](https://github.com/marigold-ui/marigold/pull/3542) [`3952ee0e8`](https://github.com/marigold-ui/marigold/commit/3952ee0e893704e791bc6a51ed57b3dc80b78ece) Thanks [@sarahgm](https://github.com/sarahgm)! - RAC: Menu react aria components + + > [!WARNING] > **BREAKCING CHANGE** `` no longer us the `key` prop as unique identifier, use the `id` prop instead. To migrate, rename all `` to ``. + +- [#3535](https://github.com/marigold-ui/marigold/pull/3535) [`e4cfbc7d1`](https://github.com/marigold-ui/marigold/commit/e4cfbc7d1f07015532f359217d2b8d0d74f932bf) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - Migrate Select component to RAC + + > [!WARNING] > **BREAKCING CHANGE** `` no longer us the `key` prop as unique identifier, use the `id` prop instead. To migrate, rename all `` to ``. + +- [#3546](https://github.com/marigold-ui/marigold/pull/3546) [`9c61ffe09`](https://github.com/marigold-ui/marigold/commit/9c61ffe09271c4f4b2ab9907472763d222d24f04) Thanks [@sebald](https://github.com/sebald)! - refa: Migrate `ComBox` to RAC + + > [!WARNING] > **BREAKCING CHANGE** `` no longer us the `key` prop as unique identifier, use the `id` prop instead. To migrate, rename all `` to ``. + +- [#3550](https://github.com/marigold-ui/marigold/pull/3550) [`30167bb78`](https://github.com/marigold-ui/marigold/commit/30167bb78f11c557c45c19dc25a7d66db805879b) Thanks [@sarahgm](https://github.com/sarahgm)! - RAC: Autocomplete + + > [!WARNING] > **BREAKCING CHANGE** `` no longer us the `key` prop as unique identifier, use the `id` prop instead. To migrate, rename all `` to ``. + +### Patch Changes + +- Updated dependencies [[`3952ee0e8`](https://github.com/marigold-ui/marigold/commit/3952ee0e893704e791bc6a51ed57b3dc80b78ece), [`dc5c193e0`](https://github.com/marigold-ui/marigold/commit/dc5c193e02a71eb16a064b50dad5a51d4f9b0c2b), [`e4cfbc7d1`](https://github.com/marigold-ui/marigold/commit/e4cfbc7d1f07015532f359217d2b8d0d74f932bf), [`9c61ffe09`](https://github.com/marigold-ui/marigold/commit/9c61ffe09271c4f4b2ab9907472763d222d24f04), [`4ae97c004`](https://github.com/marigold-ui/marigold/commit/4ae97c004a68c4331cd8fa0fdbc276fc3f7f452d), [`72125e114`](https://github.com/marigold-ui/marigold/commit/72125e11492d60f08665054e4427de24cde337be), [`30167bb78`](https://github.com/marigold-ui/marigold/commit/30167bb78f11c557c45c19dc25a7d66db805879b), [`f3a45c302`](https://github.com/marigold-ui/marigold/commit/f3a45c302852c460395411cdafa1558120227efb)]: + - @marigold/components@7.0.0 + - @marigold/theme-b2b@26.0.0 + - @marigold/theme-core@26.0.0 + - @marigold/icons@1.2.32 + - @marigold/theme-preset@1.2.6 + +## 6.11.0 (Released on ) + +### Patch Changes + +- Updated dependencies [[`a748252c5`](https://github.com/marigold-ui/marigold/commit/a748252c5e233d37548dd0b9d9dd18cbbbd6fdb5), [`148034202`](https://github.com/marigold-ui/marigold/commit/148034202a502f9c669c5c500c6dcae13924b409), [`071bd792a`](https://github.com/marigold-ui/marigold/commit/071bd792ac0ed9fc0adbb7aa9ae781ed7fa280fd), [`51611dbe0`](https://github.com/marigold-ui/marigold/commit/51611dbe075fa43aef219bf30a196b34b3ec7d73), [`bc96dda88`](https://github.com/marigold-ui/marigold/commit/bc96dda88894271bc7fdc4a01270932855337af8), [`f972b3a25`](https://github.com/marigold-ui/marigold/commit/f972b3a2579483c5e8632cc13ce6d4dbacc18a73), [`cf59ce1e4`](https://github.com/marigold-ui/marigold/commit/cf59ce1e4154e670b51ee43387e372e3f7ec8e60), [`bc09a9ce1`](https://github.com/marigold-ui/marigold/commit/bc09a9ce1c917b0fc3cfbd3459a0c83cf804308e), [`849f4c534`](https://github.com/marigold-ui/marigold/commit/849f4c534f71ce64bb7181b2bdc60ff4864b3ce1), [`cdc17ee83`](https://github.com/marigold-ui/marigold/commit/cdc17ee83771dc367d29126903feca831c43a421), [`91badb0e1`](https://github.com/marigold-ui/marigold/commit/91badb0e1da21d8cefa36c48c57d53c5abe54123)]: + - @marigold/components@6.11.0 + - @marigold/theme-b2b@25.9.0 + - @marigold/theme-core@25.9.0 + - @marigold/icons@1.2.31 + - @marigold/theme-preset@1.2.5 + +## 6.10.0 (Released on ) + +### Minor Changes + +- [#3501](https://github.com/marigold-ui/marigold/pull/3501) [`14f5d5d30`](https://github.com/marigold-ui/marigold/commit/14f5d5d301f6e2dd49667439ecda54c2ce7d08a7) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - Migrate Tabs to RAC Tabs + +### Patch Changes + +- Updated dependencies [[`14f5d5d30`](https://github.com/marigold-ui/marigold/commit/14f5d5d301f6e2dd49667439ecda54c2ce7d08a7), [`f58919ad5`](https://github.com/marigold-ui/marigold/commit/f58919ad5b5a3b51fa5d26ca67931949c262c9a3), [`213d32f5b`](https://github.com/marigold-ui/marigold/commit/213d32f5b79ee9063e30fbe52c064560f771df21), [`5a3d71cae`](https://github.com/marigold-ui/marigold/commit/5a3d71cae1b4243db94ff997313ceada2fa3bfeb), [`aac41db30`](https://github.com/marigold-ui/marigold/commit/aac41db30bfb7613bf9ba537d1030cd5c8d1baa0), [`71eb13b30`](https://github.com/marigold-ui/marigold/commit/71eb13b30b3d94a8bacb1f69f457c13d7e33fad2), [`09ed4b46e`](https://github.com/marigold-ui/marigold/commit/09ed4b46e254cb314ff6b6bd6e7b2d42112aaee9)]: + - @marigold/components@6.10.0 + - @marigold/theme-core@25.8.0 + - @marigold/theme-b2b@25.8.0 + - @marigold/icons@1.2.30 + - @marigold/theme-preset@1.2.4 + +## 6.9.1 (Released on ) + +### Patch Changes + +- [#3508](https://github.com/marigold-ui/marigold/pull/3508) [`5c8f995e5`](https://github.com/marigold-ui/marigold/commit/5c8f995e561ac12c21d9121af4211c44ca201231) Thanks [@aromko](https://github.com/aromko)! - chore: fix core print demo example + +- Updated dependencies []: + - @marigold/components@6.9.1 + - @marigold/icons@1.2.29 + - @marigold/theme-preset@1.2.3 + - @marigold/theme-b2b@25.7.1 + - @marigold/theme-core@25.7.1 + +## 6.9.0 (Released on ) + +### Patch Changes + +- Updated dependencies [[`79eaec78c`](https://github.com/marigold-ui/marigold/commit/79eaec78c8c1a5d99d4ad09f93f8b2ca39aaade2), [`c068869a9`](https://github.com/marigold-ui/marigold/commit/c068869a98f3c7ceb91bd04b59342668d546f589), [`a16541314`](https://github.com/marigold-ui/marigold/commit/a165413142b6d64f9995678498c6d68091ce526e), [`7507ac7f5`](https://github.com/marigold-ui/marigold/commit/7507ac7f52d9a6d0826534b4035bb0dce7f074aa), [`729158c87`](https://github.com/marigold-ui/marigold/commit/729158c8799205cdc6a733cd01f6a2239850ac2a), [`17ee74d46`](https://github.com/marigold-ui/marigold/commit/17ee74d4686e003b133dab2598eb2bbb6d87e948), [`f19a502d4`](https://github.com/marigold-ui/marigold/commit/f19a502d4badd559a27e86e6e74747dfccb0a6c2), [`75bad8b84`](https://github.com/marigold-ui/marigold/commit/75bad8b84c127cd38a30f70af26795aa8e8d4ae0)]: + - @marigold/components@6.9.0 + - @marigold/theme-b2b@25.7.0 + - @marigold/theme-core@25.7.0 + - @marigold/icons@1.2.28 + - @marigold/theme-preset@1.2.2 + +## 6.8.0 (Released on ) + +### Patch Changes + +- Updated dependencies [[`30b94e542`](https://github.com/marigold-ui/marigold/commit/30b94e542fe3d60676b2e00868e48b28e8c12ff6), [`c76bd48a2`](https://github.com/marigold-ui/marigold/commit/c76bd48a2f12b488f58de09e38c4d78da62c2e3b), [`3a21b538a`](https://github.com/marigold-ui/marigold/commit/3a21b538a5f72fb021bf7cb023f565d6e84e2ea7), [`4c76cf114`](https://github.com/marigold-ui/marigold/commit/4c76cf114adf3c2485518f386ebd14c0415df3ac), [`84c427dec`](https://github.com/marigold-ui/marigold/commit/84c427dec67be6ef488ece0afb179dc95c403447)]: + - @marigold/components@6.8.0 + - @marigold/theme-b2b@25.6.2 + - @marigold/theme-core@25.6.2 + - @marigold/icons@1.2.27 + - @marigold/theme-preset@1.2.1 + +## 6.7.0 (Released on ) + +### Patch Changes + +- Updated dependencies [[`22446fa66`](https://github.com/marigold-ui/marigold/commit/22446fa66d38b34d975ed88b4dcd0b1ca7190a57)]: + - @marigold/components@6.7.0 + - @marigold/theme-preset@1.2.0 + - @marigold/theme-b2b@25.6.1 + - @marigold/theme-core@25.6.1 + - @marigold/icons@1.2.26 + +## 6.6.4 (Released on ) + +### Patch Changes + +- Updated dependencies [[`174f534b5`](https://github.com/marigold-ui/marigold/commit/174f534b5bcb5c3d34284d7cdeb5bf6fd372a350), [`4f6d1c78d`](https://github.com/marigold-ui/marigold/commit/4f6d1c78d5b5155e09f7f92cf78b83a614af13d9), [`cac5ef60d`](https://github.com/marigold-ui/marigold/commit/cac5ef60d36c2c7c0eea5cc9096a849315eefeed)]: + - @marigold/components@6.6.4 + - @marigold/theme-core@25.6.0 + - @marigold/theme-b2b@25.6.0 + - @marigold/icons@1.2.25 + - @marigold/theme-preset@1.1.16 + +## 6.6.3 (Released on ) + +### Patch Changes + +- Updated dependencies [[`fd0e1d6d0`](https://github.com/marigold-ui/marigold/commit/fd0e1d6d06f6860932e0b9a9b156b8adc9087b72)]: + - @marigold/theme-core@25.5.3 + - @marigold/components@6.6.3 + - @marigold/icons@1.2.24 + - @marigold/theme-preset@1.1.15 + - @marigold/theme-b2b@25.5.3 + +## 6.6.2 (Released on ) + +### Patch Changes + +- Updated dependencies [[`611956377`](https://github.com/marigold-ui/marigold/commit/61195637796327c148597fa4b495c43e24e3fe77)]: + - @marigold/theme-core@25.5.2 + - @marigold/components@6.6.2 + - @marigold/icons@1.2.23 + - @marigold/theme-preset@1.1.14 + - @marigold/theme-b2b@25.5.2 + +## 6.6.1 (Released on ) + +### Patch Changes + +- Updated dependencies [[`ea9d457a4`](https://github.com/marigold-ui/marigold/commit/ea9d457a4c762d740d6c249ca4907b76cbe80f25)]: + - @marigold/theme-core@25.5.1 + - @marigold/components@6.6.1 + - @marigold/icons@1.2.22 + - @marigold/theme-preset@1.1.13 + - @marigold/theme-b2b@25.5.1 + +## 6.6.0 (Released on ) + +### Minor Changes + +- [#3452](https://github.com/marigold-ui/marigold/pull/3452) [`43e792d6a`](https://github.com/marigold-ui/marigold/commit/43e792d6a55b60429a208e206f00cdab5bd23a9f) Thanks [@sarahgm](https://github.com/sarahgm)! - feat: expose `RouterProvider` + +### Patch Changes + +- Updated dependencies [[`547fca472`](https://github.com/marigold-ui/marigold/commit/547fca47212de69da8366988d2e7e1d29c3411ca), [`4cb379e5a`](https://github.com/marigold-ui/marigold/commit/4cb379e5ac0a5ba36cc8de55a73b901c701f80c6), [`f3bbad3e7`](https://github.com/marigold-ui/marigold/commit/f3bbad3e794f0c2474c5fbe0eea2263f399a227a), [`43e792d6a`](https://github.com/marigold-ui/marigold/commit/43e792d6a55b60429a208e206f00cdab5bd23a9f), [`7704debbe`](https://github.com/marigold-ui/marigold/commit/7704debbea339917eedf8182e2e5986798b34aff), [`f2b764380`](https://github.com/marigold-ui/marigold/commit/f2b764380c3775c640b56e2a2fdd838762699318)]: + - @marigold/components@6.6.0 + - @marigold/theme-b2b@25.5.0 + - @marigold/theme-core@25.5.0 + - @marigold/icons@1.2.21 + - @marigold/theme-preset@1.1.12 + +## 6.5.1 (Released on ) + +### Patch Changes + +- Updated dependencies [[`80ac67eac`](https://github.com/marigold-ui/marigold/commit/80ac67eac8ad065c8c0f458e5f888c3f0e42a02b)]: + - @marigold/components@6.5.1 + - @marigold/theme-b2b@25.4.1 + - @marigold/theme-core@25.4.1 + - @marigold/icons@1.2.20 + - @marigold/theme-preset@1.1.11 + +## 6.5.0 (Released on ) + +### Patch Changes + +- Updated dependencies [[`5e1219c84`](https://github.com/marigold-ui/marigold/commit/5e1219c84810991be0253186a7f7ec19bd916689), [`1ce0cabbf`](https://github.com/marigold-ui/marigold/commit/1ce0cabbf8e04cab4345265dbe131d48be773d68)]: + - @marigold/components@6.5.0 + - @marigold/theme-b2b@25.4.0 + - @marigold/theme-core@25.4.0 + - @marigold/icons@1.2.19 + - @marigold/theme-preset@1.1.10 + +## 6.4.0 (Released on ) + +### Minor Changes + +- [#3408](https://github.com/marigold-ui/marigold/pull/3408) [`78840aa04`](https://github.com/marigold-ui/marigold/commit/78840aa04e83dce5f8fbfa7357f7099eddf71126) Thanks [@sarahgm](https://github.com/sarahgm)! - RAC: Headline as React Aria Component + +- [#3392](https://github.com/marigold-ui/marigold/pull/3392) [`5ed86abd0`](https://github.com/marigold-ui/marigold/commit/5ed86abd0643b0fcf4254a7a2fec74266085346d) Thanks [@sarahgm](https://github.com/sarahgm)! - RAC: Link as react aria component + +### Patch Changes + +- Updated dependencies [[`1eb93352a`](https://github.com/marigold-ui/marigold/commit/1eb93352a8c08cac7903ac08fb91d8f9be8c0bfd), [`0b1ac52e5`](https://github.com/marigold-ui/marigold/commit/0b1ac52e54ba5a8693a2894f389497f36a9041ac), [`9b0ed3862`](https://github.com/marigold-ui/marigold/commit/9b0ed38624cbed0edde8a3cb502ba34259ed5bfc), [`3e328198c`](https://github.com/marigold-ui/marigold/commit/3e328198ca5ab18ef4218c8252463ea5d76091bd), [`dc2b1484c`](https://github.com/marigold-ui/marigold/commit/dc2b1484cd77141e5bc8c94d50ecfaf29a8a3571), [`e5869b2f3`](https://github.com/marigold-ui/marigold/commit/e5869b2f3bf0f3b69a2e37f377d51786d23ccc56), [`e968e5eb5`](https://github.com/marigold-ui/marigold/commit/e968e5eb5ce58b37c364b01b7617b1bc108c5f74), [`67ab41a40`](https://github.com/marigold-ui/marigold/commit/67ab41a40384c5ef1f17c013913ea2ee01edc5de), [`470d00c6d`](https://github.com/marigold-ui/marigold/commit/470d00c6d6be571d6fc9cb82cde7f4756b360b83), [`78840aa04`](https://github.com/marigold-ui/marigold/commit/78840aa04e83dce5f8fbfa7357f7099eddf71126), [`60c7f1dc5`](https://github.com/marigold-ui/marigold/commit/60c7f1dc549e6b489a1852a18da849fcbb052f5c), [`0fbb7f963`](https://github.com/marigold-ui/marigold/commit/0fbb7f96327d0af6acb9c9d2f4e6bfa76cb5384d), [`4be30b28a`](https://github.com/marigold-ui/marigold/commit/4be30b28a7bd64807c28bc8371d9162f922905f6), [`700cdf296`](https://github.com/marigold-ui/marigold/commit/700cdf2963f7b0b46ed715599646fa7ed71e7c0b), [`5a2a03ae0`](https://github.com/marigold-ui/marigold/commit/5a2a03ae0766a417c208c8624d8b6a0f370edcd9), [`5ed86abd0`](https://github.com/marigold-ui/marigold/commit/5ed86abd0643b0fcf4254a7a2fec74266085346d)]: + - @marigold/components@6.4.0 + - @marigold/theme-b2b@25.3.0 + - @marigold/theme-core@25.3.0 + - @marigold/icons@1.2.18 + - @marigold/theme-preset@1.1.9 + +## 6.3.1 (Released on ) + +### Patch Changes + +- Updated dependencies [[`310aeb450`](https://github.com/marigold-ui/marigold/commit/310aeb450fdf9d9778ee107ad817531e533ee846), [`d8b3cca2d`](https://github.com/marigold-ui/marigold/commit/d8b3cca2dfe5ff199c5045c1e77cec7d6384c725)]: + - @marigold/theme-b2b@25.2.8 + - @marigold/components@6.3.1 + - @marigold/theme-core@25.2.8 + - @marigold/icons@1.2.17 + - @marigold/theme-preset@1.1.8 + +## 6.3.0 (Released on ) + +### Minor Changes + +- [#3383](https://github.com/marigold-ui/marigold/pull/3383) [`958477f43`](https://github.com/marigold-ui/marigold/commit/958477f43da2b599430d4bb91470673b8cf04608) Thanks [@sarahgm](https://github.com/sarahgm)! - feat: remove className prop from all components + +### Patch Changes + +- [#3376](https://github.com/marigold-ui/marigold/pull/3376) [`fa1fa37d7`](https://github.com/marigold-ui/marigold/commit/fa1fa37d70564d64902ceef3bcf6a118f4b96cdc) Thanks [@sarahgm](https://github.com/sarahgm)! - docs: new navigation pattern + +- [#3344](https://github.com/marigold-ui/marigold/pull/3344) [`6f4953b1c`](https://github.com/marigold-ui/marigold/commit/6f4953b1cccc11fd9a20853c030535e083123c3a) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[197]: useResponsiveValue documentation + +- [#3388](https://github.com/marigold-ui/marigold/pull/3388) [`3c506ae7a`](https://github.com/marigold-ui/marigold/commit/3c506ae7a85cf57a39d4850381bed73a8b8595de) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[DST-215]: add Component Guidelines + +- Updated dependencies [[`cdebe707a`](https://github.com/marigold-ui/marigold/commit/cdebe707a2a851304b1185ac9aa8d2994502869a), [`ea9db88fd`](https://github.com/marigold-ui/marigold/commit/ea9db88fdee91e3e9d912f58ae7a99e90633fa42), [`d8d4af573`](https://github.com/marigold-ui/marigold/commit/d8d4af573268d663df2c9c23e84590683cb92dc1), [`958477f43`](https://github.com/marigold-ui/marigold/commit/958477f43da2b599430d4bb91470673b8cf04608)]: + - @marigold/theme-b2b@25.2.7 + - @marigold/components@6.3.0 + - @marigold/theme-core@25.2.7 + - @marigold/icons@1.2.16 + - @marigold/theme-preset@1.1.7 + +## 6.2.6 (Released on ) + +### Patch Changes + +- [#3353](https://github.com/marigold-ui/marigold/pull/3353) [`ca2cddb10`](https://github.com/marigold-ui/marigold/commit/ca2cddb104c00bcfda369df58b6f443c5ae7be5e) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +- [#3366](https://github.com/marigold-ui/marigold/pull/3366) [`1d305f963`](https://github.com/marigold-ui/marigold/commit/1d305f963af96b5ad7b087dbd3365550e2eaae6b) Thanks [@sarahgm](https://github.com/sarahgm)! - fix: allow width on datepicker + +- [#3340](https://github.com/marigold-ui/marigold/pull/3340) [`f50c5a4ae`](https://github.com/marigold-ui/marigold/commit/f50c5a4ae5a5d947b126e43228ab37cd35c8403b) Thanks [@sarahgm](https://github.com/sarahgm)! - chore[DST-189]: write utils documentation + +- Updated dependencies [[`ca2cddb10`](https://github.com/marigold-ui/marigold/commit/ca2cddb104c00bcfda369df58b6f443c5ae7be5e), [`1d305f963`](https://github.com/marigold-ui/marigold/commit/1d305f963af96b5ad7b087dbd3365550e2eaae6b)]: + - @marigold/eslint-config@0.4.13 + - @marigold/components@6.2.6 + - @marigold/theme-b2b@25.2.6 + - @marigold/theme-core@25.2.6 + - @marigold/icons@1.2.15 + - @marigold/theme-preset@1.1.6 + +## 6.2.5 (Released on ) + +### Patch Changes + +- [#3333](https://github.com/marigold-ui/marigold/pull/3333) [`d5e3745bf`](https://github.com/marigold-ui/marigold/commit/d5e3745bf5d45511dd7480f859293e77ffb7d40c) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +- Updated dependencies [[`b9e1d147a`](https://github.com/marigold-ui/marigold/commit/b9e1d147a0ab61393ba4704dc4bef6fce70fe854), [`581702881`](https://github.com/marigold-ui/marigold/commit/5817028810f503d941be93b66e63ea545c4f17c3), [`d5e3745bf`](https://github.com/marigold-ui/marigold/commit/d5e3745bf5d45511dd7480f859293e77ffb7d40c)]: + - @marigold/components@6.2.5 + - @marigold/theme-b2b@25.2.5 + - @marigold/eslint-config@0.4.12 + - @marigold/theme-core@25.2.5 + - @marigold/icons@1.2.14 + - @marigold/theme-preset@1.1.5 + +## 6.2.4 (Released on ) + +### Patch Changes + +- Updated dependencies [[`9c18ea52b`](https://github.com/marigold-ui/marigold/commit/9c18ea52b3fa0f58b64349cb25f4872763a2f5fd)]: + - @marigold/theme-b2b@25.2.4 + - @marigold/theme-core@25.2.4 + - @marigold/components@6.2.4 + - @marigold/icons@1.2.13 + - @marigold/theme-preset@1.1.4 + +## 6.2.3 (Released on ) + +### Patch Changes + +- [#3273](https://github.com/marigold-ui/marigold/pull/3273) [`f7c475053`](https://github.com/marigold-ui/marigold/commit/f7c4750533aadc9119e2dfb4bb5745cb56684a86) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update react-aria + +- Updated dependencies [[`f7c475053`](https://github.com/marigold-ui/marigold/commit/f7c4750533aadc9119e2dfb4bb5745cb56684a86)]: + - @marigold/components@6.2.3 + - @marigold/theme-b2b@25.2.3 + - @marigold/theme-core@25.2.3 + - @marigold/icons@1.2.12 + - @marigold/theme-preset@1.1.3 + +## 6.2.2 (Released on ) + +### Patch Changes + +- Updated dependencies [[`46e86e2b3`](https://github.com/marigold-ui/marigold/commit/46e86e2b3969a4c95c9e49c202e922bfc22d28a2), [`bf527799a`](https://github.com/marigold-ui/marigold/commit/bf527799a6f606e7e19df14246ed3621a2359fcd)]: + - @marigold/components@6.2.2 + - @marigold/theme-b2b@25.2.2 + - @marigold/theme-core@25.2.2 + - @marigold/icons@1.2.11 + - @marigold/theme-preset@1.1.2 + +## 6.2.1 (Released on ) + +### Patch Changes + +- [#3316](https://github.com/marigold-ui/marigold/pull/3316) [`e156e88df`](https://github.com/marigold-ui/marigold/commit/e156e88df12d531c2ac4d794943ade65a0ed7387) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[DST-153]: fix view in Safari + +- Updated dependencies [[`979ab73c4`](https://github.com/marigold-ui/marigold/commit/979ab73c4aca9811fec13c2bf6a716dcaea9f62b), [`a5515f34b`](https://github.com/marigold-ui/marigold/commit/a5515f34b35e3c4677daf05d36a2ac1f2a45cfb4)]: + - @marigold/theme-b2b@25.2.1 + - @marigold/components@6.2.1 + - @marigold/theme-core@25.2.1 + - @marigold/icons@1.2.10 + - @marigold/theme-preset@1.1.1 + +## 6.2.0 (Released on ) + +### Patch Changes + +- [#3286](https://github.com/marigold-ui/marigold/pull/3286) [`f710122b3`](https://github.com/marigold-ui/marigold/commit/f710122b3825fbaa35f1a3198ae0e83b370f06af) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update eslint + +- Updated dependencies [[`0a82332ba`](https://github.com/marigold-ui/marigold/commit/0a82332ba247f2eaddfd4abdf6fe284120565320), [`6329c32ac`](https://github.com/marigold-ui/marigold/commit/6329c32acb34ff963c0afbd85a76e7a788db45c8), [`3c1fc3097`](https://github.com/marigold-ui/marigold/commit/3c1fc3097b2de22363c5afe1ba1659594729652f), [`f710122b3`](https://github.com/marigold-ui/marigold/commit/f710122b3825fbaa35f1a3198ae0e83b370f06af), [`3eba5fdd4`](https://github.com/marigold-ui/marigold/commit/3eba5fdd4dac255923b1063be8731c0e5924023f)]: + - @marigold/theme-preset@1.1.0 + - @marigold/theme-b2b@25.2.0 + - @marigold/theme-core@25.2.0 + - @marigold/components@6.2.0 + - @marigold/eslint-config@0.4.11 + - @marigold/icons@1.2.9 + +## 6.1.0 (Released on ) + +### Minor Changes + +- [#3268](https://github.com/marigold-ui/marigold/pull/3268) [`c61999892`](https://github.com/marigold-ui/marigold/commit/c619998923fec65d099c1a16b1d5d22601e97d22) Thanks [@sebald](https://github.com/sebald)! - feat: checkbox adheres labelwidth when inside `` + +### Patch Changes + +- Updated dependencies [[`c2629d7c8`](https://github.com/marigold-ui/marigold/commit/c2629d7c88ee5870ba78361bbfb4db11c8c1af48), [`989f094e7`](https://github.com/marigold-ui/marigold/commit/989f094e76510e9ff6f4f8d675a9dd6f768099da), [`c61999892`](https://github.com/marigold-ui/marigold/commit/c619998923fec65d099c1a16b1d5d22601e97d22), [`49674045d`](https://github.com/marigold-ui/marigold/commit/49674045db92bb9778de6d9d84dbc04b052b62c3), [`8a4ef1805`](https://github.com/marigold-ui/marigold/commit/8a4ef1805a57a878f2f050c5523af2f921111bfd)]: + - @marigold/components@6.1.0 + - @marigold/theme-b2b@25.1.0 + - @marigold/theme-core@25.1.0 + - @marigold/icons@1.2.8 + - @marigold/theme-preset@1.0.2 + +## 6.0.1 (Released on ) + +### Patch Changes + +- Updated dependencies [[`df21788c7`](https://github.com/marigold-ui/marigold/commit/df21788c7e65fe848b161fb2a6fb98f3937d0a8a), [`ad54c498e`](https://github.com/marigold-ui/marigold/commit/ad54c498e8b0e86c6de7bfaa2f72ef31bc34b2d5), [`62d5599cb`](https://github.com/marigold-ui/marigold/commit/62d5599cb61d7c3af31cddfe0d22faea640236be), [`63009ad56`](https://github.com/marigold-ui/marigold/commit/63009ad56ca0135573685fb33972059db758ab91), [`fd10c294a`](https://github.com/marigold-ui/marigold/commit/fd10c294a352642f1f98a8c2d70eb4fbd7d93a22)]: + - @marigold/theme-b2b@25.0.1 + - @marigold/theme-core@25.0.1 + - @marigold/components@6.0.1 + - @marigold/icons@1.2.7 + - @marigold/theme-preset@1.0.1 + +## 6.0.0 (Released on ) + +### Major Changes + +- [#3117](https://github.com/marigold-ui/marigold/pull/3117) [`79be927e6`](https://github.com/marigold-ui/marigold/commit/79be927e6b2f73c9f75487dfe14a3ce56444afaa) Thanks [@sebald](https://github.com/sebald)! - Switch @marigold/styles to Tailwind CSS, replaces Emotion CSS & Theme-UI + +### Patch Changes + +- [#3261](https://github.com/marigold-ui/marigold/pull/3261) [`9a19dba84`](https://github.com/marigold-ui/marigold/commit/9a19dba843fd9007f82362d47550283d55200b5b) Thanks [@sarahgm](https://github.com/sarahgm)! - chore[DST-131]: replace fill colors with text colors + +- [#3227](https://github.com/marigold-ui/marigold/pull/3227) [`54416dc6c`](https://github.com/marigold-ui/marigold/commit/54416dc6c87a8de39893a23678d716553a0d991c) Thanks [@sarahgm](https://github.com/sarahgm)! - chore: unify switch api + +- Updated dependencies [[`9a19dba84`](https://github.com/marigold-ui/marigold/commit/9a19dba843fd9007f82362d47550283d55200b5b), [`54416dc6c`](https://github.com/marigold-ui/marigold/commit/54416dc6c87a8de39893a23678d716553a0d991c), [`1d0fd2ac5`](https://github.com/marigold-ui/marigold/commit/1d0fd2ac5e45a9a05ef311fc811b9e6049535641), [`7b7348f30`](https://github.com/marigold-ui/marigold/commit/7b7348f30f62662ccb86930ac4bf65ef063d2065), [`79be927e6`](https://github.com/marigold-ui/marigold/commit/79be927e6b2f73c9f75487dfe14a3ce56444afaa), [`44dd7408a`](https://github.com/marigold-ui/marigold/commit/44dd7408a27dc5031598ebbd818e911981b8c9d3), [`9082cfe4f`](https://github.com/marigold-ui/marigold/commit/9082cfe4fd8d9cd848c185041dabcec46622822b)]: + - @marigold/theme-b2b@25.0.0 + - @marigold/components@6.0.0 + - @marigold/theme-preset@1.0.0 + - @marigold/theme-core@25.0.0 + - @marigold/icons@1.2.6 diff --git a/docs/content/releases/overview.mdx b/docs/content/releases/overview.mdx new file mode 100644 index 0000000000..522f767b42 --- /dev/null +++ b/docs/content/releases/overview.mdx @@ -0,0 +1,296 @@ +--- +title: Overview +caption: Find an overview of the last Marigold release. +order: 1 +--- + + + +## Changelogs + +View the changelog of all releases. + + + + + ), + }, + { + title: '@marigold/icons', + href: '/releases/packages/icons/release', + icon: ( + + + + ), + }, + { + title: '@marigold/system', + href: '/releases/packages/system/release', + icon: ( + + + + ), + }, + { + title: '@marigold/theme-preset', + href: '/releases/packages/theme-preset/release', + icon: ( + + + + ), + }, + { + title: '@marigold/types', + href: '/releases/packages/types/release', + icon: ( + + + + ), + }, + { + title: '@marigold/theme-b2b', + href: '/releases/themes/theme-b2b/release', + icon: ( + + + + ), + }, + { + title: '@marigold/theme-core', + href: '/releases/themes/theme-core/release', + icon: ( + + + + ), + }, + { + title: '@marigold/theme-docs', + href: '/releases/themes/theme-docs/release', + icon: ( + + + + ), + }, + { + title: '@marigold/docs', + href: '/releases/docs/release', + icon: ( + + + + ), + }, + { + title: '@marigold/eslint-config', + href: '/releases/config/eslint/release', + icon: ( + + + + ), + }, + { + title: '@marigold/jest-config', + href: '/releases/config/jest/release', + icon: ( + + + + ), + }, + { + title: '@marigold/prettier-config', + href: '/releases/config/prettier/release', + icon: ( + + + + ), + }, + { + title: '@marigold/storybook-config', + href: '/releases/config/storybook/release', + icon: ( + + + + ), + }, + { + title: '@marigold/tsconfig-config', + href: '/releases/config/tsconfig/release', + icon: ( + + + + ), + }, + ]} +/> diff --git a/docs/content/releases/packages/components/release.mdx b/docs/content/releases/packages/components/release.mdx new file mode 100644 index 0000000000..2a4d71bc67 --- /dev/null +++ b/docs/content/releases/packages/components/release.mdx @@ -0,0 +1,1838 @@ +--- +title: '@marigold/components' +caption: 'Have a look on the latest changes regarding @marigold/components' +badge: new +toc: false +--- + +## 9.0.2 (Released on ) + +### Patch Changes + +- [#4116](https://github.com/marigold-ui/marigold/pull/4116) [`de0c9e9`](https://github.com/marigold-ui/marigold/commit/de0c9e94584b3f1733bda09722b0e2eb2fc0a8eb) Thanks [@aromko](https://github.com/aromko)! - docs[DST-513]: Revise `` component page. + +- [#4102](https://github.com/marigold-ui/marigold/pull/4102) [`d700af0`](https://github.com/marigold-ui/marigold/commit/d700af043a720a231cd4f6de03f59b62b945727f) Thanks [@sebald](https://github.com/sebald)! - feat: add `as` prop to Text to render different elements + +- [#4071](https://github.com/marigold-ui/marigold/pull/4071) [`406fd1f`](https://github.com/marigold-ui/marigold/commit/406fd1fed939f75a6731d5e0ec4baa40751dedc8) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[DST-503]:Revise Select and add slots to text component + +- [#4125](https://github.com/marigold-ui/marigold/pull/4125) [`46f06db`](https://github.com/marigold-ui/marigold/commit/46f06dbb3cc38c17aeb1734fa0b8733c4055fcc4) Thanks [@aromko](https://github.com/aromko)! - docs[DST-517]: revise `` component + +- [#4146](https://github.com/marigold-ui/marigold/pull/4146) [`66eae8f`](https://github.com/marigold-ui/marigold/commit/66eae8f4ba8949ebabfcfa26de36a147b7765d38) Thanks [@sarahgm](https://github.com/sarahgm)! - fix: adjust visibility for autocomplete clear button + +- [#4143](https://github.com/marigold-ui/marigold/pull/4143) [`77fe4ad`](https://github.com/marigold-ui/marigold/commit/77fe4adb2a9184d52d375eeca4f0993e8d43b7de) Thanks [@aromko](https://github.com/aromko)! - Bugfix: fix datepicker storybook Controlled example + +- [#4134](https://github.com/marigold-ui/marigold/pull/4134) [`d35cc6d`](https://github.com/marigold-ui/marigold/commit/d35cc6d7a66996e9da91936e736a7db57a4a2fd3) Thanks [@sarahgm](https://github.com/sarahgm)! - fix: fix DOM tree for empty tables + +- [#4110](https://github.com/marigold-ui/marigold/pull/4110) [`b2b79d4`](https://github.com/marigold-ui/marigold/commit/b2b79d4daf0ab4950a255039729d216023af1764) Thanks [@aromko](https://github.com/aromko)! - docs[DST-511]: Revise switch component. + +- [#4115](https://github.com/marigold-ui/marigold/pull/4115) [`0523f69`](https://github.com/marigold-ui/marigold/commit/0523f69e6bd370ae5be57a5b28cc341b3bb34b82) Thanks [@sarahgm](https://github.com/sarahgm)! - fix: fix SelectListItem layout + +- [#4103](https://github.com/marigold-ui/marigold/pull/4103) [`b8c991f`](https://github.com/marigold-ui/marigold/commit/b8c991fc249f69fab09d9aa3c6a71923cf8324de) Thanks [@sarahgm](https://github.com/sarahgm)! - docs[DST-507]: revise `` page + +- Updated dependencies []: + - @marigold/system@9.0.2 + - @marigold/icons@1.2.57 + +## 9.0.1 (Released on ) + +### Patch Changes + +- [#4056](https://github.com/marigold-ui/marigold/pull/4056) [`5d53af4`](https://github.com/marigold-ui/marigold/commit/5d53af4ef32d8f70ae8d2d84db4fbfdd60998e79) Thanks [@aromko](https://github.com/aromko)! - [DST-504]: Sorting indicator is shown only on sorted column. + +- [#4042](https://github.com/marigold-ui/marigold/pull/4042) [`965512c`](https://github.com/marigold-ui/marigold/commit/965512c113938cac629bb6cc518926f0d600b40f) Thanks [@sebald](https://github.com/sebald)! - feat: allow to render an empty state when collection of `` is empty + +- [#4039](https://github.com/marigold-ui/marigold/pull/4039) [`9598df4`](https://github.com/marigold-ui/marigold/commit/9598df4ed6ac3fa72620d3b2b41d47a451a55d79) Thanks [@sarahgm](https://github.com/sarahgm)! - chore[DST-487]: align core styles to marigold + +- Updated dependencies []: + - @marigold/system@9.0.1 + - @marigold/icons@1.2.56 + +## 9.0.0 (Released on ) + +### Major Changes + +- [#3994](https://github.com/marigold-ui/marigold/pull/3994) [`41428b3`](https://github.com/marigold-ui/marigold/commit/41428b3ac939ff970149e046cd31d1d8aacbd9bc) Thanks [@sebald](https://github.com/sebald)! - fix: remove `HTMLProps` from components + +### Patch Changes + +- [#4032](https://github.com/marigold-ui/marigold/pull/4032) [`0bf0940`](https://github.com/marigold-ui/marigold/commit/0bf0940842eca39810cb644e4b3b935eaf0f2f4c) Thanks [@sebald](https://github.com/sebald)! - fix([DST-501]): Pass down appearance props and use context from CheckboxGroup to apply label width + +- [#4026](https://github.com/marigold-ui/marigold/pull/4026) [`94e9a1b`](https://github.com/marigold-ui/marigold/commit/94e9a1be5ec8ed56aabab335b4867903161c60b8) Thanks [@sebald](https://github.com/sebald)! - fix: correctly apply styles to `` component in all affected components + +- Updated dependencies [[`72125e114`](https://github.com/marigold-ui/marigold/commit/72125e11492d60f08665054e4427de24cde337be)]: + - @marigold/system@7.0.0 + - @marigold/icons@1.2.32 + +## 6.11.0 (Released on ) + +### Minor Changes + +- [#3520](https://github.com/marigold-ui/marigold/pull/3520) [`bc96dda88`](https://github.com/marigold-ui/marigold/commit/bc96dda88894271bc7fdc4a01270932855337af8) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - Introduce RAC popover component + +- [#3445](https://github.com/marigold-ui/marigold/pull/3445) [`91badb0e1`](https://github.com/marigold-ui/marigold/commit/91badb0e1da21d8cefa36c48c57d53c5abe54123) Thanks [@OsamaAbdellateef](https://github.com/OsamaAbdellateef)! - migrate ListBox component to RAC + +### Patch Changes + +- [#3522](https://github.com/marigold-ui/marigold/pull/3522) [`a748252c5`](https://github.com/marigold-ui/marigold/commit/a748252c5e233d37548dd0b9d9dd18cbbbd6fdb5) Thanks [@aromko](https://github.com/aromko)! - chore[DST-255]: `
` stretch works as expected + +- [#2562](https://github.com/marigold-ui/marigold/pull/2562) [`74d47ba2`](https://github.com/marigold-ui/marigold/commit/74d47ba2ac4d28147c5052ffff9c7a287c001f2c) Thanks [@sebald](https://github.com/sebald)! - fix: `