From 8857c971d68c91fdf7c611e60f8f36276cbab997 Mon Sep 17 00:00:00 2001 From: Matti Nannt Date: Thu, 21 Dec 2023 12:35:35 +0100 Subject: [PATCH] fix: changeset release pipeline (#1811) --- apps/demo/pages/app/index.tsx | 2 +- .../components/docs/BestPractices.tsx | 4 +- .../formbricks-com/components/docs/Footer.tsx | 2 +- .../components/docs/GettingStarted.tsx | 2 +- .../formbricks-com/components/docs/Header.tsx | 4 +- .../formbricks-com/components/docs/Layout.tsx | 2 +- .../components/docs/Libraries.tsx | 2 +- .../components/docs/MobileNavigation.tsx | 2 +- .../formbricks-com/components/docs/Search.tsx | 8 +- .../dummyUI/AddNoCodeEventModalDummy.tsx | 4 +- .../components/dummyUI/DemoView.tsx | 2 +- .../components/dummyUI/Modal.tsx | 2 +- .../components/dummyUI/OpenTextQuestion.tsx | 2 +- .../components/home/GitHubSponsorship.tsx | 2 +- apps/formbricks-com/components/home/Hero.tsx | 18 +- .../components/home/Highlights.tsx | 6 +- apps/formbricks-com/components/home/Steps.tsx | 14 +- .../components/shared/BestPractices.tsx | 4 +- apps/formbricks-com/components/shared/CTA.tsx | 2 +- .../components/shared/FeatureHighlight.tsx | 2 +- .../components/shared/Header.tsx | 10 +- .../components/shared/HeadingCentered.tsx | 4 +- .../components/shared/HeroTitle.tsx | 4 +- .../components/shared/MdxCTA.tsx | 2 +- .../components/shared/Navigation.tsx | 2 +- .../components/shared/OpenSourceInfo.tsx | 4 +- .../components/shared/PricingCalculator.tsx | 20 +- .../components/shared/PricingGetStarted.tsx | 4 +- .../components/shared/PricingTable.tsx | 16 +- .../components/shared/Search.tsx | 6 +- .../components/shared/TryItCTA.tsx | 4 +- .../components/shared/WhyFormbricks.tsx | 2 +- .../pages/docs-feedback/index.tsx | 4 +- .../pages/feature-chaser/index.tsx | 2 +- .../pages/feedback-box/index.tsx | 2 +- .../pages/improve-trial-conversion/index.tsx | 2 +- .../pages/interview-prompt/index.tsx | 2 +- .../pages/learn-from-churn/index.tsx | 2 +- .../measure-product-market-fit/index.tsx | 8 +- .../pages/onboarding-segmentation/index.tsx | 2 +- package.json | 1 + .../components/questions/RatingQuestion.tsx | 2 +- pnpm-lock.yaml | 452 +++++++++++++++--- 43 files changed, 484 insertions(+), 159 deletions(-) diff --git a/apps/demo/pages/app/index.tsx b/apps/demo/pages/app/index.tsx index 07afa60606..10b9d8cca9 100644 --- a/apps/demo/pages/app/index.tsx +++ b/apps/demo/pages/app/index.tsx @@ -74,7 +74,7 @@ export default function AppPage({}) {

fb setup -
+

You're connected with env:

diff --git a/apps/formbricks-com/components/docs/BestPractices.tsx b/apps/formbricks-com/components/docs/BestPractices.tsx index 04fd4cddf0..9159b1d401 100644 --- a/apps/formbricks-com/components/docs/BestPractices.tsx +++ b/apps/formbricks-com/components/docs/BestPractices.tsx @@ -73,7 +73,7 @@ const bestPractices: Array = [ function BestPracticeIcon({ icon: Icon }: { icon: BestPractice["icon"] }) { return ( -
+
); @@ -157,7 +157,7 @@ export default function BestPractices() { Best Practices -
+
{bestPractices.map((resource) => ( ))} diff --git a/apps/formbricks-com/components/docs/Footer.tsx b/apps/formbricks-com/components/docs/Footer.tsx index 455b63bc15..89ce8d562a 100644 --- a/apps/formbricks-com/components/docs/Footer.tsx +++ b/apps/formbricks-com/components/docs/Footer.tsx @@ -89,7 +89,7 @@ function SmallPrint() { const currentYear = new Date().getFullYear(); return ( -
+

Formbricks GmbH © {currentYear}. All rights reserved.

diff --git a/apps/formbricks-com/components/docs/GettingStarted.tsx b/apps/formbricks-com/components/docs/GettingStarted.tsx index a9bbf7508e..39c073e318 100644 --- a/apps/formbricks-com/components/docs/GettingStarted.tsx +++ b/apps/formbricks-com/components/docs/GettingStarted.tsx @@ -31,7 +31,7 @@ export function GettingStarted() { Quick Resources -
+
{gettingStarted.map((guide) => (

{guide.name}

diff --git a/apps/formbricks-com/components/docs/Header.tsx b/apps/formbricks-com/components/docs/Header.tsx index f091a24ca8..6821569c73 100644 --- a/apps/formbricks-com/components/docs/Header.tsx +++ b/apps/formbricks-com/components/docs/Header.tsx @@ -40,7 +40,7 @@ export const Header = forwardRef, { className?: string } className={clsx( className, "fixed inset-x-0 top-0 z-50 flex h-20 items-center justify-between gap-12 px-4 transition sm:px-6 lg:left-72 lg:z-30 lg:px-8 xl:left-80", - !isInsideMobileNavigation && "backdrop-blur-sm dark:backdrop-blur lg:left-72 xl:left-80", + !isInsideMobileNavigation && "backdrop-blur-sm lg:left-72 xl:left-80 dark:backdrop-blur", isInsideMobileNavigation ? "bg-white dark:bg-slate-900" : "bg-white/[var(--bg-opacity-light)] dark:bg-slate-900/[var(--bg-opacity-dark)]" @@ -73,7 +73,7 @@ export const Header = forwardRef, { className?: string } Join our Discord -
+
diff --git a/apps/formbricks-com/components/docs/Layout.tsx b/apps/formbricks-com/components/docs/Layout.tsx index af2b26cb81..d2d456940d 100644 --- a/apps/formbricks-com/components/docs/Layout.tsx +++ b/apps/formbricks-com/components/docs/Layout.tsx @@ -25,7 +25,7 @@ export function Layout({ -
+
diff --git a/apps/formbricks-com/components/docs/Libraries.tsx b/apps/formbricks-com/components/docs/Libraries.tsx index 9eb90b46b7..af3d840c38 100644 --- a/apps/formbricks-com/components/docs/Libraries.tsx +++ b/apps/formbricks-com/components/docs/Libraries.tsx @@ -37,7 +37,7 @@ const libraries = [ export function Libraries() { return (
-
+
{libraries.map((library) => ( + className="ring-slate-900/7.5 fixed bottom-0 left-0 top-14 w-full overflow-y-auto bg-white px-4 pb-4 pt-6 shadow-lg shadow-slate-900/10 ring-1 min-[416px]:max-w-sm sm:px-6 sm:pb-10 dark:bg-slate-900 dark:ring-slate-800"> diff --git a/apps/formbricks-com/components/docs/Search.tsx b/apps/formbricks-com/components/docs/Search.tsx index f08a090e44..d067f98280 100644 --- a/apps/formbricks-com/components/docs/Search.tsx +++ b/apps/formbricks-com/components/docs/Search.tsx @@ -243,7 +243,7 @@ const SearchInput = forwardRef< - +
-
+