@redsift/ds-mcp-server 12.5.12 → 12.5.13
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/NumberField.json +11 -0
- package/data/docs/components/design-system/TextArea.json +11 -0
- package/data/docs/components/design-system/TextField.json +11 -0
- package/data/docs/components/pickers/ComboboxTrigger.json +30 -0
- package/data/docs/components-index.json +4 -4
- package/data/docs/components.json +65 -2
- package/data/docs/llms-full.txt +8 -1
- package/data/docs/llms.txt +4 -4
- package/data/metadata.json +2 -2
- package/package.json +2 -2
|
@@ -280,6 +280,17 @@
|
|
|
280
280
|
"defaultValue": null,
|
|
281
281
|
"category": "props"
|
|
282
282
|
},
|
|
283
|
+
{
|
|
284
|
+
"name": "pillsLayout",
|
|
285
|
+
"description": "How the Pills are laid out relative to the input.\n\n- `wrap`: Pills wrap onto new lines above the input and the field grows vertically (legacy behaviour).\n- `inline`: Pills and input share a single line; the field never grows. Pills shrink and truncate\n their text with an ellipsis instead of wrapping. Meant for triggers that bound the number of Pills\n themselves (see `Combobox.Trigger` `pillsOverflow`).",
|
|
286
|
+
"type": [
|
|
287
|
+
"\"inline\"",
|
|
288
|
+
"\"wrap\""
|
|
289
|
+
],
|
|
290
|
+
"required": false,
|
|
291
|
+
"defaultValue": "'wrap'",
|
|
292
|
+
"category": "props"
|
|
293
|
+
},
|
|
283
294
|
{
|
|
284
295
|
"name": "theme",
|
|
285
296
|
"description": "Theme.",
|
|
@@ -179,6 +179,17 @@
|
|
|
179
179
|
"defaultValue": null,
|
|
180
180
|
"category": "props"
|
|
181
181
|
},
|
|
182
|
+
{
|
|
183
|
+
"name": "pillsLayout",
|
|
184
|
+
"description": "How the Pills are laid out relative to the input.\n\n- `wrap`: Pills wrap onto new lines above the input and the field grows vertically (legacy behaviour).\n- `inline`: Pills and input share a single line; the field never grows. Pills shrink and truncate\n their text with an ellipsis instead of wrapping. Meant for triggers that bound the number of Pills\n themselves (see `Combobox.Trigger` `pillsOverflow`).",
|
|
185
|
+
"type": [
|
|
186
|
+
"\"inline\"",
|
|
187
|
+
"\"wrap\""
|
|
188
|
+
],
|
|
189
|
+
"required": false,
|
|
190
|
+
"defaultValue": "'wrap'",
|
|
191
|
+
"category": "props"
|
|
192
|
+
},
|
|
182
193
|
{
|
|
183
194
|
"name": "theme",
|
|
184
195
|
"description": "Theme.",
|
|
@@ -209,6 +209,17 @@
|
|
|
209
209
|
"defaultValue": null,
|
|
210
210
|
"category": "props"
|
|
211
211
|
},
|
|
212
|
+
{
|
|
213
|
+
"name": "pillsLayout",
|
|
214
|
+
"description": "How the Pills are laid out relative to the input.\n\n- `wrap`: Pills wrap onto new lines above the input and the field grows vertically (legacy behaviour).\n- `inline`: Pills and input share a single line; the field never grows. Pills shrink and truncate\n their text with an ellipsis instead of wrapping. Meant for triggers that bound the number of Pills\n themselves (see `Combobox.Trigger` `pillsOverflow`).",
|
|
215
|
+
"type": [
|
|
216
|
+
"\"wrap\"",
|
|
217
|
+
"\"inline\""
|
|
218
|
+
],
|
|
219
|
+
"required": false,
|
|
220
|
+
"defaultValue": "'wrap'",
|
|
221
|
+
"category": "props"
|
|
222
|
+
},
|
|
212
223
|
{
|
|
213
224
|
"name": "placeholder",
|
|
214
225
|
"description": "Placeholder.",
|
|
@@ -15,6 +15,17 @@
|
|
|
15
15
|
"defaultValue": null,
|
|
16
16
|
"category": "props"
|
|
17
17
|
},
|
|
18
|
+
{
|
|
19
|
+
"name": "closeOnSelect",
|
|
20
|
+
"description": "Whether the popover closes after a value is toggled (multiple selection only).\nWith `false` the popover stays open and the typed search is kept, so several values can be\n(un)checked in a row; Escape, Tab or an outside click still close it.",
|
|
21
|
+
"type": [
|
|
22
|
+
"false",
|
|
23
|
+
"true"
|
|
24
|
+
],
|
|
25
|
+
"required": false,
|
|
26
|
+
"defaultValue": "false with `variant=\"options\"`, true with `variant=\"suggestions\"` (the free-text flow needs the\ninput cleared after each entry).",
|
|
27
|
+
"category": "props"
|
|
28
|
+
},
|
|
18
29
|
{
|
|
19
30
|
"name": "hideClearButton",
|
|
20
31
|
"description": "Whether the clear button should be hiding (not recommended)",
|
|
@@ -37,6 +48,14 @@
|
|
|
37
48
|
"defaultValue": null,
|
|
38
49
|
"category": "props"
|
|
39
50
|
},
|
|
51
|
+
{
|
|
52
|
+
"name": "maxVisiblePills",
|
|
53
|
+
"description": "Maximum number of value Pills rendered before collapsing the rest into a `+N` Pill.\nOnly used when `pillsOverflow` is `collapse`.",
|
|
54
|
+
"type": "number",
|
|
55
|
+
"required": false,
|
|
56
|
+
"defaultValue": "2",
|
|
57
|
+
"category": "props"
|
|
58
|
+
},
|
|
40
59
|
{
|
|
41
60
|
"name": "openOnFocus",
|
|
42
61
|
"description": "Whether the popover should open on focus.",
|
|
@@ -48,6 +67,17 @@
|
|
|
48
67
|
"defaultValue": null,
|
|
49
68
|
"category": "props"
|
|
50
69
|
},
|
|
70
|
+
{
|
|
71
|
+
"name": "pillsOverflow",
|
|
72
|
+
"description": "How the selected values are displayed when they no longer fit on one line (multiple selection only).\n`collapse` renders the TextField with `pillsLayout=\"inline\"`, so the trigger keeps a fixed height;\n`wrap` is the legacy growing layout.",
|
|
73
|
+
"type": [
|
|
74
|
+
"\"wrap\"",
|
|
75
|
+
"\"collapse\""
|
|
76
|
+
],
|
|
77
|
+
"required": false,
|
|
78
|
+
"defaultValue": "'collapse'",
|
|
79
|
+
"category": "props"
|
|
80
|
+
},
|
|
51
81
|
{
|
|
52
82
|
"name": "pillProps",
|
|
53
83
|
"description": "Props to forward to the Pills.",
|
|
@@ -369,7 +369,7 @@
|
|
|
369
369
|
"name": "NumberField",
|
|
370
370
|
"package": "@redsift/design-system",
|
|
371
371
|
"description": "NumberField allows users to enter and adjust numeric values with increment",
|
|
372
|
-
"propsCount":
|
|
372
|
+
"propsCount": 67,
|
|
373
373
|
"hasExamples": false
|
|
374
374
|
},
|
|
375
375
|
{
|
|
@@ -549,14 +549,14 @@
|
|
|
549
549
|
"name": "TextArea",
|
|
550
550
|
"package": "@redsift/design-system",
|
|
551
551
|
"description": "TextArea allows users to enter multi-line text. Supports auto-growing height,",
|
|
552
|
-
"propsCount":
|
|
552
|
+
"propsCount": 55,
|
|
553
553
|
"hasExamples": false
|
|
554
554
|
},
|
|
555
555
|
{
|
|
556
556
|
"name": "TextField",
|
|
557
557
|
"package": "@redsift/design-system",
|
|
558
558
|
"description": "TextField allows users to enter single-line text input. Supports validation,",
|
|
559
|
-
"propsCount":
|
|
559
|
+
"propsCount": 58,
|
|
560
560
|
"hasExamples": false,
|
|
561
561
|
"keywords": [
|
|
562
562
|
"text input",
|
|
@@ -788,7 +788,7 @@
|
|
|
788
788
|
"name": "ComboboxTrigger",
|
|
789
789
|
"package": "@redsift/pickers",
|
|
790
790
|
"description": "The ComboboxTrigger component.",
|
|
791
|
-
"propsCount":
|
|
791
|
+
"propsCount": 40,
|
|
792
792
|
"hasExamples": false
|
|
793
793
|
},
|
|
794
794
|
{
|
|
@@ -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-
|
|
4
|
+
"version": "12.5.12",
|
|
5
|
+
"generated": "2026-09-08T08:02:04.673Z",
|
|
6
6
|
"repository": "https://github.com/redsift/design-system",
|
|
7
7
|
"documentation": "https://design-system.redsift.io",
|
|
8
8
|
"packages": [
|
|
@@ -14358,6 +14358,17 @@
|
|
|
14358
14358
|
"defaultValue": null,
|
|
14359
14359
|
"category": "props"
|
|
14360
14360
|
},
|
|
14361
|
+
{
|
|
14362
|
+
"name": "pillsLayout",
|
|
14363
|
+
"description": "How the Pills are laid out relative to the input.\n\n- `wrap`: Pills wrap onto new lines above the input and the field grows vertically (legacy behaviour).\n- `inline`: Pills and input share a single line; the field never grows. Pills shrink and truncate\n their text with an ellipsis instead of wrapping. Meant for triggers that bound the number of Pills\n themselves (see `Combobox.Trigger` `pillsOverflow`).",
|
|
14364
|
+
"type": [
|
|
14365
|
+
"\"inline\"",
|
|
14366
|
+
"\"wrap\""
|
|
14367
|
+
],
|
|
14368
|
+
"required": false,
|
|
14369
|
+
"defaultValue": "'wrap'",
|
|
14370
|
+
"category": "props"
|
|
14371
|
+
},
|
|
14361
14372
|
{
|
|
14362
14373
|
"name": "theme",
|
|
14363
14374
|
"description": "Theme.",
|
|
@@ -21287,6 +21298,17 @@
|
|
|
21287
21298
|
"defaultValue": null,
|
|
21288
21299
|
"category": "props"
|
|
21289
21300
|
},
|
|
21301
|
+
{
|
|
21302
|
+
"name": "pillsLayout",
|
|
21303
|
+
"description": "How the Pills are laid out relative to the input.\n\n- `wrap`: Pills wrap onto new lines above the input and the field grows vertically (legacy behaviour).\n- `inline`: Pills and input share a single line; the field never grows. Pills shrink and truncate\n their text with an ellipsis instead of wrapping. Meant for triggers that bound the number of Pills\n themselves (see `Combobox.Trigger` `pillsOverflow`).",
|
|
21304
|
+
"type": [
|
|
21305
|
+
"\"inline\"",
|
|
21306
|
+
"\"wrap\""
|
|
21307
|
+
],
|
|
21308
|
+
"required": false,
|
|
21309
|
+
"defaultValue": "'wrap'",
|
|
21310
|
+
"category": "props"
|
|
21311
|
+
},
|
|
21290
21312
|
{
|
|
21291
21313
|
"name": "theme",
|
|
21292
21314
|
"description": "Theme.",
|
|
@@ -21817,6 +21839,17 @@
|
|
|
21817
21839
|
"defaultValue": null,
|
|
21818
21840
|
"category": "props"
|
|
21819
21841
|
},
|
|
21842
|
+
{
|
|
21843
|
+
"name": "pillsLayout",
|
|
21844
|
+
"description": "How the Pills are laid out relative to the input.\n\n- `wrap`: Pills wrap onto new lines above the input and the field grows vertically (legacy behaviour).\n- `inline`: Pills and input share a single line; the field never grows. Pills shrink and truncate\n their text with an ellipsis instead of wrapping. Meant for triggers that bound the number of Pills\n themselves (see `Combobox.Trigger` `pillsOverflow`).",
|
|
21845
|
+
"type": [
|
|
21846
|
+
"\"wrap\"",
|
|
21847
|
+
"\"inline\""
|
|
21848
|
+
],
|
|
21849
|
+
"required": false,
|
|
21850
|
+
"defaultValue": "'wrap'",
|
|
21851
|
+
"category": "props"
|
|
21852
|
+
},
|
|
21820
21853
|
{
|
|
21821
21854
|
"name": "placeholder",
|
|
21822
21855
|
"description": "Placeholder.",
|
|
@@ -30873,6 +30906,17 @@
|
|
|
30873
30906
|
"defaultValue": null,
|
|
30874
30907
|
"category": "props"
|
|
30875
30908
|
},
|
|
30909
|
+
{
|
|
30910
|
+
"name": "closeOnSelect",
|
|
30911
|
+
"description": "Whether the popover closes after a value is toggled (multiple selection only).\nWith `false` the popover stays open and the typed search is kept, so several values can be\n(un)checked in a row; Escape, Tab or an outside click still close it.",
|
|
30912
|
+
"type": [
|
|
30913
|
+
"false",
|
|
30914
|
+
"true"
|
|
30915
|
+
],
|
|
30916
|
+
"required": false,
|
|
30917
|
+
"defaultValue": "false with `variant=\"options\"`, true with `variant=\"suggestions\"` (the free-text flow needs the\ninput cleared after each entry).",
|
|
30918
|
+
"category": "props"
|
|
30919
|
+
},
|
|
30876
30920
|
{
|
|
30877
30921
|
"name": "hideClearButton",
|
|
30878
30922
|
"description": "Whether the clear button should be hiding (not recommended)",
|
|
@@ -30895,6 +30939,14 @@
|
|
|
30895
30939
|
"defaultValue": null,
|
|
30896
30940
|
"category": "props"
|
|
30897
30941
|
},
|
|
30942
|
+
{
|
|
30943
|
+
"name": "maxVisiblePills",
|
|
30944
|
+
"description": "Maximum number of value Pills rendered before collapsing the rest into a `+N` Pill.\nOnly used when `pillsOverflow` is `collapse`.",
|
|
30945
|
+
"type": "number",
|
|
30946
|
+
"required": false,
|
|
30947
|
+
"defaultValue": "2",
|
|
30948
|
+
"category": "props"
|
|
30949
|
+
},
|
|
30898
30950
|
{
|
|
30899
30951
|
"name": "openOnFocus",
|
|
30900
30952
|
"description": "Whether the popover should open on focus.",
|
|
@@ -30906,6 +30958,17 @@
|
|
|
30906
30958
|
"defaultValue": null,
|
|
30907
30959
|
"category": "props"
|
|
30908
30960
|
},
|
|
30961
|
+
{
|
|
30962
|
+
"name": "pillsOverflow",
|
|
30963
|
+
"description": "How the selected values are displayed when they no longer fit on one line (multiple selection only).\n`collapse` renders the TextField with `pillsLayout=\"inline\"`, so the trigger keeps a fixed height;\n`wrap` is the legacy growing layout.",
|
|
30964
|
+
"type": [
|
|
30965
|
+
"\"wrap\"",
|
|
30966
|
+
"\"collapse\""
|
|
30967
|
+
],
|
|
30968
|
+
"required": false,
|
|
30969
|
+
"defaultValue": "'collapse'",
|
|
30970
|
+
"category": "props"
|
|
30971
|
+
},
|
|
30909
30972
|
{
|
|
30910
30973
|
"name": "pillProps",
|
|
30911
30974
|
"description": "Props to forward to the Pills.",
|
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-
|
|
6
|
+
Generated: 2026-09-08T08:02:04.666Z
|
|
7
7
|
Total Components: 164
|
|
8
8
|
|
|
9
9
|
---
|
|
@@ -1703,6 +1703,7 @@ Supports controlled (`value`) or uncontrolled (`defaultValue`) modes.
|
|
|
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. |
|
|
1706
|
+
| pillsLayout | "inline" \| "wrap" | No | 'wrap' | How the Pills are laid out relative to the input. - `wrap`: Pills wrap onto new lines above the input and the field grows vertically (legacy behaviour). - `inline`: Pills and input share a single line; the field never grows. Pills shrink and truncate their text with an ellipsis instead of wrapping. Meant for triggers that bound the number of Pills themselves (see `Combobox.Trigger` `pillsOverflow`). |
|
|
1706
1707
|
| theme | "light" \| "dark" | No | - | Theme. |
|
|
1707
1708
|
| type | string | No | - | Input type. |
|
|
1708
1709
|
| variant | "default" \| "underline" | No | 'default' | TextField variant. |
|
|
@@ -2535,6 +2536,7 @@ validation, and controlled/uncontrolled modes.
|
|
|
2535
2536
|
| 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
2537
|
| 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
2538
|
| name | string | No | - | Name to pass to the input element. |
|
|
2539
|
+
| pillsLayout | "inline" \| "wrap" | No | 'wrap' | How the Pills are laid out relative to the input. - `wrap`: Pills wrap onto new lines above the input and the field grows vertically (legacy behaviour). - `inline`: Pills and input share a single line; the field never grows. Pills shrink and truncate their text with an ellipsis instead of wrapping. Meant for triggers that bound the number of Pills themselves (see `Combobox.Trigger` `pillsOverflow`). |
|
|
2538
2540
|
| theme | "light" \| "dark" | No | - | Theme. |
|
|
2539
2541
|
| type | string | No | - | Input type. |
|
|
2540
2542
|
| value | string | No | - | Input value. Used for controlled version. |
|
|
@@ -2594,6 +2596,7 @@ Colors: `primary`, `success`, `warning`, `error`, `info`, `question`, `neutral`,
|
|
|
2594
2596
|
| onChange | (value?: string \| undefined, name?: string \| undefined, event?: ChangeEvent<HTMLInputElement> \| undefined) => void | No | - | Method to handle component change. |
|
|
2595
2597
|
| onClear | () => void | No | - | Method to handle component clear. |
|
|
2596
2598
|
| pills | Omit<PillProps, "ref">[] | No | - | List of Pills. |
|
|
2599
|
+
| pillsLayout | "wrap" \| "inline" | No | 'wrap' | How the Pills are laid out relative to the input. - `wrap`: Pills wrap onto new lines above the input and the field grows vertically (legacy behaviour). - `inline`: Pills and input share a single line; the field never grows. Pills shrink and truncate their text with an ellipsis instead of wrapping. Meant for triggers that bound the number of Pills themselves (see `Combobox.Trigger` `pillsOverflow`). |
|
|
2597
2600
|
| placeholder | string | No | - | Placeholder. |
|
|
2598
2601
|
| theme | "light" \| "dark" | No | - | Theme. |
|
|
2599
2602
|
| type | string | No | - | Input type. |
|
|
@@ -3740,9 +3743,13 @@ The ComboboxTrigger component.
|
|
|
3740
3743
|
| Prop | Type | Required | Default | Description |
|
|
3741
3744
|
|------|------|----------|---------|-------------|
|
|
3742
3745
|
| children | ReactElement<any, string \| JSXElementConstructor<any>> \| (state: { value?: ComboboxValue \| undefined; isOpen?: boolean \| undefined; }) => ReactElement<any, string \| JSXElementConstructor<any>> | Yes | - | Children |
|
|
3746
|
+
| closeOnSelect | false \| true | No | false with `variant="options"`, true with `variant="suggestions"` (the free-text flow needs the
|
|
3747
|
+
input cleared after each entry). | Whether the popover closes after a value is toggled (multiple selection only). With `false` the popover stays open and the typed search is kept, so several values can be (un)checked in a row; Escape, Tab or an outside click still close it. |
|
|
3743
3748
|
| hideClearButton | false \| true | No | - | Whether the clear button should be hiding (not recommended) |
|
|
3744
3749
|
| hideExpandButton | false \| true | No | - | Whether or not the expand/collapse icon button should be displayed or not. |
|
|
3750
|
+
| maxVisiblePills | number | No | 2 | Maximum number of value Pills rendered before collapsing the rest into a `+N` Pill. Only used when `pillsOverflow` is `collapse`. |
|
|
3745
3751
|
| openOnFocus | false \| true | No | - | Whether the popover should open on focus. |
|
|
3752
|
+
| pillsOverflow | "wrap" \| "collapse" | No | 'collapse' | How the selected values are displayed when they no longer fit on one line (multiple selection only). `collapse` renders the TextField with `pillsLayout="inline"`, so the trigger keeps a fixed height; `wrap` is the legacy growing layout. |
|
|
3746
3753
|
| pillProps | Omit<PillProps, "children" \| "ref"> | No | - | Props to forward to the Pills. |
|
|
3747
3754
|
| renderPillContent | (value: string) => ReactNode | No | - | Method used to customize the content of the Pills. |
|
|
3748
3755
|
|
package/data/docs/llms.txt
CHANGED
|
@@ -82,7 +82,7 @@ The Red Sift Design System provides reusable UI components including forms, navi
|
|
|
82
82
|
- **LinkButton** (10 props): LinkButton is a semantic button (`<button>`) styled to look like a text link.
|
|
83
83
|
- **Listbox** (20 props): Listbox displays a list of selectable options. Supports single or multiple
|
|
84
84
|
- **Number** (33 props): Number formats and displays numeric values with locale-aware formatting.
|
|
85
|
-
- **NumberField** (
|
|
85
|
+
- **NumberField** (36 props): NumberField allows users to enter and adjust numeric values with increment
|
|
86
86
|
- **Pill** (8 props): Pill displays a small piece of information as a colored label. Commonly used
|
|
87
87
|
- **ProgressBar** (7 props): ProgressBar displays the progress of a task or operation as a horizontal bar.
|
|
88
88
|
- **Radio** (14 props): Radio allows users to select exactly one option from a set. Typically used
|
|
@@ -103,8 +103,8 @@ The Red Sift Design System provides reusable UI components including forms, navi
|
|
|
103
103
|
- **TabPanel** (2 props): TabPanel renders the content for a tab. It is shown when the associated
|
|
104
104
|
- **Tabs** (8 props): Tabs organises content into separate views where only one view is visible at a time.
|
|
105
105
|
- **Text** (11 props): Text renders text content with consistent styling. By default renders a
|
|
106
|
-
- **TextArea** (
|
|
107
|
-
- **TextField** (
|
|
106
|
+
- **TextArea** (24 props): TextArea allows users to enter multi-line text. Supports auto-growing height,
|
|
107
|
+
- **TextField** (27 props): TextField allows users to enter single-line text input. Supports validation,
|
|
108
108
|
|
|
109
109
|
### popovers
|
|
110
110
|
|
|
@@ -143,7 +143,7 @@ The Red Sift Design System provides reusable UI components including forms, navi
|
|
|
143
143
|
- **ComboboxContentFooter** (10 props): The ComboboxContentFooter component.
|
|
144
144
|
- **ComboboxContentHeader** (10 props): The ComboboxContentHeader component.
|
|
145
145
|
- **ComboboxContentListbox** (13 props): The ComboboxContentListbox component.
|
|
146
|
-
- **ComboboxTrigger** (
|
|
146
|
+
- **ComboboxTrigger** (9 props): The ComboboxTrigger component.
|
|
147
147
|
- **Item** (23 props): The Item component.
|
|
148
148
|
- **MenuButton** (22 props)
|
|
149
149
|
- **MenuButtonContent** (11 props)
|
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.13",
|
|
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": "55b7e4976e3595f1788080def19d08f5dcff2403"
|
|
41
41
|
}
|