@redsift/ds-mcp-server 12.5.6 → 12.5.7-muiv8-alpha.2
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/data/docs/components/design-system/Alert.json +40 -0
- package/data/docs/components/design-system/NumberField.json +2 -2
- package/data/docs/components/design-system/TextArea.json +2 -2
- package/data/docs/components/design-system/TextField.json +2 -2
- package/data/docs/components-index.json +1 -1
- package/data/docs/components.json +48 -8
- package/data/docs/llms-full.txt +9 -9
- package/data/metadata.json +2 -2
- package/package.json +2 -2
|
@@ -342,6 +342,46 @@
|
|
|
342
342
|
"required": false,
|
|
343
343
|
"defaultValue": null,
|
|
344
344
|
"category": "positioning"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "padding",
|
|
348
|
+
"description": "The padding for all four sides of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\">MDN</a>.",
|
|
349
|
+
"type": "string",
|
|
350
|
+
"required": false,
|
|
351
|
+
"defaultValue": null,
|
|
352
|
+
"category": "spacing"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "paddingBottom",
|
|
356
|
+
"description": "The padding for the bottom side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-bottom\">MDN</a>.",
|
|
357
|
+
"type": "string",
|
|
358
|
+
"required": false,
|
|
359
|
+
"defaultValue": null,
|
|
360
|
+
"category": "spacing"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"name": "paddingLeft",
|
|
364
|
+
"description": "The padding for the left side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-left\">MDN</a>.",
|
|
365
|
+
"type": "string",
|
|
366
|
+
"required": false,
|
|
367
|
+
"defaultValue": null,
|
|
368
|
+
"category": "spacing"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "paddingRight",
|
|
372
|
+
"description": "The padding for the right side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-right\">MDN</a>.",
|
|
373
|
+
"type": "string",
|
|
374
|
+
"required": false,
|
|
375
|
+
"defaultValue": null,
|
|
376
|
+
"category": "spacing"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"name": "paddingTop",
|
|
380
|
+
"description": "The padding for the top side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-top\">MDN</a>.",
|
|
381
|
+
"type": "string",
|
|
382
|
+
"required": false,
|
|
383
|
+
"defaultValue": null,
|
|
384
|
+
"category": "spacing"
|
|
345
385
|
}
|
|
346
386
|
],
|
|
347
387
|
"examples": [],
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
},
|
|
226
226
|
{
|
|
227
227
|
"name": "isInvalid",
|
|
228
|
-
"description": "Whether the component is invalid or not.",
|
|
228
|
+
"description": "Whether the component is invalid or not. This is the *only* trigger for the\nerror (red) border and `aria-invalid`; drive it yourself (e.g. on blur) for\ntouch-based validation. `isRequired` no longer implies it.",
|
|
229
229
|
"type": [
|
|
230
230
|
"false",
|
|
231
231
|
"true"
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
"name": "isRequired",
|
|
250
|
-
"description": "Whether the component is required or not.",
|
|
250
|
+
"description": "Whether the component is required or not. Renders an asterisk (*) next to\nthe label and sets `aria-required`. The asterisk inherits the label colour\n(neutral by default); it does **not** set the error border and is not red on\nits own — pass `isInvalid` for the red/error state.",
|
|
251
251
|
"type": [
|
|
252
252
|
"false",
|
|
253
253
|
"true"
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
134
|
"name": "isInvalid",
|
|
135
|
-
"description": "Whether the component is invalid or not.",
|
|
135
|
+
"description": "Whether the component is invalid or not. This is the *only* trigger for the\nerror (red) border and `aria-invalid`; drive it yourself (e.g. on blur) for\ntouch-based validation. `isRequired` no longer implies it.",
|
|
136
136
|
"type": [
|
|
137
137
|
"false",
|
|
138
138
|
"true"
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
156
|
"name": "isRequired",
|
|
157
|
-
"description": "Whether the component is required or not.",
|
|
157
|
+
"description": "Whether the component is required or not. Renders an asterisk (*) next to\nthe label and sets `aria-required`. The asterisk inherits the label colour\n(neutral by default); it does **not** set the error border and is not red on\nits own — pass `isInvalid` for the red/error state.",
|
|
158
158
|
"type": [
|
|
159
159
|
"false",
|
|
160
160
|
"true"
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
132
|
"name": "isInvalid",
|
|
133
|
-
"description": "Whether the component is invalid or not.",
|
|
133
|
+
"description": "Whether the component is invalid or not. This is the *only* trigger for the\nerror (red) border and `aria-invalid`; drive it yourself (e.g. on blur) for\ntouch-based validation. `isRequired` no longer implies it.",
|
|
134
134
|
"type": [
|
|
135
135
|
"false",
|
|
136
136
|
"true"
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
154
|
"name": "isRequired",
|
|
155
|
-
"description": "Whether the component is required or not.",
|
|
155
|
+
"description": "Whether the component is required or not. Renders an asterisk (*) next to\nthe label and sets `aria-required`. The asterisk inherits the label colour\n(neutral by default); it does **not** set the error border and is not red on\nits own — pass `isInvalid` for the red/error state.",
|
|
156
156
|
"type": [
|
|
157
157
|
"false",
|
|
158
158
|
"true"
|
|
@@ -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.
|
|
5
|
-
"generated": "2026-07-
|
|
4
|
+
"version": "12.5.6",
|
|
5
|
+
"generated": "2026-07-17T06:38:26.095Z",
|
|
6
6
|
"repository": "https://github.com/redsift/design-system",
|
|
7
7
|
"documentation": "https://design-system.redsift.io",
|
|
8
8
|
"packages": [
|
|
@@ -872,6 +872,46 @@
|
|
|
872
872
|
"required": false,
|
|
873
873
|
"defaultValue": null,
|
|
874
874
|
"category": "positioning"
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"name": "padding",
|
|
878
|
+
"description": "The padding for all four sides of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\">MDN</a>.",
|
|
879
|
+
"type": "string",
|
|
880
|
+
"required": false,
|
|
881
|
+
"defaultValue": null,
|
|
882
|
+
"category": "spacing"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"name": "paddingBottom",
|
|
886
|
+
"description": "The padding for the bottom side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-bottom\">MDN</a>.",
|
|
887
|
+
"type": "string",
|
|
888
|
+
"required": false,
|
|
889
|
+
"defaultValue": null,
|
|
890
|
+
"category": "spacing"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"name": "paddingLeft",
|
|
894
|
+
"description": "The padding for the left side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-left\">MDN</a>.",
|
|
895
|
+
"type": "string",
|
|
896
|
+
"required": false,
|
|
897
|
+
"defaultValue": null,
|
|
898
|
+
"category": "spacing"
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"name": "paddingRight",
|
|
902
|
+
"description": "The padding for the right side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-right\">MDN</a>.",
|
|
903
|
+
"type": "string",
|
|
904
|
+
"required": false,
|
|
905
|
+
"defaultValue": null,
|
|
906
|
+
"category": "spacing"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"name": "paddingTop",
|
|
910
|
+
"description": "The padding for the top side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-top\">MDN</a>.",
|
|
911
|
+
"type": "string",
|
|
912
|
+
"required": false,
|
|
913
|
+
"defaultValue": null,
|
|
914
|
+
"category": "spacing"
|
|
875
915
|
}
|
|
876
916
|
],
|
|
877
917
|
"examples": [],
|
|
@@ -14263,7 +14303,7 @@
|
|
|
14263
14303
|
},
|
|
14264
14304
|
{
|
|
14265
14305
|
"name": "isInvalid",
|
|
14266
|
-
"description": "Whether the component is invalid or not.",
|
|
14306
|
+
"description": "Whether the component is invalid or not. This is the *only* trigger for the\nerror (red) border and `aria-invalid`; drive it yourself (e.g. on blur) for\ntouch-based validation. `isRequired` no longer implies it.",
|
|
14267
14307
|
"type": [
|
|
14268
14308
|
"false",
|
|
14269
14309
|
"true"
|
|
@@ -14285,7 +14325,7 @@
|
|
|
14285
14325
|
},
|
|
14286
14326
|
{
|
|
14287
14327
|
"name": "isRequired",
|
|
14288
|
-
"description": "Whether the component is required or not.",
|
|
14328
|
+
"description": "Whether the component is required or not. Renders an asterisk (*) next to\nthe label and sets `aria-required`. The asterisk inherits the label colour\n(neutral by default); it does **not** set the error border and is not red on\nits own — pass `isInvalid` for the red/error state.",
|
|
14289
14329
|
"type": [
|
|
14290
14330
|
"false",
|
|
14291
14331
|
"true"
|
|
@@ -21200,7 +21240,7 @@
|
|
|
21200
21240
|
},
|
|
21201
21241
|
{
|
|
21202
21242
|
"name": "isInvalid",
|
|
21203
|
-
"description": "Whether the component is invalid or not.",
|
|
21243
|
+
"description": "Whether the component is invalid or not. This is the *only* trigger for the\nerror (red) border and `aria-invalid`; drive it yourself (e.g. on blur) for\ntouch-based validation. `isRequired` no longer implies it.",
|
|
21204
21244
|
"type": [
|
|
21205
21245
|
"false",
|
|
21206
21246
|
"true"
|
|
@@ -21222,7 +21262,7 @@
|
|
|
21222
21262
|
},
|
|
21223
21263
|
{
|
|
21224
21264
|
"name": "isRequired",
|
|
21225
|
-
"description": "Whether the component is required or not.",
|
|
21265
|
+
"description": "Whether the component is required or not. Renders an asterisk (*) next to\nthe label and sets `aria-required`. The asterisk inherits the label colour\n(neutral by default); it does **not** set the error border and is not red on\nits own — pass `isInvalid` for the red/error state.",
|
|
21226
21266
|
"type": [
|
|
21227
21267
|
"false",
|
|
21228
21268
|
"true"
|
|
@@ -21698,7 +21738,7 @@
|
|
|
21698
21738
|
},
|
|
21699
21739
|
{
|
|
21700
21740
|
"name": "isInvalid",
|
|
21701
|
-
"description": "Whether the component is invalid or not.",
|
|
21741
|
+
"description": "Whether the component is invalid or not. This is the *only* trigger for the\nerror (red) border and `aria-invalid`; drive it yourself (e.g. on blur) for\ntouch-based validation. `isRequired` no longer implies it.",
|
|
21702
21742
|
"type": [
|
|
21703
21743
|
"false",
|
|
21704
21744
|
"true"
|
|
@@ -21720,7 +21760,7 @@
|
|
|
21720
21760
|
},
|
|
21721
21761
|
{
|
|
21722
21762
|
"name": "isRequired",
|
|
21723
|
-
"description": "Whether the component is required or not.",
|
|
21763
|
+
"description": "Whether the component is required or not. Renders an asterisk (*) next to\nthe label and sets `aria-required`. The asterisk inherits the label colour\n(neutral by default); it does **not** set the error border and is not red on\nits own — pass `isInvalid` for the red/error state.",
|
|
21724
21764
|
"type": [
|
|
21725
21765
|
"false",
|
|
21726
21766
|
"true"
|
package/data/docs/llms-full.txt
CHANGED
|
@@ -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-07-
|
|
6
|
+
Generated: 2026-07-17T06:38:26.063Z
|
|
7
7
|
Total Components: 164
|
|
8
8
|
|
|
9
9
|
---
|
|
@@ -144,9 +144,9 @@ Alerts can be controlled (using `isClosed` and `onClose`) or uncontrolled
|
|
|
144
144
|
|
|
145
145
|
Inherits standard layout props: `flex`, `flexGrow`, `flexShrink`, `flexBasis`, `alignSelf`, `justifySelf`, `order`, `gridArea`, `gridColumn`, `gridRow`, `gridColumnStart`, `gridColumnEnd`, `gridRowStart`, `gridRowEnd`
|
|
146
146
|
|
|
147
|
-
#### Spacing Props (
|
|
147
|
+
#### Spacing Props (10 props)
|
|
148
148
|
|
|
149
|
-
Inherits standard spacing props: `margin`, `marginBottom`, `marginLeft`, `marginRight`, `marginTop`
|
|
149
|
+
Inherits standard spacing props: `margin`, `marginBottom`, `marginLeft`, `marginRight`, `marginTop`, `padding`, `paddingBottom`, `paddingLeft`, `paddingRight`, `paddingTop`
|
|
150
150
|
|
|
151
151
|
#### Sizing Props (6 props)
|
|
152
152
|
|
|
@@ -1697,9 +1697,9 @@ Supports controlled (`value`) or uncontrolled (`defaultValue`) modes.
|
|
|
1697
1697
|
| inputRef | MutableRefObject<HTMLInputElement> | No | - | Custom ref object to pass to the input element. |
|
|
1698
1698
|
| isColored | false \| true | No | - | @deprecated Whether the component should use the product colors or shades of grey. |
|
|
1699
1699
|
| isDisabled | false \| true | No | - | Whether the component is disabled or not. |
|
|
1700
|
-
| isInvalid | false \| true | No | - | Whether the component is invalid or not. |
|
|
1700
|
+
| isInvalid | false \| true | No | - | Whether the component is invalid or not. This is the *only* trigger for the error (red) border and `aria-invalid`; drive it yourself (e.g. on blur) for touch-based validation. `isRequired` no longer implies it. |
|
|
1701
1701
|
| isReadOnly | false \| true | No | - | Whether the component is read only or not. |
|
|
1702
|
-
| isRequired | false \| true | No | - | Whether the component is required or not. |
|
|
1702
|
+
| isRequired | false \| true | No | - | Whether the component is required or not. Renders an asterisk (*) next to the label and sets `aria-required`. The asterisk inherits the label colour (neutral by default); it does **not** set the error border and is not red on its own — pass `isInvalid` for the red/error state. |
|
|
1703
1703
|
| leftIcon | Omit<IconProps, "ref"> | No | - | Can be a string or an array of strings containing `d` property of the `path` SVG element.<br /> Can also be a ReactElement. |
|
|
1704
1704
|
| name | string | No | - | Name to pass to the input element. |
|
|
1705
1705
|
| onClear | () => void | No | - | Method to handle component clear. |
|
|
@@ -2530,9 +2530,9 @@ validation, and controlled/uncontrolled modes.
|
|
|
2530
2530
|
| after | null \| string \| number \| false \| true \| ReactElement<any, string \| JSXElementConstructor<any>> \| ReactFragment \| ReactPortal \| (value?: string \| undefined, isDisabled?: boolean \| undefined, isInvalid?: boolean \| undefined, isRequired?: boolean \| undefined) => ReactNode | No | - | Place for icon buttons after the separator. |
|
|
2531
2531
|
| isColored | false \| true | No | - | @deprecated Whether the component should use the product colors or shades of grey. |
|
|
2532
2532
|
| isDisabled | false \| true | No | - | Whether the component is disabled or not. |
|
|
2533
|
-
| isInvalid | false \| true | No | - | Whether the component is invalid or not. |
|
|
2533
|
+
| isInvalid | false \| true | No | - | Whether the component is invalid or not. This is the *only* trigger for the error (red) border and `aria-invalid`; drive it yourself (e.g. on blur) for touch-based validation. `isRequired` no longer implies it. |
|
|
2534
2534
|
| isReadOnly | false \| true | No | - | Whether the component is read only or not. |
|
|
2535
|
-
| isRequired | false \| true | No | - | Whether the component is required or not. |
|
|
2535
|
+
| isRequired | false \| true | No | - | Whether the component is required or not. Renders an asterisk (*) next to the label and sets `aria-required`. The asterisk inherits the label colour (neutral by default); it does **not** set the error border and is not red on its own — pass `isInvalid` for the red/error state. |
|
|
2536
2536
|
| leftIcon | Omit<IconProps, "ref"> | No | - | Can be a string or an array of strings containing `d` property of the `path` SVG element.<br /> Can also be a ReactElement. |
|
|
2537
2537
|
| name | string | No | - | Name to pass to the input element. |
|
|
2538
2538
|
| theme | "light" \| "dark" | No | - | Theme. |
|
|
@@ -2585,9 +2585,9 @@ Colors: `primary`, `success`, `warning`, `error`, `info`, `question`, `neutral`,
|
|
|
2585
2585
|
| inputRef | MutableRefObject<HTMLInputElement> | No | - | Custom ref object to pass to the input element. |
|
|
2586
2586
|
| isColored | false \| true | No | - | @deprecated Whether the component should use the product colors or shades of grey. |
|
|
2587
2587
|
| isDisabled | false \| true | No | - | Whether the component is disabled or not. |
|
|
2588
|
-
| isInvalid | false \| true | No | - | Whether the component is invalid or not. |
|
|
2588
|
+
| isInvalid | false \| true | No | - | Whether the component is invalid or not. This is the *only* trigger for the error (red) border and `aria-invalid`; drive it yourself (e.g. on blur) for touch-based validation. `isRequired` no longer implies it. |
|
|
2589
2589
|
| isReadOnly | false \| true | No | - | Whether the component is read only or not. |
|
|
2590
|
-
| isRequired | false \| true | No | - | Whether the component is required or not. |
|
|
2590
|
+
| isRequired | false \| true | No | - | Whether the component is required or not. Renders an asterisk (*) next to the label and sets `aria-required`. The asterisk inherits the label colour (neutral by default); it does **not** set the error border and is not red on its own — pass `isInvalid` for the red/error state. |
|
|
2591
2591
|
| label | string | No | - | Label |
|
|
2592
2592
|
| leftIcon | Omit<IconProps, "ref"> | No | - | Can be a string or an array of strings containing `d` property of the `path` SVG element.<br /> Can also be a ReactElement. |
|
|
2593
2593
|
| name | string | No | - | Name to pass to the input element. |
|
package/data/metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redsift/ds-mcp-server",
|
|
3
|
-
"version": "12.5.
|
|
3
|
+
"version": "12.5.7-muiv8-alpha.2",
|
|
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": "
|
|
40
|
+
"gitHead": "0113bc05808e21a55752ee0770b909369d145aef"
|
|
41
41
|
}
|