@redsift/ds-mcp-server 12.5.3-alpha.6 → 12.5.3-alpha.7
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/consumer-instructions/redsift-design-system.instructions.md +82 -1
- package/data/docs/components/charts/Axis.json +6 -1
- package/data/docs/components/charts/BarChart.json +7 -1
- package/data/docs/components/charts/ChartContainerTitle.json +5 -1
- package/data/docs/components/charts/Legend.json +6 -1
- package/data/docs/components/charts/LineChart.json +7 -1
- package/data/docs/components/charts/PieChart.json +6 -1
- package/data/docs/components/charts/ScatterPlot.json +6 -1
- package/data/docs/components/dashboard/ChartEmptyState.json +8 -1
- package/data/docs/components/dashboard/Dashboard.json +6 -1
- package/data/docs/components/dashboard/DataCard.json +12 -0
- package/data/docs/components/dashboard/DataCardBody.json +4 -0
- package/data/docs/components/dashboard/DataCardHeader.json +4 -0
- package/data/docs/components/dashboard/DataCardListbox.json +5 -0
- package/data/docs/components/dashboard/DataRow.json +7 -1
- package/data/docs/components/dashboard/PdfExportButton.json +6 -1
- package/data/docs/components/dashboard/TimeSeriesBarChart.json +6 -1
- package/data/docs/components/dashboard/WithFilters.json +5 -1
- package/data/docs/components/design-system/Alert.json +8 -1
- package/data/docs/components/design-system/AppBar.json +6 -1
- package/data/docs/components/design-system/AppContent.json +4 -0
- package/data/docs/components/design-system/AppSidePanel.json +5 -0
- package/data/docs/components/design-system/Badge.json +6 -1
- package/data/docs/components/design-system/Breadcrumbs.json +4 -0
- package/data/docs/components/design-system/Button.json +5 -0
- package/data/docs/components/design-system/Card.json +9 -0
- package/data/docs/components/design-system/CardActions.json +4 -0
- package/data/docs/components/design-system/CardBody.json +3 -0
- package/data/docs/components/design-system/CardHeader.json +4 -0
- package/data/docs/components/design-system/DetailedCard.json +6 -0
- package/data/docs/components/design-system/Flexbox.json +14 -1
- package/data/docs/components/design-system/Grid.json +6 -1
- package/data/docs/components/design-system/Heading.json +11 -0
- package/data/docs/components/design-system/Icon.json +6 -1
- package/data/docs/components/design-system/IconButton.json +9 -0
- package/data/docs/components/design-system/Pill.json +10 -0
- package/data/docs/components/design-system/Skeleton.json +10 -1
- package/data/docs/components/design-system/SkeletonCircle.json +6 -1
- package/data/docs/components/design-system/SkeletonText.json +6 -1
- package/data/docs/components/design-system/Tab.json +4 -0
- package/data/docs/components/design-system/TabPanel.json +4 -0
- package/data/docs/components/design-system/Tabs.json +6 -0
- package/data/docs/components/design-system/Text.json +9 -0
- package/data/docs/components/design-system/TextField.json +6 -1
- package/data/docs/components/pickers/Combobox.json +6 -0
- package/data/docs/components/pickers/MenuButton.json +5 -0
- package/data/docs/components/pickers/Select.json +5 -0
- package/data/docs/components/popovers/Dialog.json +6 -0
- package/data/docs/components/popovers/Toggletip.json +5 -0
- package/data/docs/components/popovers/Tooltip.json +4 -0
- package/data/docs/components/table/DataGrid.json +9 -1
- package/data/docs/components/table/StatefulDataGrid.json +6 -1
- package/data/docs/components-index.json +341 -51
- package/data/docs/components.json +2 -2
- package/data/docs/llms-full.txt +248 -1
- package/data/docs/llms.txt +50 -0
- package/data/docs/patterns-catalog.md +191 -0
- package/data/docs/patterns.json +365 -27
- package/data/metadata.json +2 -2
- package/data/prompts/ds-advisor.md +103 -0
- package/dist/data-store.d.ts +21 -1
- package/dist/data-store.d.ts.map +1 -1
- package/dist/data-store.js +65 -15
- package/dist/data-store.js.map +1 -1
- package/dist/pattern-store.d.ts +18 -1
- package/dist/pattern-store.d.ts.map +1 -1
- package/dist/pattern-store.js +64 -22
- package/dist/pattern-store.js.map +1 -1
- package/dist/prompts.d.ts.map +1 -1
- package/dist/prompts.js +56 -27
- package/dist/prompts.js.map +1 -1
- package/dist/resources.d.ts.map +1 -1
- package/dist/resources.js +26 -0
- package/dist/resources.js.map +1 -1
- package/dist/tools.d.ts.map +1 -1
- package/dist/tools.js +12 -0
- package/dist/tools.js.map +1 -1
- package/dist/types.d.ts +11 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +4 -2
|
@@ -4,35 +4,61 @@
|
|
|
4
4
|
"package": "@redsift/design-system",
|
|
5
5
|
"description": "Alert displays a short, important message that attracts the user's attention",
|
|
6
6
|
"propsCount": 38,
|
|
7
|
-
"hasExamples": false
|
|
7
|
+
"hasExamples": false,
|
|
8
|
+
"keywords": [
|
|
9
|
+
"banner",
|
|
10
|
+
"notification",
|
|
11
|
+
"message bar",
|
|
12
|
+
"info banner",
|
|
13
|
+
"error banner"
|
|
14
|
+
]
|
|
8
15
|
},
|
|
9
16
|
{
|
|
10
17
|
"name": "AppBar",
|
|
11
18
|
"package": "@redsift/design-system",
|
|
12
19
|
"description": "AppBar is the top navigation bar of the application. It displays the page title",
|
|
13
20
|
"propsCount": 6,
|
|
14
|
-
"hasExamples": false
|
|
21
|
+
"hasExamples": false,
|
|
22
|
+
"keywords": [
|
|
23
|
+
"top bar",
|
|
24
|
+
"header bar",
|
|
25
|
+
"navigation bar"
|
|
26
|
+
]
|
|
15
27
|
},
|
|
16
28
|
{
|
|
17
29
|
"name": "AppContent",
|
|
18
30
|
"package": "@redsift/design-system",
|
|
19
31
|
"description": "AppContent is the main content area of a Red Sift application. It automatically",
|
|
20
32
|
"propsCount": 59,
|
|
21
|
-
"hasExamples": false
|
|
33
|
+
"hasExamples": false,
|
|
34
|
+
"keywords": [
|
|
35
|
+
"main content",
|
|
36
|
+
"page content"
|
|
37
|
+
]
|
|
22
38
|
},
|
|
23
39
|
{
|
|
24
40
|
"name": "AppSidePanel",
|
|
25
41
|
"package": "@redsift/design-system",
|
|
26
42
|
"description": "AppSidePanel is the collapsible side navigation panel of a Red Sift application.",
|
|
27
43
|
"propsCount": 8,
|
|
28
|
-
"hasExamples": false
|
|
44
|
+
"hasExamples": false,
|
|
45
|
+
"keywords": [
|
|
46
|
+
"side nav",
|
|
47
|
+
"sidebar",
|
|
48
|
+
"navigation panel"
|
|
49
|
+
]
|
|
29
50
|
},
|
|
30
51
|
{
|
|
31
52
|
"name": "Badge",
|
|
32
53
|
"package": "@redsift/design-system",
|
|
33
54
|
"description": "Badge displays a small status indicator or count. Badges have two variants:",
|
|
34
55
|
"propsCount": 30,
|
|
35
|
-
"hasExamples": false
|
|
56
|
+
"hasExamples": false,
|
|
57
|
+
"keywords": [
|
|
58
|
+
"counter",
|
|
59
|
+
"count badge",
|
|
60
|
+
"notification badge"
|
|
61
|
+
]
|
|
36
62
|
},
|
|
37
63
|
{
|
|
38
64
|
"name": "BreadcrumbItem",
|
|
@@ -53,7 +79,11 @@
|
|
|
53
79
|
"package": "@redsift/design-system",
|
|
54
80
|
"description": "",
|
|
55
81
|
"propsCount": 33,
|
|
56
|
-
"hasExamples": false
|
|
82
|
+
"hasExamples": false,
|
|
83
|
+
"keywords": [
|
|
84
|
+
"breadcrumb nav",
|
|
85
|
+
"path navigation"
|
|
86
|
+
]
|
|
57
87
|
},
|
|
58
88
|
{
|
|
59
89
|
"name": "ButtonGroup",
|
|
@@ -74,35 +104,59 @@
|
|
|
74
104
|
"package": "@redsift/design-system",
|
|
75
105
|
"description": "The Button is a semantic button that looks like a button.",
|
|
76
106
|
"propsCount": 43,
|
|
77
|
-
"hasExamples": false
|
|
107
|
+
"hasExamples": false,
|
|
108
|
+
"keywords": [
|
|
109
|
+
"action button",
|
|
110
|
+
"cta",
|
|
111
|
+
"submit"
|
|
112
|
+
]
|
|
78
113
|
},
|
|
79
114
|
{
|
|
80
115
|
"name": "CardActions",
|
|
81
116
|
"package": "@redsift/design-system",
|
|
82
117
|
"description": "CardActions is a container for action buttons at the bottom of a Card.",
|
|
83
118
|
"propsCount": 44,
|
|
84
|
-
"hasExamples": false
|
|
119
|
+
"hasExamples": false,
|
|
120
|
+
"keywords": [
|
|
121
|
+
"card footer",
|
|
122
|
+
"card buttons"
|
|
123
|
+
]
|
|
85
124
|
},
|
|
86
125
|
{
|
|
87
126
|
"name": "CardBody",
|
|
88
127
|
"package": "@redsift/design-system",
|
|
89
128
|
"description": "CardBody is the main content area of a Card. It can contain any content.",
|
|
90
129
|
"propsCount": 44,
|
|
91
|
-
"hasExamples": false
|
|
130
|
+
"hasExamples": false,
|
|
131
|
+
"keywords": [
|
|
132
|
+
"card content"
|
|
133
|
+
]
|
|
92
134
|
},
|
|
93
135
|
{
|
|
94
136
|
"name": "CardHeader",
|
|
95
137
|
"package": "@redsift/design-system",
|
|
96
138
|
"description": "CardHeader displays the title and optional subtitle of a Card.",
|
|
97
139
|
"propsCount": 43,
|
|
98
|
-
"hasExamples": false
|
|
140
|
+
"hasExamples": false,
|
|
141
|
+
"keywords": [
|
|
142
|
+
"card title",
|
|
143
|
+
"card heading"
|
|
144
|
+
]
|
|
99
145
|
},
|
|
100
146
|
{
|
|
101
147
|
"name": "Card",
|
|
102
148
|
"package": "@redsift/design-system",
|
|
103
149
|
"description": "",
|
|
104
150
|
"propsCount": 36,
|
|
105
|
-
"hasExamples": false
|
|
151
|
+
"hasExamples": false,
|
|
152
|
+
"keywords": [
|
|
153
|
+
"container",
|
|
154
|
+
"card panel",
|
|
155
|
+
"content card"
|
|
156
|
+
],
|
|
157
|
+
"antiPatterns": [
|
|
158
|
+
"❌ Using Card with inline styles for KPI tiles → ✅ Use DataCard from @redsift/dashboard for metric/KPI tiles."
|
|
159
|
+
]
|
|
106
160
|
},
|
|
107
161
|
{
|
|
108
162
|
"name": "CheckboxGroup",
|
|
@@ -151,14 +205,32 @@
|
|
|
151
205
|
"package": "@redsift/design-system",
|
|
152
206
|
"description": "",
|
|
153
207
|
"propsCount": 41,
|
|
154
|
-
"hasExamples": false
|
|
208
|
+
"hasExamples": false,
|
|
209
|
+
"keywords": [
|
|
210
|
+
"expandable card",
|
|
211
|
+
"collapsible card",
|
|
212
|
+
"detail panel"
|
|
213
|
+
]
|
|
155
214
|
},
|
|
156
215
|
{
|
|
157
216
|
"name": "Flexbox",
|
|
158
217
|
"package": "@redsift/design-system",
|
|
159
218
|
"description": "Flexbox provides a CSS Flexbox container with convenient props for common",
|
|
160
219
|
"propsCount": 55,
|
|
161
|
-
"hasExamples": false
|
|
220
|
+
"hasExamples": false,
|
|
221
|
+
"keywords": [
|
|
222
|
+
"flex container",
|
|
223
|
+
"row",
|
|
224
|
+
"column",
|
|
225
|
+
"stack",
|
|
226
|
+
"box",
|
|
227
|
+
"hstack",
|
|
228
|
+
"vstack"
|
|
229
|
+
],
|
|
230
|
+
"antiPatterns": [
|
|
231
|
+
"❌ gap={4} → ✅ gap=\"4px\" — gap is a string prop (CSS value), not a number.",
|
|
232
|
+
"❌ style={{ display: \"flex\", gap: 4 }} → ✅ <Flexbox gap=\"4px\"> — use the Flexbox component instead of inline styles."
|
|
233
|
+
]
|
|
162
234
|
},
|
|
163
235
|
{
|
|
164
236
|
"name": "FocusWithinGroup",
|
|
@@ -186,14 +258,30 @@
|
|
|
186
258
|
"package": "@redsift/design-system",
|
|
187
259
|
"description": "",
|
|
188
260
|
"propsCount": 58,
|
|
189
|
-
"hasExamples": false
|
|
261
|
+
"hasExamples": false,
|
|
262
|
+
"keywords": [
|
|
263
|
+
"grid layout",
|
|
264
|
+
"css grid",
|
|
265
|
+
"grid container"
|
|
266
|
+
]
|
|
190
267
|
},
|
|
191
268
|
{
|
|
192
269
|
"name": "Heading",
|
|
193
270
|
"package": "@redsift/design-system",
|
|
194
271
|
"description": "Heading renders semantic HTML heading elements (h1-h6) with consistent styling.",
|
|
195
272
|
"propsCount": 40,
|
|
196
|
-
"hasExamples": false
|
|
273
|
+
"hasExamples": false,
|
|
274
|
+
"keywords": [
|
|
275
|
+
"title",
|
|
276
|
+
"header text",
|
|
277
|
+
"section heading",
|
|
278
|
+
"h1",
|
|
279
|
+
"h2",
|
|
280
|
+
"h3"
|
|
281
|
+
],
|
|
282
|
+
"antiPatterns": [
|
|
283
|
+
"❌ color=\"#22c55e\" or color=\"var(--rs-color-green-500)\" → ✅ color=\"success\" — use semantic color values from NeutralColorPalette / NotificationsColorPalette."
|
|
284
|
+
]
|
|
197
285
|
},
|
|
198
286
|
{
|
|
199
287
|
"name": "IconButtonLink",
|
|
@@ -207,14 +295,26 @@
|
|
|
207
295
|
"package": "@redsift/design-system",
|
|
208
296
|
"description": "IconButton is a button containing only an icon, without text.",
|
|
209
297
|
"propsCount": 40,
|
|
210
|
-
"hasExamples": false
|
|
298
|
+
"hasExamples": false,
|
|
299
|
+
"keywords": [
|
|
300
|
+
"icon action",
|
|
301
|
+
"toolbar button"
|
|
302
|
+
],
|
|
303
|
+
"antiPatterns": [
|
|
304
|
+
"❌ Unicode characters as icon content → ✅ icon={mdiPlus} prop with mdi imports from @redsift/icons.",
|
|
305
|
+
"❌ import { mdiPlus } from \"@mdi/js\" → ✅ import { mdiPlus } from \"@redsift/icons\"."
|
|
306
|
+
]
|
|
211
307
|
},
|
|
212
308
|
{
|
|
213
309
|
"name": "Icon",
|
|
214
310
|
"package": "@redsift/design-system",
|
|
215
311
|
"description": "Icon displays SVG icons from the Material Design Icons library or custom paths.",
|
|
216
312
|
"propsCount": 33,
|
|
217
|
-
"hasExamples": false
|
|
313
|
+
"hasExamples": false,
|
|
314
|
+
"antiPatterns": [
|
|
315
|
+
"❌ Unicode characters (✓, ✕, ⚠, ›) → ✅ <Icon path={mdiCheck} /> from @redsift/icons.",
|
|
316
|
+
"❌ import { mdiPlus } from \"@mdi/js\" → ✅ import { mdiPlus } from \"@redsift/icons\"."
|
|
317
|
+
]
|
|
218
318
|
},
|
|
219
319
|
{
|
|
220
320
|
"name": "RenderedListboxItem",
|
|
@@ -284,7 +384,17 @@
|
|
|
284
384
|
"package": "@redsift/design-system",
|
|
285
385
|
"description": "Pill displays a small piece of information as a colored label. Commonly used",
|
|
286
386
|
"propsCount": 39,
|
|
287
|
-
"hasExamples": false
|
|
387
|
+
"hasExamples": false,
|
|
388
|
+
"keywords": [
|
|
389
|
+
"chip",
|
|
390
|
+
"tag",
|
|
391
|
+
"badge",
|
|
392
|
+
"label",
|
|
393
|
+
"status pill"
|
|
394
|
+
],
|
|
395
|
+
"antiPatterns": [
|
|
396
|
+
"❌ <Pill label=\"Active\" /> → ✅ <Pill color=\"success\">Active</Pill> — Pill uses children for content, NOT a label prop."
|
|
397
|
+
]
|
|
288
398
|
},
|
|
289
399
|
{
|
|
290
400
|
"name": "ProgressBar",
|
|
@@ -340,14 +450,22 @@
|
|
|
340
450
|
"package": "@redsift/design-system",
|
|
341
451
|
"description": "The SkeletonCircle component.",
|
|
342
452
|
"propsCount": 38,
|
|
343
|
-
"hasExamples": false
|
|
453
|
+
"hasExamples": false,
|
|
454
|
+
"keywords": [
|
|
455
|
+
"avatar placeholder",
|
|
456
|
+
"circle skeleton"
|
|
457
|
+
]
|
|
344
458
|
},
|
|
345
459
|
{
|
|
346
460
|
"name": "SkeletonText",
|
|
347
461
|
"package": "@redsift/design-system",
|
|
348
462
|
"description": "The SkeletonText component.",
|
|
349
463
|
"propsCount": 41,
|
|
350
|
-
"hasExamples": false
|
|
464
|
+
"hasExamples": false,
|
|
465
|
+
"keywords": [
|
|
466
|
+
"text placeholder",
|
|
467
|
+
"paragraph skeleton"
|
|
468
|
+
]
|
|
351
469
|
},
|
|
352
470
|
{
|
|
353
471
|
"name": "BaseSkeleton",
|
|
@@ -361,7 +479,15 @@
|
|
|
361
479
|
"package": "@redsift/design-system",
|
|
362
480
|
"description": "",
|
|
363
481
|
"propsCount": 38,
|
|
364
|
-
"hasExamples": false
|
|
482
|
+
"hasExamples": false,
|
|
483
|
+
"keywords": [
|
|
484
|
+
"loading placeholder",
|
|
485
|
+
"shimmer",
|
|
486
|
+
"skeleton loader"
|
|
487
|
+
],
|
|
488
|
+
"antiPatterns": [
|
|
489
|
+
"❌ import { Skeleton } from \"@mui/material\" → ✅ import { Skeleton } from \"@redsift/design-system\" — always use the DS Skeleton."
|
|
490
|
+
]
|
|
365
491
|
},
|
|
366
492
|
{
|
|
367
493
|
"name": "Spinner",
|
|
@@ -389,21 +515,35 @@
|
|
|
389
515
|
"package": "@redsift/design-system",
|
|
390
516
|
"description": "TabPanel renders the content for a tab. It is shown when the associated",
|
|
391
517
|
"propsCount": 33,
|
|
392
|
-
"hasExamples": false
|
|
518
|
+
"hasExamples": false,
|
|
519
|
+
"keywords": [
|
|
520
|
+
"tab content",
|
|
521
|
+
"tab panel"
|
|
522
|
+
]
|
|
393
523
|
},
|
|
394
524
|
{
|
|
395
525
|
"name": "Tab",
|
|
396
526
|
"package": "@redsift/design-system",
|
|
397
527
|
"description": "Tab renders an individual tab button within a `Tabs` container.",
|
|
398
528
|
"propsCount": 39,
|
|
399
|
-
"hasExamples": false
|
|
529
|
+
"hasExamples": false,
|
|
530
|
+
"keywords": [
|
|
531
|
+
"tab item",
|
|
532
|
+
"tab button"
|
|
533
|
+
]
|
|
400
534
|
},
|
|
401
535
|
{
|
|
402
536
|
"name": "Tabs",
|
|
403
537
|
"package": "@redsift/design-system",
|
|
404
538
|
"description": "Tabs organises content into separate views where only one view is visible at a time.",
|
|
405
539
|
"propsCount": 39,
|
|
406
|
-
"hasExamples": false
|
|
540
|
+
"hasExamples": false,
|
|
541
|
+
"keywords": [
|
|
542
|
+
"tab bar",
|
|
543
|
+
"segmented control",
|
|
544
|
+
"tab navigation",
|
|
545
|
+
"tab group"
|
|
546
|
+
]
|
|
407
547
|
},
|
|
408
548
|
{
|
|
409
549
|
"name": "TextArea",
|
|
@@ -417,14 +557,28 @@
|
|
|
417
557
|
"package": "@redsift/design-system",
|
|
418
558
|
"description": "TextField allows users to enter single-line text input. Supports validation,",
|
|
419
559
|
"propsCount": 57,
|
|
420
|
-
"hasExamples": false
|
|
560
|
+
"hasExamples": false,
|
|
561
|
+
"keywords": [
|
|
562
|
+
"text input",
|
|
563
|
+
"input field",
|
|
564
|
+
"form input"
|
|
565
|
+
]
|
|
421
566
|
},
|
|
422
567
|
{
|
|
423
568
|
"name": "Text",
|
|
424
569
|
"package": "@redsift/design-system",
|
|
425
570
|
"description": "Text renders text content with consistent styling. By default renders a",
|
|
426
571
|
"propsCount": 42,
|
|
427
|
-
"hasExamples": false
|
|
572
|
+
"hasExamples": false,
|
|
573
|
+
"keywords": [
|
|
574
|
+
"paragraph",
|
|
575
|
+
"body text",
|
|
576
|
+
"caption",
|
|
577
|
+
"label text"
|
|
578
|
+
],
|
|
579
|
+
"antiPatterns": [
|
|
580
|
+
"❌ color=\"#22c55e\" or color=\"var(--rs-color-green-500)\" → ✅ color=\"success\" — use semantic color values from NeutralColorPalette / NotificationsColorPalette."
|
|
581
|
+
]
|
|
428
582
|
},
|
|
429
583
|
{
|
|
430
584
|
"name": "DialogContentActions",
|
|
@@ -480,7 +634,13 @@
|
|
|
480
634
|
"package": "@redsift/popovers",
|
|
481
635
|
"description": "",
|
|
482
636
|
"propsCount": 10,
|
|
483
|
-
"hasExamples": false
|
|
637
|
+
"hasExamples": false,
|
|
638
|
+
"keywords": [
|
|
639
|
+
"modal",
|
|
640
|
+
"popup",
|
|
641
|
+
"dialog box",
|
|
642
|
+
"confirmation dialog"
|
|
643
|
+
]
|
|
484
644
|
},
|
|
485
645
|
{
|
|
486
646
|
"name": "PopoverContent",
|
|
@@ -550,7 +710,12 @@
|
|
|
550
710
|
"package": "@redsift/popovers",
|
|
551
711
|
"description": "",
|
|
552
712
|
"propsCount": 17,
|
|
553
|
-
"hasExamples": false
|
|
713
|
+
"hasExamples": false,
|
|
714
|
+
"keywords": [
|
|
715
|
+
"click tooltip",
|
|
716
|
+
"info popover",
|
|
717
|
+
"toggleable tip"
|
|
718
|
+
]
|
|
554
719
|
},
|
|
555
720
|
{
|
|
556
721
|
"name": "TooltipContent",
|
|
@@ -578,7 +743,11 @@
|
|
|
578
743
|
"package": "@redsift/popovers",
|
|
579
744
|
"description": "",
|
|
580
745
|
"propsCount": 11,
|
|
581
|
-
"hasExamples": false
|
|
746
|
+
"hasExamples": false,
|
|
747
|
+
"keywords": [
|
|
748
|
+
"hover tip",
|
|
749
|
+
"info tooltip"
|
|
750
|
+
]
|
|
582
751
|
},
|
|
583
752
|
{
|
|
584
753
|
"name": "ComboboxContentFooter",
|
|
@@ -634,7 +803,13 @@
|
|
|
634
803
|
"package": "@redsift/pickers",
|
|
635
804
|
"description": "",
|
|
636
805
|
"propsCount": 31,
|
|
637
|
-
"hasExamples": false
|
|
806
|
+
"hasExamples": false,
|
|
807
|
+
"keywords": [
|
|
808
|
+
"autocomplete",
|
|
809
|
+
"searchable select",
|
|
810
|
+
"typeahead",
|
|
811
|
+
"search input"
|
|
812
|
+
]
|
|
638
813
|
},
|
|
639
814
|
{
|
|
640
815
|
"name": "Item",
|
|
@@ -697,7 +872,12 @@
|
|
|
697
872
|
"package": "@redsift/pickers",
|
|
698
873
|
"description": "",
|
|
699
874
|
"propsCount": 22,
|
|
700
|
-
"hasExamples": false
|
|
875
|
+
"hasExamples": false,
|
|
876
|
+
"keywords": [
|
|
877
|
+
"dropdown menu",
|
|
878
|
+
"action menu",
|
|
879
|
+
"context menu"
|
|
880
|
+
]
|
|
701
881
|
},
|
|
702
882
|
{
|
|
703
883
|
"name": "SelectContent",
|
|
@@ -725,7 +905,12 @@
|
|
|
725
905
|
"package": "@redsift/pickers",
|
|
726
906
|
"description": "",
|
|
727
907
|
"propsCount": 24,
|
|
728
|
-
"hasExamples": false
|
|
908
|
+
"hasExamples": false,
|
|
909
|
+
"keywords": [
|
|
910
|
+
"dropdown",
|
|
911
|
+
"select menu",
|
|
912
|
+
"picker"
|
|
913
|
+
]
|
|
729
914
|
},
|
|
730
915
|
{
|
|
731
916
|
"name": "Arc",
|
|
@@ -746,7 +931,12 @@
|
|
|
746
931
|
"package": "@redsift/charts",
|
|
747
932
|
"description": "",
|
|
748
933
|
"propsCount": 28,
|
|
749
|
-
"hasExamples": false
|
|
934
|
+
"hasExamples": false,
|
|
935
|
+
"keywords": [
|
|
936
|
+
"chart axis",
|
|
937
|
+
"x axis",
|
|
938
|
+
"y axis"
|
|
939
|
+
]
|
|
750
940
|
},
|
|
751
941
|
{
|
|
752
942
|
"name": "Bar",
|
|
@@ -767,14 +957,24 @@
|
|
|
767
957
|
"package": "@redsift/charts",
|
|
768
958
|
"description": "",
|
|
769
959
|
"propsCount": 88,
|
|
770
|
-
"hasExamples": false
|
|
960
|
+
"hasExamples": false,
|
|
961
|
+
"keywords": [
|
|
962
|
+
"bar graph",
|
|
963
|
+
"histogram",
|
|
964
|
+
"column chart",
|
|
965
|
+
"bar visualization"
|
|
966
|
+
]
|
|
771
967
|
},
|
|
772
968
|
{
|
|
773
969
|
"name": "ChartContainerTitle",
|
|
774
970
|
"package": "@redsift/charts",
|
|
775
971
|
"description": "",
|
|
776
972
|
"propsCount": 60,
|
|
777
|
-
"hasExamples": false
|
|
973
|
+
"hasExamples": false,
|
|
974
|
+
"keywords": [
|
|
975
|
+
"chart title",
|
|
976
|
+
"chart heading"
|
|
977
|
+
]
|
|
778
978
|
},
|
|
779
979
|
{
|
|
780
980
|
"name": "DataPoint",
|
|
@@ -795,7 +995,12 @@
|
|
|
795
995
|
"package": "@redsift/charts",
|
|
796
996
|
"description": "",
|
|
797
997
|
"propsCount": 52,
|
|
798
|
-
"hasExamples": false
|
|
998
|
+
"hasExamples": false,
|
|
999
|
+
"keywords": [
|
|
1000
|
+
"chart legend",
|
|
1001
|
+
"color legend",
|
|
1002
|
+
"series legend"
|
|
1003
|
+
]
|
|
799
1004
|
},
|
|
800
1005
|
{
|
|
801
1006
|
"name": "Line",
|
|
@@ -809,28 +1014,52 @@
|
|
|
809
1014
|
"package": "@redsift/charts",
|
|
810
1015
|
"description": "LineChart displays trends over time or continuous data.",
|
|
811
1016
|
"propsCount": 78,
|
|
812
|
-
"hasExamples": false
|
|
1017
|
+
"hasExamples": false,
|
|
1018
|
+
"keywords": [
|
|
1019
|
+
"line graph",
|
|
1020
|
+
"time series",
|
|
1021
|
+
"trend chart",
|
|
1022
|
+
"line visualization"
|
|
1023
|
+
]
|
|
813
1024
|
},
|
|
814
1025
|
{
|
|
815
1026
|
"name": "PieChart",
|
|
816
1027
|
"package": "@redsift/charts",
|
|
817
1028
|
"description": "PieChart displays proportional data as slices of a circle.",
|
|
818
1029
|
"propsCount": 84,
|
|
819
|
-
"hasExamples": false
|
|
1030
|
+
"hasExamples": false,
|
|
1031
|
+
"keywords": [
|
|
1032
|
+
"pie graph",
|
|
1033
|
+
"donut chart",
|
|
1034
|
+
"pie visualization"
|
|
1035
|
+
]
|
|
820
1036
|
},
|
|
821
1037
|
{
|
|
822
1038
|
"name": "ScatterPlot",
|
|
823
1039
|
"package": "@redsift/charts",
|
|
824
1040
|
"description": "ScatterPlot displays relationships between two numeric variables.",
|
|
825
1041
|
"propsCount": 83,
|
|
826
|
-
"hasExamples": false
|
|
1042
|
+
"hasExamples": false,
|
|
1043
|
+
"keywords": [
|
|
1044
|
+
"scatter graph",
|
|
1045
|
+
"dot plot",
|
|
1046
|
+
"scatter visualization"
|
|
1047
|
+
]
|
|
827
1048
|
},
|
|
828
1049
|
{
|
|
829
1050
|
"name": "DataGrid",
|
|
830
1051
|
"package": "@redsift/table",
|
|
831
1052
|
"description": "DataGrid displays tabular data with sorting, filtering, pagination, and row selection.",
|
|
832
1053
|
"propsCount": 9,
|
|
833
|
-
"hasExamples": false
|
|
1054
|
+
"hasExamples": false,
|
|
1055
|
+
"keywords": [
|
|
1056
|
+
"data grid",
|
|
1057
|
+
"data table",
|
|
1058
|
+
"table",
|
|
1059
|
+
"grid view",
|
|
1060
|
+
"list view",
|
|
1061
|
+
"spreadsheet"
|
|
1062
|
+
]
|
|
834
1063
|
},
|
|
835
1064
|
{
|
|
836
1065
|
"name": "GridToolbarFilterSemanticField",
|
|
@@ -858,7 +1087,12 @@
|
|
|
858
1087
|
"package": "@redsift/table",
|
|
859
1088
|
"description": "StatefulDataGrid extends DataGrid with automatic state persistence to localStorage.",
|
|
860
1089
|
"propsCount": 12,
|
|
861
|
-
"hasExamples": false
|
|
1090
|
+
"hasExamples": false,
|
|
1091
|
+
"keywords": [
|
|
1092
|
+
"stateful table",
|
|
1093
|
+
"managed grid",
|
|
1094
|
+
"server grid"
|
|
1095
|
+
]
|
|
862
1096
|
},
|
|
863
1097
|
{
|
|
864
1098
|
"name": "TextCell",
|
|
@@ -886,70 +1120,126 @@
|
|
|
886
1120
|
"package": "@redsift/dashboard",
|
|
887
1121
|
"description": "",
|
|
888
1122
|
"propsCount": 4,
|
|
889
|
-
"hasExamples": false
|
|
1123
|
+
"hasExamples": false,
|
|
1124
|
+
"keywords": [
|
|
1125
|
+
"chart loading",
|
|
1126
|
+
"chart empty",
|
|
1127
|
+
"chart error",
|
|
1128
|
+
"empty chart",
|
|
1129
|
+
"no data chart"
|
|
1130
|
+
]
|
|
890
1131
|
},
|
|
891
1132
|
{
|
|
892
1133
|
"name": "Dashboard",
|
|
893
1134
|
"package": "@redsift/dashboard",
|
|
894
1135
|
"description": "Dashboard provides a context for connected, filterable visualizations.",
|
|
895
1136
|
"propsCount": 2,
|
|
896
|
-
"hasExamples": false
|
|
1137
|
+
"hasExamples": false,
|
|
1138
|
+
"keywords": [
|
|
1139
|
+
"dashboard page",
|
|
1140
|
+
"dashboard layout",
|
|
1141
|
+
"dashboard container"
|
|
1142
|
+
]
|
|
897
1143
|
},
|
|
898
1144
|
{
|
|
899
1145
|
"name": "DataCard",
|
|
900
1146
|
"package": "@redsift/dashboard",
|
|
901
1147
|
"description": "",
|
|
902
1148
|
"propsCount": 33,
|
|
903
|
-
"hasExamples": false
|
|
1149
|
+
"hasExamples": false,
|
|
1150
|
+
"keywords": [
|
|
1151
|
+
"kpi tile",
|
|
1152
|
+
"metric tile",
|
|
1153
|
+
"stat card",
|
|
1154
|
+
"kpi card",
|
|
1155
|
+
"summary card",
|
|
1156
|
+
"metric card"
|
|
1157
|
+
],
|
|
1158
|
+
"antiPatterns": [
|
|
1159
|
+
"❌ <Card style={{ borderLeft: \"4px solid green\" }}> for KPI tiles → ✅ <DataCard color=\"success\"> — DataCard is purpose-built for metric tiles."
|
|
1160
|
+
]
|
|
904
1161
|
},
|
|
905
1162
|
{
|
|
906
1163
|
"name": "DataCardBody",
|
|
907
1164
|
"package": "@redsift/dashboard",
|
|
908
1165
|
"description": "DataCardBody is the main content area of a DataCard.",
|
|
909
1166
|
"propsCount": 45,
|
|
910
|
-
"hasExamples": false
|
|
1167
|
+
"hasExamples": false,
|
|
1168
|
+
"keywords": [
|
|
1169
|
+
"metric body",
|
|
1170
|
+
"kpi body"
|
|
1171
|
+
]
|
|
911
1172
|
},
|
|
912
1173
|
{
|
|
913
1174
|
"name": "DataCardHeader",
|
|
914
1175
|
"package": "@redsift/dashboard",
|
|
915
1176
|
"description": "DataCardHeader displays an icon and title that floats on top of",
|
|
916
1177
|
"propsCount": 34,
|
|
917
|
-
"hasExamples": false
|
|
1178
|
+
"hasExamples": false,
|
|
1179
|
+
"keywords": [
|
|
1180
|
+
"metric header",
|
|
1181
|
+
"kpi header"
|
|
1182
|
+
]
|
|
918
1183
|
},
|
|
919
1184
|
{
|
|
920
1185
|
"name": "DataCardListbox",
|
|
921
1186
|
"package": "@redsift/dashboard",
|
|
922
1187
|
"description": "DataCardListbox is a styled Listbox for use inside a DataCard.",
|
|
923
1188
|
"propsCount": 55,
|
|
924
|
-
"hasExamples": false
|
|
1189
|
+
"hasExamples": false,
|
|
1190
|
+
"keywords": [
|
|
1191
|
+
"metric listbox",
|
|
1192
|
+
"kpi listbox",
|
|
1193
|
+
"filter listbox"
|
|
1194
|
+
]
|
|
925
1195
|
},
|
|
926
1196
|
{
|
|
927
1197
|
"name": "DataRow",
|
|
928
1198
|
"package": "@redsift/dashboard",
|
|
929
1199
|
"description": "DataRow displays a formatted number alongside a legend label.",
|
|
930
1200
|
"propsCount": 44,
|
|
931
|
-
"hasExamples": false
|
|
1201
|
+
"hasExamples": false,
|
|
1202
|
+
"keywords": [
|
|
1203
|
+
"kpi row",
|
|
1204
|
+
"metric row",
|
|
1205
|
+
"data row",
|
|
1206
|
+
"summary row"
|
|
1207
|
+
]
|
|
932
1208
|
},
|
|
933
1209
|
{
|
|
934
1210
|
"name": "PdfExportButton",
|
|
935
1211
|
"package": "@redsift/dashboard",
|
|
936
1212
|
"description": "",
|
|
937
1213
|
"propsCount": 50,
|
|
938
|
-
"hasExamples": false
|
|
1214
|
+
"hasExamples": false,
|
|
1215
|
+
"keywords": [
|
|
1216
|
+
"export pdf",
|
|
1217
|
+
"download pdf",
|
|
1218
|
+
"print dashboard"
|
|
1219
|
+
]
|
|
939
1220
|
},
|
|
940
1221
|
{
|
|
941
1222
|
"name": "TimeSeriesBarChart",
|
|
942
1223
|
"package": "@redsift/dashboard",
|
|
943
1224
|
"description": "",
|
|
944
1225
|
"propsCount": 17,
|
|
945
|
-
"hasExamples": false
|
|
1226
|
+
"hasExamples": false,
|
|
1227
|
+
"keywords": [
|
|
1228
|
+
"time bar chart",
|
|
1229
|
+
"temporal bar chart",
|
|
1230
|
+
"time series bar"
|
|
1231
|
+
]
|
|
946
1232
|
},
|
|
947
1233
|
{
|
|
948
1234
|
"name": "WithFilters",
|
|
949
1235
|
"package": "@redsift/dashboard",
|
|
950
1236
|
"description": "",
|
|
951
1237
|
"propsCount": 10,
|
|
952
|
-
"hasExamples": false
|
|
1238
|
+
"hasExamples": false,
|
|
1239
|
+
"keywords": [
|
|
1240
|
+
"filter provider",
|
|
1241
|
+
"crossfilter wrapper"
|
|
1242
|
+
]
|
|
953
1243
|
},
|
|
954
1244
|
{
|
|
955
1245
|
"name": "RadarButton",
|