@design-ai/cli 4.56.0 → 4.57.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 (264) hide show
  1. package/.claude-plugin/plugin.json +109 -25
  2. package/CHANGELOG.md +36 -0
  3. package/README.ko.md +9 -26
  4. package/README.md +10 -23
  5. package/cli/bin/design-ai.mjs +1 -0
  6. package/cli/commands/help.mjs +7 -4
  7. package/cli/commands/index.mjs +292 -0
  8. package/cli/commands/learn-help.mjs +149 -0
  9. package/cli/commands/learn-print-profile.mjs +373 -0
  10. package/cli/commands/learn-print-restore.mjs +349 -0
  11. package/cli/commands/learn-print-signals.mjs +453 -0
  12. package/cli/commands/learn.mjs +60 -1281
  13. package/cli/commands/pack.mjs +7 -3
  14. package/cli/commands/prompt.mjs +7 -3
  15. package/cli/commands/search.mjs +94 -1
  16. package/cli/lib/dispatch.mjs +3 -0
  17. package/cli/lib/embedding-index.mjs +199 -0
  18. package/cli/lib/embedding-provider.mjs +121 -0
  19. package/cli/lib/embedding-rerank.mjs +52 -0
  20. package/cli/lib/learn-args.mjs +490 -0
  21. package/cli/lib/learn-backup.mjs +748 -0
  22. package/cli/lib/learn-curation.mjs +612 -0
  23. package/cli/lib/learn-eval.mjs +459 -0
  24. package/cli/lib/learn-profile.mjs +763 -0
  25. package/cli/lib/learn-select.mjs +223 -0
  26. package/cli/lib/learn-shared.mjs +158 -0
  27. package/cli/lib/learn-test-support.mjs +218 -0
  28. package/cli/lib/learn-usage.mjs +360 -0
  29. package/cli/lib/learn.mjs +83 -3694
  30. package/cli/lib/lexical.mjs +137 -0
  31. package/cli/lib/local-config.mjs +110 -0
  32. package/cli/lib/mcp-server.mjs +13 -3
  33. package/cli/lib/pack.mjs +31 -4
  34. package/cli/lib/prompt.mjs +42 -4
  35. package/cli/lib/recall.mjs +193 -0
  36. package/cli/lib/retrieval-index.mjs +0 -0
  37. package/cli/lib/search-ranked.mjs +170 -0
  38. package/cli/lib/search.mjs +11 -1
  39. package/cli/lib/signals-backlog-commands.mjs +673 -0
  40. package/cli/lib/signals-backlog.mjs +361 -0
  41. package/cli/lib/signals-eval.mjs +176 -0
  42. package/cli/lib/signals-readiness.mjs +247 -0
  43. package/cli/lib/signals-registry.mjs +377 -0
  44. package/cli/lib/signals-render.mjs +478 -0
  45. package/cli/lib/signals-shared.mjs +75 -0
  46. package/cli/lib/signals.mjs +16 -2337
  47. package/cli/lib/site-bundle-handoff-expected.mjs +173 -0
  48. package/cli/lib/site-bundle-handoff-runbook-action-summary.mjs +332 -0
  49. package/cli/lib/site-bundle-handoff-runbook-human-lines.mjs +167 -0
  50. package/cli/lib/site-bundle-handoff-runbook-maps.mjs +238 -0
  51. package/cli/lib/site-bundle-handoff-runbook-next-step.mjs +278 -0
  52. package/cli/lib/site-bundle-handoff-runbook.mjs +44 -931
  53. package/cli/lib/site-test-support.mjs +68 -0
  54. package/cli/lib/skill-proposals-apply-commands.mjs +135 -0
  55. package/cli/lib/skill-proposals-apply-contract.mjs +750 -0
  56. package/cli/lib/skill-proposals-apply-plan.mjs +118 -0
  57. package/cli/lib/skill-proposals-generate.mjs +298 -0
  58. package/cli/lib/skill-proposals-render.mjs +532 -0
  59. package/cli/lib/skill-proposals-review.mjs +262 -0
  60. package/cli/lib/skill-proposals.mjs +15 -2046
  61. package/cli/lib/workspace-args.mjs +83 -0
  62. package/cli/lib/workspace-git.mjs +169 -0
  63. package/cli/lib/workspace-learning.mjs +483 -0
  64. package/cli/lib/workspace-repo.mjs +139 -0
  65. package/cli/lib/workspace-report.mjs +283 -0
  66. package/cli/lib/workspace-test-support.mjs +99 -0
  67. package/cli/lib/workspace.mjs +30 -1056
  68. package/docs/AI-LEARNING-PHASE2.md +215 -0
  69. package/docs/DISTRIBUTION.ko.md +2 -2
  70. package/docs/DISTRIBUTION.md +2 -2
  71. package/docs/NEXT-SURFACE-DECISION.md +125 -0
  72. package/docs/PRODUCT-READINESS.md +3 -3
  73. package/docs/RELEASE-GATES.ko.md +35 -0
  74. package/docs/RELEASE-GATES.md +234 -0
  75. package/docs/ROADMAP.md +53 -8
  76. package/docs/external-status.md +6 -8
  77. package/docs/inspection-20260630.md +169 -0
  78. package/docs/integrations/design-ai-mcp-server.md +4 -4
  79. package/docs/reference/ant-design.md +413 -0
  80. package/docs/reference/awesome-design-md.md +439 -0
  81. package/docs/reference/mui.md +783 -0
  82. package/docs/reference/shadcn-ui.md +298 -0
  83. package/examples/component-accordion-actions.md +5 -5
  84. package/examples/component-accordion-details.md +5 -5
  85. package/examples/component-accordion-summary.md +5 -5
  86. package/examples/component-accordion.md +3 -3
  87. package/examples/component-affix.md +1 -1
  88. package/examples/component-alert-dialog.md +1 -1
  89. package/examples/component-alert-title.md +1 -1
  90. package/examples/component-alert.md +3 -3
  91. package/examples/component-anchor.md +1 -1
  92. package/examples/component-app-bar.md +1 -1
  93. package/examples/component-aspect-ratio.md +1 -1
  94. package/examples/component-auto-complete.md +2 -2
  95. package/examples/component-avatar-group.md +5 -5
  96. package/examples/component-avatar.md +3 -3
  97. package/examples/component-back-top.md +1 -1
  98. package/examples/component-backdrop.md +1 -1
  99. package/examples/component-badge.md +3 -3
  100. package/examples/component-border-beam.md +3 -3
  101. package/examples/component-bottom-navigation.md +1 -1
  102. package/examples/component-box.md +1 -1
  103. package/examples/component-breadcrumb.md +3 -3
  104. package/examples/component-button-base.md +3 -3
  105. package/examples/component-button-group.md +2 -2
  106. package/examples/component-button.md +3 -3
  107. package/examples/component-calendar.md +2 -2
  108. package/examples/component-card-actions.md +1 -1
  109. package/examples/component-card-content.md +1 -1
  110. package/examples/component-card-header.md +1 -1
  111. package/examples/component-card-media.md +1 -1
  112. package/examples/component-card.md +3 -3
  113. package/examples/component-carousel.md +2 -2
  114. package/examples/component-cascader.md +1 -1
  115. package/examples/component-chart.md +1 -1
  116. package/examples/component-checkbox.md +3 -3
  117. package/examples/component-click-away-listener.md +1 -1
  118. package/examples/component-code.md +1 -1
  119. package/examples/component-collapsible.md +1 -1
  120. package/examples/component-color-picker.md +1 -1
  121. package/examples/component-combobox.md +1 -1
  122. package/examples/component-command.md +1 -1
  123. package/examples/component-config-provider.md +3 -3
  124. package/examples/component-context-menu.md +1 -1
  125. package/examples/component-css-baseline.md +3 -3
  126. package/examples/component-date-picker.md +2 -2
  127. package/examples/component-descriptions.md +1 -1
  128. package/examples/component-dialog-actions.md +1 -1
  129. package/examples/component-dialog-content-text.md +1 -1
  130. package/examples/component-dialog-content.md +1 -1
  131. package/examples/component-dialog-title.md +1 -1
  132. package/examples/component-dialog.md +2 -2
  133. package/examples/component-divider.md +3 -3
  134. package/examples/component-drawer.md +3 -3
  135. package/examples/component-dropdown.md +3 -3
  136. package/examples/component-empty.md +2 -2
  137. package/examples/component-fade.md +1 -1
  138. package/examples/component-field.md +1 -1
  139. package/examples/component-filled-input.md +1 -1
  140. package/examples/component-flex.md +1 -1
  141. package/examples/component-float-button.md +2 -2
  142. package/examples/component-form-control-label.md +1 -1
  143. package/examples/component-form-control.md +1 -1
  144. package/examples/component-form-controls.md +1 -1
  145. package/examples/component-form-group.md +1 -1
  146. package/examples/component-form-helper-text.md +1 -1
  147. package/examples/component-form-label.md +1 -1
  148. package/examples/component-form.md +2 -2
  149. package/examples/component-grid.md +2 -2
  150. package/examples/component-grow.md +1 -1
  151. package/examples/component-hover-card.md +1 -1
  152. package/examples/component-icon-button.md +1 -1
  153. package/examples/component-icon.md +1 -1
  154. package/examples/component-image-list.md +1 -1
  155. package/examples/component-image.md +1 -1
  156. package/examples/component-input-adornment.md +1 -1
  157. package/examples/component-input-base.md +1 -1
  158. package/examples/component-input-number.md +1 -1
  159. package/examples/component-input-otp.md +2 -2
  160. package/examples/component-input.md +3 -3
  161. package/examples/component-item.md +1 -1
  162. package/examples/component-label.md +1 -1
  163. package/examples/component-layout.md +1 -1
  164. package/examples/component-link.md +1 -1
  165. package/examples/component-list-item-avatar.md +1 -1
  166. package/examples/component-list-item-button.md +1 -1
  167. package/examples/component-list-item-icon.md +1 -1
  168. package/examples/component-list-item-text.md +1 -1
  169. package/examples/component-list-item.md +1 -1
  170. package/examples/component-list-subheader.md +1 -1
  171. package/examples/component-list.md +2 -2
  172. package/examples/component-masonry.md +1 -1
  173. package/examples/component-mentions.md +1 -1
  174. package/examples/component-menu-item.md +1 -1
  175. package/examples/component-menu-list.md +1 -1
  176. package/examples/component-menu.md +1 -1
  177. package/examples/component-menubar.md +1 -1
  178. package/examples/component-message.md +1 -1
  179. package/examples/component-mobile-stepper.md +1 -1
  180. package/examples/component-modal.md +5 -5
  181. package/examples/component-navigation-menu.md +1 -1
  182. package/examples/component-notification.md +1 -1
  183. package/examples/component-outlined-input.md +1 -1
  184. package/examples/component-pagination.md +3 -3
  185. package/examples/component-paper.md +1 -1
  186. package/examples/component-popconfirm.md +1 -1
  187. package/examples/component-popover.md +3 -3
  188. package/examples/component-popper.md +1 -1
  189. package/examples/component-progress.md +2 -2
  190. package/examples/component-qr-code.md +1 -1
  191. package/examples/component-radio.md +3 -3
  192. package/examples/component-rate.md +2 -2
  193. package/examples/component-resizable.md +1 -1
  194. package/examples/component-result.md +1 -1
  195. package/examples/component-scroll-area.md +1 -1
  196. package/examples/component-segmented.md +3 -3
  197. package/examples/component-select.md +3 -3
  198. package/examples/component-separator.md +1 -1
  199. package/examples/component-sheet.md +1 -1
  200. package/examples/component-sidebar.md +1 -1
  201. package/examples/component-skeleton.md +3 -3
  202. package/examples/component-slide.md +1 -1
  203. package/examples/component-slider.md +3 -3
  204. package/examples/component-snackbar-content.md +1 -1
  205. package/examples/component-snackbar.md +1 -1
  206. package/examples/component-sonner.md +1 -1
  207. package/examples/component-space.md +1 -1
  208. package/examples/component-speed-dial-action.md +1 -1
  209. package/examples/component-speed-dial.md +1 -1
  210. package/examples/component-spin.md +2 -2
  211. package/examples/component-spinner.md +1 -1
  212. package/examples/component-splitter.md +2 -2
  213. package/examples/component-stack.md +1 -1
  214. package/examples/component-statistic.md +1 -1
  215. package/examples/component-step-button.md +4 -4
  216. package/examples/component-step-connector.md +4 -4
  217. package/examples/component-step-content.md +1 -1
  218. package/examples/component-step-icon.md +1 -1
  219. package/examples/component-step-label.md +1 -1
  220. package/examples/component-step.md +2 -2
  221. package/examples/component-steps.md +2 -2
  222. package/examples/component-swipeable-drawer.md +1 -1
  223. package/examples/component-switch.md +3 -3
  224. package/examples/component-tab-scroll-button.md +5 -5
  225. package/examples/component-tab.md +1 -1
  226. package/examples/component-table-body.md +1 -1
  227. package/examples/component-table-cell.md +1 -1
  228. package/examples/component-table-container.md +1 -1
  229. package/examples/component-table-footer.md +1 -1
  230. package/examples/component-table-head.md +1 -1
  231. package/examples/component-table-pagination.md +1 -1
  232. package/examples/component-table-row.md +1 -1
  233. package/examples/component-table-sort-label.md +1 -1
  234. package/examples/component-table.md +2 -2
  235. package/examples/component-tabs.md +3 -3
  236. package/examples/component-tag-badge.md +2 -2
  237. package/examples/component-tag.md +1 -1
  238. package/examples/component-textarea-autosize.md +1 -1
  239. package/examples/component-textarea.md +1 -1
  240. package/examples/component-time-picker.md +1 -1
  241. package/examples/component-timeline.md +1 -1
  242. package/examples/component-toast.md +4 -4
  243. package/examples/component-toggle-button.md +1 -1
  244. package/examples/component-toggle.md +1 -1
  245. package/examples/component-toolbar.md +1 -1
  246. package/examples/component-tooltip.md +3 -3
  247. package/examples/component-tour.md +1 -1
  248. package/examples/component-transfer.md +1 -1
  249. package/examples/component-tree-select.md +1 -1
  250. package/examples/component-tree.md +1 -1
  251. package/examples/component-typography.md +2 -2
  252. package/examples/component-upload.md +1 -1
  253. package/examples/component-watermark.md +1 -1
  254. package/examples/component-zoom.md +1 -1
  255. package/knowledge/COVERAGE.md +4 -3
  256. package/knowledge/components/INDEX.md +202 -202
  257. package/knowledge/patterns/brand-references.md +72 -72
  258. package/package.json +1 -1
  259. package/tools/audit/local-ci.py +16 -1
  260. package/tools/audit/package-smoke.py +611 -9
  261. package/tools/audit/registry-smoke.py +534 -0
  262. package/tools/audit/release-metadata.py +47 -1
  263. package/tools/audit/smoke_assertions.py +915 -13
  264. package/tools/migrations/refs-links-to-reference-pages.py +179 -0
@@ -0,0 +1,783 @@
1
+ <!-- generated: tools/extractors/reference_pages.py — do not edit by hand -->
2
+
3
+ # MUI (Material UI) source reference
4
+
5
+ Material Design React reference implementation.
6
+
7
+ Generated index of `refs/mui/` sources cited by the knowledge corpus. The local mirror is gitignored; every entry below links to the same path in the upstream repository.
8
+
9
+ - Upstream: [mui/material-ui](https://github.com/mui/material-ui)
10
+ - License: see the upstream repository's license file
11
+ - Local mirror: `refs/mui/` (refresh with `./tools/extractors/run-all.sh`)
12
+
13
+ Entries: 154
14
+
15
+ ## accordion
16
+
17
+ - Upstream: [`packages/mui-material/src/Accordion`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Accordion)
18
+ - Local mirror: `refs/mui/packages/mui-material/src/Accordion/`
19
+
20
+ ## accordion-actions
21
+
22
+ - Upstream: [`packages/mui-material/src/AccordionActions`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/AccordionActions)
23
+ - Local mirror: `refs/mui/packages/mui-material/src/AccordionActions/`
24
+
25
+ ## accordion-details
26
+
27
+ - Upstream: [`packages/mui-material/src/AccordionDetails`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/AccordionDetails)
28
+ - Local mirror: `refs/mui/packages/mui-material/src/AccordionDetails/`
29
+
30
+ ## accordion-summary
31
+
32
+ - Upstream: [`packages/mui-material/src/AccordionSummary`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/AccordionSummary)
33
+ - Local mirror: `refs/mui/packages/mui-material/src/AccordionSummary/`
34
+
35
+ ## alert
36
+
37
+ - Upstream: [`packages/mui-material/src/Alert`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Alert)
38
+ - Local mirror: `refs/mui/packages/mui-material/src/Alert/`
39
+
40
+ ## alert-title
41
+
42
+ - Upstream: [`packages/mui-material/src/AlertTitle`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/AlertTitle)
43
+ - Local mirror: `refs/mui/packages/mui-material/src/AlertTitle/`
44
+
45
+ ## app-bar
46
+
47
+ - Upstream: [`packages/mui-material/src/AppBar`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/AppBar)
48
+ - Local mirror: `refs/mui/packages/mui-material/src/AppBar/`
49
+
50
+ ## autocomplete
51
+
52
+ - Upstream: [`packages/mui-material/src/Autocomplete`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Autocomplete)
53
+ - Local mirror: `refs/mui/packages/mui-material/src/Autocomplete/`
54
+
55
+ ## avatar
56
+
57
+ - Upstream: [`packages/mui-material/src/Avatar`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Avatar)
58
+ - Local mirror: `refs/mui/packages/mui-material/src/Avatar/`
59
+
60
+ ## avatar-group
61
+
62
+ - Upstream: [`packages/mui-material/src/AvatarGroup`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/AvatarGroup)
63
+ - Local mirror: `refs/mui/packages/mui-material/src/AvatarGroup/`
64
+
65
+ ## backdrop
66
+
67
+ - Upstream: [`packages/mui-material/src/Backdrop`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Backdrop)
68
+ - Local mirror: `refs/mui/packages/mui-material/src/Backdrop/`
69
+
70
+ ## badge
71
+
72
+ - Upstream: [`packages/mui-material/src/Badge`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Badge)
73
+ - Local mirror: `refs/mui/packages/mui-material/src/Badge/`
74
+
75
+ ## bottom-navigation
76
+
77
+ - Upstream: [`packages/mui-material/src/BottomNavigation`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/BottomNavigation)
78
+ - Local mirror: `refs/mui/packages/mui-material/src/BottomNavigation/`
79
+
80
+ ## bottom-navigation-action
81
+
82
+ - Upstream: [`packages/mui-material/src/BottomNavigationAction`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/BottomNavigationAction)
83
+ - Local mirror: `refs/mui/packages/mui-material/src/BottomNavigationAction/`
84
+
85
+ ## box
86
+
87
+ - Upstream: [`packages/mui-material/src/Box`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Box)
88
+ - Local mirror: `refs/mui/packages/mui-material/src/Box/`
89
+
90
+ ## breadcrumbs
91
+
92
+ - Upstream: [`packages/mui-material/src/Breadcrumbs`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Breadcrumbs)
93
+ - Local mirror: `refs/mui/packages/mui-material/src/Breadcrumbs/`
94
+
95
+ ## button
96
+
97
+ - Upstream: [`packages/mui-material/src/Button`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Button)
98
+ - Local mirror: `refs/mui/packages/mui-material/src/Button/`
99
+
100
+ ## button-base
101
+
102
+ - Upstream: [`packages/mui-material/src/ButtonBase`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ButtonBase)
103
+ - Local mirror: `refs/mui/packages/mui-material/src/ButtonBase/`
104
+
105
+ ## button-group
106
+
107
+ - Upstream: [`packages/mui-material/src/ButtonGroup`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ButtonGroup)
108
+ - Local mirror: `refs/mui/packages/mui-material/src/ButtonGroup/`
109
+
110
+ ## card
111
+
112
+ - Upstream: [`packages/mui-material/src/Card`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Card)
113
+ - Local mirror: `refs/mui/packages/mui-material/src/Card/`
114
+
115
+ ## card-action-area
116
+
117
+ - Upstream: [`packages/mui-material/src/CardActionArea`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/CardActionArea)
118
+ - Local mirror: `refs/mui/packages/mui-material/src/CardActionArea/`
119
+
120
+ ## card-actions
121
+
122
+ - Upstream: [`packages/mui-material/src/CardActions`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/CardActions)
123
+ - Local mirror: `refs/mui/packages/mui-material/src/CardActions/`
124
+
125
+ ## card-content
126
+
127
+ - Upstream: [`packages/mui-material/src/CardContent`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/CardContent)
128
+ - Local mirror: `refs/mui/packages/mui-material/src/CardContent/`
129
+
130
+ ## card-header
131
+
132
+ - Upstream: [`packages/mui-material/src/CardHeader`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/CardHeader)
133
+ - Local mirror: `refs/mui/packages/mui-material/src/CardHeader/`
134
+
135
+ ## card-media
136
+
137
+ - Upstream: [`packages/mui-material/src/CardMedia`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/CardMedia)
138
+ - Local mirror: `refs/mui/packages/mui-material/src/CardMedia/`
139
+
140
+ ## checkbox
141
+
142
+ - Upstream: [`packages/mui-material/src/Checkbox`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Checkbox)
143
+ - Local mirror: `refs/mui/packages/mui-material/src/Checkbox/`
144
+
145
+ ## chip
146
+
147
+ - Upstream: [`packages/mui-material/src/Chip`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Chip)
148
+ - Local mirror: `refs/mui/packages/mui-material/src/Chip/`
149
+
150
+ ## circular-progress
151
+
152
+ - Upstream: [`packages/mui-material/src/CircularProgress`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/CircularProgress)
153
+ - Local mirror: `refs/mui/packages/mui-material/src/CircularProgress/`
154
+
155
+ ## click-away-listener
156
+
157
+ - Upstream: [`packages/mui-material/src/ClickAwayListener`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ClickAwayListener)
158
+ - Local mirror: `refs/mui/packages/mui-material/src/ClickAwayListener/`
159
+
160
+ ## collapse
161
+
162
+ - Upstream: [`packages/mui-material/src/Collapse`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Collapse)
163
+ - Local mirror: `refs/mui/packages/mui-material/src/Collapse/`
164
+
165
+ ## container
166
+
167
+ - Upstream: [`packages/mui-material/src/Container`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Container)
168
+ - Local mirror: `refs/mui/packages/mui-material/src/Container/`
169
+
170
+ ## css-baseline
171
+
172
+ - Upstream: [`packages/mui-material/src/CssBaseline`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/CssBaseline)
173
+ - Local mirror: `refs/mui/packages/mui-material/src/CssBaseline/`
174
+
175
+ ## default-props-provider
176
+
177
+ - Upstream: [`packages/mui-material/src/DefaultPropsProvider`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/DefaultPropsProvider)
178
+ - Local mirror: `refs/mui/packages/mui-material/src/DefaultPropsProvider/`
179
+
180
+ ## dialog
181
+
182
+ - Upstream: [`packages/mui-material/src/Dialog`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Dialog)
183
+ - Local mirror: `refs/mui/packages/mui-material/src/Dialog/`
184
+
185
+ ## dialog-actions
186
+
187
+ - Upstream: [`packages/mui-material/src/DialogActions`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/DialogActions)
188
+ - Local mirror: `refs/mui/packages/mui-material/src/DialogActions/`
189
+
190
+ ## dialog-content
191
+
192
+ - Upstream: [`packages/mui-material/src/DialogContent`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/DialogContent)
193
+ - Local mirror: `refs/mui/packages/mui-material/src/DialogContent/`
194
+
195
+ ## dialog-content-text
196
+
197
+ - Upstream: [`packages/mui-material/src/DialogContentText`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/DialogContentText)
198
+ - Local mirror: `refs/mui/packages/mui-material/src/DialogContentText/`
199
+
200
+ ## dialog-title
201
+
202
+ - Upstream: [`packages/mui-material/src/DialogTitle`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/DialogTitle)
203
+ - Local mirror: `refs/mui/packages/mui-material/src/DialogTitle/`
204
+
205
+ ## divider
206
+
207
+ - Upstream: [`packages/mui-material/src/Divider`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Divider)
208
+ - Local mirror: `refs/mui/packages/mui-material/src/Divider/`
209
+
210
+ ## drawer
211
+
212
+ - Upstream: [`packages/mui-material/src/Drawer`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Drawer)
213
+ - Local mirror: `refs/mui/packages/mui-material/src/Drawer/`
214
+
215
+ ## fab
216
+
217
+ - Upstream: [`packages/mui-material/src/Fab`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Fab)
218
+ - Local mirror: `refs/mui/packages/mui-material/src/Fab/`
219
+
220
+ ## fade
221
+
222
+ - Upstream: [`packages/mui-material/src/Fade`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Fade)
223
+ - Local mirror: `refs/mui/packages/mui-material/src/Fade/`
224
+
225
+ ## filled-input
226
+
227
+ - Upstream: [`packages/mui-material/src/FilledInput`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/FilledInput)
228
+ - Local mirror: `refs/mui/packages/mui-material/src/FilledInput/`
229
+
230
+ ## form-control
231
+
232
+ - Upstream: [`packages/mui-material/src/FormControl`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/FormControl)
233
+ - Local mirror: `refs/mui/packages/mui-material/src/FormControl/`
234
+
235
+ ## form-control-label
236
+
237
+ - Upstream: [`packages/mui-material/src/FormControlLabel`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/FormControlLabel)
238
+ - Local mirror: `refs/mui/packages/mui-material/src/FormControlLabel/`
239
+
240
+ ## form-group
241
+
242
+ - Upstream: [`packages/mui-material/src/FormGroup`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/FormGroup)
243
+ - Local mirror: `refs/mui/packages/mui-material/src/FormGroup/`
244
+
245
+ ## form-helper-text
246
+
247
+ - Upstream: [`packages/mui-material/src/FormHelperText`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/FormHelperText)
248
+ - Local mirror: `refs/mui/packages/mui-material/src/FormHelperText/`
249
+
250
+ ## form-label
251
+
252
+ - Upstream: [`packages/mui-material/src/FormLabel`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/FormLabel)
253
+ - Local mirror: `refs/mui/packages/mui-material/src/FormLabel/`
254
+
255
+ ## global-styles
256
+
257
+ - Upstream: [`packages/mui-material/src/GlobalStyles`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/GlobalStyles)
258
+ - Local mirror: `refs/mui/packages/mui-material/src/GlobalStyles/`
259
+
260
+ ## grid
261
+
262
+ - Upstream: [`packages/mui-material/src/Grid`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Grid)
263
+ - Local mirror: `refs/mui/packages/mui-material/src/Grid/`
264
+
265
+ ## grow
266
+
267
+ - Upstream: [`packages/mui-material/src/Grow`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Grow)
268
+ - Local mirror: `refs/mui/packages/mui-material/src/Grow/`
269
+
270
+ ## icon
271
+
272
+ - Upstream: [`packages/mui-material/src/Icon`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Icon)
273
+ - Local mirror: `refs/mui/packages/mui-material/src/Icon/`
274
+
275
+ ## icon-button
276
+
277
+ - Upstream: [`packages/mui-material/src/IconButton`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/IconButton)
278
+ - Local mirror: `refs/mui/packages/mui-material/src/IconButton/`
279
+
280
+ ## image-list
281
+
282
+ - Upstream: [`packages/mui-material/src/ImageList`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ImageList)
283
+ - Local mirror: `refs/mui/packages/mui-material/src/ImageList/`
284
+
285
+ ## image-list-item
286
+
287
+ - Upstream: [`packages/mui-material/src/ImageListItem`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ImageListItem)
288
+ - Local mirror: `refs/mui/packages/mui-material/src/ImageListItem/`
289
+
290
+ ## image-list-item-bar
291
+
292
+ - Upstream: [`packages/mui-material/src/ImageListItemBar`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ImageListItemBar)
293
+ - Local mirror: `refs/mui/packages/mui-material/src/ImageListItemBar/`
294
+
295
+ ## init-color-scheme-script
296
+
297
+ - Upstream: [`packages/mui-material/src/InitColorSchemeScript`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/InitColorSchemeScript)
298
+ - Local mirror: `refs/mui/packages/mui-material/src/InitColorSchemeScript/`
299
+
300
+ ## input
301
+
302
+ - Upstream: [`packages/mui-material/src/Input`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Input)
303
+ - Local mirror: `refs/mui/packages/mui-material/src/Input/`
304
+
305
+ ## input-adornment
306
+
307
+ - Upstream: [`packages/mui-material/src/InputAdornment`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/InputAdornment)
308
+ - Local mirror: `refs/mui/packages/mui-material/src/InputAdornment/`
309
+
310
+ ## input-base
311
+
312
+ - Upstream: [`packages/mui-material/src/InputBase`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/InputBase)
313
+ - Local mirror: `refs/mui/packages/mui-material/src/InputBase/`
314
+
315
+ ## input-label
316
+
317
+ - Upstream: [`packages/mui-material/src/InputLabel`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/InputLabel)
318
+ - Local mirror: `refs/mui/packages/mui-material/src/InputLabel/`
319
+
320
+ ## linear-progress
321
+
322
+ - Upstream: [`packages/mui-material/src/LinearProgress`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/LinearProgress)
323
+ - Local mirror: `refs/mui/packages/mui-material/src/LinearProgress/`
324
+
325
+ ## link
326
+
327
+ - Upstream: [`packages/mui-material/src/Link`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Link)
328
+ - Local mirror: `refs/mui/packages/mui-material/src/Link/`
329
+
330
+ ## list
331
+
332
+ - Upstream: [`packages/mui-material/src/List`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/List)
333
+ - Local mirror: `refs/mui/packages/mui-material/src/List/`
334
+
335
+ ## list-item
336
+
337
+ - Upstream: [`packages/mui-material/src/ListItem`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ListItem)
338
+ - Local mirror: `refs/mui/packages/mui-material/src/ListItem/`
339
+
340
+ ## list-item-avatar
341
+
342
+ - Upstream: [`packages/mui-material/src/ListItemAvatar`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ListItemAvatar)
343
+ - Local mirror: `refs/mui/packages/mui-material/src/ListItemAvatar/`
344
+
345
+ ## list-item-button
346
+
347
+ - Upstream: [`packages/mui-material/src/ListItemButton`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ListItemButton)
348
+ - Local mirror: `refs/mui/packages/mui-material/src/ListItemButton/`
349
+
350
+ ## list-item-icon
351
+
352
+ - Upstream: [`packages/mui-material/src/ListItemIcon`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ListItemIcon)
353
+ - Local mirror: `refs/mui/packages/mui-material/src/ListItemIcon/`
354
+
355
+ ## list-item-secondary-action
356
+
357
+ - Upstream: [`packages/mui-material/src/ListItemSecondaryAction`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ListItemSecondaryAction)
358
+ - Local mirror: `refs/mui/packages/mui-material/src/ListItemSecondaryAction/`
359
+
360
+ ## list-item-text
361
+
362
+ - Upstream: [`packages/mui-material/src/ListItemText`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ListItemText)
363
+ - Local mirror: `refs/mui/packages/mui-material/src/ListItemText/`
364
+
365
+ ## list-subheader
366
+
367
+ - Upstream: [`packages/mui-material/src/ListSubheader`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ListSubheader)
368
+ - Local mirror: `refs/mui/packages/mui-material/src/ListSubheader/`
369
+
370
+ ## menu
371
+
372
+ - Upstream: [`packages/mui-material/src/Menu`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Menu)
373
+ - Local mirror: `refs/mui/packages/mui-material/src/Menu/`
374
+
375
+ ## menu-item
376
+
377
+ - Upstream: [`packages/mui-material/src/MenuItem`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/MenuItem)
378
+ - Local mirror: `refs/mui/packages/mui-material/src/MenuItem/`
379
+
380
+ ## menu-list
381
+
382
+ - Upstream: [`packages/mui-material/src/MenuList`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/MenuList)
383
+ - Local mirror: `refs/mui/packages/mui-material/src/MenuList/`
384
+
385
+ ## mobile-stepper
386
+
387
+ - Upstream: [`packages/mui-material/src/MobileStepper`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/MobileStepper)
388
+ - Local mirror: `refs/mui/packages/mui-material/src/MobileStepper/`
389
+
390
+ ## modal
391
+
392
+ - Upstream: [`packages/mui-material/src/Modal`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Modal)
393
+ - Local mirror: `refs/mui/packages/mui-material/src/Modal/`
394
+
395
+ ## native-select
396
+
397
+ - Upstream: [`packages/mui-material/src/NativeSelect`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/NativeSelect)
398
+ - Local mirror: `refs/mui/packages/mui-material/src/NativeSelect/`
399
+
400
+ ## no-ssr
401
+
402
+ - Upstream: [`packages/mui-material/src/NoSsr`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/NoSsr)
403
+ - Local mirror: `refs/mui/packages/mui-material/src/NoSsr/`
404
+
405
+ ## outlined-input
406
+
407
+ - Upstream: [`packages/mui-material/src/OutlinedInput`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/OutlinedInput)
408
+ - Local mirror: `refs/mui/packages/mui-material/src/OutlinedInput/`
409
+
410
+ ## overridable-component
411
+
412
+ - Upstream: [`packages/mui-material/src/OverridableComponent`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/OverridableComponent)
413
+ - Local mirror: `refs/mui/packages/mui-material/src/OverridableComponent/`
414
+
415
+ ## pagination
416
+
417
+ - Upstream: [`packages/mui-material/src/Pagination`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Pagination)
418
+ - Local mirror: `refs/mui/packages/mui-material/src/Pagination/`
419
+
420
+ ## pagination-item
421
+
422
+ - Upstream: [`packages/mui-material/src/PaginationItem`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/PaginationItem)
423
+ - Local mirror: `refs/mui/packages/mui-material/src/PaginationItem/`
424
+
425
+ ## paper
426
+
427
+ - Upstream: [`packages/mui-material/src/Paper`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Paper)
428
+ - Local mirror: `refs/mui/packages/mui-material/src/Paper/`
429
+
430
+ ## pigment-container
431
+
432
+ - Upstream: [`packages/mui-material/src/PigmentContainer`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/PigmentContainer)
433
+ - Local mirror: `refs/mui/packages/mui-material/src/PigmentContainer/`
434
+
435
+ ## pigment-grid
436
+
437
+ - Upstream: [`packages/mui-material/src/PigmentGrid`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/PigmentGrid)
438
+ - Local mirror: `refs/mui/packages/mui-material/src/PigmentGrid/`
439
+
440
+ ## pigment-stack
441
+
442
+ - Upstream: [`packages/mui-material/src/PigmentStack`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/PigmentStack)
443
+ - Local mirror: `refs/mui/packages/mui-material/src/PigmentStack/`
444
+
445
+ ## popover
446
+
447
+ - Upstream: [`packages/mui-material/src/Popover`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Popover)
448
+ - Local mirror: `refs/mui/packages/mui-material/src/Popover/`
449
+
450
+ ## popper
451
+
452
+ - Upstream: [`packages/mui-material/src/Popper`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Popper)
453
+ - Local mirror: `refs/mui/packages/mui-material/src/Popper/`
454
+
455
+ ## portal
456
+
457
+ - Upstream: [`packages/mui-material/src/Portal`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Portal)
458
+ - Local mirror: `refs/mui/packages/mui-material/src/Portal/`
459
+
460
+ ## radio
461
+
462
+ - Upstream: [`packages/mui-material/src/Radio`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Radio)
463
+ - Local mirror: `refs/mui/packages/mui-material/src/Radio/`
464
+
465
+ ## radio-group
466
+
467
+ - Upstream: [`packages/mui-material/src/RadioGroup`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/RadioGroup)
468
+ - Local mirror: `refs/mui/packages/mui-material/src/RadioGroup/`
469
+
470
+ ## rating
471
+
472
+ - Upstream: [`packages/mui-material/src/Rating`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Rating)
473
+ - Local mirror: `refs/mui/packages/mui-material/src/Rating/`
474
+
475
+ ## scoped-css-baseline
476
+
477
+ - Upstream: [`packages/mui-material/src/ScopedCssBaseline`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ScopedCssBaseline)
478
+ - Local mirror: `refs/mui/packages/mui-material/src/ScopedCssBaseline/`
479
+
480
+ ## select
481
+
482
+ - Upstream: [`packages/mui-material/src/Select`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Select)
483
+ - Local mirror: `refs/mui/packages/mui-material/src/Select/`
484
+
485
+ ## skeleton
486
+
487
+ - Upstream: [`packages/mui-material/src/Skeleton`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Skeleton)
488
+ - Local mirror: `refs/mui/packages/mui-material/src/Skeleton/`
489
+
490
+ ## slide
491
+
492
+ - Upstream: [`packages/mui-material/src/Slide`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Slide)
493
+ - Local mirror: `refs/mui/packages/mui-material/src/Slide/`
494
+
495
+ ## slider
496
+
497
+ - Upstream: [`packages/mui-material/src/Slider`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Slider)
498
+ - Local mirror: `refs/mui/packages/mui-material/src/Slider/`
499
+
500
+ ## snackbar
501
+
502
+ - Upstream: [`packages/mui-material/src/Snackbar`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Snackbar)
503
+ - Local mirror: `refs/mui/packages/mui-material/src/Snackbar/`
504
+
505
+ ## snackbar-content
506
+
507
+ - Upstream: [`packages/mui-material/src/SnackbarContent`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/SnackbarContent)
508
+ - Local mirror: `refs/mui/packages/mui-material/src/SnackbarContent/`
509
+
510
+ ## speed-dial
511
+
512
+ - Upstream: [`packages/mui-material/src/SpeedDial`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/SpeedDial)
513
+ - Local mirror: `refs/mui/packages/mui-material/src/SpeedDial/`
514
+
515
+ ## speed-dial-action
516
+
517
+ - Upstream: [`packages/mui-material/src/SpeedDialAction`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/SpeedDialAction)
518
+ - Local mirror: `refs/mui/packages/mui-material/src/SpeedDialAction/`
519
+
520
+ ## speed-dial-icon
521
+
522
+ - Upstream: [`packages/mui-material/src/SpeedDialIcon`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/SpeedDialIcon)
523
+ - Local mirror: `refs/mui/packages/mui-material/src/SpeedDialIcon/`
524
+
525
+ ## stack
526
+
527
+ - Upstream: [`packages/mui-material/src/Stack`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Stack)
528
+ - Local mirror: `refs/mui/packages/mui-material/src/Stack/`
529
+
530
+ ## step
531
+
532
+ - Upstream: [`packages/mui-material/src/Step`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Step)
533
+ - Local mirror: `refs/mui/packages/mui-material/src/Step/`
534
+
535
+ ## step-button
536
+
537
+ - Upstream: [`packages/mui-material/src/StepButton`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/StepButton)
538
+ - Local mirror: `refs/mui/packages/mui-material/src/StepButton/`
539
+
540
+ ## step-connector
541
+
542
+ - Upstream: [`packages/mui-material/src/StepConnector`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/StepConnector)
543
+ - Local mirror: `refs/mui/packages/mui-material/src/StepConnector/`
544
+
545
+ ## step-content
546
+
547
+ - Upstream: [`packages/mui-material/src/StepContent`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/StepContent)
548
+ - Local mirror: `refs/mui/packages/mui-material/src/StepContent/`
549
+
550
+ ## step-icon
551
+
552
+ - Upstream: [`packages/mui-material/src/StepIcon`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/StepIcon)
553
+ - Local mirror: `refs/mui/packages/mui-material/src/StepIcon/`
554
+
555
+ ## step-label
556
+
557
+ - Upstream: [`packages/mui-material/src/StepLabel`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/StepLabel)
558
+ - Local mirror: `refs/mui/packages/mui-material/src/StepLabel/`
559
+
560
+ ## stepper
561
+
562
+ - Upstream: [`packages/mui-material/src/Stepper`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Stepper)
563
+ - Local mirror: `refs/mui/packages/mui-material/src/Stepper/`
564
+
565
+ ## svg-icon
566
+
567
+ - Upstream: [`packages/mui-material/src/SvgIcon`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/SvgIcon)
568
+ - Local mirror: `refs/mui/packages/mui-material/src/SvgIcon/`
569
+
570
+ ## swipeable-drawer
571
+
572
+ - Upstream: [`packages/mui-material/src/SwipeableDrawer`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/SwipeableDrawer)
573
+ - Local mirror: `refs/mui/packages/mui-material/src/SwipeableDrawer/`
574
+
575
+ ## switch
576
+
577
+ - Upstream: [`packages/mui-material/src/Switch`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Switch)
578
+ - Local mirror: `refs/mui/packages/mui-material/src/Switch/`
579
+
580
+ ## tab
581
+
582
+ - Upstream: [`packages/mui-material/src/Tab`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Tab)
583
+ - Local mirror: `refs/mui/packages/mui-material/src/Tab/`
584
+
585
+ ## tab-scroll-button
586
+
587
+ - Upstream: [`packages/mui-material/src/TabScrollButton`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TabScrollButton)
588
+ - Local mirror: `refs/mui/packages/mui-material/src/TabScrollButton/`
589
+
590
+ ## table
591
+
592
+ - Upstream: [`packages/mui-material/src/Table`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Table)
593
+ - Local mirror: `refs/mui/packages/mui-material/src/Table/`
594
+
595
+ ## table-body
596
+
597
+ - Upstream: [`packages/mui-material/src/TableBody`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TableBody)
598
+ - Local mirror: `refs/mui/packages/mui-material/src/TableBody/`
599
+
600
+ ## table-cell
601
+
602
+ - Upstream: [`packages/mui-material/src/TableCell`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TableCell)
603
+ - Local mirror: `refs/mui/packages/mui-material/src/TableCell/`
604
+
605
+ ## table-container
606
+
607
+ - Upstream: [`packages/mui-material/src/TableContainer`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TableContainer)
608
+ - Local mirror: `refs/mui/packages/mui-material/src/TableContainer/`
609
+
610
+ ## table-footer
611
+
612
+ - Upstream: [`packages/mui-material/src/TableFooter`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TableFooter)
613
+ - Local mirror: `refs/mui/packages/mui-material/src/TableFooter/`
614
+
615
+ ## table-head
616
+
617
+ - Upstream: [`packages/mui-material/src/TableHead`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TableHead)
618
+ - Local mirror: `refs/mui/packages/mui-material/src/TableHead/`
619
+
620
+ ## table-pagination
621
+
622
+ - Upstream: [`packages/mui-material/src/TablePagination`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TablePagination)
623
+ - Local mirror: `refs/mui/packages/mui-material/src/TablePagination/`
624
+
625
+ ## table-pagination-actions
626
+
627
+ - Upstream: [`packages/mui-material/src/TablePaginationActions`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TablePaginationActions)
628
+ - Local mirror: `refs/mui/packages/mui-material/src/TablePaginationActions/`
629
+
630
+ ## table-row
631
+
632
+ - Upstream: [`packages/mui-material/src/TableRow`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TableRow)
633
+ - Local mirror: `refs/mui/packages/mui-material/src/TableRow/`
634
+
635
+ ## table-sort-label
636
+
637
+ - Upstream: [`packages/mui-material/src/TableSortLabel`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TableSortLabel)
638
+ - Local mirror: `refs/mui/packages/mui-material/src/TableSortLabel/`
639
+
640
+ ## tabs
641
+
642
+ - Upstream: [`packages/mui-material/src/Tabs`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Tabs)
643
+ - Local mirror: `refs/mui/packages/mui-material/src/Tabs/`
644
+
645
+ ## text-field
646
+
647
+ - Upstream: [`packages/mui-material/src/TextField`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TextField)
648
+ - Local mirror: `refs/mui/packages/mui-material/src/TextField/`
649
+
650
+ ## textarea-autosize
651
+
652
+ - Upstream: [`packages/mui-material/src/TextareaAutosize`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/TextareaAutosize)
653
+ - Local mirror: `refs/mui/packages/mui-material/src/TextareaAutosize/`
654
+
655
+ ## toggle-button
656
+
657
+ - Upstream: [`packages/mui-material/src/ToggleButton`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ToggleButton)
658
+ - Local mirror: `refs/mui/packages/mui-material/src/ToggleButton/`
659
+
660
+ ## toggle-button-group
661
+
662
+ - Upstream: [`packages/mui-material/src/ToggleButtonGroup`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/ToggleButtonGroup)
663
+ - Local mirror: `refs/mui/packages/mui-material/src/ToggleButtonGroup/`
664
+
665
+ ## toolbar
666
+
667
+ - Upstream: [`packages/mui-material/src/Toolbar`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Toolbar)
668
+ - Local mirror: `refs/mui/packages/mui-material/src/Toolbar/`
669
+
670
+ ## tooltip
671
+
672
+ - Upstream: [`packages/mui-material/src/Tooltip`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Tooltip)
673
+ - Local mirror: `refs/mui/packages/mui-material/src/Tooltip/`
674
+
675
+ ## typography
676
+
677
+ - Upstream: [`packages/mui-material/src/Typography`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Typography)
678
+ - Local mirror: `refs/mui/packages/mui-material/src/Typography/`
679
+
680
+ ## unstable_-trap-focus
681
+
682
+ - Upstream: [`packages/mui-material/src/Unstable_TrapFocus`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Unstable_TrapFocus)
683
+ - Local mirror: `refs/mui/packages/mui-material/src/Unstable_TrapFocus/`
684
+
685
+ ## zoom
686
+
687
+ - Upstream: [`packages/mui-material/src/Zoom`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/Zoom)
688
+ - Local mirror: `refs/mui/packages/mui-material/src/Zoom/`
689
+
690
+ ## class-name
691
+
692
+ - Upstream: [`packages/mui-material/src/className`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/className)
693
+ - Local mirror: `refs/mui/packages/mui-material/src/className/`
694
+
695
+ ## colors
696
+
697
+ - Upstream: [`packages/mui-material/src/colors`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/colors)
698
+ - Local mirror: `refs/mui/packages/mui-material/src/colors/`
699
+
700
+ ## dark-scrollbar
701
+
702
+ - Upstream: [`packages/mui-material/src/darkScrollbar`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/darkScrollbar)
703
+ - Local mirror: `refs/mui/packages/mui-material/src/darkScrollbar/`
704
+
705
+ ## generate-utility-class
706
+
707
+ - Upstream: [`packages/mui-material/src/generateUtilityClass`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/generateUtilityClass)
708
+ - Local mirror: `refs/mui/packages/mui-material/src/generateUtilityClass/`
709
+
710
+ ## generate-utility-classes
711
+
712
+ - Upstream: [`packages/mui-material/src/generateUtilityClasses`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/generateUtilityClasses)
713
+ - Local mirror: `refs/mui/packages/mui-material/src/generateUtilityClasses/`
714
+
715
+ ## internal
716
+
717
+ - Upstream: [`packages/mui-material/src/internal`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/internal)
718
+ - Local mirror: `refs/mui/packages/mui-material/src/internal/`
719
+
720
+ ## locale
721
+
722
+ - Upstream: [`packages/mui-material/src/locale`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/locale)
723
+ - Local mirror: `refs/mui/packages/mui-material/src/locale/`
724
+
725
+ ## styles
726
+
727
+ - Upstream: [`packages/mui-material/src/styles`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/styles)
728
+ - Local mirror: `refs/mui/packages/mui-material/src/styles/`
729
+
730
+ ## theme-css-vars-augmentation
731
+
732
+ - Upstream: [`packages/mui-material/src/themeCssVarsAugmentation`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/themeCssVarsAugmentation)
733
+ - Local mirror: `refs/mui/packages/mui-material/src/themeCssVarsAugmentation/`
734
+
735
+ ## transitions
736
+
737
+ - Upstream: [`packages/mui-material/src/transitions`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/transitions)
738
+ - Local mirror: `refs/mui/packages/mui-material/src/transitions/`
739
+
740
+ ## types
741
+
742
+ - Upstream: [`packages/mui-material/src/types`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/types)
743
+ - Local mirror: `refs/mui/packages/mui-material/src/types/`
744
+
745
+ ## use-autocomplete
746
+
747
+ - Upstream: [`packages/mui-material/src/useAutocomplete`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/useAutocomplete)
748
+ - Local mirror: `refs/mui/packages/mui-material/src/useAutocomplete/`
749
+
750
+ ## use-lazy-ripple
751
+
752
+ - Upstream: [`packages/mui-material/src/useLazyRipple`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/useLazyRipple)
753
+ - Local mirror: `refs/mui/packages/mui-material/src/useLazyRipple/`
754
+
755
+ ## use-media-query
756
+
757
+ - Upstream: [`packages/mui-material/src/useMediaQuery`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/useMediaQuery)
758
+ - Local mirror: `refs/mui/packages/mui-material/src/useMediaQuery/`
759
+
760
+ ## use-pagination
761
+
762
+ - Upstream: [`packages/mui-material/src/usePagination`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/usePagination)
763
+ - Local mirror: `refs/mui/packages/mui-material/src/usePagination/`
764
+
765
+ ## use-scroll-trigger
766
+
767
+ - Upstream: [`packages/mui-material/src/useScrollTrigger`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/useScrollTrigger)
768
+ - Local mirror: `refs/mui/packages/mui-material/src/useScrollTrigger/`
769
+
770
+ ## utils
771
+
772
+ - Upstream: [`packages/mui-material/src/utils`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/utils)
773
+ - Local mirror: `refs/mui/packages/mui-material/src/utils/`
774
+
775
+ ## version
776
+
777
+ - Upstream: [`packages/mui-material/src/version`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/version)
778
+ - Local mirror: `refs/mui/packages/mui-material/src/version/`
779
+
780
+ ## zero-styled
781
+
782
+ - Upstream: [`packages/mui-material/src/zero-styled`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material/src/zero-styled)
783
+ - Local mirror: `refs/mui/packages/mui-material/src/zero-styled/`