@redsift/ds-mcp-server 12.5.14 → 12.5.15

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.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "Toast",
3
- "description": "Toast displays non-blocking feedback messages. Use with ToastContainer\nand the `toast()` function for programmatic notifications.\n\nVariants: `info`, `success`, `warning`, `error`, `loading`",
3
+ "description": "Toast displays non-blocking feedback messages. Raise one with the `toast`\nsingleton or the `useToast` hook; render this component directly only when\nyou need the shape on its own (a story, a page-level banner).\n\nVariants: `info`, `success`, `warning`, `error`, `loading`",
4
4
  "package": "@redsift/popovers",
5
5
  "filePath": "packages/popovers/src/components/toast/Toast.tsx",
6
6
  "props": [
7
7
  {
8
8
  "name": "closeButton",
9
- "description": "Whether the component has a close button or not.",
9
+ "description": "Whether the component has a close button or not, or the node to put in its\nplace. A Design System Button or IconButton — a `styled()` one included —\ntakes the variant colour and dismisses the Toast; any other node renders as\ngiven.",
10
10
  "type": "ReactNode",
11
11
  "required": false,
12
12
  "defaultValue": "true",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ToastContainer",
3
- "description": "ToastContainer provides the root element for toast notifications.\nPlace it once at the app root. Use the `useToast` hook to trigger toasts.\n\nPlacements: `top-left`, `top-center`, `top-right`, `bottom-left`,\n`bottom-center`, `bottom-right`",
3
+ "description": "ToastContainer provides the root element for toast notifications.\nPlace it once at the app root. Raise toasts with the `useToast` hook, or with\nthe `toast` singleton when you are outside a component.\n\nPlacements: `top-left`, `top-center`, `top-right`, `bottom-left`,\n`bottom-center`, `bottom-right`",
4
4
  "package": "@redsift/popovers",
5
5
  "filePath": "packages/popovers/src/components/toast-container/ToastContainer.tsx",
6
6
  "props": [
@@ -45,7 +45,7 @@
45
45
  "true"
46
46
  ],
47
47
  "required": false,
48
- "defaultValue": "true",
48
+ "defaultValue": "false",
49
49
  "category": "props"
50
50
  },
51
51
  {
@@ -115,6 +115,17 @@
115
115
  "required": false,
116
116
  "defaultValue": null,
117
117
  "category": "props"
118
+ },
119
+ {
120
+ "name": "width",
121
+ "description": "Width of the Toasts. A number is read as px. Fixed widths override the\ndefault 350px–600px range, so the value is used as given.",
122
+ "type": [
123
+ "string",
124
+ "number"
125
+ ],
126
+ "required": false,
127
+ "defaultValue": "'fit-content'",
128
+ "category": "props"
118
129
  }
119
130
  ],
120
131
  "examples": [],
@@ -674,13 +674,13 @@
674
674
  "name": "ToastContainer",
675
675
  "package": "@redsift/popovers",
676
676
  "description": "ToastContainer provides the root element for toast notifications.",
677
- "propsCount": 10,
677
+ "propsCount": 11,
678
678
  "hasExamples": false
679
679
  },
680
680
  {
681
681
  "name": "Toast",
682
682
  "package": "@redsift/popovers",
683
- "description": "Toast displays non-blocking feedback messages. Use with ToastContainer",
683
+ "description": "Toast displays non-blocking feedback messages. Raise one with the `toast`",
684
684
  "propsCount": 18,
685
685
  "hasExamples": false
686
686
  },
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "name": "Red Sift Design System",
4
- "version": "12.5.12",
5
- "generated": "2026-09-08T08:02:04.673Z",
4
+ "version": "12.5.14",
5
+ "generated": "2026-09-17T10:43:03.557Z",
6
6
  "repository": "https://github.com/redsift/design-system",
7
7
  "documentation": "https://design-system.redsift.io",
8
8
  "packages": [
@@ -25045,12 +25045,12 @@
25045
25045
  },
25046
25046
  {
25047
25047
  "name": "Toast",
25048
- "description": "Toast displays non-blocking feedback messages. Use with ToastContainer\nand the `toast()` function for programmatic notifications.\n\nVariants: `info`, `success`, `warning`, `error`, `loading`",
25048
+ "description": "Toast displays non-blocking feedback messages. Raise one with the `toast`\nsingleton or the `useToast` hook; render this component directly only when\nyou need the shape on its own (a story, a page-level banner).\n\nVariants: `info`, `success`, `warning`, `error`, `loading`",
25049
25049
  "filePath": "packages/popovers/src/components/toast/Toast.tsx",
25050
25050
  "props": [
25051
25051
  {
25052
25052
  "name": "closeButton",
25053
- "description": "Whether the component has a close button or not.",
25053
+ "description": "Whether the component has a close button or not, or the node to put in its\nplace. A Design System Button or IconButton — a `styled()` one included —\ntakes the variant colour and dismisses the Toast; any other node renders as\ngiven.",
25054
25054
  "type": "ReactNode",
25055
25055
  "required": false,
25056
25056
  "defaultValue": "true",
@@ -25213,7 +25213,7 @@
25213
25213
  },
25214
25214
  {
25215
25215
  "name": "ToastContainer",
25216
- "description": "ToastContainer provides the root element for toast notifications.\nPlace it once at the app root. Use the `useToast` hook to trigger toasts.\n\nPlacements: `top-left`, `top-center`, `top-right`, `bottom-left`,\n`bottom-center`, `bottom-right`",
25216
+ "description": "ToastContainer provides the root element for toast notifications.\nPlace it once at the app root. Raise toasts with the `useToast` hook, or with\nthe `toast` singleton when you are outside a component.\n\nPlacements: `top-left`, `top-center`, `top-right`, `bottom-left`,\n`bottom-center`, `bottom-right`",
25217
25217
  "filePath": "packages/popovers/src/components/toast-container/ToastContainer.tsx",
25218
25218
  "props": [
25219
25219
  {
@@ -25257,7 +25257,7 @@
25257
25257
  "true"
25258
25258
  ],
25259
25259
  "required": false,
25260
- "defaultValue": "true",
25260
+ "defaultValue": "false",
25261
25261
  "category": "props"
25262
25262
  },
25263
25263
  {
@@ -25327,6 +25327,17 @@
25327
25327
  "required": false,
25328
25328
  "defaultValue": null,
25329
25329
  "category": "props"
25330
+ },
25331
+ {
25332
+ "name": "width",
25333
+ "description": "Width of the Toasts. A number is read as px. Fixed widths override the\ndefault 350px–600px range, so the value is used as given.",
25334
+ "type": [
25335
+ "string",
25336
+ "number"
25337
+ ],
25338
+ "required": false,
25339
+ "defaultValue": "'fit-content'",
25340
+ "category": "props"
25330
25341
  }
25331
25342
  ],
25332
25343
  "examples": [],
@@ -3,7 +3,7 @@
3
3
  This file contains comprehensive documentation for all components in the Red Sift Design System.
4
4
  It is optimized for LLM consumption and includes props, types, defaults, and usage examples.
5
5
 
6
- Generated: 2026-09-08T08:02:04.666Z
6
+ Generated: 2026-09-17T10:43:03.550Z
7
7
  Total Components: 164
8
8
 
9
9
  ---
@@ -3040,8 +3040,9 @@ Inherits standard positioning props: `position`, `top`, `bottom`, `left`, `right
3040
3040
 
3041
3041
  ### Toast
3042
3042
 
3043
- Toast displays non-blocking feedback messages. Use with ToastContainer
3044
- and the `toast()` function for programmatic notifications.
3043
+ Toast displays non-blocking feedback messages. Raise one with the `toast`
3044
+ singleton or the `useToast` hook; render this component directly only when
3045
+ you need the shape on its own (a story, a page-level banner).
3045
3046
 
3046
3047
  Variants: `info`, `success`, `warning`, `error`, `loading`
3047
3048
 
@@ -3052,7 +3053,7 @@ Variants: `info`, `success`, `warning`, `error`, `loading`
3052
3053
 
3053
3054
  | Prop | Type | Required | Default | Description |
3054
3055
  |------|------|----------|---------|-------------|
3055
- | closeButton | ReactNode | No | true | Whether the component has a close button or not. |
3056
+ | closeButton | ReactNode | No | true | Whether the component has a close button or not, or the node to put in its place. A Design System Button or IconButton — a `styled()` one included — takes the variant colour and dismisses the Toast; any other node renders as given. |
3056
3057
  | title | string | No | - | Title. |
3057
3058
  | theme | "light" \| "dark" | No | - | Theme. |
3058
3059
  | variant | "success" \| "error" \| "warning" \| "info" \| "loading" | No | 'info' | Variant |
@@ -3073,7 +3074,8 @@ Inherits standard sizing props: `height`, `maxHeight`, `maxWidth`, `minHeight`,
3073
3074
  ### ToastContainer
3074
3075
 
3075
3076
  ToastContainer provides the root element for toast notifications.
3076
- Place it once at the app root. Use the `useToast` hook to trigger toasts.
3077
+ Place it once at the app root. Raise toasts with the `useToast` hook, or with
3078
+ the `toast` singleton when you are outside a component.
3077
3079
 
3078
3080
  Placements: `top-left`, `top-center`, `top-right`, `bottom-left`,
3079
3081
  `bottom-center`, `bottom-right`
@@ -3088,13 +3090,14 @@ Placements: `top-left`, `top-center`, `top-right`, `bottom-left`,
3088
3090
  | autoClose | number \| false | No | 5000 | Delay in ms to close the toast. If set to false, the notification needs to be closed manually. |
3089
3091
  | closeOnClick | false \| true | No | false | Dismiss toast on click. |
3090
3092
  | draggable | false \| true | No | true | Allow Toasts to be draggable. |
3091
- | hideProgressBar | false \| true | No | true | Whether the progress bar is displayed or not on all Toasts. |
3093
+ | hideProgressBar | false \| true | No | false | Whether the progress bar is displayed or not on all Toasts. |
3092
3094
  | limit | number | No | - | Used to limit the number of toast displayed on screen at the same time. |
3093
3095
  | pauseOnFocusLoss | false \| true | No | true | Pause the timer when the window loses focus. |
3094
3096
  | pauseOnHover | false \| true | No | true | Keep the timer running or not on hover. |
3095
3097
  | placement | "top-right" \| "top-center" \| "top-left" \| "bottom-right" \| "bottom-center" \| "bottom-left" | No | 'top-right' | Default placement for all Toasts. |
3096
3098
  | rtl | false \| true | No | - | Supports right to left content. |
3097
3099
  | theme | "light" \| "dark" \| "colored" | No | - | Theme. |
3100
+ | width | string \| number | No | 'fit-content' | Width of the Toasts. A number is read as px. Fixed widths override the default 350px–600px range, so the value is used as given. |
3098
3101
 
3099
3102
  ---
3100
3103
 
@@ -122,8 +122,8 @@ The Red Sift Design System provides reusable UI components including forms, navi
122
122
  - **Popover** (15 props)
123
123
  - **PopoverContent** (11 props): The PopoverContent component.
124
124
  - **PopoverTrigger** (0 props): The PopoverTrigger component.
125
- - **Toast** (7 props): Toast displays non-blocking feedback messages. Use with ToastContainer
126
- - **ToastContainer** (10 props): ToastContainer provides the root element for toast notifications.
125
+ - **Toast** (7 props): Toast displays non-blocking feedback messages. Raise one with the `toast`
126
+ - **ToastContainer** (11 props): ToastContainer provides the root element for toast notifications.
127
127
  - **Toggletip** (17 props)
128
128
  - **ToggletipContent** (11 props): The ToggletipContent component.
129
129
  - **ToggletipTrigger** (0 props): The ToggletipTrigger component.
@@ -1,4 +1,4 @@
1
1
  {
2
- "generatedAt": "2026-09-10T11:57:47.135Z",
3
- "commitSha": "3472a9edd1c0c9dc620af9176051910e918ddb24"
2
+ "generatedAt": "2026-09-17T11:14:35.887Z",
3
+ "commitSha": "b064c6c447607f10919e71c766182014fff8cee3"
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redsift/ds-mcp-server",
3
- "version": "12.5.14",
3
+ "version": "12.5.15",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "MCP server for the Red Sift Design System — provides component lookup, prop documentation, and code generation tools for AI assistants.",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "3472a9edd1c0c9dc620af9176051910e918ddb24"
40
+ "gitHead": "b064c6c447607f10919e71c766182014fff8cee3"
41
41
  }