Skip to content

Commit 2cbf9f6

Browse files
author
Harun.Karahan
committed
chore: snapshot update
1 parent 33e6598 commit 2cbf9f6

File tree

2 files changed

+46
-46
lines changed

2 files changed

+46
-46
lines changed

configs/e2e/native_dependencies.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"react-native-device-info": "14.0.4",
55
"react-native-action-button": "2.8.5",
66
"react-native-material-menu": "1.2.0",
7-
"react-native-linear-gradient": "3.0.0-alpha.1",
7+
"react-native-linear-gradient": "2.8.3",
88
"@react-native-community/netinfo": "11.4.1",
99
"react-native-svg": "15.7.1",
1010
"react-native-system-navigation-bar": "2.6.3",

packages/pluggableWidgets/background-gradient-native/src/__tests__/__snapshots__/backgroundGradient.spec.tsx.snap

+45-45
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ exports[`Background gradient render background gradient with custom style 1`] =
4242
<View
4343
style={{}}
4444
>
45-
<RNLinearGradient
45+
<BVLinearGradient
4646
angle={0}
4747
borderRadii={
4848
[
@@ -63,10 +63,10 @@ exports[`Background gradient render background gradient with custom style 1`] =
6363
]
6464
}
6565
endPoint={
66-
{
67-
"x": 0.5,
68-
"y": 1,
69-
}
66+
[
67+
0.5,
68+
1,
69+
]
7070
}
7171
locations={
7272
[
@@ -75,10 +75,10 @@ exports[`Background gradient render background gradient with custom style 1`] =
7575
]
7676
}
7777
startPoint={
78-
{
79-
"x": 0.5,
80-
"y": 0,
81-
}
78+
[
79+
0.5,
80+
0,
81+
]
8282
}
8383
style={
8484
{
@@ -140,7 +140,7 @@ exports[`Background gradient render background gradient with one color 1`] = `
140140
<View
141141
style={{}}
142142
>
143-
<RNLinearGradient
143+
<BVLinearGradient
144144
angle={0}
145145
borderRadii={
146146
[
@@ -161,10 +161,10 @@ exports[`Background gradient render background gradient with one color 1`] = `
161161
]
162162
}
163163
endPoint={
164-
{
165-
"x": 0.5,
166-
"y": 1,
167-
}
164+
[
165+
0.5,
166+
1,
167+
]
168168
}
169169
locations={
170170
[
@@ -173,10 +173,10 @@ exports[`Background gradient render background gradient with one color 1`] = `
173173
]
174174
}
175175
startPoint={
176-
{
177-
"x": 0.5,
178-
"y": 0,
179-
}
176+
[
177+
0.5,
178+
0,
179+
]
180180
}
181181
style={
182182
{
@@ -238,7 +238,7 @@ exports[`Background gradient render correctly 1`] = `
238238
<View
239239
style={{}}
240240
>
241-
<RNLinearGradient
241+
<BVLinearGradient
242242
angle={0}
243243
borderRadii={
244244
[
@@ -259,10 +259,10 @@ exports[`Background gradient render correctly 1`] = `
259259
]
260260
}
261261
endPoint={
262-
{
263-
"x": 0.5,
264-
"y": 1,
265-
}
262+
[
263+
0.5,
264+
1,
265+
]
266266
}
267267
locations={
268268
[
@@ -271,10 +271,10 @@ exports[`Background gradient render correctly 1`] = `
271271
]
272272
}
273273
startPoint={
274-
{
275-
"x": 0.5,
276-
"y": 0,
277-
}
274+
[
275+
0.5,
276+
0,
277+
]
278278
}
279279
style={
280280
{
@@ -336,7 +336,7 @@ exports[`Background gradient render with undefined angle 1`] = `
336336
<View
337337
style={{}}
338338
>
339-
<RNLinearGradient
339+
<BVLinearGradient
340340
angle={0}
341341
borderRadii={
342342
[
@@ -357,10 +357,10 @@ exports[`Background gradient render with undefined angle 1`] = `
357357
]
358358
}
359359
endPoint={
360-
{
361-
"x": 0.5,
362-
"y": 1,
363-
}
360+
[
361+
0.5,
362+
1,
363+
]
364364
}
365365
locations={
366366
[
@@ -369,10 +369,10 @@ exports[`Background gradient render with undefined angle 1`] = `
369369
]
370370
}
371371
startPoint={
372-
{
373-
"x": 0.5,
374-
"y": 0,
375-
}
372+
[
373+
0.5,
374+
0,
375+
]
376376
}
377377
style={
378378
{
@@ -434,7 +434,7 @@ exports[`Background gradient render with undefined opacity 1`] = `
434434
<View
435435
style={{}}
436436
>
437-
<RNLinearGradient
437+
<BVLinearGradient
438438
angle={0}
439439
borderRadii={
440440
[
@@ -455,10 +455,10 @@ exports[`Background gradient render with undefined opacity 1`] = `
455455
]
456456
}
457457
endPoint={
458-
{
459-
"x": 0.5,
460-
"y": 1,
461-
}
458+
[
459+
0.5,
460+
1,
461+
]
462462
}
463463
locations={
464464
[
@@ -467,10 +467,10 @@ exports[`Background gradient render with undefined opacity 1`] = `
467467
]
468468
}
469469
startPoint={
470-
{
471-
"x": 0.5,
472-
"y": 0,
473-
}
470+
[
471+
0.5,
472+
0,
473+
]
474474
}
475475
style={
476476
{

0 commit comments

Comments
 (0)