create-idia-app 0.2.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.
Files changed (90) hide show
  1. package/README.md +104 -0
  2. package/dist/index.js +412 -0
  3. package/dist/index.js.map +1 -0
  4. package/package.json +33 -0
  5. package/template/.cursor/rules/idia-ui-ds-brain.mdc +32 -0
  6. package/template/.cursor/rules/idia-ui-forms.mdc +34 -0
  7. package/template/.cursor/rules/idia-ui-overlays.mdc +23 -0
  8. package/template/.idia/brain/AGENTS.md +37 -0
  9. package/template/.idia/brain/ai/agents/retrieval-cheatsheet.md +209 -0
  10. package/template/.idia/brain/ai/skills/components/button/SKILL.md +32 -0
  11. package/template/.idia/brain/ai/skills/ds-brain-action-hierarchy/SKILL.md +46 -0
  12. package/template/.idia/brain/ai/skills/ds-brain-forms/SKILL.md +67 -0
  13. package/template/.idia/brain/ai/skills/ds-brain-index/SKILL.md +76 -0
  14. package/template/.idia/brain/ai/skills/ds-brain-overlays/SKILL.md +30 -0
  15. package/template/.idia/brain/ai/skills/ds-brain-retrieval/SKILL.md +54 -0
  16. package/template/.idia/brain/registry/ai-index.generated.json +833 -0
  17. package/template/.idia/brain/registry/component-registry.generated.json +2947 -0
  18. package/template/.idia/manifest.json +17 -0
  19. package/template/.storybook/main.ts +9 -0
  20. package/template/.storybook/preview.tsx +20 -0
  21. package/template/AGENTS.md +11 -0
  22. package/template/App.tsx +24 -0
  23. package/template/README.md +75 -0
  24. package/template/app.json +13 -0
  25. package/template/babel.config.js +25 -0
  26. package/template/global.css +32 -0
  27. package/template/index.ts +8 -0
  28. package/template/metro.config.js +19 -0
  29. package/template/package.json +85 -0
  30. package/template/public/fonts/Inter.ttf +0 -0
  31. package/template/public/fonts/NunitoSans.woff2 +0 -0
  32. package/template/src/config/env.ts +4 -0
  33. package/template/src/config/versions.ts +7 -0
  34. package/template/src/navigation/RootNavigator.tsx +27 -0
  35. package/template/src/navigation/linking.ts +13 -0
  36. package/template/src/navigation/types.ts +10 -0
  37. package/template/src/providers/AppProviders.tsx +47 -0
  38. package/template/src/screens/Home/HomeScreen.tsx +12 -0
  39. package/template/src/screens/Welcome/WelcomeScreen.tsx +115 -0
  40. package/template/src/stories/Button.stories.tsx +31 -0
  41. package/template/storybook-static/assets/Button.stories-CfapbH7U.js +196 -0
  42. package/template/storybook-static/assets/Color-F6OSRLHC-CFwL-RM_.js +1 -0
  43. package/template/storybook-static/assets/DocsRenderer-CFRXHY34-AADCayzw.js +729 -0
  44. package/template/storybook-static/assets/_commonjsHelpers-Cpj98o6Y.js +1 -0
  45. package/template/storybook-static/assets/axe-d-K7rF9D.js +30 -0
  46. package/template/storybook-static/assets/chunk-XP5HYGXS-BHXC9YeQ.js +1 -0
  47. package/template/storybook-static/assets/client-DGEjZp2f.js +25 -0
  48. package/template/storybook-static/assets/entry-preview-Dc5wkB2s.js +2 -0
  49. package/template/storybook-static/assets/entry-preview-docs-BaxqCxyK.js +46 -0
  50. package/template/storybook-static/assets/iframe-Bl15XKnQ.js +211 -0
  51. package/template/storybook-static/assets/index-Bhelpi4i.js +11 -0
  52. package/template/storybook-static/assets/index-C_pJYAGD.js +1 -0
  53. package/template/storybook-static/assets/index-D5Inswos.js +1 -0
  54. package/template/storybook-static/assets/index-NGyRR_en.js +9 -0
  55. package/template/storybook-static/assets/index-zmTGQa7e.js +9 -0
  56. package/template/storybook-static/assets/jsx-runtime-BjG_zV1W.js +9 -0
  57. package/template/storybook-static/assets/preview-BNUqaTig.js +1 -0
  58. package/template/storybook-static/assets/preview-Cfo7ZnTc.js +2 -0
  59. package/template/storybook-static/assets/preview-CrKLV1aL.css +1 -0
  60. package/template/storybook-static/assets/preview-DkVJIpDn.js +2 -0
  61. package/template/storybook-static/assets/preview-DrRsTNnS.js +17 -0
  62. package/template/storybook-static/assets/react-18-Bfhi6ooJ.js +1 -0
  63. package/template/storybook-static/assets/react-FmFgRqLi.js +1 -0
  64. package/template/storybook-static/assets/react-native-gesture-handler-BzS7UzhZ.js +52 -0
  65. package/template/storybook-static/assets/test-utils-X4YdDMST.js +9 -0
  66. package/template/storybook-static/favicon.svg +1 -0
  67. package/template/storybook-static/fonts/Inter.ttf +0 -0
  68. package/template/storybook-static/fonts/NunitoSans.woff2 +0 -0
  69. package/template/storybook-static/iframe.html +668 -0
  70. package/template/storybook-static/index.html +145 -0
  71. package/template/storybook-static/index.json +1 -0
  72. package/template/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  73. package/template/storybook-static/nunito-sans-bold.woff2 +0 -0
  74. package/template/storybook-static/nunito-sans-italic.woff2 +0 -0
  75. package/template/storybook-static/nunito-sans-regular.woff2 +0 -0
  76. package/template/storybook-static/project.json +1 -0
  77. package/template/storybook-static/sb-addons/a11y-2/manager-bundle.js +3 -0
  78. package/template/storybook-static/sb-addons/links-1/manager-bundle.js +3 -0
  79. package/template/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +3 -0
  80. package/template/storybook-static/sb-common-assets/favicon.svg +1 -0
  81. package/template/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  82. package/template/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  83. package/template/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  84. package/template/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  85. package/template/storybook-static/sb-manager/globals-module-info.js +1052 -0
  86. package/template/storybook-static/sb-manager/globals-runtime.js +41775 -0
  87. package/template/storybook-static/sb-manager/globals.js +48 -0
  88. package/template/storybook-static/sb-manager/runtime.js +12048 -0
  89. package/template/tamagui.config.ts +18 -0
  90. package/template/tsconfig.json +11 -0
@@ -0,0 +1,2947 @@
1
+ {
2
+ "components": [
3
+ {
4
+ "brainPath": "components/accordion.md",
5
+ "docCompleteness": "usable",
6
+ "figma": {
7
+ "status": "unmapped"
8
+ },
9
+ "id": "accordion",
10
+ "lifecycle": "stable",
11
+ "mappingSummary": {
12
+ "partial": 3,
13
+ "rich": 0,
14
+ "total": 3,
15
+ "unmapped": 0
16
+ },
17
+ "name": "Accordion",
18
+ "related": {
19
+ "decisions": [],
20
+ "foundations": [
21
+ "color",
22
+ "spacing",
23
+ "motion"
24
+ ],
25
+ "patterns": []
26
+ },
27
+ "source": {
28
+ "componentPath": "packages/core/src/components/Accordion/Accordion.tsx",
29
+ "exportName": "Accordion",
30
+ "package": "@idia-ui/core"
31
+ },
32
+ "storybook": {
33
+ "status": "available",
34
+ "title": "Components/Accordion"
35
+ },
36
+ "type": "component"
37
+ },
38
+ {
39
+ "brainPath": "components/app-pressable.md",
40
+ "docCompleteness": "usable",
41
+ "figma": {
42
+ "status": "unmapped"
43
+ },
44
+ "id": "app-pressable",
45
+ "lifecycle": "stable",
46
+ "mappingSummary": {
47
+ "partial": 3,
48
+ "rich": 0,
49
+ "total": 3,
50
+ "unmapped": 0
51
+ },
52
+ "name": "AppPressable",
53
+ "related": {
54
+ "decisions": [],
55
+ "foundations": [
56
+ "color",
57
+ "radius"
58
+ ],
59
+ "patterns": [
60
+ "navigation-pressable"
61
+ ]
62
+ },
63
+ "source": {
64
+ "componentPath": "packages/core/src/components/AppPressable/AppPressable.tsx",
65
+ "exportName": "AppPressable",
66
+ "package": "@idia-ui/core"
67
+ },
68
+ "storybook": {
69
+ "status": "available",
70
+ "title": "Components/AppPressable"
71
+ },
72
+ "type": "component"
73
+ },
74
+ {
75
+ "brainPath": "components/avatar.md",
76
+ "docCompleteness": "usable",
77
+ "figma": {
78
+ "status": "unmapped"
79
+ },
80
+ "id": "avatar",
81
+ "lifecycle": "stable",
82
+ "mappingSummary": {
83
+ "partial": 3,
84
+ "rich": 0,
85
+ "total": 3,
86
+ "unmapped": 0
87
+ },
88
+ "name": "Avatar",
89
+ "related": {
90
+ "decisions": [],
91
+ "foundations": [
92
+ "color",
93
+ "typography"
94
+ ],
95
+ "patterns": []
96
+ },
97
+ "source": {
98
+ "componentPath": "packages/core/src/components/Avatar/Avatar.tsx",
99
+ "exportName": "Avatar",
100
+ "package": "@idia-ui/core"
101
+ },
102
+ "storybook": {
103
+ "status": "available",
104
+ "title": "Components/Avatar"
105
+ },
106
+ "type": "component"
107
+ },
108
+ {
109
+ "brainPath": "components/avatar-upload.md",
110
+ "docCompleteness": "usable",
111
+ "figma": {
112
+ "status": "unmapped"
113
+ },
114
+ "id": "avatar-upload",
115
+ "lifecycle": "stable",
116
+ "mappingSummary": {
117
+ "partial": 4,
118
+ "rich": 0,
119
+ "total": 4,
120
+ "unmapped": 0
121
+ },
122
+ "name": "AvatarUpload",
123
+ "related": {
124
+ "decisions": [],
125
+ "foundations": [
126
+ "color",
127
+ "radius"
128
+ ],
129
+ "patterns": [
130
+ "forms",
131
+ "media-upload"
132
+ ]
133
+ },
134
+ "source": {
135
+ "componentPath": "packages/core/src/components/AvatarUpload/AvatarUpload.tsx",
136
+ "exportName": "AvatarUpload",
137
+ "package": "@idia-ui/core"
138
+ },
139
+ "storybook": {
140
+ "status": "available",
141
+ "title": "Components/AvatarUpload"
142
+ },
143
+ "type": "component"
144
+ },
145
+ {
146
+ "brainPath": "components/back-link.md",
147
+ "docCompleteness": "usable",
148
+ "figma": {
149
+ "status": "unmapped"
150
+ },
151
+ "id": "back-link",
152
+ "lifecycle": "stable",
153
+ "mappingSummary": {
154
+ "partial": 3,
155
+ "rich": 0,
156
+ "total": 3,
157
+ "unmapped": 0
158
+ },
159
+ "name": "BackLink",
160
+ "related": {
161
+ "decisions": [
162
+ "button-vs-link"
163
+ ],
164
+ "foundations": [
165
+ "color",
166
+ "typography"
167
+ ],
168
+ "patterns": [
169
+ "navigation-pressable"
170
+ ]
171
+ },
172
+ "source": {
173
+ "componentPath": "packages/core/src/patterns/BackLink/BackLink.tsx",
174
+ "exportName": "BackLink",
175
+ "package": "@idia-ui/core"
176
+ },
177
+ "storybook": {
178
+ "status": "available",
179
+ "title": "Patterns/BackLink"
180
+ },
181
+ "type": "component"
182
+ },
183
+ {
184
+ "brainPath": "components/badge.md",
185
+ "docCompleteness": "usable",
186
+ "figma": {
187
+ "status": "unmapped"
188
+ },
189
+ "id": "badge",
190
+ "lifecycle": "stable",
191
+ "mappingSummary": {
192
+ "partial": 3,
193
+ "rich": 0,
194
+ "total": 3,
195
+ "unmapped": 0
196
+ },
197
+ "name": "Badge",
198
+ "related": {
199
+ "decisions": [],
200
+ "foundations": [
201
+ "color",
202
+ "typography"
203
+ ],
204
+ "patterns": [
205
+ "empty-status-flow"
206
+ ]
207
+ },
208
+ "source": {
209
+ "componentPath": "packages/core/src/components/Badge/Badge.tsx",
210
+ "exportName": "Badge",
211
+ "package": "@idia-ui/core"
212
+ },
213
+ "storybook": {
214
+ "status": "available",
215
+ "title": "Components/Badge"
216
+ },
217
+ "type": "component"
218
+ },
219
+ {
220
+ "brainPath": "components/button.md",
221
+ "docCompleteness": "rich",
222
+ "figma": {
223
+ "status": "unmapped"
224
+ },
225
+ "id": "button",
226
+ "lifecycle": "stable",
227
+ "mappingSummary": {
228
+ "partial": 3,
229
+ "rich": 0,
230
+ "total": 6,
231
+ "unmapped": 0
232
+ },
233
+ "name": "Button",
234
+ "related": {
235
+ "decisions": [
236
+ "action-hierarchy",
237
+ "button-vs-link"
238
+ ],
239
+ "foundations": [
240
+ "color",
241
+ "typography",
242
+ "spacing",
243
+ "radius",
244
+ "motion"
245
+ ],
246
+ "patterns": [
247
+ "forms"
248
+ ]
249
+ },
250
+ "source": {
251
+ "componentPath": "packages/core/src/components/Button/Button.tsx",
252
+ "exportName": "Button",
253
+ "package": "@idia-ui/core"
254
+ },
255
+ "storybook": {
256
+ "status": "planned",
257
+ "title": "Components/Button"
258
+ },
259
+ "type": "component"
260
+ },
261
+ {
262
+ "brainPath": "components/button-group.md",
263
+ "docCompleteness": "usable",
264
+ "figma": {
265
+ "status": "unmapped"
266
+ },
267
+ "id": "button-group",
268
+ "lifecycle": "stable",
269
+ "mappingSummary": {
270
+ "partial": 4,
271
+ "rich": 0,
272
+ "total": 4,
273
+ "unmapped": 0
274
+ },
275
+ "name": "ButtonGroup",
276
+ "related": {
277
+ "decisions": [],
278
+ "foundations": [
279
+ "spacing",
280
+ "radius"
281
+ ],
282
+ "patterns": []
283
+ },
284
+ "source": {
285
+ "componentPath": "packages/core/src/components/ButtonGroup/ButtonGroup.tsx",
286
+ "exportName": "ButtonGroup",
287
+ "package": "@idia-ui/core"
288
+ },
289
+ "storybook": {
290
+ "status": "available",
291
+ "title": "Components/ButtonGroup"
292
+ },
293
+ "type": "component"
294
+ },
295
+ {
296
+ "brainPath": "components/calendar.md",
297
+ "docCompleteness": "usable",
298
+ "figma": {
299
+ "status": "unmapped"
300
+ },
301
+ "id": "calendar",
302
+ "lifecycle": "stable",
303
+ "mappingSummary": {
304
+ "partial": 3,
305
+ "rich": 0,
306
+ "total": 3,
307
+ "unmapped": 0
308
+ },
309
+ "name": "Calendar",
310
+ "related": {
311
+ "decisions": [],
312
+ "foundations": [
313
+ "color",
314
+ "typography",
315
+ "spacing"
316
+ ],
317
+ "patterns": [
318
+ "calendar-scheduling"
319
+ ]
320
+ },
321
+ "source": {
322
+ "componentPath": "packages/core/src/components/Calendar/Calendar.tsx",
323
+ "exportName": "Calendar",
324
+ "package": "@idia-ui/core"
325
+ },
326
+ "storybook": {
327
+ "status": "available",
328
+ "title": "Components/Calendar"
329
+ },
330
+ "type": "component"
331
+ },
332
+ {
333
+ "brainPath": "components/card-container.md",
334
+ "docCompleteness": "usable",
335
+ "figma": {
336
+ "status": "unmapped"
337
+ },
338
+ "id": "card-container",
339
+ "lifecycle": "stable",
340
+ "mappingSummary": {
341
+ "partial": 2,
342
+ "rich": 0,
343
+ "total": 2,
344
+ "unmapped": 0
345
+ },
346
+ "name": "CardContainer",
347
+ "related": {
348
+ "decisions": [],
349
+ "foundations": [
350
+ "color",
351
+ "spacing",
352
+ "radius",
353
+ "border-width"
354
+ ],
355
+ "patterns": []
356
+ },
357
+ "source": {
358
+ "componentPath": "packages/core/src/components/CardContainer/CardContainer.tsx",
359
+ "exportName": "CardContainer",
360
+ "package": "@idia-ui/core"
361
+ },
362
+ "storybook": {
363
+ "status": "available",
364
+ "title": "Components/CardContainer"
365
+ },
366
+ "type": "component"
367
+ },
368
+ {
369
+ "brainPath": "components/card-list.md",
370
+ "docCompleteness": "usable",
371
+ "figma": {
372
+ "status": "unmapped"
373
+ },
374
+ "id": "card-list",
375
+ "lifecycle": "stable",
376
+ "mappingSummary": {
377
+ "partial": 3,
378
+ "rich": 0,
379
+ "total": 3,
380
+ "unmapped": 0
381
+ },
382
+ "name": "CardList",
383
+ "related": {
384
+ "decisions": [],
385
+ "foundations": [
386
+ "spacing",
387
+ "color"
388
+ ],
389
+ "patterns": [
390
+ "loading-skeletons",
391
+ "sticky-chrome"
392
+ ]
393
+ },
394
+ "source": {
395
+ "componentPath": "packages/core/src/components/CardList/CardList.tsx",
396
+ "exportName": "CardList",
397
+ "package": "@idia-ui/core"
398
+ },
399
+ "storybook": {
400
+ "status": "available",
401
+ "title": "Components/CardList"
402
+ },
403
+ "type": "component"
404
+ },
405
+ {
406
+ "brainPath": "components/carousel.md",
407
+ "docCompleteness": "usable",
408
+ "figma": {
409
+ "status": "unmapped"
410
+ },
411
+ "id": "carousel",
412
+ "lifecycle": "stable",
413
+ "mappingSummary": {
414
+ "partial": 5,
415
+ "rich": 0,
416
+ "total": 5,
417
+ "unmapped": 0
418
+ },
419
+ "name": "Carousel",
420
+ "related": {
421
+ "decisions": [],
422
+ "foundations": [
423
+ "spacing",
424
+ "motion"
425
+ ],
426
+ "patterns": []
427
+ },
428
+ "source": {
429
+ "componentPath": "packages/core/src/components/Carousel/Carousel.tsx",
430
+ "exportName": "Carousel",
431
+ "package": "@idia-ui/core"
432
+ },
433
+ "storybook": {
434
+ "status": "available",
435
+ "title": "Components/Carousel"
436
+ },
437
+ "type": "component"
438
+ },
439
+ {
440
+ "brainPath": "components/catalog-browser.md",
441
+ "docCompleteness": "usable",
442
+ "figma": {
443
+ "status": "unmapped"
444
+ },
445
+ "id": "catalog-browser",
446
+ "lifecycle": "stable",
447
+ "mappingSummary": {
448
+ "partial": 4,
449
+ "rich": 0,
450
+ "total": 4,
451
+ "unmapped": 0
452
+ },
453
+ "name": "CatalogBrowser",
454
+ "related": {
455
+ "decisions": [
456
+ "radio-vs-select-vs-checkbox"
457
+ ],
458
+ "foundations": [
459
+ "color",
460
+ "spacing"
461
+ ],
462
+ "patterns": [
463
+ "list-selection",
464
+ "search-highlight"
465
+ ]
466
+ },
467
+ "source": {
468
+ "componentPath": "packages/core/src/components/CatalogBrowser/CatalogBrowser.tsx",
469
+ "exportName": "CatalogBrowser",
470
+ "package": "@idia-ui/core"
471
+ },
472
+ "storybook": {
473
+ "status": "available",
474
+ "title": "Components/CatalogBrowser"
475
+ },
476
+ "type": "component"
477
+ },
478
+ {
479
+ "brainPath": "components/checkbox.md",
480
+ "docCompleteness": "usable",
481
+ "figma": {
482
+ "status": "unmapped"
483
+ },
484
+ "id": "checkbox",
485
+ "lifecycle": "stable",
486
+ "mappingSummary": {
487
+ "partial": 8,
488
+ "rich": 0,
489
+ "total": 8,
490
+ "unmapped": 0
491
+ },
492
+ "name": "Checkbox",
493
+ "related": {
494
+ "decisions": [
495
+ "radio-vs-select-vs-checkbox"
496
+ ],
497
+ "foundations": [
498
+ "color",
499
+ "typography",
500
+ "spacing",
501
+ "radius"
502
+ ],
503
+ "patterns": [
504
+ "form-composition",
505
+ "forms",
506
+ "list-selection",
507
+ "validation-forms"
508
+ ]
509
+ },
510
+ "source": {
511
+ "componentPath": "packages/core/src/components/Checkbox/Checkbox.tsx",
512
+ "exportName": "Checkbox",
513
+ "package": "@idia-ui/core"
514
+ },
515
+ "storybook": {
516
+ "status": "available",
517
+ "title": "Components/Checkbox"
518
+ },
519
+ "type": "component"
520
+ },
521
+ {
522
+ "brainPath": "components/chip.md",
523
+ "docCompleteness": "usable",
524
+ "figma": {
525
+ "status": "unmapped"
526
+ },
527
+ "id": "chip",
528
+ "lifecycle": "stable",
529
+ "mappingSummary": {
530
+ "partial": 3,
531
+ "rich": 0,
532
+ "total": 3,
533
+ "unmapped": 0
534
+ },
535
+ "name": "Chip",
536
+ "related": {
537
+ "decisions": [],
538
+ "foundations": [
539
+ "color",
540
+ "radius",
541
+ "typography"
542
+ ],
543
+ "patterns": []
544
+ },
545
+ "source": {
546
+ "componentPath": "packages/core/src/components/Chip/Chip.tsx",
547
+ "exportName": "Chip",
548
+ "package": "@idia-ui/core"
549
+ },
550
+ "storybook": {
551
+ "status": "available",
552
+ "title": "Components/Chip"
553
+ },
554
+ "type": "component"
555
+ },
556
+ {
557
+ "brainPath": "components/close-button.md",
558
+ "docCompleteness": "usable",
559
+ "figma": {
560
+ "status": "unmapped"
561
+ },
562
+ "id": "close-button",
563
+ "lifecycle": "stable",
564
+ "mappingSummary": {
565
+ "partial": 3,
566
+ "rich": 0,
567
+ "total": 3,
568
+ "unmapped": 0
569
+ },
570
+ "name": "CloseButton",
571
+ "related": {
572
+ "decisions": [],
573
+ "foundations": [
574
+ "color",
575
+ "shadows"
576
+ ],
577
+ "patterns": []
578
+ },
579
+ "source": {
580
+ "componentPath": "packages/core/src/components/CloseButton/CloseButton.tsx",
581
+ "exportName": "CloseButton",
582
+ "package": "@idia-ui/core"
583
+ },
584
+ "storybook": {
585
+ "status": "available",
586
+ "title": "Components/CloseButton"
587
+ },
588
+ "type": "component"
589
+ },
590
+ {
591
+ "brainPath": "components/code-block.md",
592
+ "docCompleteness": "usable",
593
+ "figma": {
594
+ "status": "unmapped"
595
+ },
596
+ "id": "code-block",
597
+ "lifecycle": "stable",
598
+ "mappingSummary": {
599
+ "partial": 3,
600
+ "rich": 0,
601
+ "total": 3,
602
+ "unmapped": 0
603
+ },
604
+ "name": "CodeBlock",
605
+ "related": {
606
+ "decisions": [],
607
+ "foundations": [
608
+ "radius"
609
+ ],
610
+ "patterns": []
611
+ },
612
+ "source": {
613
+ "componentPath": "packages/core/src/components/CodeBlock/CodeBlock.tsx",
614
+ "exportName": "CodeBlock",
615
+ "package": "@idia-ui/core"
616
+ },
617
+ "storybook": {
618
+ "status": "available",
619
+ "title": "Components/CodeBlock"
620
+ },
621
+ "type": "component"
622
+ },
623
+ {
624
+ "brainPath": "components/collapsible.md",
625
+ "docCompleteness": "usable",
626
+ "figma": {
627
+ "status": "unmapped"
628
+ },
629
+ "id": "collapsible",
630
+ "lifecycle": "stable",
631
+ "mappingSummary": {
632
+ "partial": 2,
633
+ "rich": 0,
634
+ "total": 2,
635
+ "unmapped": 0
636
+ },
637
+ "name": "Collapsible",
638
+ "related": {
639
+ "decisions": [],
640
+ "foundations": [],
641
+ "patterns": []
642
+ },
643
+ "source": {
644
+ "componentPath": "packages/core/src/components/Collapsible/Collapsible.tsx",
645
+ "exportName": "Collapsible",
646
+ "package": "@idia-ui/core"
647
+ },
648
+ "storybook": {
649
+ "status": "available",
650
+ "title": "Components/Collapsible"
651
+ },
652
+ "type": "component"
653
+ },
654
+ {
655
+ "brainPath": "components/confirmation-modal.md",
656
+ "docCompleteness": "usable",
657
+ "figma": {
658
+ "status": "unmapped"
659
+ },
660
+ "id": "confirmation-modal",
661
+ "lifecycle": "stable",
662
+ "mappingSummary": {
663
+ "partial": 8,
664
+ "rich": 0,
665
+ "total": 8,
666
+ "unmapped": 0
667
+ },
668
+ "name": "ConfirmationModal",
669
+ "related": {
670
+ "decisions": [
671
+ "action-hierarchy"
672
+ ],
673
+ "foundations": [
674
+ "z-index",
675
+ "shadows",
676
+ "spacing"
677
+ ],
678
+ "patterns": [
679
+ "modal-routing",
680
+ "overlay-stack",
681
+ "wizard-flows"
682
+ ]
683
+ },
684
+ "source": {
685
+ "componentPath": "packages/core/src/components/ConfirmationModal/ConfirmationModal.tsx",
686
+ "exportName": "ConfirmationModal",
687
+ "package": "@idia-ui/core"
688
+ },
689
+ "storybook": {
690
+ "status": "available",
691
+ "title": "Components/ConfirmationModal"
692
+ },
693
+ "type": "component"
694
+ },
695
+ {
696
+ "brainPath": "components/custom-selection.md",
697
+ "docCompleteness": "usable",
698
+ "figma": {
699
+ "status": "unmapped"
700
+ },
701
+ "id": "custom-selection",
702
+ "lifecycle": "stable",
703
+ "mappingSummary": {
704
+ "partial": 9,
705
+ "rich": 0,
706
+ "total": 9,
707
+ "unmapped": 0
708
+ },
709
+ "name": "CustomSelection",
710
+ "related": {
711
+ "decisions": [
712
+ "radio-vs-select-vs-checkbox"
713
+ ],
714
+ "foundations": [
715
+ "color",
716
+ "typography",
717
+ "spacing",
718
+ "radius"
719
+ ],
720
+ "patterns": [
721
+ "forms",
722
+ "list-selection"
723
+ ]
724
+ },
725
+ "source": {
726
+ "componentPath": "packages/core/src/components/CustomSelection/CustomSelection.tsx",
727
+ "exportName": "CustomSelectionGroup",
728
+ "package": "@idia-ui/core"
729
+ },
730
+ "storybook": {
731
+ "status": "available",
732
+ "title": "Components/CustomSelection"
733
+ },
734
+ "type": "component"
735
+ },
736
+ {
737
+ "brainPath": "components/dashed-trigger-area.md",
738
+ "docCompleteness": "usable",
739
+ "figma": {
740
+ "status": "unmapped"
741
+ },
742
+ "id": "dashed-trigger-area",
743
+ "lifecycle": "stable",
744
+ "mappingSummary": {
745
+ "partial": 3,
746
+ "rich": 0,
747
+ "total": 3,
748
+ "unmapped": 0
749
+ },
750
+ "name": "DashedTriggerArea",
751
+ "related": {
752
+ "decisions": [],
753
+ "foundations": [
754
+ "color",
755
+ "radius"
756
+ ],
757
+ "patterns": [
758
+ "forms",
759
+ "media-upload"
760
+ ]
761
+ },
762
+ "source": {
763
+ "componentPath": "packages/core/src/components/DashedTriggerArea/DashedTriggerArea.tsx",
764
+ "exportName": "DashedTriggerArea",
765
+ "package": "@idia-ui/core"
766
+ },
767
+ "storybook": {
768
+ "status": "available",
769
+ "title": "Components/DashedTriggerArea"
770
+ },
771
+ "type": "component"
772
+ },
773
+ {
774
+ "brainPath": "components/data-row.md",
775
+ "docCompleteness": "usable",
776
+ "figma": {
777
+ "status": "unmapped"
778
+ },
779
+ "id": "data-row",
780
+ "lifecycle": "stable",
781
+ "mappingSummary": {
782
+ "partial": 4,
783
+ "rich": 0,
784
+ "total": 4,
785
+ "unmapped": 0
786
+ },
787
+ "name": "DataRow",
788
+ "related": {
789
+ "decisions": [],
790
+ "foundations": [
791
+ "color",
792
+ "typography",
793
+ "spacing",
794
+ "border-width"
795
+ ],
796
+ "patterns": []
797
+ },
798
+ "source": {
799
+ "componentPath": "packages/core/src/components/DataRow/DataRow.tsx",
800
+ "exportName": "DataRow",
801
+ "package": "@idia-ui/core"
802
+ },
803
+ "storybook": {
804
+ "status": "available",
805
+ "title": "Components/DataRow"
806
+ },
807
+ "type": "component"
808
+ },
809
+ {
810
+ "brainPath": "components/date-input.md",
811
+ "docCompleteness": "usable",
812
+ "figma": {
813
+ "status": "unmapped"
814
+ },
815
+ "id": "date-input",
816
+ "lifecycle": "stable",
817
+ "mappingSummary": {
818
+ "partial": 7,
819
+ "rich": 0,
820
+ "total": 7,
821
+ "unmapped": 0
822
+ },
823
+ "name": "DateInput",
824
+ "related": {
825
+ "decisions": [],
826
+ "foundations": [
827
+ "color",
828
+ "typography",
829
+ "spacing",
830
+ "radius"
831
+ ],
832
+ "patterns": [
833
+ "calendar-scheduling",
834
+ "forms",
835
+ "table-filters"
836
+ ]
837
+ },
838
+ "source": {
839
+ "componentPath": "packages/core/src/components/DateInput/DateInput.tsx",
840
+ "exportName": "DateInput",
841
+ "package": "@idia-ui/core"
842
+ },
843
+ "storybook": {
844
+ "status": "available",
845
+ "title": "Components/DateInput"
846
+ },
847
+ "type": "component"
848
+ },
849
+ {
850
+ "brainPath": "components/date-range-input.md",
851
+ "docCompleteness": "usable",
852
+ "figma": {
853
+ "status": "unmapped"
854
+ },
855
+ "id": "date-range-input",
856
+ "lifecycle": "stable",
857
+ "mappingSummary": {
858
+ "partial": 4,
859
+ "rich": 0,
860
+ "total": 4,
861
+ "unmapped": 0
862
+ },
863
+ "name": "DateRangeInput",
864
+ "related": {
865
+ "decisions": [],
866
+ "foundations": [
867
+ "color",
868
+ "typography",
869
+ "spacing"
870
+ ],
871
+ "patterns": [
872
+ "forms",
873
+ "calendar-scheduling"
874
+ ]
875
+ },
876
+ "source": {
877
+ "componentPath": "packages/core/src/components/DateRangeInput/DateRangeInput.tsx",
878
+ "exportName": "DateRangeInput",
879
+ "package": "@idia-ui/core"
880
+ },
881
+ "storybook": {
882
+ "status": "available",
883
+ "title": "Components/DateRangeInput"
884
+ },
885
+ "type": "component"
886
+ },
887
+ {
888
+ "brainPath": "components/empty-records-mobile.md",
889
+ "docCompleteness": "usable",
890
+ "figma": {
891
+ "status": "unmapped"
892
+ },
893
+ "id": "empty-records-mobile",
894
+ "lifecycle": "stable",
895
+ "mappingSummary": {
896
+ "partial": 2,
897
+ "rich": 0,
898
+ "total": 2,
899
+ "unmapped": 0
900
+ },
901
+ "name": "EmptyRecordsMobile",
902
+ "related": {
903
+ "decisions": [],
904
+ "foundations": [
905
+ "color",
906
+ "z-index"
907
+ ],
908
+ "patterns": [
909
+ "empty-status-flow",
910
+ "loading-skeletons"
911
+ ]
912
+ },
913
+ "source": {
914
+ "componentPath": "packages/core/src/components/EmptyRecordsMobile/EmptyRecordsMobile.tsx",
915
+ "exportName": "EmptyRecordsMobile",
916
+ "package": "@idia-ui/core"
917
+ },
918
+ "storybook": {
919
+ "status": "available",
920
+ "title": "Components/EmptyRecordsMobile"
921
+ },
922
+ "type": "component"
923
+ },
924
+ {
925
+ "brainPath": "components/empty-state.md",
926
+ "docCompleteness": "usable",
927
+ "figma": {
928
+ "status": "unmapped"
929
+ },
930
+ "id": "empty-state",
931
+ "lifecycle": "stable",
932
+ "mappingSummary": {
933
+ "partial": 4,
934
+ "rich": 0,
935
+ "total": 4,
936
+ "unmapped": 0
937
+ },
938
+ "name": "EmptyState",
939
+ "related": {
940
+ "decisions": [],
941
+ "foundations": [
942
+ "color",
943
+ "typography",
944
+ "spacing",
945
+ "shadows"
946
+ ],
947
+ "patterns": [
948
+ "empty-status-flow",
949
+ "loading-skeletons",
950
+ "table-filters"
951
+ ]
952
+ },
953
+ "source": {
954
+ "componentPath": "packages/core/src/components/EmptyState/EmptyState.tsx",
955
+ "exportName": "EmptyState",
956
+ "package": "@idia-ui/core"
957
+ },
958
+ "storybook": {
959
+ "status": "available",
960
+ "title": "Components/EmptyState"
961
+ },
962
+ "type": "component"
963
+ },
964
+ {
965
+ "brainPath": "components/floating-action-bar.md",
966
+ "docCompleteness": "usable",
967
+ "figma": {
968
+ "status": "unmapped"
969
+ },
970
+ "id": "floating-action-bar",
971
+ "lifecycle": "stable",
972
+ "mappingSummary": {
973
+ "partial": 2,
974
+ "rich": 0,
975
+ "total": 2,
976
+ "unmapped": 0
977
+ },
978
+ "name": "FloatingActionBar",
979
+ "related": {
980
+ "decisions": [],
981
+ "foundations": [
982
+ "color",
983
+ "shadows",
984
+ "spacing"
985
+ ],
986
+ "patterns": [
987
+ "sticky-chrome",
988
+ "wizard-flows"
989
+ ]
990
+ },
991
+ "source": {
992
+ "componentPath": "packages/core/src/components/FloatingActionBar/FloatingActionBar.tsx",
993
+ "exportName": "FloatingActionBar",
994
+ "package": "@idia-ui/core"
995
+ },
996
+ "storybook": {
997
+ "status": "available",
998
+ "title": "Components/FloatingActionBar"
999
+ },
1000
+ "type": "component"
1001
+ },
1002
+ {
1003
+ "brainPath": "components/form-element.md",
1004
+ "docCompleteness": "usable",
1005
+ "figma": {
1006
+ "status": "unmapped"
1007
+ },
1008
+ "id": "form-element",
1009
+ "lifecycle": "stable",
1010
+ "mappingSummary": {
1011
+ "partial": 7,
1012
+ "rich": 0,
1013
+ "total": 7,
1014
+ "unmapped": 0
1015
+ },
1016
+ "name": "FormElement",
1017
+ "related": {
1018
+ "decisions": [],
1019
+ "foundations": [
1020
+ "color",
1021
+ "typography",
1022
+ "spacing",
1023
+ "radius"
1024
+ ],
1025
+ "patterns": [
1026
+ "address-capture",
1027
+ "calendar-scheduling",
1028
+ "form-composition",
1029
+ "forms",
1030
+ "media-upload",
1031
+ "phone-and-currency",
1032
+ "validation-forms",
1033
+ "wizard-flows"
1034
+ ]
1035
+ },
1036
+ "source": {
1037
+ "componentPath": "packages/core/src/components/FormElement/FormElement.tsx",
1038
+ "exportName": "FormElement",
1039
+ "package": "@idia-ui/core"
1040
+ },
1041
+ "storybook": {
1042
+ "status": "available",
1043
+ "title": "Components/FormElement"
1044
+ },
1045
+ "type": "component"
1046
+ },
1047
+ {
1048
+ "brainPath": "components/form-section.md",
1049
+ "docCompleteness": "usable",
1050
+ "figma": {
1051
+ "status": "unmapped"
1052
+ },
1053
+ "id": "form-section",
1054
+ "lifecycle": "stable",
1055
+ "mappingSummary": {
1056
+ "partial": 3,
1057
+ "rich": 0,
1058
+ "total": 3,
1059
+ "unmapped": 0
1060
+ },
1061
+ "name": "FormSection",
1062
+ "related": {
1063
+ "decisions": [],
1064
+ "foundations": [
1065
+ "color",
1066
+ "typography",
1067
+ "spacing",
1068
+ "radius"
1069
+ ],
1070
+ "patterns": [
1071
+ "form-composition",
1072
+ "forms",
1073
+ "wizard-flows"
1074
+ ]
1075
+ },
1076
+ "source": {
1077
+ "componentPath": "packages/core/src/components/FormSection/FormSection.tsx",
1078
+ "exportName": "FormSection",
1079
+ "package": "@idia-ui/core"
1080
+ },
1081
+ "storybook": {
1082
+ "status": "available",
1083
+ "title": "Components/FormSection"
1084
+ },
1085
+ "type": "component"
1086
+ },
1087
+ {
1088
+ "brainPath": "components/full-page-loader.md",
1089
+ "docCompleteness": "usable",
1090
+ "figma": {
1091
+ "status": "unmapped"
1092
+ },
1093
+ "id": "full-page-loader",
1094
+ "lifecycle": "stable",
1095
+ "mappingSummary": {
1096
+ "partial": 3,
1097
+ "rich": 0,
1098
+ "total": 3,
1099
+ "unmapped": 0
1100
+ },
1101
+ "name": "FullPageLoader",
1102
+ "related": {
1103
+ "decisions": [],
1104
+ "foundations": [
1105
+ "color",
1106
+ "z-index",
1107
+ "shadows"
1108
+ ],
1109
+ "patterns": [
1110
+ "loading-skeletons"
1111
+ ]
1112
+ },
1113
+ "source": {
1114
+ "componentPath": "packages/core/src/components/FullPageLoader/FullPageLoader.tsx",
1115
+ "exportName": "FullPageLoader",
1116
+ "package": "@idia-ui/core"
1117
+ },
1118
+ "storybook": {
1119
+ "status": "available",
1120
+ "title": "Components/FullPageLoader"
1121
+ },
1122
+ "type": "component"
1123
+ },
1124
+ {
1125
+ "brainPath": "components/highlight-text.md",
1126
+ "docCompleteness": "usable",
1127
+ "figma": {
1128
+ "status": "unmapped"
1129
+ },
1130
+ "id": "highlight-text",
1131
+ "lifecycle": "stable",
1132
+ "mappingSummary": {
1133
+ "partial": 3,
1134
+ "rich": 0,
1135
+ "total": 3,
1136
+ "unmapped": 0
1137
+ },
1138
+ "name": "HighlightText",
1139
+ "related": {
1140
+ "decisions": [],
1141
+ "foundations": [
1142
+ "color",
1143
+ "typography"
1144
+ ],
1145
+ "patterns": [
1146
+ "search-highlight"
1147
+ ]
1148
+ },
1149
+ "source": {
1150
+ "componentPath": "packages/core/src/components/HighlightText/HighlightText.tsx",
1151
+ "exportName": "HighlightText",
1152
+ "package": "@idia-ui/core"
1153
+ },
1154
+ "storybook": {
1155
+ "status": "available",
1156
+ "title": "Components/HighlightText"
1157
+ },
1158
+ "type": "component"
1159
+ },
1160
+ {
1161
+ "brainPath": "components/image-uploader.md",
1162
+ "docCompleteness": "usable",
1163
+ "figma": {
1164
+ "status": "unmapped"
1165
+ },
1166
+ "id": "image-uploader",
1167
+ "lifecycle": "stable",
1168
+ "mappingSummary": {
1169
+ "partial": 4,
1170
+ "rich": 0,
1171
+ "total": 4,
1172
+ "unmapped": 0
1173
+ },
1174
+ "name": "ImageUploader",
1175
+ "related": {
1176
+ "decisions": [],
1177
+ "foundations": [
1178
+ "color",
1179
+ "radius"
1180
+ ],
1181
+ "patterns": [
1182
+ "forms",
1183
+ "media-upload"
1184
+ ]
1185
+ },
1186
+ "source": {
1187
+ "componentPath": "packages/core/src/components/ImageUploader/ImageUploader.tsx",
1188
+ "exportName": "ImageUploader",
1189
+ "package": "@idia-ui/core"
1190
+ },
1191
+ "storybook": {
1192
+ "status": "available",
1193
+ "title": "Components/ImageUploader"
1194
+ },
1195
+ "type": "component"
1196
+ },
1197
+ {
1198
+ "brainPath": "components/input.md",
1199
+ "docCompleteness": "rich",
1200
+ "figma": {
1201
+ "status": "unmapped"
1202
+ },
1203
+ "id": "input",
1204
+ "lifecycle": "stable",
1205
+ "mappingSummary": {
1206
+ "partial": 10,
1207
+ "rich": 0,
1208
+ "total": 10,
1209
+ "unmapped": 0
1210
+ },
1211
+ "name": "Input",
1212
+ "related": {
1213
+ "decisions": [],
1214
+ "foundations": [
1215
+ "tokens",
1216
+ "typography",
1217
+ "spacing",
1218
+ "radius"
1219
+ ],
1220
+ "patterns": [
1221
+ "address-capture",
1222
+ "form-composition",
1223
+ "forms",
1224
+ "phone-and-currency",
1225
+ "validation-forms"
1226
+ ]
1227
+ },
1228
+ "source": {
1229
+ "componentPath": "packages/core/src/components/InputText/InputText.tsx",
1230
+ "exportName": "InputText",
1231
+ "package": "@idia-ui/core"
1232
+ },
1233
+ "storybook": {
1234
+ "status": "available",
1235
+ "title": "Components/InputText"
1236
+ },
1237
+ "type": "component"
1238
+ },
1239
+ {
1240
+ "brainPath": "components/input-address.md",
1241
+ "docCompleteness": "usable",
1242
+ "figma": {
1243
+ "status": "unmapped"
1244
+ },
1245
+ "id": "input-address",
1246
+ "lifecycle": "stable",
1247
+ "mappingSummary": {
1248
+ "partial": 5,
1249
+ "rich": 0,
1250
+ "total": 5,
1251
+ "unmapped": 0
1252
+ },
1253
+ "name": "InputAddress",
1254
+ "related": {
1255
+ "decisions": [],
1256
+ "foundations": [
1257
+ "color",
1258
+ "typography",
1259
+ "spacing",
1260
+ "radius"
1261
+ ],
1262
+ "patterns": [
1263
+ "forms",
1264
+ "address-capture"
1265
+ ]
1266
+ },
1267
+ "source": {
1268
+ "componentPath": "packages/core/src/components/InputAddress/InputAddress.tsx",
1269
+ "exportName": "InputAddress",
1270
+ "package": "@idia-ui/core"
1271
+ },
1272
+ "storybook": {
1273
+ "status": "available",
1274
+ "title": "Components/InputAddress"
1275
+ },
1276
+ "type": "component"
1277
+ },
1278
+ {
1279
+ "brainPath": "components/input-group.md",
1280
+ "docCompleteness": "usable",
1281
+ "figma": {
1282
+ "status": "unmapped"
1283
+ },
1284
+ "id": "input-group",
1285
+ "lifecycle": "stable",
1286
+ "mappingSummary": {
1287
+ "partial": 7,
1288
+ "rich": 0,
1289
+ "total": 7,
1290
+ "unmapped": 0
1291
+ },
1292
+ "name": "InputGroup",
1293
+ "related": {
1294
+ "decisions": [],
1295
+ "foundations": [
1296
+ "color",
1297
+ "typography",
1298
+ "spacing",
1299
+ "radius"
1300
+ ],
1301
+ "patterns": [
1302
+ "form-composition",
1303
+ "forms"
1304
+ ]
1305
+ },
1306
+ "source": {
1307
+ "componentPath": "packages/core/src/components/InputGroup/InputGroup.tsx",
1308
+ "exportName": "InputGroup",
1309
+ "package": "@idia-ui/core"
1310
+ },
1311
+ "storybook": {
1312
+ "status": "available",
1313
+ "title": "Components/InputGroup"
1314
+ },
1315
+ "type": "component"
1316
+ },
1317
+ {
1318
+ "brainPath": "components/input-with-dropdown.md",
1319
+ "docCompleteness": "usable",
1320
+ "figma": {
1321
+ "status": "unmapped"
1322
+ },
1323
+ "id": "input-with-dropdown",
1324
+ "lifecycle": "stable",
1325
+ "mappingSummary": {
1326
+ "partial": 4,
1327
+ "rich": 0,
1328
+ "total": 4,
1329
+ "unmapped": 0
1330
+ },
1331
+ "name": "InputWithDropdown",
1332
+ "related": {
1333
+ "decisions": [],
1334
+ "foundations": [
1335
+ "color",
1336
+ "typography",
1337
+ "spacing",
1338
+ "radius"
1339
+ ],
1340
+ "patterns": [
1341
+ "forms"
1342
+ ]
1343
+ },
1344
+ "source": {
1345
+ "componentPath": "packages/core/src/components/InputWithDropdown/InputWithDropdown.tsx",
1346
+ "exportName": "InputWithDropdown",
1347
+ "package": "@idia-ui/core"
1348
+ },
1349
+ "storybook": {
1350
+ "status": "available",
1351
+ "title": "Components/InputWithDropdown"
1352
+ },
1353
+ "type": "component"
1354
+ },
1355
+ {
1356
+ "brainPath": "components/layout.md",
1357
+ "docCompleteness": "usable",
1358
+ "figma": {
1359
+ "status": "unmapped"
1360
+ },
1361
+ "id": "layout",
1362
+ "lifecycle": "stable",
1363
+ "mappingSummary": {
1364
+ "partial": 1,
1365
+ "rich": 0,
1366
+ "total": 1,
1367
+ "unmapped": 0
1368
+ },
1369
+ "name": "Layout",
1370
+ "related": {
1371
+ "decisions": [],
1372
+ "foundations": [
1373
+ "color",
1374
+ "spacing"
1375
+ ],
1376
+ "patterns": [
1377
+ "sticky-chrome"
1378
+ ]
1379
+ },
1380
+ "source": {
1381
+ "componentPath": "packages/core/src/components/Layout/Layout.tsx",
1382
+ "exportName": "Layout",
1383
+ "package": "@idia-ui/core"
1384
+ },
1385
+ "storybook": {
1386
+ "status": "available",
1387
+ "title": "Components/Layout"
1388
+ },
1389
+ "type": "component"
1390
+ },
1391
+ {
1392
+ "brainPath": "components/link.md",
1393
+ "docCompleteness": "usable",
1394
+ "figma": {
1395
+ "status": "unmapped"
1396
+ },
1397
+ "id": "link",
1398
+ "lifecycle": "stable",
1399
+ "mappingSummary": {
1400
+ "partial": 6,
1401
+ "rich": 0,
1402
+ "total": 6,
1403
+ "unmapped": 0
1404
+ },
1405
+ "name": "Link",
1406
+ "related": {
1407
+ "decisions": [
1408
+ "button-vs-link",
1409
+ "action-hierarchy"
1410
+ ],
1411
+ "foundations": [
1412
+ "color",
1413
+ "typography"
1414
+ ],
1415
+ "patterns": [
1416
+ "modal-routing",
1417
+ "navigation-pressable"
1418
+ ]
1419
+ },
1420
+ "source": {
1421
+ "componentPath": "packages/core/src/components/Link/Link.tsx",
1422
+ "exportName": "Link",
1423
+ "package": "@idia-ui/core"
1424
+ },
1425
+ "storybook": {
1426
+ "status": "available",
1427
+ "title": "Components/Link"
1428
+ },
1429
+ "type": "component"
1430
+ },
1431
+ {
1432
+ "brainPath": "components/list-menu.md",
1433
+ "docCompleteness": "usable",
1434
+ "figma": {
1435
+ "status": "unmapped"
1436
+ },
1437
+ "id": "list-menu",
1438
+ "lifecycle": "stable",
1439
+ "mappingSummary": {
1440
+ "partial": 6,
1441
+ "rich": 0,
1442
+ "total": 6,
1443
+ "unmapped": 0
1444
+ },
1445
+ "name": "ListMenu",
1446
+ "related": {
1447
+ "decisions": [],
1448
+ "foundations": [
1449
+ "color",
1450
+ "typography",
1451
+ "spacing"
1452
+ ],
1453
+ "patterns": [
1454
+ "list-selection",
1455
+ "navigation-pressable",
1456
+ "search-highlight"
1457
+ ]
1458
+ },
1459
+ "source": {
1460
+ "componentPath": "packages/core/src/components/ListMenu/ListMenu.tsx",
1461
+ "exportName": "ListMenu",
1462
+ "package": "@idia-ui/core"
1463
+ },
1464
+ "storybook": {
1465
+ "status": "available",
1466
+ "title": "Components/ListMenu"
1467
+ },
1468
+ "type": "component"
1469
+ },
1470
+ {
1471
+ "brainPath": "components/list-menu-action.md",
1472
+ "docCompleteness": "usable",
1473
+ "figma": {
1474
+ "status": "unmapped"
1475
+ },
1476
+ "id": "list-menu-action",
1477
+ "lifecycle": "stable",
1478
+ "mappingSummary": {
1479
+ "partial": 3,
1480
+ "rich": 0,
1481
+ "total": 3,
1482
+ "unmapped": 0
1483
+ },
1484
+ "name": "ListMenuAction",
1485
+ "related": {
1486
+ "decisions": [],
1487
+ "foundations": [
1488
+ "color",
1489
+ "typography",
1490
+ "spacing"
1491
+ ],
1492
+ "patterns": [
1493
+ "list-selection"
1494
+ ]
1495
+ },
1496
+ "source": {
1497
+ "componentPath": "packages/core/src/patterns/ListMenuAction/ListMenuAction.tsx",
1498
+ "exportName": "ListMenuAction",
1499
+ "package": "@idia-ui/core"
1500
+ },
1501
+ "storybook": {
1502
+ "status": "available",
1503
+ "title": "Patterns/ListMenuAction"
1504
+ },
1505
+ "type": "component"
1506
+ },
1507
+ {
1508
+ "brainPath": "components/list-simple.md",
1509
+ "docCompleteness": "usable",
1510
+ "figma": {
1511
+ "status": "unmapped"
1512
+ },
1513
+ "id": "list-simple",
1514
+ "lifecycle": "stable",
1515
+ "mappingSummary": {
1516
+ "partial": 5,
1517
+ "rich": 0,
1518
+ "total": 5,
1519
+ "unmapped": 0
1520
+ },
1521
+ "name": "ListSimple",
1522
+ "related": {
1523
+ "decisions": [],
1524
+ "foundations": [
1525
+ "typography",
1526
+ "color",
1527
+ "spacing"
1528
+ ],
1529
+ "patterns": []
1530
+ },
1531
+ "source": {
1532
+ "componentPath": "packages/core/src/components/ListSimple/ListSimple.tsx",
1533
+ "exportName": "ListSimple",
1534
+ "package": "@idia-ui/core"
1535
+ },
1536
+ "storybook": {
1537
+ "status": "available",
1538
+ "title": "Components/ListSimple"
1539
+ },
1540
+ "type": "component"
1541
+ },
1542
+ {
1543
+ "brainPath": "components/location-select.md",
1544
+ "docCompleteness": "usable",
1545
+ "figma": {
1546
+ "status": "unmapped"
1547
+ },
1548
+ "id": "location-select",
1549
+ "lifecycle": "stable",
1550
+ "mappingSummary": {
1551
+ "partial": 5,
1552
+ "rich": 0,
1553
+ "total": 5,
1554
+ "unmapped": 0
1555
+ },
1556
+ "name": "LocationSelect",
1557
+ "related": {
1558
+ "decisions": [
1559
+ "radio-vs-select-vs-checkbox"
1560
+ ],
1561
+ "foundations": [
1562
+ "color",
1563
+ "spacing",
1564
+ "z-index"
1565
+ ],
1566
+ "patterns": [
1567
+ "forms",
1568
+ "list-selection"
1569
+ ]
1570
+ },
1571
+ "source": {
1572
+ "componentPath": "packages/core/src/patterns/LocationSelect/LocationSelect.tsx",
1573
+ "exportName": "LocationSelect",
1574
+ "package": "@idia-ui/core"
1575
+ },
1576
+ "storybook": {
1577
+ "status": "available",
1578
+ "title": "Patterns/LocationSelect"
1579
+ },
1580
+ "type": "component"
1581
+ },
1582
+ {
1583
+ "brainPath": "components/modal.md",
1584
+ "docCompleteness": "usable",
1585
+ "figma": {
1586
+ "status": "unmapped"
1587
+ },
1588
+ "id": "modal",
1589
+ "lifecycle": "stable",
1590
+ "mappingSummary": {
1591
+ "partial": 7,
1592
+ "rich": 0,
1593
+ "total": 7,
1594
+ "unmapped": 0
1595
+ },
1596
+ "name": "Modal",
1597
+ "related": {
1598
+ "decisions": [],
1599
+ "foundations": [
1600
+ "z-index",
1601
+ "shadows",
1602
+ "motion",
1603
+ "spacing"
1604
+ ],
1605
+ "patterns": [
1606
+ "calendar-scheduling",
1607
+ "modal-routing",
1608
+ "overlay-stack"
1609
+ ]
1610
+ },
1611
+ "source": {
1612
+ "componentPath": "packages/core/src/components/Modal/Modal.tsx",
1613
+ "exportName": "Modal",
1614
+ "package": "@idia-ui/core"
1615
+ },
1616
+ "storybook": {
1617
+ "status": "available",
1618
+ "title": "Components/ModalResponsive"
1619
+ },
1620
+ "type": "component"
1621
+ },
1622
+ {
1623
+ "brainPath": "components/notification-banner.md",
1624
+ "docCompleteness": "usable",
1625
+ "figma": {
1626
+ "status": "unmapped"
1627
+ },
1628
+ "id": "notification-banner",
1629
+ "lifecycle": "stable",
1630
+ "mappingSummary": {
1631
+ "partial": 3,
1632
+ "rich": 0,
1633
+ "total": 3,
1634
+ "unmapped": 0
1635
+ },
1636
+ "name": "NotificationBanner",
1637
+ "related": {
1638
+ "decisions": [],
1639
+ "foundations": [
1640
+ "color",
1641
+ "typography",
1642
+ "z-index",
1643
+ "shadows"
1644
+ ],
1645
+ "patterns": [
1646
+ "empty-status-flow"
1647
+ ]
1648
+ },
1649
+ "source": {
1650
+ "componentPath": "packages/core/src/components/NotificationBanner/NotificationBanner.tsx",
1651
+ "exportName": "NotificationBanner",
1652
+ "package": "@idia-ui/core"
1653
+ },
1654
+ "storybook": {
1655
+ "status": "available",
1656
+ "title": "Components/NotificationBanner"
1657
+ },
1658
+ "type": "component"
1659
+ },
1660
+ {
1661
+ "brainPath": "components/notification-text.md",
1662
+ "docCompleteness": "usable",
1663
+ "figma": {
1664
+ "status": "unmapped"
1665
+ },
1666
+ "id": "notification-text",
1667
+ "lifecycle": "stable",
1668
+ "mappingSummary": {
1669
+ "partial": 3,
1670
+ "rich": 0,
1671
+ "total": 3,
1672
+ "unmapped": 0
1673
+ },
1674
+ "name": "NotificationText",
1675
+ "related": {
1676
+ "decisions": [],
1677
+ "foundations": [
1678
+ "color",
1679
+ "typography"
1680
+ ],
1681
+ "patterns": [
1682
+ "empty-status-flow"
1683
+ ]
1684
+ },
1685
+ "source": {
1686
+ "componentPath": "packages/core/src/components/NotificationText/NotificationText.tsx",
1687
+ "exportName": "NotificationText",
1688
+ "package": "@idia-ui/core"
1689
+ },
1690
+ "storybook": {
1691
+ "status": "available",
1692
+ "title": "Components/NotificationText"
1693
+ },
1694
+ "type": "component"
1695
+ },
1696
+ {
1697
+ "brainPath": "components/overlay.md",
1698
+ "docCompleteness": "usable",
1699
+ "figma": {
1700
+ "status": "unmapped"
1701
+ },
1702
+ "id": "overlay",
1703
+ "lifecycle": "stable",
1704
+ "mappingSummary": {
1705
+ "partial": 5,
1706
+ "rich": 0,
1707
+ "total": 5,
1708
+ "unmapped": 0
1709
+ },
1710
+ "name": "Overlay",
1711
+ "related": {
1712
+ "decisions": [],
1713
+ "foundations": [
1714
+ "z-index",
1715
+ "shadows",
1716
+ "color"
1717
+ ],
1718
+ "patterns": [
1719
+ "overlay-stack"
1720
+ ]
1721
+ },
1722
+ "source": {
1723
+ "componentPath": "packages/core/src/components/Overlay/Overlay.tsx",
1724
+ "exportName": "Overlay",
1725
+ "package": "@idia-ui/core"
1726
+ },
1727
+ "storybook": {
1728
+ "status": "available",
1729
+ "title": "Components/Overlay"
1730
+ },
1731
+ "type": "component"
1732
+ },
1733
+ {
1734
+ "brainPath": "components/phone-number-input.md",
1735
+ "docCompleteness": "usable",
1736
+ "figma": {
1737
+ "status": "unmapped"
1738
+ },
1739
+ "id": "phone-number-input",
1740
+ "lifecycle": "stable",
1741
+ "mappingSummary": {
1742
+ "partial": 7,
1743
+ "rich": 0,
1744
+ "total": 7,
1745
+ "unmapped": 0
1746
+ },
1747
+ "name": "PhoneNumberInput",
1748
+ "related": {
1749
+ "decisions": [],
1750
+ "foundations": [
1751
+ "color",
1752
+ "typography",
1753
+ "spacing",
1754
+ "radius"
1755
+ ],
1756
+ "patterns": [
1757
+ "forms",
1758
+ "phone-and-currency"
1759
+ ]
1760
+ },
1761
+ "source": {
1762
+ "componentPath": "packages/core/src/components/PhoneNumberInput/PhoneNumberInput.tsx",
1763
+ "exportName": "PhoneNumberInput",
1764
+ "package": "@idia-ui/core"
1765
+ },
1766
+ "storybook": {
1767
+ "status": "available",
1768
+ "title": "Components/PhoneNumberInput"
1769
+ },
1770
+ "type": "component"
1771
+ },
1772
+ {
1773
+ "brainPath": "components/picker-sheet.md",
1774
+ "docCompleteness": "usable",
1775
+ "figma": {
1776
+ "status": "unmapped"
1777
+ },
1778
+ "id": "picker-sheet",
1779
+ "lifecycle": "stable",
1780
+ "mappingSummary": {
1781
+ "partial": 4,
1782
+ "rich": 0,
1783
+ "total": 4,
1784
+ "unmapped": 0
1785
+ },
1786
+ "name": "PickerSheet",
1787
+ "related": {
1788
+ "decisions": [],
1789
+ "foundations": [
1790
+ "z-index"
1791
+ ],
1792
+ "patterns": [
1793
+ "forms"
1794
+ ]
1795
+ },
1796
+ "source": {
1797
+ "componentPath": "packages/core/src/components/PickerSheet/PickerSheet.tsx",
1798
+ "exportName": "PickerSheet",
1799
+ "package": "@idia-ui/core"
1800
+ },
1801
+ "storybook": {
1802
+ "status": "available",
1803
+ "title": "Components/PickerSheet"
1804
+ },
1805
+ "type": "component"
1806
+ },
1807
+ {
1808
+ "brainPath": "components/popover-wrapper.md",
1809
+ "docCompleteness": "usable",
1810
+ "figma": {
1811
+ "status": "unmapped"
1812
+ },
1813
+ "id": "popover-wrapper",
1814
+ "lifecycle": "stable",
1815
+ "mappingSummary": {
1816
+ "partial": 4,
1817
+ "rich": 0,
1818
+ "total": 4,
1819
+ "unmapped": 0
1820
+ },
1821
+ "name": "PopoverWrapper",
1822
+ "related": {
1823
+ "decisions": [],
1824
+ "foundations": [
1825
+ "z-index",
1826
+ "shadows",
1827
+ "radius",
1828
+ "color"
1829
+ ],
1830
+ "patterns": [
1831
+ "overlay-stack"
1832
+ ]
1833
+ },
1834
+ "source": {
1835
+ "componentPath": "packages/core/src/components/PopoverWrapper/PopoverWrapper.tsx",
1836
+ "exportName": "PopoverWrapper",
1837
+ "package": "@idia-ui/core"
1838
+ },
1839
+ "storybook": {
1840
+ "status": "available",
1841
+ "title": "Components/PopoverWrapper"
1842
+ },
1843
+ "type": "component"
1844
+ },
1845
+ {
1846
+ "brainPath": "components/radio.md",
1847
+ "docCompleteness": "usable",
1848
+ "figma": {
1849
+ "status": "unmapped"
1850
+ },
1851
+ "id": "radio",
1852
+ "lifecycle": "stable",
1853
+ "mappingSummary": {
1854
+ "partial": 8,
1855
+ "rich": 0,
1856
+ "total": 8,
1857
+ "unmapped": 0
1858
+ },
1859
+ "name": "Radio",
1860
+ "related": {
1861
+ "decisions": [
1862
+ "radio-vs-select-vs-checkbox"
1863
+ ],
1864
+ "foundations": [
1865
+ "color",
1866
+ "typography",
1867
+ "spacing",
1868
+ "radius"
1869
+ ],
1870
+ "patterns": [
1871
+ "forms",
1872
+ "list-selection"
1873
+ ]
1874
+ },
1875
+ "source": {
1876
+ "componentPath": "packages/core/src/components/Radio/Radio.tsx",
1877
+ "exportName": "Radio",
1878
+ "package": "@idia-ui/core"
1879
+ },
1880
+ "storybook": {
1881
+ "status": "available",
1882
+ "title": "Components/Radio"
1883
+ },
1884
+ "type": "component"
1885
+ },
1886
+ {
1887
+ "brainPath": "components/record-card.md",
1888
+ "docCompleteness": "usable",
1889
+ "figma": {
1890
+ "status": "unmapped"
1891
+ },
1892
+ "id": "record-card",
1893
+ "lifecycle": "stable",
1894
+ "mappingSummary": {
1895
+ "partial": 5,
1896
+ "rich": 0,
1897
+ "total": 5,
1898
+ "unmapped": 0
1899
+ },
1900
+ "name": "RecordCard",
1901
+ "related": {
1902
+ "decisions": [],
1903
+ "foundations": [
1904
+ "color",
1905
+ "typography",
1906
+ "radius"
1907
+ ],
1908
+ "patterns": [
1909
+ "loading-skeletons",
1910
+ "navigation-pressable",
1911
+ "search-highlight"
1912
+ ]
1913
+ },
1914
+ "source": {
1915
+ "componentPath": "packages/core/src/components/RecordCard/RecordCard.tsx",
1916
+ "exportName": "RecordCard",
1917
+ "package": "@idia-ui/core"
1918
+ },
1919
+ "storybook": {
1920
+ "status": "available",
1921
+ "title": "Components/RecordCard"
1922
+ },
1923
+ "type": "component"
1924
+ },
1925
+ {
1926
+ "brainPath": "components/search-input.md",
1927
+ "docCompleteness": "usable",
1928
+ "figma": {
1929
+ "status": "unmapped"
1930
+ },
1931
+ "id": "search-input",
1932
+ "lifecycle": "stable",
1933
+ "mappingSummary": {
1934
+ "partial": 7,
1935
+ "rich": 0,
1936
+ "total": 7,
1937
+ "unmapped": 0
1938
+ },
1939
+ "name": "SearchInput",
1940
+ "related": {
1941
+ "decisions": [],
1942
+ "foundations": [
1943
+ "color",
1944
+ "typography",
1945
+ "spacing",
1946
+ "radius"
1947
+ ],
1948
+ "patterns": [
1949
+ "forms",
1950
+ "search-highlight",
1951
+ "table-filters"
1952
+ ]
1953
+ },
1954
+ "source": {
1955
+ "componentPath": "packages/core/src/components/SearchInput/SearchInput.tsx",
1956
+ "exportName": "SearchInput",
1957
+ "package": "@idia-ui/core"
1958
+ },
1959
+ "storybook": {
1960
+ "status": "available",
1961
+ "title": "Components/SearchInput"
1962
+ },
1963
+ "type": "component"
1964
+ },
1965
+ {
1966
+ "brainPath": "components/segmented-selector.md",
1967
+ "docCompleteness": "usable",
1968
+ "figma": {
1969
+ "status": "unmapped"
1970
+ },
1971
+ "id": "segmented-selector",
1972
+ "lifecycle": "stable",
1973
+ "mappingSummary": {
1974
+ "partial": 6,
1975
+ "rich": 0,
1976
+ "total": 6,
1977
+ "unmapped": 0
1978
+ },
1979
+ "name": "SegmentedSelector",
1980
+ "related": {
1981
+ "decisions": [],
1982
+ "foundations": [
1983
+ "color",
1984
+ "typography",
1985
+ "spacing",
1986
+ "radius",
1987
+ "shadows"
1988
+ ],
1989
+ "patterns": [
1990
+ "forms"
1991
+ ]
1992
+ },
1993
+ "source": {
1994
+ "componentPath": "packages/core/src/components/SegmentedSelector/SegmentedSelector.tsx",
1995
+ "exportName": "SegmentedSelector",
1996
+ "package": "@idia-ui/core"
1997
+ },
1998
+ "storybook": {
1999
+ "status": "available",
2000
+ "title": "Components/SegmentedSelector"
2001
+ },
2002
+ "type": "component"
2003
+ },
2004
+ {
2005
+ "brainPath": "components/select.md",
2006
+ "docCompleteness": "rich",
2007
+ "figma": {
2008
+ "status": "unmapped"
2009
+ },
2010
+ "id": "select",
2011
+ "lifecycle": "stable",
2012
+ "mappingSummary": {
2013
+ "partial": 14,
2014
+ "rich": 0,
2015
+ "total": 14,
2016
+ "unmapped": 0
2017
+ },
2018
+ "name": "Select",
2019
+ "related": {
2020
+ "decisions": [
2021
+ "radio-vs-select-vs-checkbox"
2022
+ ],
2023
+ "foundations": [
2024
+ "tokens",
2025
+ "typography",
2026
+ "spacing",
2027
+ "radius"
2028
+ ],
2029
+ "patterns": [
2030
+ "address-capture",
2031
+ "form-composition",
2032
+ "forms",
2033
+ "phone-and-currency",
2034
+ "table-filters",
2035
+ "validation-forms"
2036
+ ]
2037
+ },
2038
+ "source": {
2039
+ "componentPath": "packages/core/src/components/Select/Select.tsx",
2040
+ "exportName": "Select",
2041
+ "package": "@idia-ui/core"
2042
+ },
2043
+ "storybook": {
2044
+ "status": "available",
2045
+ "title": "Components/Select"
2046
+ },
2047
+ "type": "component"
2048
+ },
2049
+ {
2050
+ "brainPath": "components/select-currency.md",
2051
+ "docCompleteness": "usable",
2052
+ "figma": {
2053
+ "status": "unmapped"
2054
+ },
2055
+ "id": "select-currency",
2056
+ "lifecycle": "stable",
2057
+ "mappingSummary": {
2058
+ "partial": 4,
2059
+ "rich": 0,
2060
+ "total": 4,
2061
+ "unmapped": 0
2062
+ },
2063
+ "name": "SelectCurrency",
2064
+ "related": {
2065
+ "decisions": [],
2066
+ "foundations": [
2067
+ "color",
2068
+ "typography"
2069
+ ],
2070
+ "patterns": [
2071
+ "forms",
2072
+ "phone-and-currency"
2073
+ ]
2074
+ },
2075
+ "source": {
2076
+ "componentPath": "packages/core/src/components/SelectCurrency/SelectCurrency.tsx",
2077
+ "exportName": "SelectCurrency",
2078
+ "package": "@idia-ui/core"
2079
+ },
2080
+ "storybook": {
2081
+ "status": "available",
2082
+ "title": "Components/SelectCurrency"
2083
+ },
2084
+ "type": "component"
2085
+ },
2086
+ {
2087
+ "brainPath": "components/select-custom.md",
2088
+ "docCompleteness": "usable",
2089
+ "figma": {
2090
+ "status": "unmapped"
2091
+ },
2092
+ "id": "select-custom",
2093
+ "lifecycle": "stable",
2094
+ "mappingSummary": {
2095
+ "partial": 4,
2096
+ "rich": 0,
2097
+ "total": 4,
2098
+ "unmapped": 0
2099
+ },
2100
+ "name": "SelectCustom",
2101
+ "related": {
2102
+ "decisions": [],
2103
+ "foundations": [
2104
+ "color",
2105
+ "spacing",
2106
+ "radius",
2107
+ "z-index"
2108
+ ],
2109
+ "patterns": [
2110
+ "forms"
2111
+ ]
2112
+ },
2113
+ "source": {
2114
+ "componentPath": "packages/core/src/components/SelectCustom/SelectCustom.tsx",
2115
+ "exportName": "SelectCustom",
2116
+ "package": "@idia-ui/core"
2117
+ },
2118
+ "storybook": {
2119
+ "status": "available",
2120
+ "title": "Components/SelectCustom"
2121
+ },
2122
+ "type": "component"
2123
+ },
2124
+ {
2125
+ "brainPath": "components/separator.md",
2126
+ "docCompleteness": "usable",
2127
+ "figma": {
2128
+ "status": "unmapped"
2129
+ },
2130
+ "id": "separator",
2131
+ "lifecycle": "stable",
2132
+ "mappingSummary": {
2133
+ "partial": 3,
2134
+ "rich": 0,
2135
+ "total": 3,
2136
+ "unmapped": 0
2137
+ },
2138
+ "name": "Separator",
2139
+ "related": {
2140
+ "decisions": [],
2141
+ "foundations": [
2142
+ "color",
2143
+ "border-width"
2144
+ ],
2145
+ "patterns": []
2146
+ },
2147
+ "source": {
2148
+ "componentPath": "packages/core/src/components/Separator/Separator.tsx",
2149
+ "exportName": "Separator",
2150
+ "package": "@idia-ui/core"
2151
+ },
2152
+ "storybook": {
2153
+ "status": "available",
2154
+ "title": "Components/Separator"
2155
+ },
2156
+ "type": "component"
2157
+ },
2158
+ {
2159
+ "brainPath": "components/skeleton.md",
2160
+ "docCompleteness": "usable",
2161
+ "figma": {
2162
+ "status": "unmapped"
2163
+ },
2164
+ "id": "skeleton",
2165
+ "lifecycle": "stable",
2166
+ "mappingSummary": {
2167
+ "partial": 2,
2168
+ "rich": 0,
2169
+ "total": 2,
2170
+ "unmapped": 0
2171
+ },
2172
+ "name": "Skeleton",
2173
+ "related": {
2174
+ "decisions": [],
2175
+ "foundations": [
2176
+ "color",
2177
+ "motion"
2178
+ ],
2179
+ "patterns": [
2180
+ "loading-skeletons"
2181
+ ]
2182
+ },
2183
+ "source": {
2184
+ "componentPath": "packages/core/src/components/Skeleton/",
2185
+ "exportName": "SkeletonBlock",
2186
+ "package": "@idia-ui/core"
2187
+ },
2188
+ "storybook": {
2189
+ "status": "available",
2190
+ "title": "Components/Skeleton"
2191
+ },
2192
+ "type": "component"
2193
+ },
2194
+ {
2195
+ "brainPath": "components/social-button.md",
2196
+ "docCompleteness": "usable",
2197
+ "figma": {
2198
+ "status": "unmapped"
2199
+ },
2200
+ "id": "social-button",
2201
+ "lifecycle": "stable",
2202
+ "mappingSummary": {
2203
+ "partial": 3,
2204
+ "rich": 0,
2205
+ "total": 3,
2206
+ "unmapped": 0
2207
+ },
2208
+ "name": "SocialButton",
2209
+ "related": {
2210
+ "decisions": [],
2211
+ "foundations": [
2212
+ "color",
2213
+ "radius"
2214
+ ],
2215
+ "patterns": [
2216
+ "forms"
2217
+ ]
2218
+ },
2219
+ "source": {
2220
+ "componentPath": "packages/core/src/components/SocialButton/SocialButton.tsx",
2221
+ "exportName": "SocialButton",
2222
+ "package": "@idia-ui/core"
2223
+ },
2224
+ "storybook": {
2225
+ "status": "available",
2226
+ "title": "Components/SocialButton"
2227
+ },
2228
+ "type": "component"
2229
+ },
2230
+ {
2231
+ "brainPath": "components/spinner.md",
2232
+ "docCompleteness": "usable",
2233
+ "figma": {
2234
+ "status": "unmapped"
2235
+ },
2236
+ "id": "spinner",
2237
+ "lifecycle": "stable",
2238
+ "mappingSummary": {
2239
+ "partial": 2,
2240
+ "rich": 0,
2241
+ "total": 2,
2242
+ "unmapped": 0
2243
+ },
2244
+ "name": "Spinner",
2245
+ "related": {
2246
+ "decisions": [],
2247
+ "foundations": [
2248
+ "color"
2249
+ ],
2250
+ "patterns": [
2251
+ "empty-status-flow",
2252
+ "loading-skeletons"
2253
+ ]
2254
+ },
2255
+ "source": {
2256
+ "componentPath": "packages/core/src/components/Spinner/Spinner.tsx",
2257
+ "exportName": "Spinner",
2258
+ "package": "@idia-ui/core"
2259
+ },
2260
+ "storybook": {
2261
+ "status": "available",
2262
+ "title": "Components/Spinner"
2263
+ },
2264
+ "type": "component"
2265
+ },
2266
+ {
2267
+ "brainPath": "components/status-display.md",
2268
+ "docCompleteness": "usable",
2269
+ "figma": {
2270
+ "status": "unmapped"
2271
+ },
2272
+ "id": "status-display",
2273
+ "lifecycle": "stable",
2274
+ "mappingSummary": {
2275
+ "partial": 3,
2276
+ "rich": 0,
2277
+ "total": 3,
2278
+ "unmapped": 0
2279
+ },
2280
+ "name": "StatusDisplay",
2281
+ "related": {
2282
+ "decisions": [
2283
+ "action-hierarchy"
2284
+ ],
2285
+ "foundations": [
2286
+ "color"
2287
+ ],
2288
+ "patterns": [
2289
+ "empty-status-flow"
2290
+ ]
2291
+ },
2292
+ "source": {
2293
+ "componentPath": "packages/core/src/components/StatusDisplay/StatusDisplay.tsx",
2294
+ "exportName": "StatusDisplay",
2295
+ "package": "@idia-ui/core"
2296
+ },
2297
+ "storybook": {
2298
+ "status": "available",
2299
+ "title": "Components/StatusDisplay"
2300
+ },
2301
+ "type": "component"
2302
+ },
2303
+ {
2304
+ "brainPath": "components/sticky-on-scroll.md",
2305
+ "docCompleteness": "usable",
2306
+ "figma": {
2307
+ "status": "unmapped"
2308
+ },
2309
+ "id": "sticky-on-scroll",
2310
+ "lifecycle": "stable",
2311
+ "mappingSummary": {
2312
+ "partial": 3,
2313
+ "rich": 0,
2314
+ "total": 3,
2315
+ "unmapped": 0
2316
+ },
2317
+ "name": "StickyOnScroll",
2318
+ "related": {
2319
+ "decisions": [],
2320
+ "foundations": [
2321
+ "z-index"
2322
+ ],
2323
+ "patterns": [
2324
+ "sticky-chrome"
2325
+ ]
2326
+ },
2327
+ "source": {
2328
+ "componentPath": "packages/core/src/components/StickyOnScroll/StickyOnScroll.web.tsx",
2329
+ "exportName": "StickyOnScroll",
2330
+ "package": "@idia-ui/core"
2331
+ },
2332
+ "storybook": {
2333
+ "status": "available",
2334
+ "title": "Components/StickyOnScroll"
2335
+ },
2336
+ "type": "component"
2337
+ },
2338
+ {
2339
+ "brainPath": "components/success-circle-check.md",
2340
+ "docCompleteness": "usable",
2341
+ "figma": {
2342
+ "status": "unmapped"
2343
+ },
2344
+ "id": "success-circle-check",
2345
+ "lifecycle": "stable",
2346
+ "mappingSummary": {
2347
+ "partial": 3,
2348
+ "rich": 0,
2349
+ "total": 3,
2350
+ "unmapped": 0
2351
+ },
2352
+ "name": "SuccessCircleCheck",
2353
+ "related": {
2354
+ "decisions": [],
2355
+ "foundations": [
2356
+ "motion"
2357
+ ],
2358
+ "patterns": [
2359
+ "empty-status-flow"
2360
+ ]
2361
+ },
2362
+ "source": {
2363
+ "componentPath": "packages/core/src/components/SuccessCircleCheck/SuccessCircleCheck.tsx",
2364
+ "exportName": "SuccessCircleCheck",
2365
+ "package": "@idia-ui/core"
2366
+ },
2367
+ "storybook": {
2368
+ "status": "available",
2369
+ "title": "Components/SuccessCircleCheck"
2370
+ },
2371
+ "type": "component"
2372
+ },
2373
+ {
2374
+ "brainPath": "components/table.md",
2375
+ "docCompleteness": "usable",
2376
+ "figma": {
2377
+ "status": "unmapped"
2378
+ },
2379
+ "id": "table",
2380
+ "lifecycle": "stable",
2381
+ "mappingSummary": {
2382
+ "partial": 4,
2383
+ "rich": 0,
2384
+ "total": 4,
2385
+ "unmapped": 0
2386
+ },
2387
+ "name": "Table",
2388
+ "related": {
2389
+ "decisions": [],
2390
+ "foundations": [
2391
+ "color",
2392
+ "spacing",
2393
+ "typography"
2394
+ ],
2395
+ "patterns": [
2396
+ "loading-skeletons",
2397
+ "search-highlight",
2398
+ "table-filters"
2399
+ ]
2400
+ },
2401
+ "source": {
2402
+ "componentPath": "packages/core/src/components/Table/Table.tsx",
2403
+ "exportName": "Table",
2404
+ "package": "@idia-ui/core"
2405
+ },
2406
+ "storybook": {
2407
+ "status": "available",
2408
+ "title": "Components/Table"
2409
+ },
2410
+ "type": "component"
2411
+ },
2412
+ {
2413
+ "brainPath": "components/tabs.md",
2414
+ "docCompleteness": "usable",
2415
+ "figma": {
2416
+ "status": "unmapped"
2417
+ },
2418
+ "id": "tabs",
2419
+ "lifecycle": "stable",
2420
+ "mappingSummary": {
2421
+ "partial": 6,
2422
+ "rich": 0,
2423
+ "total": 6,
2424
+ "unmapped": 0
2425
+ },
2426
+ "name": "Tabs",
2427
+ "related": {
2428
+ "decisions": [],
2429
+ "foundations": [
2430
+ "color",
2431
+ "typography",
2432
+ "spacing",
2433
+ "motion"
2434
+ ],
2435
+ "patterns": []
2436
+ },
2437
+ "source": {
2438
+ "componentPath": "packages/core/src/components/Tabs/Tabs.tsx",
2439
+ "exportName": "Tabs",
2440
+ "package": "@idia-ui/core"
2441
+ },
2442
+ "storybook": {
2443
+ "status": "available",
2444
+ "title": "Components/Tabs"
2445
+ },
2446
+ "type": "component"
2447
+ },
2448
+ {
2449
+ "brainPath": "components/tabs-simple.md",
2450
+ "docCompleteness": "usable",
2451
+ "figma": {
2452
+ "status": "unmapped"
2453
+ },
2454
+ "id": "tabs-simple",
2455
+ "lifecycle": "stable",
2456
+ "mappingSummary": {
2457
+ "partial": 3,
2458
+ "rich": 0,
2459
+ "total": 3,
2460
+ "unmapped": 0
2461
+ },
2462
+ "name": "TabsSimple",
2463
+ "related": {
2464
+ "decisions": [],
2465
+ "foundations": [
2466
+ "color",
2467
+ "typography",
2468
+ "spacing",
2469
+ "motion"
2470
+ ],
2471
+ "patterns": [
2472
+ "sticky-chrome"
2473
+ ]
2474
+ },
2475
+ "source": {
2476
+ "componentPath": "packages/core/src/components/TabsSimple/TabsSimple.tsx",
2477
+ "exportName": "TabsSimple",
2478
+ "package": "@idia-ui/core"
2479
+ },
2480
+ "storybook": {
2481
+ "status": "available",
2482
+ "title": "Components/TabsSimple"
2483
+ },
2484
+ "type": "component"
2485
+ },
2486
+ {
2487
+ "brainPath": "components/text.md",
2488
+ "docCompleteness": "usable",
2489
+ "figma": {
2490
+ "status": "unmapped"
2491
+ },
2492
+ "id": "text",
2493
+ "lifecycle": "stable",
2494
+ "mappingSummary": {
2495
+ "partial": 5,
2496
+ "rich": 0,
2497
+ "total": 5,
2498
+ "unmapped": 0
2499
+ },
2500
+ "name": "Text",
2501
+ "related": {
2502
+ "decisions": [],
2503
+ "foundations": [
2504
+ "typography",
2505
+ "color"
2506
+ ],
2507
+ "patterns": []
2508
+ },
2509
+ "source": {
2510
+ "componentPath": "packages/core/src/components/Text/Text.tsx",
2511
+ "exportName": "Text",
2512
+ "package": "@idia-ui/core"
2513
+ },
2514
+ "storybook": {
2515
+ "status": "available",
2516
+ "title": "Components/Text"
2517
+ },
2518
+ "type": "component"
2519
+ },
2520
+ {
2521
+ "brainPath": "components/text-area.md",
2522
+ "docCompleteness": "usable",
2523
+ "figma": {
2524
+ "status": "unmapped"
2525
+ },
2526
+ "id": "text-area",
2527
+ "lifecycle": "stable",
2528
+ "mappingSummary": {
2529
+ "partial": 9,
2530
+ "rich": 0,
2531
+ "total": 9,
2532
+ "unmapped": 0
2533
+ },
2534
+ "name": "TextArea",
2535
+ "related": {
2536
+ "decisions": [],
2537
+ "foundations": [
2538
+ "color",
2539
+ "typography",
2540
+ "spacing",
2541
+ "radius"
2542
+ ],
2543
+ "patterns": [
2544
+ "form-composition",
2545
+ "forms",
2546
+ "validation-forms"
2547
+ ]
2548
+ },
2549
+ "source": {
2550
+ "componentPath": "packages/core/src/components/TextArea/TextArea.tsx",
2551
+ "exportName": "TextArea",
2552
+ "package": "@idia-ui/core"
2553
+ },
2554
+ "storybook": {
2555
+ "status": "available",
2556
+ "title": "Components/TextArea"
2557
+ },
2558
+ "type": "component"
2559
+ },
2560
+ {
2561
+ "brainPath": "components/time-of-day-select.md",
2562
+ "docCompleteness": "usable",
2563
+ "figma": {
2564
+ "status": "unmapped"
2565
+ },
2566
+ "id": "time-of-day-select",
2567
+ "lifecycle": "stable",
2568
+ "mappingSummary": {
2569
+ "partial": 3,
2570
+ "rich": 0,
2571
+ "total": 3,
2572
+ "unmapped": 0
2573
+ },
2574
+ "name": "TimeOfDaySelect",
2575
+ "related": {
2576
+ "decisions": [],
2577
+ "foundations": [
2578
+ "typography"
2579
+ ],
2580
+ "patterns": [
2581
+ "forms",
2582
+ "calendar-scheduling"
2583
+ ]
2584
+ },
2585
+ "source": {
2586
+ "componentPath": "packages/core/src/components/TimeOfDaySelect/TimeOfDaySelect.tsx",
2587
+ "exportName": "TimeOfDaySelect",
2588
+ "package": "@idia-ui/core"
2589
+ },
2590
+ "storybook": {
2591
+ "status": "available",
2592
+ "title": "Components/TimeOfDaySelect"
2593
+ },
2594
+ "type": "component"
2595
+ },
2596
+ {
2597
+ "brainPath": "components/toast.md",
2598
+ "docCompleteness": "usable",
2599
+ "figma": {
2600
+ "status": "unmapped"
2601
+ },
2602
+ "id": "toast",
2603
+ "lifecycle": "stable",
2604
+ "mappingSummary": {
2605
+ "partial": 5,
2606
+ "rich": 0,
2607
+ "total": 5,
2608
+ "unmapped": 0
2609
+ },
2610
+ "name": "Toast",
2611
+ "related": {
2612
+ "decisions": [],
2613
+ "foundations": [
2614
+ "z-index",
2615
+ "shadows",
2616
+ "color",
2617
+ "typography",
2618
+ "motion"
2619
+ ],
2620
+ "patterns": [
2621
+ "overlay-stack"
2622
+ ]
2623
+ },
2624
+ "source": {
2625
+ "componentPath": "packages/core/src/components/Toast/",
2626
+ "exportName": "Toast",
2627
+ "package": "@idia-ui/core"
2628
+ },
2629
+ "storybook": {
2630
+ "status": "available",
2631
+ "title": "Components/Toast"
2632
+ },
2633
+ "type": "component"
2634
+ },
2635
+ {
2636
+ "brainPath": "components/toggle.md",
2637
+ "docCompleteness": "usable",
2638
+ "figma": {
2639
+ "status": "unmapped"
2640
+ },
2641
+ "id": "toggle",
2642
+ "lifecycle": "stable",
2643
+ "mappingSummary": {
2644
+ "partial": 7,
2645
+ "rich": 0,
2646
+ "total": 7,
2647
+ "unmapped": 0
2648
+ },
2649
+ "name": "Toggle",
2650
+ "related": {
2651
+ "decisions": [],
2652
+ "foundations": [
2653
+ "color",
2654
+ "typography",
2655
+ "spacing",
2656
+ "radius",
2657
+ "shadows"
2658
+ ],
2659
+ "patterns": [
2660
+ "form-composition",
2661
+ "forms"
2662
+ ]
2663
+ },
2664
+ "source": {
2665
+ "componentPath": "packages/core/src/components/Toggle/Toggle.tsx",
2666
+ "exportName": "Toggle",
2667
+ "package": "@idia-ui/core"
2668
+ },
2669
+ "storybook": {
2670
+ "status": "available",
2671
+ "title": "Components/Toggle"
2672
+ },
2673
+ "type": "component"
2674
+ },
2675
+ {
2676
+ "brainPath": "components/tooltip.md",
2677
+ "docCompleteness": "usable",
2678
+ "figma": {
2679
+ "status": "unmapped"
2680
+ },
2681
+ "id": "tooltip",
2682
+ "lifecycle": "stable",
2683
+ "mappingSummary": {
2684
+ "partial": 5,
2685
+ "rich": 0,
2686
+ "total": 5,
2687
+ "unmapped": 0
2688
+ },
2689
+ "name": "Tooltip",
2690
+ "related": {
2691
+ "decisions": [],
2692
+ "foundations": [
2693
+ "z-index",
2694
+ "shadows",
2695
+ "typography",
2696
+ "color"
2697
+ ],
2698
+ "patterns": [
2699
+ "overlay-stack"
2700
+ ]
2701
+ },
2702
+ "source": {
2703
+ "componentPath": "packages/core/src/components/Tooltip/Tooltip.tsx",
2704
+ "exportName": "Tooltip",
2705
+ "package": "@idia-ui/core"
2706
+ },
2707
+ "storybook": {
2708
+ "status": "available",
2709
+ "title": "Components/Tooltip"
2710
+ },
2711
+ "type": "component"
2712
+ },
2713
+ {
2714
+ "brainPath": "components/top-loading-bar.md",
2715
+ "docCompleteness": "usable",
2716
+ "figma": {
2717
+ "status": "unmapped"
2718
+ },
2719
+ "id": "top-loading-bar",
2720
+ "lifecycle": "stable",
2721
+ "mappingSummary": {
2722
+ "partial": 2,
2723
+ "rich": 0,
2724
+ "total": 2,
2725
+ "unmapped": 0
2726
+ },
2727
+ "name": "TopLoadingBar",
2728
+ "related": {
2729
+ "decisions": [],
2730
+ "foundations": [
2731
+ "color",
2732
+ "z-index",
2733
+ "shadows"
2734
+ ],
2735
+ "patterns": [
2736
+ "sticky-chrome",
2737
+ "loading-skeletons"
2738
+ ]
2739
+ },
2740
+ "source": {
2741
+ "componentPath": "packages/core/src/components/TopLoadingBar/TopLoadingBar.tsx",
2742
+ "exportName": "TopLoadingBar",
2743
+ "package": "@idia-ui/core"
2744
+ },
2745
+ "storybook": {
2746
+ "status": "available",
2747
+ "title": "Components/TopLoadingBar"
2748
+ },
2749
+ "type": "component"
2750
+ },
2751
+ {
2752
+ "brainPath": "components/user-select.md",
2753
+ "docCompleteness": "usable",
2754
+ "figma": {
2755
+ "status": "unmapped"
2756
+ },
2757
+ "id": "user-select",
2758
+ "lifecycle": "stable",
2759
+ "mappingSummary": {
2760
+ "partial": 5,
2761
+ "rich": 0,
2762
+ "total": 5,
2763
+ "unmapped": 0
2764
+ },
2765
+ "name": "UserSelect",
2766
+ "related": {
2767
+ "decisions": [
2768
+ "radio-vs-select-vs-checkbox"
2769
+ ],
2770
+ "foundations": [
2771
+ "color",
2772
+ "spacing",
2773
+ "z-index"
2774
+ ],
2775
+ "patterns": [
2776
+ "forms",
2777
+ "list-selection"
2778
+ ]
2779
+ },
2780
+ "source": {
2781
+ "componentPath": "packages/core/src/patterns/UserSelect/UserSelect.tsx",
2782
+ "exportName": "UserSelect",
2783
+ "package": "@idia-ui/core"
2784
+ },
2785
+ "storybook": {
2786
+ "status": "available",
2787
+ "title": "Patterns/UserSelect"
2788
+ },
2789
+ "type": "component"
2790
+ },
2791
+ {
2792
+ "brainPath": "components/weekly-time-range-picker.md",
2793
+ "docCompleteness": "usable",
2794
+ "figma": {
2795
+ "status": "unmapped"
2796
+ },
2797
+ "id": "weekly-time-range-picker",
2798
+ "lifecycle": "stable",
2799
+ "mappingSummary": {
2800
+ "partial": 4,
2801
+ "rich": 0,
2802
+ "total": 4,
2803
+ "unmapped": 0
2804
+ },
2805
+ "name": "WeeklyTimeRangePicker",
2806
+ "related": {
2807
+ "decisions": [],
2808
+ "foundations": [
2809
+ "color",
2810
+ "typography",
2811
+ "spacing"
2812
+ ],
2813
+ "patterns": [
2814
+ "forms",
2815
+ "calendar-scheduling"
2816
+ ]
2817
+ },
2818
+ "source": {
2819
+ "componentPath": "packages/core/src/components/WeeklyTimeRangePicker/WeeklyTimeRangePicker.tsx",
2820
+ "exportName": "WeeklyTimeRangePicker",
2821
+ "package": "@idia-ui/core"
2822
+ },
2823
+ "storybook": {
2824
+ "status": "available",
2825
+ "title": "Components/WeeklyTimeRangePicker"
2826
+ },
2827
+ "type": "component"
2828
+ },
2829
+ {
2830
+ "brainPath": "components/wizard-stepper.md",
2831
+ "docCompleteness": "usable",
2832
+ "figma": {
2833
+ "status": "unmapped"
2834
+ },
2835
+ "id": "wizard-stepper",
2836
+ "lifecycle": "stable",
2837
+ "mappingSummary": {
2838
+ "partial": 2,
2839
+ "rich": 0,
2840
+ "total": 2,
2841
+ "unmapped": 0
2842
+ },
2843
+ "name": "WizardStepper",
2844
+ "related": {
2845
+ "decisions": [],
2846
+ "foundations": [
2847
+ "color",
2848
+ "typography"
2849
+ ],
2850
+ "patterns": [
2851
+ "wizard-flows"
2852
+ ]
2853
+ },
2854
+ "source": {
2855
+ "componentPath": "packages/core/src/components/WizardStepper/WizardStepper.tsx",
2856
+ "exportName": "WizardStepper",
2857
+ "package": "@idia-ui/core"
2858
+ },
2859
+ "storybook": {
2860
+ "status": "available",
2861
+ "title": "Components/WizardStepper"
2862
+ },
2863
+ "type": "component"
2864
+ }
2865
+ ],
2866
+ "generated": true,
2867
+ "generator": "ds-brain-generate@0.1.0",
2868
+ "sourceHash": "sha256:90c5b56004a1de9fb30ffcc3d23e86040d605e609836953eaff5a105ed308366",
2869
+ "sources": [
2870
+ "ds-brain/components/accordion.md",
2871
+ "ds-brain/components/app-pressable.md",
2872
+ "ds-brain/components/avatar-upload.md",
2873
+ "ds-brain/components/avatar.md",
2874
+ "ds-brain/components/back-link.md",
2875
+ "ds-brain/components/badge.md",
2876
+ "ds-brain/components/button-group.md",
2877
+ "ds-brain/components/button.md",
2878
+ "ds-brain/components/calendar.md",
2879
+ "ds-brain/components/card-container.md",
2880
+ "ds-brain/components/card-list.md",
2881
+ "ds-brain/components/carousel.md",
2882
+ "ds-brain/components/catalog-browser.md",
2883
+ "ds-brain/components/checkbox.md",
2884
+ "ds-brain/components/chip.md",
2885
+ "ds-brain/components/close-button.md",
2886
+ "ds-brain/components/code-block.md",
2887
+ "ds-brain/components/collapsible.md",
2888
+ "ds-brain/components/confirmation-modal.md",
2889
+ "ds-brain/components/custom-selection.md",
2890
+ "ds-brain/components/dashed-trigger-area.md",
2891
+ "ds-brain/components/data-row.md",
2892
+ "ds-brain/components/date-input.md",
2893
+ "ds-brain/components/date-range-input.md",
2894
+ "ds-brain/components/empty-records-mobile.md",
2895
+ "ds-brain/components/empty-state.md",
2896
+ "ds-brain/components/floating-action-bar.md",
2897
+ "ds-brain/components/form-element.md",
2898
+ "ds-brain/components/form-section.md",
2899
+ "ds-brain/components/full-page-loader.md",
2900
+ "ds-brain/components/highlight-text.md",
2901
+ "ds-brain/components/image-uploader.md",
2902
+ "ds-brain/components/input-address.md",
2903
+ "ds-brain/components/input-group.md",
2904
+ "ds-brain/components/input-with-dropdown.md",
2905
+ "ds-brain/components/input.md",
2906
+ "ds-brain/components/layout.md",
2907
+ "ds-brain/components/link.md",
2908
+ "ds-brain/components/list-menu-action.md",
2909
+ "ds-brain/components/list-menu.md",
2910
+ "ds-brain/components/list-simple.md",
2911
+ "ds-brain/components/location-select.md",
2912
+ "ds-brain/components/modal.md",
2913
+ "ds-brain/components/notification-banner.md",
2914
+ "ds-brain/components/notification-text.md",
2915
+ "ds-brain/components/overlay.md",
2916
+ "ds-brain/components/phone-number-input.md",
2917
+ "ds-brain/components/picker-sheet.md",
2918
+ "ds-brain/components/popover-wrapper.md",
2919
+ "ds-brain/components/radio.md",
2920
+ "ds-brain/components/record-card.md",
2921
+ "ds-brain/components/search-input.md",
2922
+ "ds-brain/components/segmented-selector.md",
2923
+ "ds-brain/components/select-currency.md",
2924
+ "ds-brain/components/select-custom.md",
2925
+ "ds-brain/components/select.md",
2926
+ "ds-brain/components/separator.md",
2927
+ "ds-brain/components/skeleton.md",
2928
+ "ds-brain/components/social-button.md",
2929
+ "ds-brain/components/spinner.md",
2930
+ "ds-brain/components/status-display.md",
2931
+ "ds-brain/components/sticky-on-scroll.md",
2932
+ "ds-brain/components/success-circle-check.md",
2933
+ "ds-brain/components/table.md",
2934
+ "ds-brain/components/tabs-simple.md",
2935
+ "ds-brain/components/tabs.md",
2936
+ "ds-brain/components/text-area.md",
2937
+ "ds-brain/components/text.md",
2938
+ "ds-brain/components/time-of-day-select.md",
2939
+ "ds-brain/components/toast.md",
2940
+ "ds-brain/components/toggle.md",
2941
+ "ds-brain/components/tooltip.md",
2942
+ "ds-brain/components/top-loading-bar.md",
2943
+ "ds-brain/components/user-select.md",
2944
+ "ds-brain/components/weekly-time-range-picker.md",
2945
+ "ds-brain/components/wizard-stepper.md"
2946
+ ]
2947
+ }