From 5ef3739945807b04e79651848ae78942e8466c51 Mon Sep 17 00:00:00 2001 From: ssarahgm Date: Fri, 13 Sep 2024 15:56:10 +0200 Subject: [PATCH 01/94] try things out --- CHANGELOG.md | 0 docs/app/changelog/[version].tsx | 59 ++++++++++++++++++++++++++++++++ docs/contentlayer.config.ts | 15 +++++++- 3 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md create mode 100644 docs/app/changelog/[version].tsx diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/docs/app/changelog/[version].tsx b/docs/app/changelog/[version].tsx new file mode 100644 index 0000000000..5da58f17da --- /dev/null +++ b/docs/app/changelog/[version].tsx @@ -0,0 +1,59 @@ +import { allChangelogs } from 'contentlayer/generated'; +import type { + GetStaticPaths, + GetStaticProps, + InferGetStaticPropsType, +} from 'next'; +import { useMDXComponent } from 'next-contentlayer/hooks'; +import { useEffect } from 'react'; +import React from 'react'; +import semverMaxSatisfying from 'semver/ranges/max-satisfying'; +import { useRouter } from 'next/router'; +import { Mdx } from '@/ui/mdx'; + +export default function Page({ + doc, +}: InferGetStaticPropsType) { + const Component = useMDXComponent(doc.body.code); + const router = useRouter(); + + useEffect(() => { + if (router.query.version === 'latest') { + router.replace(`/changelog/v${doc.version}`); + } + }, [router, doc]); + + return ; +} + +export const getStaticPaths: GetStaticPaths = () => { + const paths = [ + ...allChangelogs.map(doc => ({ + params: { version: `v${doc.version}` }, + })), + { + params: { version: 'latest' }, + }, + ]; + return { + paths, + fallback: false, + }; +}; + +export const getStaticProps: GetStaticProps = async ctx => { + let versionParam = ctx.params.version; + + if (versionParam === 'latest') { + versionParam = `v${semverMaxSatisfying( + allChangelogs.map(({ version }) => version), + '*' + )}`; + } + const doc = allChangelogs.find( + ({ version }) => `v${version}` === versionParam + ); + return { + props: { doc }, + }; +}; diff --git a/docs/contentlayer.config.ts b/docs/contentlayer.config.ts index 03b05991b7..7ffe545c90 100644 --- a/docs/contentlayer.config.ts +++ b/docs/contentlayer.config.ts @@ -114,11 +114,24 @@ export const ContentPage = defineDocumentType(() => ({ }, })); +export const Changelog = defineDocumentType(() => ({ + name: 'Changelog', + filePathPattern: 'changelog.md', + contentType: 'markdown', + computedFields: { + // Transforms the page's path to a slug to use with next.js API + slug: { + type: 'markdown', + resolve: doc => getNormalizedPath(doc._raw.flattenedPath).join('/'), + }, + }, +})); + // Config // --------------- export default makeSource({ contentDirPath, - documentTypes: [ContentPage], + documentTypes: [ContentPage, Changelog], mdx: { remarkPlugins: [remarkGfm], rehypePlugins: [ From 2fa1a6a682e6929f0307ee31c14f850bd09fee0e Mon Sep 17 00:00:00 2001 From: ssarahgm Date: Mon, 16 Sep 2024 15:58:53 +0200 Subject: [PATCH 02/94] trying stuff out - chaos --- docs/app/[...slug]/page.tsx | 5 +-- docs/app/changelog/[version].tsx | 59 -------------------------------- docs/content/changelog.mdx | 1 + docs/contentlayer.config.ts | 59 ++++++++++++++++++++++++-------- docs/package.json | 3 +- docs/scripts/build-changelog.mjs | 30 ++++++++++++++++ 6 files changed, 81 insertions(+), 76 deletions(-) delete mode 100644 docs/app/changelog/[version].tsx create mode 100644 docs/content/changelog.mdx create mode 100644 docs/scripts/build-changelog.mjs diff --git a/docs/app/[...slug]/page.tsx b/docs/app/[...slug]/page.tsx index 10738d9f0b..27ff5de9eb 100644 --- a/docs/app/[...slug]/page.tsx +++ b/docs/app/[...slug]/page.tsx @@ -1,6 +1,6 @@ import { baseUrl } from '@/lib/config'; import { Headline } from '@/ui'; -import { allContentPages } from 'contentlayer/generated'; +import { allChangelogPages, allContentPages } from 'contentlayer/generated'; import { Metadata } from 'next'; import { notFound } from 'next/navigation'; import { RelativeTime } from '@/ui/RelativeTime'; @@ -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; } @@ -55,9 +56,9 @@ export async function generateStaticParams(): Promise< })); } +console.log('SLUG', allChangelogPages); export default async function ContentPage({ params }: ContentPageProps) { const page = await getPageFromParams(params); - if (!page) { notFound(); } diff --git a/docs/app/changelog/[version].tsx b/docs/app/changelog/[version].tsx deleted file mode 100644 index 5da58f17da..0000000000 --- a/docs/app/changelog/[version].tsx +++ /dev/null @@ -1,59 +0,0 @@ -import { allChangelogs } from 'contentlayer/generated'; -import type { - GetStaticPaths, - GetStaticProps, - InferGetStaticPropsType, -} from 'next'; -import { useMDXComponent } from 'next-contentlayer/hooks'; -import { useEffect } from 'react'; -import React from 'react'; -import semverMaxSatisfying from 'semver/ranges/max-satisfying'; -import { useRouter } from 'next/router'; -import { Mdx } from '@/ui/mdx'; - -export default function Page({ - doc, -}: InferGetStaticPropsType) { - const Component = useMDXComponent(doc.body.code); - const router = useRouter(); - - useEffect(() => { - if (router.query.version === 'latest') { - router.replace(`/changelog/v${doc.version}`); - } - }, [router, doc]); - - return ; -} - -export const getStaticPaths: GetStaticPaths = () => { - const paths = [ - ...allChangelogs.map(doc => ({ - params: { version: `v${doc.version}` }, - })), - { - params: { version: 'latest' }, - }, - ]; - return { - paths, - fallback: false, - }; -}; - -export const getStaticProps: GetStaticProps = async ctx => { - let versionParam = ctx.params.version; - - if (versionParam === 'latest') { - versionParam = `v${semverMaxSatisfying( - allChangelogs.map(({ version }) => version), - '*' - )}`; - } - const doc = allChangelogs.find( - ({ version }) => `v${version}` === versionParam - ); - return { - props: { doc }, - }; -}; diff --git a/docs/content/changelog.mdx b/docs/content/changelog.mdx new file mode 100644 index 0000000000..6d10dce740 --- /dev/null +++ b/docs/content/changelog.mdx @@ -0,0 +1 @@ +changelog diff --git a/docs/contentlayer.config.ts b/docs/contentlayer.config.ts index 7ffe545c90..bae5668623 100644 --- a/docs/contentlayer.config.ts +++ b/docs/contentlayer.config.ts @@ -6,7 +6,8 @@ import rehypeSlug from 'rehype-slug'; import remarkGfm from 'remark-gfm'; import { simpleGit } from 'simple-git'; import { visit } from 'unist-util-visit'; -import path from 'node:path'; +import { fs } from 'zx/.'; +import path, { basename, dirname } from 'node:path'; import { rehypeComponentDemo } from './lib/mdx/rehype-component-demo'; import { rehypeTableOfContents } from './lib/mdx/rehype-toc'; @@ -22,6 +23,13 @@ const git = simpleGit(); * - components/form/button/button -> components/form/button */ const getNormalizedPath = (val: string) => { + // let changelogs = []; + // for (let log in changelog) { + // changelogs.push(log); + // } + + console.log('VALUE', val); + let paths = val.split('/'); // Support pages that are grouped with their demos into a folder @@ -34,6 +42,26 @@ const getNormalizedPath = (val: string) => { // Page Types // --------------- +export const ChangelogPage = defineDocumentType(() => ({ + name: 'ChangelogPage', + filePathPattern: '**/changelog.mdx', + contentType: 'mdx', + fields: { + title: { type: 'string' }, + description: { type: 'string' }, + slug: { type: 'string' }, + version: { type: 'string' }, + releaseUrl: { type: 'string' }, + releaseDate: { type: 'string' }, + }, + computedFields: { + slug: { + type: 'string', + resolve: doc => getNormalizedPath(doc._raw.flattenedPath).join('/'), + }, + }, +})); + export const ContentPage = defineDocumentType(() => ({ name: 'ContentPage', filePathPattern: '{**,*}/*.mdx', @@ -100,6 +128,7 @@ export const ContentPage = defineDocumentType(() => ({ type: 'string', resolve: async doc => { const file = path.resolve(contentDirPath, doc._raw.sourceFilePath); + /** * 🚨🚨🚨 IMPORTANT 🚨🚨🚨 * @@ -114,24 +143,26 @@ export const ContentPage = defineDocumentType(() => ({ }, })); -export const Changelog = defineDocumentType(() => ({ - name: 'Changelog', - filePathPattern: 'changelog.md', - contentType: 'markdown', - computedFields: { - // Transforms the page's path to a slug to use with next.js API - slug: { - type: 'markdown', - resolve: doc => getNormalizedPath(doc._raw.flattenedPath).join('/'), - }, - }, -})); +// const mergeContentDirs = (...dirs: string[]) => { +// console.log(dirs); +// // return dirs.flatMap(dir => { +// // const dirPath = path.join(process.cwd(), dir); +// // return fs.readdirSync(dirPath).map(file => path.join(dir, file)); +// // }); +// }; + +// // Paths of multiple content directories +// let changelogs = []; +// for (let log in changelog) { +// mergeContentDirs(contentDirPath, log); +// changelogs.push(log); +// } // Config // --------------- export default makeSource({ contentDirPath, - documentTypes: [ContentPage, Changelog], + documentTypes: [ContentPage, ChangelogPage], mdx: { remarkPlugins: [remarkGfm], rehypePlugins: [ diff --git a/docs/package.json b/docs/package.json index a4e8b65e83..8d252dc734 100644 --- a/docs/package.json +++ b/docs/package.json @@ -7,7 +7,8 @@ "build": "pnpm registry && pnpm build-component-props && next build", "start": "next start", "registry": "zx ./scripts/build-registry.mjs", - "build-component-props": "zx ./scripts/build-component-props.mjs" + "build-component-props": "zx ./scripts/build-component-props.mjs", + "build:changelog": "zx ./scripts/build-changelog.mjs" }, "dependencies": { "@marigold/components": "workspace:*", diff --git a/docs/scripts/build-changelog.mjs b/docs/scripts/build-changelog.mjs new file mode 100644 index 0000000000..3462cfde1a --- /dev/null +++ b/docs/scripts/build-changelog.mjs @@ -0,0 +1,30 @@ +import path, { basename, dirname } from 'path'; +import { fileURLToPath } from 'url'; +import { globby } from 'zx'; + +let index = `// @ts-nocheck +// This file is autogenerated by scripts/build-registry.ts +// Do not edit this file directly. +import dynamic from 'next/dynamic'; + +export const changelog = {`; + +let changelogPath = await globby([ + '../{docs,packages}/{**,*}/CHANGELOG.md', + '!../**/node_modules/**', +]); + +for (const item of changelogPath) { + const packages = path.dirname(item); + const changelogFile = `${packages}/CHANGELOG.md`; + console.log(changelogFile); + + index += ` + '${changelogFile}': { + slug: '${changelogFile}', + },`; +} +index += ` +} as const;`; + +// fs.outputFileSync(path.join(process.cwd(), '.changelog.tsx'), index); From 709deec1a5b8aa568e5117e883e955747934a8e2 Mon Sep 17 00:00:00 2001 From: ssarahgm Date: Tue, 17 Sep 2024 11:55:54 +0200 Subject: [PATCH 03/94] generate folder structure for changesets --- docs/app/[...slug]/page.tsx | 4 +- docs/content/CHANGELOG.md | 0 docs/content/changelog.mdx | 1 - docs/content/changelog/@CHANGELOG.md | 0 .../changelog/@config/eslint/CHANGELOG.md | 171 ++ .../changelog/@config/jest/CHANGELOG.md | 141 ++ .../changelog/@config/prettier/CHANGELOG.md | 13 + .../changelog/@config/storybook/CHANGELOG.md | 483 +++++ .../changelog/@config/tsconfig/CHANGELOG.md | 21 + .../@packages/components/CHANGELOG.md | 1833 +++++++++++++++++ .../changelog/@packages/icons/CHANGELOG.md | 785 +++++++ .../changelog/@packages/system/CHANGELOG.md | 582 ++++++ .../@packages/theme-preset/CHANGELOG.md | 387 ++++ .../changelog/@packages/types/CHANGELOG.md | 127 ++ .../changelog/@themes/theme-b2b/CHANGELOG.md | 663 ++++++ .../changelog/@themes/theme-core/CHANGELOG.md | 1212 +++++++++++ .../changelog/@themes/theme-docs/CHANGELOG.md | 87 + docs/contentlayer.config.ts | 42 +- docs/docs/CHANGELOG.md | 829 ++++++++ docs/scripts/build-changelog.mjs | 43 +- 20 files changed, 7374 insertions(+), 50 deletions(-) create mode 100644 docs/content/CHANGELOG.md delete mode 100644 docs/content/changelog.mdx create mode 100644 docs/content/changelog/@CHANGELOG.md create mode 100644 docs/content/changelog/@config/eslint/CHANGELOG.md create mode 100644 docs/content/changelog/@config/jest/CHANGELOG.md create mode 100644 docs/content/changelog/@config/prettier/CHANGELOG.md create mode 100644 docs/content/changelog/@config/storybook/CHANGELOG.md create mode 100644 docs/content/changelog/@config/tsconfig/CHANGELOG.md create mode 100644 docs/content/changelog/@packages/components/CHANGELOG.md create mode 100644 docs/content/changelog/@packages/icons/CHANGELOG.md create mode 100644 docs/content/changelog/@packages/system/CHANGELOG.md create mode 100644 docs/content/changelog/@packages/theme-preset/CHANGELOG.md create mode 100644 docs/content/changelog/@packages/types/CHANGELOG.md create mode 100644 docs/content/changelog/@themes/theme-b2b/CHANGELOG.md create mode 100644 docs/content/changelog/@themes/theme-core/CHANGELOG.md create mode 100644 docs/content/changelog/@themes/theme-docs/CHANGELOG.md create mode 100644 docs/docs/CHANGELOG.md diff --git a/docs/app/[...slug]/page.tsx b/docs/app/[...slug]/page.tsx index 27ff5de9eb..a4940f4865 100644 --- a/docs/app/[...slug]/page.tsx +++ b/docs/app/[...slug]/page.tsx @@ -1,6 +1,6 @@ import { baseUrl } from '@/lib/config'; import { Headline } from '@/ui'; -import { allChangelogPages, allContentPages } from 'contentlayer/generated'; +import { allContentPages } from 'contentlayer/generated'; import { Metadata } from 'next'; import { notFound } from 'next/navigation'; import { RelativeTime } from '@/ui/RelativeTime'; @@ -56,9 +56,9 @@ export async function generateStaticParams(): Promise< })); } -console.log('SLUG', allChangelogPages); export default async function ContentPage({ params }: ContentPageProps) { const page = await getPageFromParams(params); + console.log('SLUG', params.slug); if (!page) { notFound(); } diff --git a/docs/content/CHANGELOG.md b/docs/content/CHANGELOG.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/docs/content/changelog.mdx b/docs/content/changelog.mdx deleted file mode 100644 index 6d10dce740..0000000000 --- a/docs/content/changelog.mdx +++ /dev/null @@ -1 +0,0 @@ -changelog diff --git a/docs/content/changelog/@CHANGELOG.md b/docs/content/changelog/@CHANGELOG.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/docs/content/changelog/@config/eslint/CHANGELOG.md b/docs/content/changelog/@config/eslint/CHANGELOG.md new file mode 100644 index 0000000000..8c6fb2ca1f --- /dev/null +++ b/docs/content/changelog/@config/eslint/CHANGELOG.md @@ -0,0 +1,171 @@ +# @marigold/eslint-config + +## 0.4.16 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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/changelog/@config/jest/CHANGELOG.md b/docs/content/changelog/@config/jest/CHANGELOG.md new file mode 100644 index 0000000000..993463d95c --- /dev/null +++ b/docs/content/changelog/@config/jest/CHANGELOG.md @@ -0,0 +1,141 @@ +# @marigold/jest-config + +## 1.2.2 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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/changelog/@config/prettier/CHANGELOG.md b/docs/content/changelog/@config/prettier/CHANGELOG.md new file mode 100644 index 0000000000..0876ebad30 --- /dev/null +++ b/docs/content/changelog/@config/prettier/CHANGELOG.md @@ -0,0 +1,13 @@ +# @marigold/prettier-config + +## 0.3.1 + +### 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/changelog/@config/storybook/CHANGELOG.md b/docs/content/changelog/@config/storybook/CHANGELOG.md new file mode 100644 index 0000000000..df5acbfb5e --- /dev/null +++ b/docs/content/changelog/@config/storybook/CHANGELOG.md @@ -0,0 +1,483 @@ +# @marigold/storybook-config + +## 1.1.49 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### Patch Changes + +- Updated dependencies []: + - @marigold/components@7.8.2 + - @marigold/theme-b2b@27.1.11 + - @marigold/theme-core@26.1.11 + +## 1.1.42 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### Patch Changes + +- Updated dependencies []: + - @marigold/components@6.9.1 + - @marigold/theme-b2b@25.7.1 + - @marigold/theme-core@25.7.1 + +## 1.1.20 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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 + +### 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/changelog/@config/tsconfig/CHANGELOG.md b/docs/content/changelog/@config/tsconfig/CHANGELOG.md new file mode 100644 index 0000000000..c87a782ea3 --- /dev/null +++ b/docs/content/changelog/@config/tsconfig/CHANGELOG.md @@ -0,0 +1,21 @@ +# @marigold/tsconfig + +## 0.4.0 + +### 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 + +### 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/changelog/@packages/components/CHANGELOG.md b/docs/content/changelog/@packages/components/CHANGELOG.md new file mode 100644 index 0000000000..242371e42a --- /dev/null +++ b/docs/content/changelog/@packages/components/CHANGELOG.md @@ -0,0 +1,1833 @@ +# @marigold/components + +## 9.0.2 + +### 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 + +### 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 + +### 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 + +### 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: `