File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
packages/pf4-component-mapper/src/tests/__snapshots__ Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -857,8 +857,8 @@ exports[`FormFields should render Switch correctly 1`] = `
857
857
<input
858
858
aria-label = " "
859
859
aria-labelledby = " someIdKey-on"
860
+ checked = { false }
860
861
className = " pf-c-switch__input"
861
- defaultChecked = { false }
862
862
disabled = { false }
863
863
id = " someIdKey"
864
864
name = " Name of the field"
@@ -959,6 +959,7 @@ exports[`FormFields should render TextArea correctly 1`] = `
959
959
isRequired = { false }
960
960
isValid = { true }
961
961
name = " Name of the field"
962
+ resizeOrientation = " both"
962
963
value = " "
963
964
>
964
965
<textarea
@@ -1997,8 +1998,8 @@ exports[`FormFields should render disabled Switch correctly 1`] = `
1997
1998
<input
1998
1999
aria-label = " "
1999
2000
aria-labelledby = " someIdKey-on"
2001
+ checked = { false }
2000
2002
className = " pf-c-switch__input"
2001
- defaultChecked = { false }
2002
2003
disabled = { true }
2003
2004
id = " someIdKey"
2004
2005
name = " Name of the field"
@@ -2165,8 +2166,8 @@ exports[`FormFields should render disabled Switch correctly 2`] = `
2165
2166
<input
2166
2167
aria-label = " "
2167
2168
aria-labelledby = " someIdKey-on"
2169
+ checked = { false }
2168
2170
className = " pf-c-switch__input"
2169
- defaultChecked = { false }
2170
2171
disabled = { true }
2171
2172
id = " someIdKey"
2172
2173
name = " Name of the field"
@@ -2270,6 +2271,7 @@ exports[`FormFields should render disabled TextArea correctly 1`] = `
2270
2271
isRequired = { false }
2271
2272
isValid = { true }
2272
2273
name = " Name of the field"
2274
+ resizeOrientation = " both"
2273
2275
value = " "
2274
2276
>
2275
2277
<textarea
@@ -2486,8 +2488,8 @@ exports[`FormFields should render with onText/OffText Switch correctly 1`] = `
2486
2488
<input
2487
2489
aria-label = " "
2488
2490
aria-labelledby = " someIdKey-on"
2491
+ checked = { false }
2489
2492
className = " pf-c-switch__input"
2490
- defaultChecked = { false }
2491
2493
disabled = { false }
2492
2494
id = " someIdKey"
2493
2495
name = " Name of the field"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ exports[`Tabs component should render tabs correctly 1`] = `
5
5
activeKey = { 0 }
6
6
onSelect = { [Function ]}
7
7
>
8
- <ForwardRef
8
+ <Tab
9
9
eventKey = { 0 }
10
10
key = " cosiName"
11
11
title = " cosiTitle"
@@ -17,8 +17,8 @@ exports[`Tabs component should render tabs correctly 1`] = `
17
17
Here would be form
18
18
</div >
19
19
</div >
20
- </ForwardRef >
21
- <ForwardRef
20
+ </Tab >
21
+ <Tab
22
22
eventKey = { 1 }
23
23
key = " cosiName2"
24
24
title = " cosiTitle2"
@@ -30,6 +30,6 @@ exports[`Tabs component should render tabs correctly 1`] = `
30
30
Here would be form
31
31
</div >
32
32
</div >
33
- </ForwardRef >
33
+ </Tab >
34
34
</Component >
35
35
` ;
You can’t perform that action at this time.
0 commit comments