Skip to content

Commit c391374

Browse files
committed
Update PF deps
1 parent 6b539b9 commit c391374

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

packages/pf4-component-mapper/src/tests/__snapshots__/form-fields.test.js.snap

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -857,8 +857,8 @@ exports[`FormFields should render Switch correctly 1`] = `
857857
<input
858858
aria-label=""
859859
aria-labelledby="someIdKey-on"
860+
checked={false}
860861
className="pf-c-switch__input"
861-
defaultChecked={false}
862862
disabled={false}
863863
id="someIdKey"
864864
name="Name of the field"
@@ -959,6 +959,7 @@ exports[`FormFields should render TextArea correctly 1`] = `
959959
isRequired={false}
960960
isValid={true}
961961
name="Name of the field"
962+
resizeOrientation="both"
962963
value=""
963964
>
964965
<textarea
@@ -1997,8 +1998,8 @@ exports[`FormFields should render disabled Switch correctly 1`] = `
19971998
<input
19981999
aria-label=""
19992000
aria-labelledby="someIdKey-on"
2001+
checked={false}
20002002
className="pf-c-switch__input"
2001-
defaultChecked={false}
20022003
disabled={true}
20032004
id="someIdKey"
20042005
name="Name of the field"
@@ -2165,8 +2166,8 @@ exports[`FormFields should render disabled Switch correctly 2`] = `
21652166
<input
21662167
aria-label=""
21672168
aria-labelledby="someIdKey-on"
2169+
checked={false}
21682170
className="pf-c-switch__input"
2169-
defaultChecked={false}
21702171
disabled={true}
21712172
id="someIdKey"
21722173
name="Name of the field"
@@ -2270,6 +2271,7 @@ exports[`FormFields should render disabled TextArea correctly 1`] = `
22702271
isRequired={false}
22712272
isValid={true}
22722273
name="Name of the field"
2274+
resizeOrientation="both"
22732275
value=""
22742276
>
22752277
<textarea
@@ -2486,8 +2488,8 @@ exports[`FormFields should render with onText/OffText Switch correctly 1`] = `
24862488
<input
24872489
aria-label=""
24882490
aria-labelledby="someIdKey-on"
2491+
checked={false}
24892492
className="pf-c-switch__input"
2490-
defaultChecked={false}
24912493
disabled={false}
24922494
id="someIdKey"
24932495
name="Name of the field"

packages/pf4-component-mapper/src/tests/__snapshots__/tabs.test.js.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ exports[`Tabs component should render tabs correctly 1`] = `
55
activeKey={0}
66
onSelect={[Function]}
77
>
8-
<ForwardRef
8+
<Tab
99
eventKey={0}
1010
key="cosiName"
1111
title="cosiTitle"
@@ -17,8 +17,8 @@ exports[`Tabs component should render tabs correctly 1`] = `
1717
Here would be form
1818
</div>
1919
</div>
20-
</ForwardRef>
21-
<ForwardRef
20+
</Tab>
21+
<Tab
2222
eventKey={1}
2323
key="cosiName2"
2424
title="cosiTitle2"
@@ -30,6 +30,6 @@ exports[`Tabs component should render tabs correctly 1`] = `
3030
Here would be form
3131
</div>
3232
</div>
33-
</ForwardRef>
33+
</Tab>
3434
</Component>
3535
`;

0 commit comments

Comments
 (0)