@mcp-b/react-components 0.26.1 → 0.27.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.
@@ -5,7 +5,7 @@ import * as React from "react";
5
5
  * Lifecycle of a persisted conversation goal. Mirrors the host's goal state;
6
6
  * this is not a Think or AI SDK execution status.
7
7
  */
8
- type GoalStatus = "pursuing" | "paused" | "achieved" | "unmet";
8
+ type GoalStatus = "pursuing" | "paused" | "achieved" | "unmet" | "limited";
9
9
  interface GoalProps extends React.HTMLAttributes<HTMLDivElement> {
10
10
  /** Drives the default title and the `data-status` styling hook. */
11
11
  status?: GoalStatus;
@@ -8,7 +8,8 @@ const STATUS_LABELS = {
8
8
  pursuing: "Pursuing goal",
9
9
  paused: "Goal paused",
10
10
  achieved: "Goal achieved",
11
- unmet: "Goal blocked"
11
+ unmet: "Goal blocked",
12
+ limited: "Goal limited"
12
13
  };
13
14
  /**
14
15
  * Presentation-only banner for a persisted conversation goal — an objective
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-b/react-components",
3
- "version": "0.26.1",
3
+ "version": "0.27.0",
4
4
  "description": "MCP-B React components built on Base UI and shared design tokens, including Cloudflare Think chat primitives.",
5
5
  "homepage": "https://design-system.sigvelo.com",
6
6
  "bugs": {
@@ -58,7 +58,7 @@
58
58
  "streamdown": "^2.5.0",
59
59
  "unist-util-visit": "^5.1.0",
60
60
  "yet-another-react-lightbox": "^3.32.1",
61
- "@mcp-b/design-tokens": "0.26.1"
61
+ "@mcp-b/design-tokens": "0.27.0"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@ai-sdk/react": "^3.0.222",