Skip to content

Commit 31191b0

Browse files
authored
Update statuses for components (#3385)
* Update statuses for components * Change files
1 parent 16fc2fe commit 31191b0

39 files changed

+158
-151
lines changed

apps/fluent-tester/src/TestComponents/ActivityIndicator/ActivityIndicatorTest.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ const activityIndicatorSections: TestSection[] = [
8989

9090
export const ActivityIndicatorTest: React.FunctionComponent = () => {
9191
const status: PlatformStatus = {
92-
win32Status: 'Backlog',
93-
uwpStatus: 'Backlog',
94-
iosStatus: 'Beta',
95-
macosStatus: 'Backlog',
96-
androidStatus: 'Beta',
92+
win32Status: 'Deprecated',
93+
uwpStatus: 'Deprecated',
94+
iosStatus: 'Deprecated',
95+
macosStatus: 'Deprecated',
96+
androidStatus: 'Deprecated',
9797
};
9898

9999
const description =

apps/fluent-tester/src/TestComponents/Avatar/AvatarTest.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ export const AvatarTest: React.FunctionComponent = () => {
3636
const status: PlatformStatus = {
3737
win32Status: 'Production',
3838
uwpStatus: 'Backlog',
39-
iosStatus: 'Beta',
40-
macosStatus: 'Experimental',
41-
androidStatus: 'Experimental',
39+
iosStatus: 'Production',
40+
macosStatus: 'Production',
41+
androidStatus: 'Production',
4242
};
4343

4444
const description =

apps/fluent-tester/src/TestComponents/Badge/BadgeTest.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ export const BadgeTest: React.FunctionComponent = () => {
4040
const status: PlatformStatus = {
4141
win32Status: 'Production',
4242
uwpStatus: 'Backlog',
43-
iosStatus: 'Experimental',
44-
macosStatus: 'Experimental',
45-
androidStatus: 'Backlog',
43+
iosStatus: 'N/A',
44+
macosStatus: 'Production',
45+
androidStatus: 'N/A',
4646
};
4747

4848
const description =

apps/fluent-tester/src/TestComponents/Button/ButtonTest.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ const e2eSections: TestSection[] = [
8080
export const ButtonTest: React.FunctionComponent = () => {
8181
const status: PlatformStatus = {
8282
win32Status: 'Production',
83-
uwpStatus: 'Experimental',
84-
iosStatus: 'Experimental',
83+
uwpStatus: 'Backlog',
84+
iosStatus: 'Production',
8585
macosStatus: 'Production',
86-
androidStatus: 'Experimental',
86+
androidStatus: 'Production',
8787
};
8888

8989
const description =

apps/fluent-tester/src/TestComponents/Callout/CalloutTest.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -468,11 +468,11 @@ const e2eSections: TestSection[] = [
468468

469469
export const CalloutTest: React.FunctionComponent = () => {
470470
const status: PlatformStatus = {
471-
win32Status: 'Beta',
471+
win32Status: 'Production',
472472
uwpStatus: 'Backlog',
473-
iosStatus: 'Backlog',
474-
macosStatus: 'Beta',
475-
androidStatus: 'Backlog',
473+
iosStatus: 'N/A',
474+
macosStatus: 'Production',
475+
androidStatus: 'N/A',
476476
};
477477

478478
const description = 'A callout is an anchored tip that can be used to teach people or guide them through the app without blocking them.';

apps/fluent-tester/src/TestComponents/CheckboxV1/CheckboxV1Test.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,13 @@ export const CheckboxV1Test: React.FunctionComponent = () => {
224224
const status: PlatformStatus = {
225225
win32Status: 'Production',
226226
uwpStatus: 'N/A',
227-
iosStatus: 'Experimental',
228-
macosStatus: 'Experimental',
229-
androidStatus: 'Experimental',
227+
iosStatus: 'Production',
228+
macosStatus: 'Production',
229+
androidStatus: 'Production',
230230
};
231231

232232
const description =
233-
'Checkboxes give people a way to select one or more items from a group, or switch between two mutually exclusive options (checked or unchecked, on or off).';
233+
'Checkboxes give people a way to select one or more items from a group, or switch between two mutually exclusive options (checked or unchecked, on or off). For macOS, use experimental-checkbox package.';
234234

235235
return <Test name="CheckboxV1 Test" description={description} sections={checkboxSections} status={status} e2eSections={e2eSections} />;
236236
};

apps/fluent-tester/src/TestComponents/Chip/ChipTest.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ const e2eSections: TestSection[] = [
2323

2424
export const ChipTest: React.FunctionComponent = () => {
2525
const status: PlatformStatus = {
26-
win32Status: 'Backlog',
27-
uwpStatus: 'Backlog',
28-
iosStatus: 'Experimental',
29-
macosStatus: 'Backlog',
30-
androidStatus: 'Experimental',
26+
win32Status: 'N/A',
27+
uwpStatus: 'N/A',
28+
iosStatus: 'Production',
29+
macosStatus: 'N/A',
30+
androidStatus: 'Production',
3131
};
3232

3333
const description =

apps/fluent-tester/src/TestComponents/ColorTokens/ColorTokenTest.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -238,11 +238,11 @@ const themeSections: TestSection[] = [
238238

239239
export const ColorTokensTest: React.FunctionComponent = () => {
240240
const status: PlatformStatus = {
241-
win32Status: 'Beta',
241+
win32Status: 'Production',
242242
uwpStatus: 'Backlog',
243-
iosStatus: 'Experimental',
243+
iosStatus: 'Production',
244244
macosStatus: 'Backlog',
245-
androidStatus: 'Experimental',
245+
androidStatus: 'Production',
246246
};
247247

248248
const description = 'Alias and global tokens given from token pipeline. Used to style components.';

apps/fluent-tester/src/TestComponents/ContextualMenu/ContextualMenuTest.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -515,10 +515,10 @@ const e2eSections: TestSection[] = [
515515
export const ContextualMenuTest: React.FunctionComponent = () => {
516516
const status: PlatformStatus = {
517517
win32Status: 'Deprecated',
518-
uwpStatus: 'Backlog',
519-
iosStatus: 'Backlog',
520-
macosStatus: 'Beta',
521-
androidStatus: 'Backlog',
518+
uwpStatus: 'Deprecated',
519+
iosStatus: 'Deprecated',
520+
macosStatus: 'Deprecated',
521+
androidStatus: 'Deprecated',
522522
};
523523

524524
const description =

apps/fluent-tester/src/TestComponents/CornerRadius/CornerRadiusTest.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ const cornerRadiusSections: TestSection[] = [
7777

7878
export const CornerRadiusTokensTest: React.FunctionComponent = () => {
7979
const status: PlatformStatus = {
80-
win32Status: 'Beta',
81-
uwpStatus: 'Experimental',
82-
iosStatus: 'Experimental',
83-
macosStatus: 'Experimental',
84-
androidStatus: 'Experimental',
80+
win32Status: 'Production',
81+
uwpStatus: 'Production',
82+
iosStatus: 'Production',
83+
macosStatus: 'Production',
84+
androidStatus: 'Production',
8585
};
8686

8787
const description = 'The different global corner radius tokens available in Fluent UI.';

apps/fluent-tester/src/TestComponents/Divider/DividerTest.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,11 @@ const mobileDividerSections: TestSection[] = [
148148

149149
export const DividerTest: React.FunctionComponent = () => {
150150
const status: PlatformStatus = {
151-
win32Status: 'Experimental',
151+
win32Status: 'Production',
152152
uwpStatus: 'Backlog',
153-
iosStatus: 'Experimental',
154-
macosStatus: 'Backlog',
155-
androidStatus: 'Experimental',
153+
iosStatus: 'Production',
154+
macosStatus: 'Production',
155+
androidStatus: 'Production',
156156
};
157157

158158
const description = 'A Divider is a visual separator that can contain content (text or an icon). Dividers can be horizontal or vertical';

apps/fluent-tester/src/TestComponents/Dropdown/DropdownTest.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ const menuSections: TestSection[] = [
2929

3030
export const DropdownTest: React.FunctionComponent = () => {
3131
const status: PlatformStatus = {
32-
win32Status: 'Experimental',
32+
win32Status: 'Backlog',
3333
uwpStatus: 'Backlog',
3434
iosStatus: 'Backlog',
35-
macosStatus: 'Experimental',
35+
macosStatus: 'Backlog',
3636
androidStatus: 'Backlog',
3737
};
3838

apps/fluent-tester/src/TestComponents/Expander/ExpanderTest.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const expanderSections: TestSection[] = [
119119
export const ExpanderTest: React.FunctionComponent = () => {
120120
const status: PlatformStatus = {
121121
win32Status: 'Backlog',
122-
uwpStatus: 'Beta',
122+
uwpStatus: 'Experimental',
123123
iosStatus: 'Backlog',
124124
macosStatus: 'Backlog',
125125
androidStatus: 'Backlog',

apps/fluent-tester/src/TestComponents/FocusZone/FocusZoneTest.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -226,10 +226,10 @@ const e2eSections: TestSection[] = [
226226

227227
export const FocusZoneTest: React.FunctionComponent = () => {
228228
const status: PlatformStatus = {
229-
win32Status: 'Beta',
230-
uwpStatus: 'Experimental',
231-
iosStatus: 'Experimental',
232-
macosStatus: 'Experimental',
229+
win32Status: 'Production',
230+
uwpStatus: 'Backlog',
231+
iosStatus: 'Backlog',
232+
macosStatus: 'Production',
233233
androidStatus: 'Backlog',
234234
};
235235

apps/fluent-tester/src/TestComponents/Icon/IconTest.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,11 @@ const e2eSections: TestSection[] = [
123123

124124
export const IconTest: React.FunctionComponent = () => {
125125
const status: PlatformStatus = {
126-
win32Status: 'Beta',
126+
win32Status: 'Production',
127127
uwpStatus: 'Backlog',
128-
iosStatus: 'Experimental',
129-
macosStatus: 'Experimental',
130-
androidStatus: 'Experimental',
128+
iosStatus: 'Production',
129+
macosStatus: 'Production',
130+
androidStatus: 'Production',
131131
};
132132

133133
const description = 'Icons are styled images that can be fonts, svgs, or bitmaps';

apps/fluent-tester/src/TestComponents/Input/InputTest.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ export const InputTest: React.FunctionComponent = () => {
2525
const status: PlatformStatus = {
2626
win32Status: 'Backlog',
2727
uwpStatus: 'Backlog',
28-
iosStatus: 'Experimental',
28+
iosStatus: 'Production',
2929
macosStatus: 'Backlog',
30-
androidStatus: 'Experimental',
30+
androidStatus: 'Production',
3131
};
3232

3333
const description = 'Input allows the user to enter and edit text.';

apps/fluent-tester/src/TestComponents/LinkLegacy/LinkLegacyTest.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ const e2eSections: TestSection[] = [
4040

4141
export const LinkLegacyTest: React.FunctionComponent = () => {
4242
const status: PlatformStatus = {
43-
win32Status: 'Beta',
44-
uwpStatus: 'Experimental',
45-
iosStatus: 'Experimental',
46-
macosStatus: 'Beta',
47-
androidStatus: 'Backlog',
43+
win32Status: 'Deprecated',
44+
uwpStatus: 'Deprecated',
45+
iosStatus: 'Deprecated',
46+
macosStatus: 'Deprecated',
47+
androidStatus: 'Deprecated',
4848
};
4949

5050
const description =

apps/fluent-tester/src/TestComponents/LinkV1/LinkV1Test.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,11 @@ const e2eSections: TestSection[] = [
182182

183183
export const LinkV1Test: React.FunctionComponent = () => {
184184
const status: PlatformStatus = {
185-
win32Status: 'Experimental',
186-
uwpStatus: 'Experimental',
187-
iosStatus: 'Experimental',
188-
macosStatus: 'Experimental',
189-
androidStatus: 'Experimental',
185+
win32Status: 'Production',
186+
uwpStatus: 'Backlog',
187+
iosStatus: 'Production',
188+
macosStatus: 'Production',
189+
androidStatus: 'Production',
190190
};
191191

192192
const description =

apps/fluent-tester/src/TestComponents/Menu/MenuTest.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -546,10 +546,10 @@ const e2eSections: TestSection[] = [
546546

547547
export const MenuTest: React.FunctionComponent = () => {
548548
const status: PlatformStatus = {
549-
win32Status: 'Beta',
549+
win32Status: 'Production',
550550
uwpStatus: 'Backlog',
551551
iosStatus: 'Backlog',
552-
macosStatus: 'Beta',
552+
macosStatus: 'Production',
553553
androidStatus: 'Experimental',
554554
};
555555

apps/fluent-tester/src/TestComponents/MenuButtonLegacy/MenuButtonLegacyTest.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ const e2eSections: TestSection[] = [
3333

3434
export const MenuButtonLegacyTest: React.FunctionComponent = () => {
3535
const status: PlatformStatus = {
36-
win32Status: 'Experimental',
37-
uwpStatus: 'Backlog',
38-
iosStatus: 'Backlog',
39-
macosStatus: 'Backlog',
40-
androidStatus: 'Backlog',
36+
win32Status: 'Deprecated',
37+
uwpStatus: 'Deprecated',
38+
iosStatus: 'Deprecated',
39+
macosStatus: 'Deprecated',
40+
androidStatus: 'Deprecated',
4141
};
4242

4343
const description =

apps/fluent-tester/src/TestComponents/MenuButtonV1/MenuButtonV1Test.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ const e2eSections: TestSection[] = [
3333

3434
export const MenuButtonV1Test: React.FunctionComponent = () => {
3535
const status: PlatformStatus = {
36-
win32Status: 'Experimental',
37-
uwpStatus: 'Backlog',
38-
iosStatus: 'Backlog',
39-
macosStatus: 'Backlog',
40-
androidStatus: 'Backlog',
36+
win32Status: 'Deprecated',
37+
uwpStatus: 'Deprecated',
38+
iosStatus: 'Deprecated',
39+
macosStatus: 'Deprecated',
40+
androidStatus: 'Deprecated',
4141
};
4242

4343
const description =

apps/fluent-tester/src/TestComponents/Notification/NotificationTest.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ export const NotificationTest: React.FunctionComponent = () => {
279279
const status: PlatformStatus = {
280280
win32Status: 'Backlog',
281281
uwpStatus: 'Backlog',
282-
iosStatus: 'Experimental',
282+
iosStatus: 'Production',
283283
macosStatus: 'Backlog',
284284
androidStatus: 'Backlog',
285285
};

apps/fluent-tester/src/TestComponents/Persona/PersonaTest.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ const personaSections: TestSection[] = [
2121
export const PersonaTest: React.FunctionComponent = () => {
2222
const status: PlatformStatus = {
2323
win32Status: 'Deprecated',
24-
uwpStatus: 'Experimental',
25-
iosStatus: 'Experimental',
26-
macosStatus: 'Experimental',
27-
androidStatus: 'Backlog',
24+
uwpStatus: 'Deprecated',
25+
iosStatus: 'Deprecated',
26+
macosStatus: 'Deprecated',
27+
androidStatus: 'Deprecated',
2828
};
2929

3030
const description =

apps/fluent-tester/src/TestComponents/PersonaCoin/PersonaCoinTest.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ const personaCoinSections: TestSection[] = [
2121
export const PersonaCoinTest: React.FunctionComponent = () => {
2222
const status: PlatformStatus = {
2323
win32Status: 'Deprecated',
24-
uwpStatus: 'Experimental',
25-
iosStatus: 'Experimental',
26-
macosStatus: 'Experimental',
27-
androidStatus: 'Backlog',
24+
uwpStatus: 'Deprecated',
25+
iosStatus: 'Deprecated',
26+
macosStatus: 'Deprecated',
27+
androidStatus: 'Deprecated',
2828
};
2929

3030
const description = "PersonaCoins are used for rendering an individual's avatar. PersonaCoin renders the circular image component.";

apps/fluent-tester/src/TestComponents/Pressable/PressableTest.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,11 @@ const pressableSections: TestSection[] = [
150150

151151
export const PressableTest: React.FunctionComponent = () => {
152152
const status: PlatformStatus = {
153-
win32Status: 'Beta',
154-
uwpStatus: 'Experimental',
155-
iosStatus: 'Experimental',
156-
macosStatus: 'Experimental',
157-
androidStatus: 'Backlog',
153+
win32Status: 'Deprecated',
154+
uwpStatus: 'Deprecated',
155+
iosStatus: 'Deprecated',
156+
macosStatus: 'Deprecated',
157+
androidStatus: 'Deprecated',
158158
};
159159

160160
const description = 'No description.';

apps/fluent-tester/src/TestComponents/RadioGroupLegacy/RadioGroupLegacyTest.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ const e2eSections: TestSection[] = [
7272

7373
export const RadioGroupLegacyTest: React.FunctionComponent = () => {
7474
const status: PlatformStatus = {
75-
win32Status: 'Beta',
76-
uwpStatus: 'Experimental',
77-
iosStatus: 'Experimental',
78-
macosStatus: 'Beta',
79-
androidStatus: 'Backlog',
75+
win32Status: 'Deprecated',
76+
uwpStatus: 'Deprecated',
77+
iosStatus: 'Deprecated',
78+
macosStatus: 'Deprecated',
79+
androidStatus: 'Deprecated',
8080
};
8181

8282
const description = 'No description.';

0 commit comments

Comments
 (0)