@lessly/ui 0.19.0 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -631,8 +631,8 @@ interface SignInScreenProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
631
631
  /** Brand mark shown at the top of the card (and centered in `loading`). Apps pass
632
632
  * their own — e.g. a wordmark. */
633
633
  brand: React$1.ReactNode;
634
- /** Small uppercase eyebrow above the headline. Rendered on `login` only, where it
635
- * orients without cluttering the error/forbidden headers. */
634
+ /** Small sentence-case eyebrow above the headline. Absent by default; rendered on
635
+ * `login` only, where it orients without cluttering the error/forbidden headers. */
636
636
  eyebrow?: React$1.ReactNode;
637
637
  /** Headline. Falls back to a per-state default ("Sign in" / "Access restricted" /
638
638
  * "Couldn't load"). */
@@ -660,7 +660,7 @@ interface SignInScreenProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
660
660
  retryLabel?: React$1.ReactNode;
661
661
  /** Label for the `loading` state. Default "Loading…". */
662
662
  loadingLabel?: React$1.ReactNode;
663
- /** Muted footer signature. Default "Supercharged by Lessly"; pass `null` to hide. */
663
+ /** Muted footer signature. Absent by default; pass a node to render one. */
664
664
  footer?: React$1.ReactNode;
665
665
  }
666
666
  /**
@@ -1576,7 +1576,7 @@ interface OrganizationCreateScreenProps extends Omit<React$1.HTMLAttributes<HTML
1576
1576
  themeToggle?: React$1.ReactNode;
1577
1577
  title?: React$1.ReactNode;
1578
1578
  description?: React$1.ReactNode;
1579
- /** Muted footer signature. Pass `null` to hide. */
1579
+ /** Muted footer signature. Absent by default; pass a node to render one. */
1580
1580
  footer?: React$1.ReactNode;
1581
1581
  }
1582
1582
  /**
@@ -1642,7 +1642,7 @@ interface ProductCreateScreenProps extends Omit<React$1.HTMLAttributes<HTMLDivEl
1642
1642
  themeToggle?: React$1.ReactNode;
1643
1643
  title?: React$1.ReactNode;
1644
1644
  description?: React$1.ReactNode;
1645
- /** Muted footer signature. Pass `null` to hide. */
1645
+ /** Muted footer signature. Absent by default; pass a node to render one. */
1646
1646
  footer?: React$1.ReactNode;
1647
1647
  }
1648
1648
  /**
package/dist/index.js CHANGED
@@ -2526,7 +2526,7 @@ var SignInScreen = React43.forwardRef(
2526
2526
  onRetry,
2527
2527
  retryLabel = "Try again",
2528
2528
  loadingLabel = "Loading\u2026",
2529
- footer = "Supercharged by Lessly",
2529
+ footer,
2530
2530
  className,
2531
2531
  ...props
2532
2532
  }, ref) => {
@@ -2566,7 +2566,7 @@ var SignInScreen = React43.forwardRef(
2566
2566
  },
2567
2567
  children: [
2568
2568
  /* @__PURE__ */ jsx49("div", { className: "mb-[22px]", children: brandMark }),
2569
- eyebrow && state2 === "login" && /* @__PURE__ */ jsx49("p", { className: "mb-[12px] text-[11px] font-semibold uppercase tracking-[0.11em] text-text-tertiary", children: eyebrow }),
2569
+ eyebrow && state2 === "login" && /* @__PURE__ */ jsx49("p", { className: "mb-[12px] text-[13px] font-medium text-text-tertiary", children: eyebrow }),
2570
2570
  /* @__PURE__ */ jsx49("h1", { className: "mb-[8px] text-[20px] font-semibold leading-[1.25] tracking-[-0.015em] text-text-primary", children: heading }),
2571
2571
  sub && /* @__PURE__ */ jsx49("p", { className: "mx-auto mb-[24px] max-w-[280px] text-[13.5px] leading-[1.5] text-text-secondary", children: sub }),
2572
2572
  state2 === "login" && /* @__PURE__ */ jsx49(
@@ -5668,7 +5668,7 @@ function OnboardingScreenShell({
5668
5668
  themeToggle = /* @__PURE__ */ jsx80(ThemeToggle, {}),
5669
5669
  title,
5670
5670
  description,
5671
- footer = "Supercharged by Lessly",
5671
+ footer,
5672
5672
  width = "md",
5673
5673
  children,
5674
5674
  className,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lessly/ui",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "Lessly design system — shared UI primitives, tokens, and theme",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.30.3",