-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
CODEOWNERS
Validating CODEOWNERS rules...
454 lines (431 loc) · 26.8 KB
/
CODEOWNERS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
# This is a comment.
# Each line is a file pattern followed by one or more owners.
# These owners will be the default owners for everything in the repo.
# Unless a later match takes precedence, @global-owner1 and @global-owner2
# will be requested for review when someone opens a pull request.
# * @global-owner1 @global-owner2
# Order is important; the last matching pattern takes the most precedence.
# When someone opens a pull request that only modifies JS files, only @js-owner
# and not the global owner(s) will be requested for a review.
# *.js@js-owner
# You can also use email addresses if you prefer. They'll be used to look up
# users just like we do for commit author emails.
# docs/ docs@example.com
##### Catch All Rule ######
#### Later rules will override this, if you are hitting this rule often add a rule to a sub-folder
* @microsoft/fluentui-admins
###### Build Section ######
#### Repo-wide build files - Note these will only be applied if another rule below does not apply
*.sh @microsoft/fluentui-react-build
*.yml @microsoft/fluentui-react-build
#### Change files (no owner)
/change
/.github/ @microsoft/fluentui-react-build
#### Build folders
/.codesandbox @microsoft/fluentui-react-build
/.devcontainer @microsoft/fluentui-react-build
/.devops @microsoft/fluentui-react-build
/.github/workflows @microsoft/fluentui-react-build
/.githooks @microsoft/fluentui-react-build
/.storybook @microsoft/fluentui-react-build
/.vscode @microsoft/fluentui-react-build
/.yarn @microsoft/fluentui-react-build
/tools @microsoft/fluentui-react-build
/typings @microsoft/fluentui-react-build
#### Root Build files
/.eslintrc.* @microsoft/fluentui-react-build
/.yarnrc @microsoft/fluentui-react-build
/.gitattributes @microsoft/fluentui-react-build
/.gitignore @microsoft/fluentui-react-build
/.npmrc @microsoft/fluentui-react-build
/.npmignore @microsoft/fluentui-react-build
/.prettierignore @microsoft/fluentui-react-build
/.nxignore @microsoft/fluentui-react-build
/jest.preset.js @microsoft/fluentui-react-build
/jest.preset.ts @microsoft/fluentui-react-build
/jest.config.js @microsoft/fluentui-react-build
/jest.config.ts @microsoft/fluentui-react-build
/package.json @microsoft/fluentui-react-build
/tsconfig.json @microsoft/fluentui-react-build
/tsconfig.*.json @microsoft/fluentui-react-build
/tsconfig.base.json @microsoft/fluentui-react-build
/yarn.lock @microsoft/fluentui-react-build
/*.config.js @microsoft/fluentui-react-build
/.babelrc-v9.json @microsoft/fluentui-react-build
/*.js @microsoft/fluentui-react-build
/*.json @microsoft/fluentui-react-build
#### NX related files
/nx.json @microsoft/fluentui-react-build
/migrations.json @microsoft/fluentui-react-build
#### Meta and License stuff
/LICENSE @microsoft/fluentui-react-build @justSlone @jurokapsiar @tudorpopams
/packages/react/LICENSE @microsoft/fluentui-react-build @justSlone @jurokapsiar @tudorpopams
/.github/CODEOWNERS @microsoft/fluentui-react-build @justSlone @jurokapsiar @tudorpopams
/.github/ISSUE_TEMPLATE* @justSlone @jurokapsiar @tudorpopams
## Tooling packages
scripts/api-extractor @microsoft/fluentui-react-build
scripts/babel @microsoft/fluentui-react-build
scripts/beachball @microsoft/fluentui-react-build
scripts/cypress @microsoft/fluentui-react-build
scripts/dangerjs @microsoft/fluentui-react-build
scripts/executors @microsoft/fluentui-react-build
scripts/fluentui-publish @microsoft/fluentui-react-build
scripts/generators @microsoft/fluentui-react-build
scripts/github @microsoft/fluentui-react-build
scripts/gulp @microsoft/fluentui-react-build @microsoft/teams-prg
scripts/jest @microsoft/fluentui-react-build
scripts/lint-staged @microsoft/fluentui-react-build
scripts/monorepo @microsoft/fluentui-react-build
scripts/package-manager @microsoft/fluentui-react-build
scripts/prettier @microsoft/fluentui-react-build
scripts/projects-test @microsoft/fluentui-react-build
scripts/puppeteer @microsoft/fluentui-react-build
scripts/storybook @microsoft/fluentui-react-build
scripts/tasks @microsoft/fluentui-react-build
scripts/test-ssr @microsoft/fluentui-react-build
scripts/triage-bot @microsoft/fluentui-react-build @microsoft/cxe-prg
scripts/ts-node @microsoft/fluentui-react-build
scripts/update-release-notes @microsoft/fluentui-react-build
scripts/utils @microsoft/fluentui-react-build
scripts/webpack @microsoft/fluentui-react-build
scripts/perf-test-flamegrill @microsoft/fluentui-react-build
#### Fluent UI N*
packages/a11y-rules @microsoft/fluentui-northstar
packages/a11y-testing @microsoft/fluentui-northstar
packages/fluentui @microsoft/fluentui-northstar
packages/fluentui/react-northstar/src/components/Chat @microsoft/fluentui-northstar @Hirse
packages/fluentui/react-northstar/src/themes/teams/components/Chat @microsoft/fluentui-northstar @Hirse
#### Web Components
packages/web-components @microsoft/fui-wc
#### Apps
apps/public-docsite @microsoft/fluentui-v8-website
apps/public-docsite-resources @microsoft/fluentui-v8-website
apps/perf-test @microsoft/fluentui-react-build
apps/perf-test-react-components @microsoft/fluentui-react-build
apps/ts-minbar-test-react @microsoft/fluentui-react-build
apps/ts-minbar-test-react-components @microsoft/fluentui-react-build
apps/vr-tests @microsoft/fluentui-react
apps/vr-tests-react-components @microsoft/fluentui-react
apps/vr-tests-web-components @microsoft/fui-wc
apps/ssr-tests @microsoft/fluentui-react
apps/pr-deploy-site @microsoft/fluentui-react-build
apps/public-docsite-v9 @microsoft/cxe-red @microsoft/cxe-prg @microsoft/teams-prg @microsoft/fluentui-react-build
apps/theming-designer @microsoft/fluentui-react
apps/ssr-tests-v9 @microsoft/fluentui-react-build
apps/react-18-tests-v8 @microsoft/cxe-red @micahgodbolt
apps/react-18-tests-v9 @microsoft/cxe-red @micahgodbolt
#### Packages
packages/azure-themes @Jacqueline-ms @robtaft-ms
packages/react-conformance @microsoft/fluentui-react-build
packages/date-time-utilities @microsoft/cxe-red
packages/eslint-plugin @microsoft/fluentui-react-build
packages/foundation-legacy @microsoft/cxe-red @khmakoto
# packages/font-icons-mdl2
# packages/jest-serializer-merge-styles
packages/merge-styles @dzearing @microsoft/cxe-red
packages/monaco-editor @microsoft/fluentui-v8-website
packages/public-docsite-setup @microsoft/fluentui-v8-website
packages/react-components/priority-overflow @microsoft/teams-prg
packages/react-components/react-aria @microsoft/teams-prg
packages/react-components/react-aria/library @microsoft/teams-prg
packages/react-components/react-aria/stories @microsoft/teams-prg
packages/react-cards @microsoft/cxe-red @khmakoto
packages/react-charting @microsoft/charting-team
packages/react-components/react-conformance-griffel @microsoft/teams-prg
packages/react-components/react-context-selector @microsoft/teams-prg
packages/react-date-time @microsoft/cxe-red
packages/react-docsite-components @microsoft/fluentui-v8-website
packages/react-examples @microsoft/cxe-red
packages/react-examples/src/react-charting @microsoft/charting-team
packages/react-file-type-icons @microsoft/cxe-red @jahnp @bigbadcapers
packages/react-hooks @microsoft/cxe-red
packages/react-icons-mdl2 @microsoft/cxe-red
packages/react-icons-mdl2-branded @microsoft/cxe-red
packages/react-monaco-editor @microsoft/fluentui-v8-website
packages/react-components/react-positioning @microsoft/teams-prg
packages/react-components/react-overflow @microsoft/teams-prg
packages/react-components/react-overflow/library @microsoft/teams-prg
packages/react-components/react-overflow/stories @microsoft/teams-prg
packages/react-components/react-shared-contexts @microsoft/teams-prg @microsoft/cxe-red
packages/react-components/react-shared-contexts/library @microsoft/teams-prg @microsoft/cxe-red
packages/react-components/react-shared-contexts/stories @microsoft/teams-prg @microsoft/cxe-red
packages/react-components/react-storybook-addon @microsoft/cxe-prg
packages/react-components/react-tabster @microsoft/teams-prg
packages/react-components/react-theme @microsoft/teams-prg
packages/react-components/react-theme/library @microsoft/teams-prg
packages/react-components/react-theme/stories @microsoft/teams-prg
packages/react-components/react-utilities @microsoft/teams-prg
packages/storybook @microsoft/cxe-prg @microsoft/teams-prg
packages/style-utilities @dzearing @microsoft/cxe-red
packages/style-utilities/src/interfaces @phkuo @dzearing @microsoft/cxe-red
packages/style-utilities/src/styles @phkuo @dzearing @microsoft/cxe-red
packages/theme @dzearing @microsoft/cxe-red
packages/utilities @microsoft/cxe-red
### Fabric
# common/
packages/common-styles/src @microsoft/cxe-red @phkuo
common/_semanticSlots.scss @microsoft/cxe-red @phkuo
common/_themeOverrides.scss @microsoft/cxe-red @phkuo
common/_common.scss @microsoft/cxe-red @phkuo
## vNext packages
packages/react-components/keyboard-keys @microsoft/teams-prg
packages/react-components/react-accordion @microsoft/cxe-red
packages/react-components/react-accordion/library @microsoft/cxe-red
packages/react-components/react-accordion/stories @microsoft/cxe-red
packages/react-components/react-avatar @microsoft/cxe-red @behowell @khmakoto @sopranopillow
packages/react-components/react-avatar/library @microsoft/cxe-red @behowell @khmakoto @sopranopillow
packages/react-components/react-avatar/stories @microsoft/cxe-red @behowell @khmakoto @sopranopillow
packages/react-components/react-badge @microsoft/cxe-red @behowell
packages/react-components/react-badge/library @microsoft/cxe-red @behowell
packages/react-components/react-badge/stories @microsoft/cxe-red @behowell
packages/react-components/react-button @microsoft/cxe-red @khmakoto
packages/react-components/react-button/library @microsoft/cxe-red @khmakoto
packages/react-components/react-button/stories @microsoft/cxe-red @khmakoto
packages/react-components/react-card @microsoft/cxe-prg @marcosmoura
packages/react-components/react-card/library @microsoft/cxe-prg @marcosmoura
packages/react-components/react-card/stories @microsoft/cxe-prg @marcosmoura
packages/react-components/react-checkbox @microsoft/cxe-red @khmakoto
packages/react-components/react-checkbox/library @microsoft/cxe-red @khmakoto
packages/react-components/react-checkbox/stories @microsoft/cxe-red @khmakoto
packages/react-components/react-combobox @microsoft/cxe-red @microsoft/teams-prg @smhigley
packages/react-components/react-combobox/library @microsoft/cxe-red @microsoft/teams-prg @smhigley
packages/react-components/react-combobox/stories @microsoft/cxe-red @microsoft/teams-prg @smhigley
packages/react-components/react-components @microsoft/fluentui-react
packages/react-components/react-dialog @microsoft/teams-prg
packages/react-components/react-dialog/library @microsoft/teams-prg
packages/react-components/react-dialog/stories @microsoft/teams-prg
packages/react-components/react-divider @microsoft/cxe-red
packages/react-components/react-divider/library @microsoft/cxe-red
packages/react-components/react-divider/stories @microsoft/cxe-red
packages/react-components/react-field @microsoft/cxe-red @behowell
packages/react-components/react-field/library @microsoft/cxe-red @behowell
packages/react-components/react-field/stories @microsoft/cxe-red @behowell
packages/react-focus @microsoft/cxe-red @khmakoto
packages/react-components/react-image @microsoft/cxe-prg
packages/react-components/react-image/library @microsoft/cxe-prg
packages/react-components/react-image/stories @microsoft/cxe-prg
packages/react-components/react-input @microsoft/cxe-red @spmonahan
packages/react-components/react-input/library @microsoft/cxe-red @spmonahan
packages/react-components/react-input/stories @microsoft/cxe-red @spmonahan
packages/react-components/react-label @microsoft/cxe-red @sopranopillow @micahgodbolt
packages/react-components/react-label/library @microsoft/cxe-red @sopranopillow @micahgodbolt
packages/react-components/react-label/stories @microsoft/cxe-red @sopranopillow @micahgodbolt
packages/react-components/react-link @microsoft/cxe-red @khmakoto
packages/react-components/react-link/library @microsoft/cxe-red @khmakoto
packages/react-components/react-link/stories @microsoft/cxe-red @khmakoto
packages/react-components/react-menu @microsoft/teams-prg
packages/react-components/react-menu/library @microsoft/teams-prg
packages/react-components/react-menu/stories @microsoft/teams-prg
packages/react-components/react-popover @microsoft/teams-prg
packages/react-components/react-popover/library @microsoft/teams-prg
packages/react-components/react-popover/stories @microsoft/teams-prg
packages/react-components/react-portal @microsoft/teams-prg
packages/react-components/react-portal/library @microsoft/teams-prg
packages/react-components/react-portal/stories @microsoft/teams-prg
packages/react-components/react-provider @microsoft/teams-prg
packages/react-components/react-provider/library @microsoft/teams-prg
packages/react-components/react-provider/stories @microsoft/teams-prg
packages/react-components/react-radio @microsoft/cxe-red @behowell @spmonahan
packages/react-components/react-radio/library @microsoft/cxe-red @behowell @spmonahan
packages/react-components/react-radio/stories @microsoft/cxe-red @behowell @spmonahan
packages/react-components/react-select @microsoft/cxe-red @smhigley
packages/react-components/react-select/library @microsoft/cxe-red @smhigley
packages/react-components/react-select/stories @microsoft/cxe-red @smhigley
packages/react-components/react-slider @microsoft/cxe-red @micahgodbolt
packages/react-components/react-slider/library @microsoft/cxe-red @micahgodbolt
packages/react-components/react-slider/stories @microsoft/cxe-red @micahgodbolt
packages/react-components/react-spinbutton @microsoft/cxe-red @spmonahan
packages/react-components/react-spinbutton/library @microsoft/cxe-red @spmonahan
packages/react-components/react-spinbutton/stories @microsoft/cxe-red @spmonahan
packages/react-components/react-spinner @microsoft/cxe-red @tomi-msft
packages/react-components/react-spinner/library @microsoft/cxe-red @tomi-msft
packages/react-components/react-spinner/stories @microsoft/cxe-red @tomi-msft
packages/react-components/react-switch @microsoft/cxe-red @behowell @khmakoto
packages/react-components/react-switch/library @microsoft/cxe-red @behowell @khmakoto
packages/react-components/react-switch/stories @microsoft/cxe-red @behowell @khmakoto
packages/react-components/react-tabs @microsoft/cxe-prg @dmytrokirpa
packages/react-components/react-tabs/library @microsoft/cxe-prg @dmytrokirpa
packages/react-components/react-tabs/stories @microsoft/cxe-prg @dmytrokirpa
packages/react-components/react-text @microsoft/cxe-prg @marcosmoura
packages/react-components/react-text/library @microsoft/cxe-prg @marcosmoura
packages/react-components/react-text/stories @microsoft/cxe-prg @marcosmoura
packages/react-components/react-textarea @microsoft/cxe-red @sopranopillow
packages/react-components/react-textarea/library @microsoft/cxe-red @sopranopillow
packages/react-components/react-textarea/stories @microsoft/cxe-red @sopranopillow
packages/react-components/react-tooltip @microsoft/cxe-red @behowell @khmakoto
packages/react-components/react-tooltip/library @microsoft/cxe-red @behowell @khmakoto
packages/react-components/react-tooltip/stories @microsoft/cxe-red @behowell @khmakoto
packages/react-components/react-toolbar @microsoft/teams-prg @chpalac @ling1726
packages/react-components/react-toolbar/library @microsoft/teams-prg @chpalac @ling1726
packages/react-components/react-toolbar/stories @microsoft/teams-prg @chpalac @ling1726
packages/react-components/react-portal-compat @microsoft/teams-prg
packages/react-components/react-portal-compat-context @microsoft/teams-prg
packages/react-components/react-theme-sass @microsoft/teams-prg
packages/react-components/theme-designer @microsoft/cxe-red @ms-acalzaretto
packages/react-components/global-context @microsoft/teams-prg
packages/react-components/babel-preset-global-context @microsoft/teams-prg
packages/react-components/react-table @microsoft/teams-prg
packages/react-components/react-table/library @microsoft/teams-prg
packages/react-components/react-table/stories @microsoft/teams-prg
packages/react-components/react-progress @microsoft/cxe-red @tomi-msft
packages/react-components/react-progress/library @microsoft/cxe-red @tomi-msft
packages/react-components/react-progress/stories @microsoft/cxe-red @tomi-msft
packages/react-components/react-persona @microsoft/cxe-red @sopranopillow
packages/react-components/react-persona/library @microsoft/cxe-red @sopranopillow
packages/react-components/react-persona/stories @microsoft/cxe-red @sopranopillow
packages/react-components/react-tree @microsoft/teams-prg
packages/react-components/react-tree/library @microsoft/teams-prg
packages/react-components/react-tree/stories @microsoft/teams-prg
packages/react-components/react-virtualizer @microsoft/xc-uxe @Mitch-At-Work
packages/react-components/react-virtualizer/library @microsoft/xc-uxe @Mitch-At-Work
packages/react-components/react-virtualizer/stories @microsoft/xc-uxe @Mitch-At-Work
packages/react-components/react-skeleton @microsoft/cxe-red
packages/react-components/react-skeleton/library @microsoft/cxe-red
packages/react-components/react-skeleton/stories @microsoft/cxe-red
packages/tokens @microsoft/teams-prg
packages/react-components/react-tags @microsoft/cxe-red @microsoft/teams-prg
packages/react-components/react-tags/library @microsoft/cxe-red @microsoft/teams-prg
packages/react-components/react-tags/stories @microsoft/cxe-red @microsoft/teams-prg
packages/react-components/react-migration-v0-v9/library @microsoft/teams-prg
packages/react-components/react-migration-v0-v9/stories @microsoft/teams-prg
packages/react-components/react-datepicker-compat @microsoft/cxe-red @sopranopillow @khmakoto
packages/react-components/react-datepicker-compat/library @microsoft/cxe-red @sopranopillow @khmakoto
packages/react-components/react-datepicker-compat/stories @microsoft/cxe-red @sopranopillow @khmakoto
packages/react-components/react-migration-v8-v9/library @microsoft/cxe-red @geoffcoxmsft
packages/react-components/react-migration-v8-v9/stories @microsoft/cxe-red @geoffcoxmsft
packages/react-components/react-breadcrumb @microsoft/cxe-prg
packages/react-components/react-breadcrumb/library @microsoft/cxe-prg
packages/react-components/react-breadcrumb/stories @microsoft/cxe-prg
packages/react-components/react-drawer @microsoft/cxe-prg @marcosmoura
packages/react-components/react-drawer/library @microsoft/cxe-prg @marcosmoura
packages/react-components/react-drawer/stories @microsoft/cxe-prg @marcosmoura
packages/react-components/react-storybook-addon-export-to-sandbox @microsoft/fluentui-react-build
packages/react-components/babel-preset-storybook-full-source @microsoft/fluentui-react-build
packages/react-components/react-jsx-runtime @microsoft/teams-prg
packages/react-components/react-toast @microsoft/teams-prg
packages/react-components/react-toast/library @microsoft/teams-prg
packages/react-components/react-toast/stories @microsoft/teams-prg
packages/react-components/react-search @microsoft/cxe-red @smhigley
packages/react-components/react-search/library @microsoft/cxe-red @smhigley
packages/react-components/react-search/stories @microsoft/cxe-red @smhigley
packages/react-components/react-colorpicker-compat @microsoft/cxe-red @sopranopillow
packages/react-components/react-nav-preview @microsoft/cxe-red @microsoft/xc-uxe @mltejera
packages/react-components/react-nav-preview/library @microsoft/cxe-red @microsoft/xc-uxe @mltejera
packages/react-components/react-nav-preview/stories @microsoft/cxe-red @microsoft/xc-uxe @mltejera
packages/react-components/react-message-bar @microsoft/teams-prg
packages/react-components/react-message-bar/library @microsoft/teams-prg
packages/react-components/react-message-bar/stories @microsoft/teams-prg
packages/react-components/react-rating @microsoft/cxe-red @tomi-msft
packages/react-components/react-rating/library @microsoft/cxe-red @tomi-msft
packages/react-components/react-rating/stories @microsoft/cxe-red @tomi-msft
packages/react-components/react-swatch-picker @microsoft/cxe-prg
packages/react-components/react-swatch-picker/library @microsoft/cxe-prg
packages/react-components/react-swatch-picker/stories @microsoft/cxe-prg
packages/react-components/react-calendar-compat @microsoft/cxe-red @sopranopillow
packages/react-components/react-calendar-compat/library @microsoft/cxe-red @sopranopillow
packages/react-components/react-calendar-compat/stories @microsoft/cxe-red @sopranopillow
packages/react-components/react-infolabel @microsoft/cxe-red @sopranopillow
packages/react-components/react-infolabel/library @microsoft/cxe-red @sopranopillow
packages/react-components/react-infolabel/stories @microsoft/cxe-red @sopranopillow
packages/react-components/react-list-preview @microsoft/teams-prg
packages/react-components/react-list-preview/library @microsoft/teams-prg
packages/react-components/react-list-preview/stories @microsoft/teams-prg
packages/react-components/react-motion @microsoft/teams-prg
packages/react-components/react-motion/library @microsoft/teams-prg
packages/react-components/react-motion/stories @microsoft/teams-prg
packages/react-components/react-teaching-popover @microsoft/xc-uxe @Mitch-At-Work
packages/react-components/react-teaching-popover/library @microsoft/xc-uxe @Mitch-At-Work
packages/react-components/react-teaching-popover/stories @microsoft/xc-uxe @Mitch-At-Work
packages/react-components/react-timepicker-compat @microsoft/teams-prg
packages/react-components/react-timepicker-compat/library @microsoft/teams-prg
packages/react-components/react-timepicker-compat/stories @microsoft/teams-prg
packages/react-components/react-icons-compat @microsoft/cxe-red @tomi-msft
packages/react-components/react-icons-compat/library @microsoft/cxe-red @tomi-msft
packages/react-components/react-icons-compat/stories @microsoft/cxe-red @tomi-msft
packages/react-components/react-tag-picker @microsoft/teams-prg
packages/react-components/react-tag-picker/library @microsoft/teams-prg
packages/react-components/react-tag-picker/stories @microsoft/teams-prg
packages/react-components/react-carousel-preview @microsoft/xc-uxe @microsoft/teams-prg @Mitch-At-Work
packages/react-components/react-carousel-preview/library @microsoft/xc-uxe @microsoft/teams-prg @Mitch-At-Work
packages/react-components/react-carousel-preview/stories @microsoft/xc-uxe @microsoft/teams-prg @Mitch-At-Work
packages/react-components/recipes @microsoft/fluentui-react @sopranopillow
packages/react-components/react-motion-components-preview/library @microsoft/teams-prg
packages/react-components/react-motion-components-preview/stories @microsoft/teams-prg
packages/react-components/react-utilities-compat/library @microsoft/cxe-red
packages/react-components/react-utilities-compat/stories @microsoft/cxe-red
packages/react-components/react-color-picker-preview/library @microsoft/cxe-prg
packages/react-components/react-color-picker-preview/stories @microsoft/cxe-prg
packages/react-components/react-keytips-preview/library @microsoft/cxe-prg
packages/react-components/react-keytips-preview/stories @microsoft/cxe-prg
# <%= NX-CODEOWNER-PLACEHOLDER %>
## Components
packages/react @microsoft/cxe-red
packages/react/src/components/ActivityItem @microsoft/cxe-red @khmakoto
packages/react/src/components/Announced @microsoft/cxe-red @khmakoto
packages/react/src/components/Breadcrumb @microsoft/cxe-red @khmakoto
packages/react/src/components/Button @microsoft/cxe-red @khmakoto
packages/react/src/components/Calendar @microsoft/cxe-red
packages/react/src/components/CalendarDayGrid @microsoft/cxe-red
packages/react/src/components/Check @microsoft/cxe-red @ThomasMichon @khmakoto
packages/react/src/components/Checkbox @microsoft/cxe-red @khmakoto
packages/react/src/components/ChoiceGroup @microsoft/cxe-red
packages/react/src/components/Coachmark @microsoft/cxe-red
packages/react/src/components/ColorPicker @microsoft/cxe-red
packages/react/src/components/DatePicker @microsoft/cxe-red
packages/react/src/components/DetailsList @microsoft/cxe-red @spmonahan @ThomasMichon
packages/react/src/components/DocumentCard @microsoft/cxe-red
packages/react/src/components/Fabric @microsoft/cxe-red @dzearing
packages/react/src/components/Facepile @microsoft/cxe-red
packages/react/src/components/FolderCover @microsoft/cxe-red @ThomasMichon @bigbadcapers
packages/react/src/components/FocusTrapZone @microsoft/cxe-red @khmakoto
packages/react/src/components/GroupedList @microsoft/cxe-red @spmonahan @ThomasMichon
packages/react/src/components/HoverCard @microsoft/cxe-red @Jahnp
packages/react/src/components/Icon @microsoft/cxe-red @dzearing
packages/react/src/components/Image @microsoft/cxe-red @dzearing
packages/react/src/components/Label @microsoft/cxe-red @khmakoto
packages/react/src/components/Layer @microsoft/cxe-red @ThomasMichon
packages/react/src/components/Link @microsoft/cxe-red @khmakoto
packages/react/src/components/List @microsoft/cxe-red @spmonahan @ThomasMichon
packages/react/src/components/MarqueeSelection @microsoft/cxe-red @ThomasMichon
packages/react/src/components/MessageBar @microsoft/cxe-red
packages/react/src/components/Nav @microsoft/cxe-red
packages/react/src/components/Overlay @microsoft/cxe-red @khmakoto
packages/react/src/components/Panel @microsoft/cxe-red @khmakoto
packages/react/src/components/Persona @microsoft/cxe-red
packages/react/src/components/PersonaCoin @microsoft/cxe-red
packages/react/src/components/Pivot @microsoft/cxe-red @behowell
packages/react/src/components/SearchBox @microsoft/cxe-red
packages/react/src/components/Shimmer @microsoft/cxe-red
packages/react/src/components/SpinButton @microsoft/cxe-red
packages/react/src/components/Stack @microsoft/cxe-red @khmakoto
packages/react/src/components/SwatchColorPicker @microsoft/cxe-red
packages/react/src/components/Text @microsoft/cxe-red @khmakoto
packages/react/src/components/TextField @microsoft/cxe-red
packages/react/src/components/Toggle @microsoft/cxe-red @khmakoto
packages/react/src/components/Tooltip @microsoft/cxe-red @behowell
packages/react/src/components/WeeklyDayPicker @microsoft/cxe-red
## Theming and styling
packages/react/src/utilities/ThemeProvider @microsoft/cxe-red @dzearing
packages/fluent2-theme @microsoft/cxe-red @geoffcoxmsft
## Experiments
packages/react-experiments/src/components/Signals @ThomasMichon
packages/react-experiments/src/components/Tile @ThomasMichon
packages/react-experiments/src/components/TileList @ThomasMichon
### generic rules for v-build. Might be tweaked based on needs.
**/project.json @microsoft/fluentui-react-build
**/just.config.ts @microsoft/fluentui-react-build
**/jest.config.js @microsoft/fluentui-react-build
**/webpack.*.js @microsoft/fluentui-react-build
**/.eslintrc.js @microsoft/fluentui-react-build
**/.eslintrc.json @microsoft/fluentui-react-build
**/tsconfig.json @microsoft/fluentui-react-build
**/tsconfig.lib.json @microsoft/fluentui-react-build
**/tsconfig.spec.json @microsoft/fluentui-react-build
**/cypress.config.ts @microsoft/fluentui-react-build
**/api-extractor.json @microsoft/fluentui-react-build
**/api-extractor.unstable.json @microsoft/fluentui-react-build
**/.swcrc @microsoft/fluentui-react-build
## Docs
/rfcs/ @microsoft/cxe-red @microsoft/cxe-prg @microsoft/teams-prg
/rfcs/shared/build-system/ @microsoft/fluentui-react-build
/docs/ @microsoft/cxe-red @microsoft/cxe-prg @microsoft/teams-prg