@pagopa/io-app-design-system 5.12.1 → 6.0.0-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/banner/__test__/__snapshots__/banner.test.tsx.snap +68 -2
- package/lib/commonjs/components/buttons/IOButton/__test__/__snapshots__/IOButton.test.tsx.snap +285 -9
- package/lib/commonjs/components/buttons/__test__/__snapshots__/button.test.tsx.snap +700 -33
- package/lib/commonjs/components/claimsSelector/ClaimsSelector.js +41 -23
- package/lib/commonjs/components/claimsSelector/ClaimsSelector.js.map +1 -1
- package/lib/commonjs/components/claimsSelector/__test__/__snapshots__/ClaimsSelector.test.tsx.snap +554 -188
- package/lib/commonjs/components/headers/HeaderFirstLevel.js +1 -1
- package/lib/commonjs/components/headers/HeaderFirstLevel.js.map +1 -1
- package/lib/commonjs/components/headers/HeaderSecondLevel.js +3 -2
- package/lib/commonjs/components/headers/HeaderSecondLevel.js.map +1 -1
- package/lib/commonjs/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +925 -41
- package/lib/commonjs/components/loadingSpinner/LoadingSpinner.js +14 -18
- package/lib/commonjs/components/loadingSpinner/LoadingSpinner.js.map +1 -1
- package/lib/commonjs/components/modules/__test__/__snapshots__/ModuleNavigationAlt.test.tsx.snap +304 -8
- package/lib/commonjs/components/numberpad/__test__/__snapshots__/NumberPad.test.tsx.snap +430 -32
- package/lib/commonjs/components/templates/Dismissable.js +6 -1
- package/lib/commonjs/components/templates/Dismissable.js.map +1 -1
- package/lib/commonjs/components/templates/ForceScrollDownView.js +5 -4
- package/lib/commonjs/components/templates/ForceScrollDownView.js.map +1 -1
- package/lib/commonjs/hooks/useAccordionAnimation.js +9 -1
- package/lib/commonjs/hooks/useAccordionAnimation.js.map +1 -1
- package/lib/module/components/banner/__test__/__snapshots__/banner.test.tsx.snap +68 -2
- package/lib/module/components/buttons/IOButton/__test__/__snapshots__/IOButton.test.tsx.snap +285 -9
- package/lib/module/components/buttons/__test__/__snapshots__/button.test.tsx.snap +700 -33
- package/lib/module/components/claimsSelector/ClaimsSelector.js +42 -24
- package/lib/module/components/claimsSelector/ClaimsSelector.js.map +1 -1
- package/lib/module/components/claimsSelector/__test__/__snapshots__/ClaimsSelector.test.tsx.snap +554 -188
- package/lib/module/components/headers/HeaderFirstLevel.js +2 -2
- package/lib/module/components/headers/HeaderFirstLevel.js.map +1 -1
- package/lib/module/components/headers/HeaderSecondLevel.js +4 -3
- package/lib/module/components/headers/HeaderSecondLevel.js.map +1 -1
- package/lib/module/components/layout/FooterActions.js.map +1 -1
- package/lib/module/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +925 -41
- package/lib/module/components/loadingSpinner/LoadingSpinner.js +15 -19
- package/lib/module/components/loadingSpinner/LoadingSpinner.js.map +1 -1
- package/lib/module/components/modules/__test__/__snapshots__/ModuleNavigationAlt.test.tsx.snap +304 -8
- package/lib/module/components/numberpad/__test__/__snapshots__/NumberPad.test.tsx.snap +430 -32
- package/lib/module/components/templates/Dismissable.js +7 -2
- package/lib/module/components/templates/Dismissable.js.map +1 -1
- package/lib/module/components/templates/ForceScrollDownView.js +6 -5
- package/lib/module/components/templates/ForceScrollDownView.js.map +1 -1
- package/lib/module/hooks/useAccordionAnimation.js +10 -2
- package/lib/module/hooks/useAccordionAnimation.js.map +1 -1
- package/lib/typescript/components/claimsSelector/ClaimsSelector.d.ts +7 -1
- package/lib/typescript/components/claimsSelector/ClaimsSelector.d.ts.map +1 -1
- package/lib/typescript/components/headers/HeaderSecondLevel.d.ts.map +1 -1
- package/lib/typescript/components/icons/Icon.d.ts +5 -1
- package/lib/typescript/components/icons/Icon.d.ts.map +1 -1
- package/lib/typescript/components/layout/FooterActions.d.ts +3 -3
- package/lib/typescript/components/layout/FooterActions.d.ts.map +1 -1
- package/lib/typescript/components/loadingSpinner/LoadingSpinner.d.ts.map +1 -1
- package/lib/typescript/components/templates/Dismissable.d.ts.map +1 -1
- package/lib/typescript/components/templates/ForceScrollDownView.d.ts +1 -1
- package/lib/typescript/components/templates/ForceScrollDownView.d.ts.map +1 -1
- package/lib/typescript/components/typography/IOText.d.ts +1 -1
- package/lib/typescript/components/typography/IOText.d.ts.map +1 -1
- package/lib/typescript/hooks/useAccordionAnimation.d.ts +4 -0
- package/lib/typescript/hooks/useAccordionAnimation.d.ts.map +1 -1
- package/package.json +7 -5
- package/src/components/banner/__test__/__snapshots__/banner.test.tsx.snap +68 -2
- package/src/components/buttons/IOButton/__test__/__snapshots__/IOButton.test.tsx.snap +285 -9
- package/src/components/buttons/__test__/__snapshots__/button.test.tsx.snap +700 -33
- package/src/components/claimsSelector/ClaimsSelector.tsx +56 -37
- package/src/components/claimsSelector/__test__/__snapshots__/ClaimsSelector.test.tsx.snap +554 -188
- package/src/components/headers/HeaderFirstLevel.tsx +2 -2
- package/src/components/headers/HeaderSecondLevel.tsx +4 -4
- package/src/components/layout/FooterActions.tsx +3 -3
- package/src/components/listitems/__test__/__snapshots__/listitem.test.tsx.snap +925 -41
- package/src/components/loadingSpinner/LoadingSpinner.tsx +20 -24
- package/src/components/modules/__test__/__snapshots__/ModuleNavigationAlt.test.tsx.snap +304 -8
- package/src/components/numberpad/__test__/__snapshots__/NumberPad.test.tsx.snap +430 -32
- package/src/components/templates/Dismissable.tsx +5 -2
- package/src/components/templates/ForceScrollDownView.tsx +7 -8
- package/src/hooks/useAccordionAnimation.tsx +13 -1
package/lib/commonjs/components/claimsSelector/__test__/__snapshots__/ClaimsSelector.test.tsx.snap
CHANGED
|
@@ -10,7 +10,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
10
10
|
"borderWidth": 1,
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
|
-
"backgroundColor": "#
|
|
13
|
+
"backgroundColor": "#FFFFFF",
|
|
14
14
|
"borderColor": "#E8EBF1",
|
|
15
15
|
},
|
|
16
16
|
]
|
|
@@ -49,14 +49,51 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
49
49
|
collapsable={false}
|
|
50
50
|
>
|
|
51
51
|
<View
|
|
52
|
-
|
|
52
|
+
collapsable={false}
|
|
53
|
+
jestAnimatedProps={
|
|
53
54
|
{
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
"value": {},
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
jestAnimatedStyle={
|
|
59
|
+
{
|
|
60
|
+
"value": {
|
|
61
|
+
"borderBottomLeftRadius": 7,
|
|
62
|
+
"borderBottomRightRadius": 7,
|
|
63
|
+
"borderTopLeftRadius": 7,
|
|
64
|
+
"borderTopRightRadius": 7,
|
|
65
|
+
"overflow": "hidden",
|
|
66
|
+
},
|
|
58
67
|
}
|
|
59
68
|
}
|
|
69
|
+
jestInlineStyle={
|
|
70
|
+
[
|
|
71
|
+
{
|
|
72
|
+
"alignItems": "center",
|
|
73
|
+
"flexDirection": "row",
|
|
74
|
+
"justifyContent": "space-between",
|
|
75
|
+
"padding": 16,
|
|
76
|
+
},
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
nativeID="0"
|
|
80
|
+
style={
|
|
81
|
+
[
|
|
82
|
+
{
|
|
83
|
+
"alignItems": "center",
|
|
84
|
+
"flexDirection": "row",
|
|
85
|
+
"justifyContent": "space-between",
|
|
86
|
+
"padding": 16,
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"borderBottomLeftRadius": 7,
|
|
90
|
+
"borderBottomRightRadius": 7,
|
|
91
|
+
"borderTopLeftRadius": 7,
|
|
92
|
+
"borderTopRightRadius": 7,
|
|
93
|
+
"overflow": "hidden",
|
|
94
|
+
},
|
|
95
|
+
]
|
|
96
|
+
}
|
|
60
97
|
>
|
|
61
98
|
<Text
|
|
62
99
|
allowFontScaling={true}
|
|
@@ -79,15 +116,36 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
79
116
|
Patente di guida
|
|
80
117
|
</Text>
|
|
81
118
|
<View
|
|
82
|
-
|
|
119
|
+
collapsable={false}
|
|
120
|
+
jestAnimatedProps={
|
|
83
121
|
{
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
122
|
+
"value": {},
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
jestAnimatedStyle={
|
|
126
|
+
{
|
|
127
|
+
"value": {
|
|
128
|
+
"transform": [
|
|
129
|
+
{
|
|
130
|
+
"rotate": "0deg",
|
|
131
|
+
},
|
|
132
|
+
],
|
|
133
|
+
},
|
|
89
134
|
}
|
|
90
135
|
}
|
|
136
|
+
jestInlineStyle={{}}
|
|
137
|
+
nativeID="1"
|
|
138
|
+
style={
|
|
139
|
+
[
|
|
140
|
+
{
|
|
141
|
+
"transform": [
|
|
142
|
+
{
|
|
143
|
+
"rotate": "0deg",
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
]
|
|
148
|
+
}
|
|
91
149
|
>
|
|
92
150
|
<RNSVGSvgView
|
|
93
151
|
accessibilityElementsHidden={true}
|
|
@@ -96,7 +154,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
96
154
|
align="xMidYMid"
|
|
97
155
|
bbHeight={24}
|
|
98
156
|
bbWidth={24}
|
|
99
|
-
color="#
|
|
157
|
+
color="#0E0F13"
|
|
100
158
|
focusable={false}
|
|
101
159
|
height={24}
|
|
102
160
|
importantForAccessibility="no-hide-descendants"
|
|
@@ -151,6 +209,27 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
151
209
|
</View>
|
|
152
210
|
</RNGestureHandlerButton>
|
|
153
211
|
<View
|
|
212
|
+
collapsable={false}
|
|
213
|
+
jestAnimatedProps={
|
|
214
|
+
{
|
|
215
|
+
"value": {},
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
jestAnimatedStyle={
|
|
219
|
+
{
|
|
220
|
+
"value": {
|
|
221
|
+
"height": 0,
|
|
222
|
+
},
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
jestInlineStyle={
|
|
226
|
+
[
|
|
227
|
+
{
|
|
228
|
+
"overflow": "hidden",
|
|
229
|
+
},
|
|
230
|
+
]
|
|
231
|
+
}
|
|
232
|
+
nativeID="2"
|
|
154
233
|
style={
|
|
155
234
|
[
|
|
156
235
|
{
|
|
@@ -214,6 +293,32 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
214
293
|
testID="ListItemCheckbox"
|
|
215
294
|
>
|
|
216
295
|
<View
|
|
296
|
+
collapsable={false}
|
|
297
|
+
jestAnimatedProps={
|
|
298
|
+
{
|
|
299
|
+
"value": {},
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
jestAnimatedStyle={
|
|
303
|
+
{
|
|
304
|
+
"value": {
|
|
305
|
+
"backgroundColor": "rgba(244, 245, 248, 0)",
|
|
306
|
+
},
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
jestInlineStyle={
|
|
310
|
+
[
|
|
311
|
+
{
|
|
312
|
+
"marginHorizontal": -24,
|
|
313
|
+
"paddingHorizontal": 24,
|
|
314
|
+
"paddingVertical": 12,
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"opacity": 1,
|
|
318
|
+
},
|
|
319
|
+
]
|
|
320
|
+
}
|
|
321
|
+
nativeID="3"
|
|
217
322
|
needsOffscreenAlphaCompositing={true}
|
|
218
323
|
style={
|
|
219
324
|
[
|
|
@@ -223,7 +328,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
223
328
|
"paddingVertical": 12,
|
|
224
329
|
},
|
|
225
330
|
{
|
|
226
|
-
"backgroundColor":
|
|
331
|
+
"backgroundColor": "rgba(244, 245, 248, 0)",
|
|
227
332
|
},
|
|
228
333
|
{
|
|
229
334
|
"opacity": 1,
|
|
@@ -232,15 +337,36 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
232
337
|
}
|
|
233
338
|
>
|
|
234
339
|
<View
|
|
235
|
-
|
|
340
|
+
collapsable={false}
|
|
341
|
+
jestAnimatedProps={
|
|
236
342
|
{
|
|
237
|
-
"
|
|
238
|
-
{
|
|
239
|
-
"scale": undefined,
|
|
240
|
-
},
|
|
241
|
-
],
|
|
343
|
+
"value": {},
|
|
242
344
|
}
|
|
243
345
|
}
|
|
346
|
+
jestAnimatedStyle={
|
|
347
|
+
{
|
|
348
|
+
"value": {
|
|
349
|
+
"transform": [
|
|
350
|
+
{
|
|
351
|
+
"scale": 1,
|
|
352
|
+
},
|
|
353
|
+
],
|
|
354
|
+
},
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
jestInlineStyle={{}}
|
|
358
|
+
nativeID="4"
|
|
359
|
+
style={
|
|
360
|
+
[
|
|
361
|
+
{
|
|
362
|
+
"transform": [
|
|
363
|
+
{
|
|
364
|
+
"scale": 1,
|
|
365
|
+
},
|
|
366
|
+
],
|
|
367
|
+
},
|
|
368
|
+
]
|
|
369
|
+
}
|
|
244
370
|
>
|
|
245
371
|
<View
|
|
246
372
|
style={
|
|
@@ -356,6 +482,43 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
356
482
|
}
|
|
357
483
|
/>
|
|
358
484
|
<View
|
|
485
|
+
collapsable={false}
|
|
486
|
+
jestAnimatedProps={
|
|
487
|
+
{
|
|
488
|
+
"value": {},
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
jestAnimatedStyle={
|
|
492
|
+
{
|
|
493
|
+
"value": {
|
|
494
|
+
"opacity": 1,
|
|
495
|
+
"transform": [
|
|
496
|
+
{
|
|
497
|
+
"scale": 1,
|
|
498
|
+
},
|
|
499
|
+
],
|
|
500
|
+
},
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
jestInlineStyle={
|
|
504
|
+
[
|
|
505
|
+
{
|
|
506
|
+
"borderCurve": "continuous",
|
|
507
|
+
"left": 0,
|
|
508
|
+
"position": "absolute",
|
|
509
|
+
"top": 0,
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"borderRadius": 5,
|
|
513
|
+
"height": 24,
|
|
514
|
+
"width": 24,
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"backgroundColor": "#0B3EE3",
|
|
518
|
+
},
|
|
519
|
+
]
|
|
520
|
+
}
|
|
521
|
+
nativeID="5"
|
|
359
522
|
style={
|
|
360
523
|
[
|
|
361
524
|
{
|
|
@@ -376,7 +539,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
376
539
|
"opacity": 1,
|
|
377
540
|
"transform": [
|
|
378
541
|
{
|
|
379
|
-
"scale":
|
|
542
|
+
"scale": 1,
|
|
380
543
|
},
|
|
381
544
|
],
|
|
382
545
|
},
|
|
@@ -434,6 +597,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
434
597
|
"stroke",
|
|
435
598
|
"strokeWidth",
|
|
436
599
|
"strokeDasharray",
|
|
600
|
+
"strokeDashoffset",
|
|
437
601
|
"strokeLinecap",
|
|
438
602
|
"strokeLinejoin",
|
|
439
603
|
]
|
|
@@ -445,6 +609,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
445
609
|
}
|
|
446
610
|
}
|
|
447
611
|
strokeDasharray={null}
|
|
612
|
+
strokeDashoffset={null}
|
|
448
613
|
strokeLinecap={1}
|
|
449
614
|
strokeLinejoin={1}
|
|
450
615
|
strokeWidth={2}
|
|
@@ -489,36 +654,6 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (controlled) 1`] = `
|
|
|
489
654
|
</View>
|
|
490
655
|
</View>
|
|
491
656
|
</View>
|
|
492
|
-
<BVLinearGradient
|
|
493
|
-
colors={
|
|
494
|
-
[
|
|
495
|
-
16053752,
|
|
496
|
-
4294243832,
|
|
497
|
-
]
|
|
498
|
-
}
|
|
499
|
-
endPoint={
|
|
500
|
-
{
|
|
501
|
-
"x": 0.5,
|
|
502
|
-
"y": 1,
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
locations={null}
|
|
506
|
-
startPoint={
|
|
507
|
-
{
|
|
508
|
-
"x": 0.5,
|
|
509
|
-
"y": 0,
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
style={
|
|
513
|
-
{
|
|
514
|
-
"bottom": 0,
|
|
515
|
-
"height": 16,
|
|
516
|
-
"left": 16,
|
|
517
|
-
"position": "absolute",
|
|
518
|
-
"right": 16,
|
|
519
|
-
}
|
|
520
|
-
}
|
|
521
|
-
/>
|
|
522
657
|
</View>
|
|
523
658
|
`;
|
|
524
659
|
|
|
@@ -532,7 +667,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (custom component) 1`] = `
|
|
|
532
667
|
"borderWidth": 1,
|
|
533
668
|
},
|
|
534
669
|
{
|
|
535
|
-
"backgroundColor": "#
|
|
670
|
+
"backgroundColor": "#FFFFFF",
|
|
536
671
|
"borderColor": "#E8EBF1",
|
|
537
672
|
},
|
|
538
673
|
]
|
|
@@ -571,14 +706,51 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (custom component) 1`] = `
|
|
|
571
706
|
collapsable={false}
|
|
572
707
|
>
|
|
573
708
|
<View
|
|
574
|
-
|
|
709
|
+
collapsable={false}
|
|
710
|
+
jestAnimatedProps={
|
|
575
711
|
{
|
|
576
|
-
"
|
|
577
|
-
"flexDirection": "row",
|
|
578
|
-
"justifyContent": "space-between",
|
|
579
|
-
"padding": 16,
|
|
712
|
+
"value": {},
|
|
580
713
|
}
|
|
581
714
|
}
|
|
715
|
+
jestAnimatedStyle={
|
|
716
|
+
{
|
|
717
|
+
"value": {
|
|
718
|
+
"borderBottomLeftRadius": 7,
|
|
719
|
+
"borderBottomRightRadius": 7,
|
|
720
|
+
"borderTopLeftRadius": 7,
|
|
721
|
+
"borderTopRightRadius": 7,
|
|
722
|
+
"overflow": "hidden",
|
|
723
|
+
},
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
jestInlineStyle={
|
|
727
|
+
[
|
|
728
|
+
{
|
|
729
|
+
"alignItems": "center",
|
|
730
|
+
"flexDirection": "row",
|
|
731
|
+
"justifyContent": "space-between",
|
|
732
|
+
"padding": 16,
|
|
733
|
+
},
|
|
734
|
+
]
|
|
735
|
+
}
|
|
736
|
+
nativeID="16"
|
|
737
|
+
style={
|
|
738
|
+
[
|
|
739
|
+
{
|
|
740
|
+
"alignItems": "center",
|
|
741
|
+
"flexDirection": "row",
|
|
742
|
+
"justifyContent": "space-between",
|
|
743
|
+
"padding": 16,
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"borderBottomLeftRadius": 7,
|
|
747
|
+
"borderBottomRightRadius": 7,
|
|
748
|
+
"borderTopLeftRadius": 7,
|
|
749
|
+
"borderTopRightRadius": 7,
|
|
750
|
+
"overflow": "hidden",
|
|
751
|
+
},
|
|
752
|
+
]
|
|
753
|
+
}
|
|
582
754
|
>
|
|
583
755
|
<Text
|
|
584
756
|
allowFontScaling={true}
|
|
@@ -601,15 +773,36 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (custom component) 1`] = `
|
|
|
601
773
|
Patente di guida
|
|
602
774
|
</Text>
|
|
603
775
|
<View
|
|
604
|
-
|
|
776
|
+
collapsable={false}
|
|
777
|
+
jestAnimatedProps={
|
|
605
778
|
{
|
|
606
|
-
"
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
779
|
+
"value": {},
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
jestAnimatedStyle={
|
|
783
|
+
{
|
|
784
|
+
"value": {
|
|
785
|
+
"transform": [
|
|
786
|
+
{
|
|
787
|
+
"rotate": "0deg",
|
|
788
|
+
},
|
|
789
|
+
],
|
|
790
|
+
},
|
|
611
791
|
}
|
|
612
792
|
}
|
|
793
|
+
jestInlineStyle={{}}
|
|
794
|
+
nativeID="17"
|
|
795
|
+
style={
|
|
796
|
+
[
|
|
797
|
+
{
|
|
798
|
+
"transform": [
|
|
799
|
+
{
|
|
800
|
+
"rotate": "0deg",
|
|
801
|
+
},
|
|
802
|
+
],
|
|
803
|
+
},
|
|
804
|
+
]
|
|
805
|
+
}
|
|
613
806
|
>
|
|
614
807
|
<RNSVGSvgView
|
|
615
808
|
accessibilityElementsHidden={true}
|
|
@@ -618,7 +811,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (custom component) 1`] = `
|
|
|
618
811
|
align="xMidYMid"
|
|
619
812
|
bbHeight={24}
|
|
620
813
|
bbWidth={24}
|
|
621
|
-
color="#
|
|
814
|
+
color="#0E0F13"
|
|
622
815
|
focusable={false}
|
|
623
816
|
height={24}
|
|
624
817
|
importantForAccessibility="no-hide-descendants"
|
|
@@ -673,6 +866,27 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (custom component) 1`] = `
|
|
|
673
866
|
</View>
|
|
674
867
|
</RNGestureHandlerButton>
|
|
675
868
|
<View
|
|
869
|
+
collapsable={false}
|
|
870
|
+
jestAnimatedProps={
|
|
871
|
+
{
|
|
872
|
+
"value": {},
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
jestAnimatedStyle={
|
|
876
|
+
{
|
|
877
|
+
"value": {
|
|
878
|
+
"height": 0,
|
|
879
|
+
},
|
|
880
|
+
}
|
|
881
|
+
}
|
|
882
|
+
jestInlineStyle={
|
|
883
|
+
[
|
|
884
|
+
{
|
|
885
|
+
"overflow": "hidden",
|
|
886
|
+
},
|
|
887
|
+
]
|
|
888
|
+
}
|
|
889
|
+
nativeID="18"
|
|
676
890
|
style={
|
|
677
891
|
[
|
|
678
892
|
{
|
|
@@ -782,36 +996,6 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (custom component) 1`] = `
|
|
|
782
996
|
</View>
|
|
783
997
|
</View>
|
|
784
998
|
</View>
|
|
785
|
-
<BVLinearGradient
|
|
786
|
-
colors={
|
|
787
|
-
[
|
|
788
|
-
16053752,
|
|
789
|
-
4294243832,
|
|
790
|
-
]
|
|
791
|
-
}
|
|
792
|
-
endPoint={
|
|
793
|
-
{
|
|
794
|
-
"x": 0.5,
|
|
795
|
-
"y": 1,
|
|
796
|
-
}
|
|
797
|
-
}
|
|
798
|
-
locations={null}
|
|
799
|
-
startPoint={
|
|
800
|
-
{
|
|
801
|
-
"x": 0.5,
|
|
802
|
-
"y": 0,
|
|
803
|
-
}
|
|
804
|
-
}
|
|
805
|
-
style={
|
|
806
|
-
{
|
|
807
|
-
"bottom": 0,
|
|
808
|
-
"height": 16,
|
|
809
|
-
"left": 16,
|
|
810
|
-
"position": "absolute",
|
|
811
|
-
"right": 16,
|
|
812
|
-
}
|
|
813
|
-
}
|
|
814
|
-
/>
|
|
815
999
|
</View>
|
|
816
1000
|
`;
|
|
817
1001
|
|
|
@@ -825,7 +1009,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
825
1009
|
"borderWidth": 1,
|
|
826
1010
|
},
|
|
827
1011
|
{
|
|
828
|
-
"backgroundColor": "#
|
|
1012
|
+
"backgroundColor": "#FFFFFF",
|
|
829
1013
|
"borderColor": "#E8EBF1",
|
|
830
1014
|
},
|
|
831
1015
|
]
|
|
@@ -864,14 +1048,51 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
864
1048
|
collapsable={false}
|
|
865
1049
|
>
|
|
866
1050
|
<View
|
|
867
|
-
|
|
1051
|
+
collapsable={false}
|
|
1052
|
+
jestAnimatedProps={
|
|
868
1053
|
{
|
|
869
|
-
"
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
1054
|
+
"value": {},
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
jestAnimatedStyle={
|
|
1058
|
+
{
|
|
1059
|
+
"value": {
|
|
1060
|
+
"borderBottomLeftRadius": 7,
|
|
1061
|
+
"borderBottomRightRadius": 7,
|
|
1062
|
+
"borderTopLeftRadius": 7,
|
|
1063
|
+
"borderTopRightRadius": 7,
|
|
1064
|
+
"overflow": "hidden",
|
|
1065
|
+
},
|
|
873
1066
|
}
|
|
874
1067
|
}
|
|
1068
|
+
jestInlineStyle={
|
|
1069
|
+
[
|
|
1070
|
+
{
|
|
1071
|
+
"alignItems": "center",
|
|
1072
|
+
"flexDirection": "row",
|
|
1073
|
+
"justifyContent": "space-between",
|
|
1074
|
+
"padding": 16,
|
|
1075
|
+
},
|
|
1076
|
+
]
|
|
1077
|
+
}
|
|
1078
|
+
nativeID="7"
|
|
1079
|
+
style={
|
|
1080
|
+
[
|
|
1081
|
+
{
|
|
1082
|
+
"alignItems": "center",
|
|
1083
|
+
"flexDirection": "row",
|
|
1084
|
+
"justifyContent": "space-between",
|
|
1085
|
+
"padding": 16,
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"borderBottomLeftRadius": 7,
|
|
1089
|
+
"borderBottomRightRadius": 7,
|
|
1090
|
+
"borderTopLeftRadius": 7,
|
|
1091
|
+
"borderTopRightRadius": 7,
|
|
1092
|
+
"overflow": "hidden",
|
|
1093
|
+
},
|
|
1094
|
+
]
|
|
1095
|
+
}
|
|
875
1096
|
>
|
|
876
1097
|
<Text
|
|
877
1098
|
allowFontScaling={true}
|
|
@@ -894,15 +1115,36 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
894
1115
|
Patente di guida
|
|
895
1116
|
</Text>
|
|
896
1117
|
<View
|
|
897
|
-
|
|
1118
|
+
collapsable={false}
|
|
1119
|
+
jestAnimatedProps={
|
|
898
1120
|
{
|
|
899
|
-
"
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
1121
|
+
"value": {},
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
jestAnimatedStyle={
|
|
1125
|
+
{
|
|
1126
|
+
"value": {
|
|
1127
|
+
"transform": [
|
|
1128
|
+
{
|
|
1129
|
+
"rotate": "0deg",
|
|
1130
|
+
},
|
|
1131
|
+
],
|
|
1132
|
+
},
|
|
904
1133
|
}
|
|
905
1134
|
}
|
|
1135
|
+
jestInlineStyle={{}}
|
|
1136
|
+
nativeID="8"
|
|
1137
|
+
style={
|
|
1138
|
+
[
|
|
1139
|
+
{
|
|
1140
|
+
"transform": [
|
|
1141
|
+
{
|
|
1142
|
+
"rotate": "0deg",
|
|
1143
|
+
},
|
|
1144
|
+
],
|
|
1145
|
+
},
|
|
1146
|
+
]
|
|
1147
|
+
}
|
|
906
1148
|
>
|
|
907
1149
|
<RNSVGSvgView
|
|
908
1150
|
accessibilityElementsHidden={true}
|
|
@@ -911,7 +1153,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
911
1153
|
align="xMidYMid"
|
|
912
1154
|
bbHeight={24}
|
|
913
1155
|
bbWidth={24}
|
|
914
|
-
color="#
|
|
1156
|
+
color="#0E0F13"
|
|
915
1157
|
focusable={false}
|
|
916
1158
|
height={24}
|
|
917
1159
|
importantForAccessibility="no-hide-descendants"
|
|
@@ -966,6 +1208,27 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
966
1208
|
</View>
|
|
967
1209
|
</RNGestureHandlerButton>
|
|
968
1210
|
<View
|
|
1211
|
+
collapsable={false}
|
|
1212
|
+
jestAnimatedProps={
|
|
1213
|
+
{
|
|
1214
|
+
"value": {},
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
jestAnimatedStyle={
|
|
1218
|
+
{
|
|
1219
|
+
"value": {
|
|
1220
|
+
"height": 0,
|
|
1221
|
+
},
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
jestInlineStyle={
|
|
1225
|
+
[
|
|
1226
|
+
{
|
|
1227
|
+
"overflow": "hidden",
|
|
1228
|
+
},
|
|
1229
|
+
]
|
|
1230
|
+
}
|
|
1231
|
+
nativeID="9"
|
|
969
1232
|
style={
|
|
970
1233
|
[
|
|
971
1234
|
{
|
|
@@ -1029,6 +1292,32 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
1029
1292
|
testID="ListItemCheckbox"
|
|
1030
1293
|
>
|
|
1031
1294
|
<View
|
|
1295
|
+
collapsable={false}
|
|
1296
|
+
jestAnimatedProps={
|
|
1297
|
+
{
|
|
1298
|
+
"value": {},
|
|
1299
|
+
}
|
|
1300
|
+
}
|
|
1301
|
+
jestAnimatedStyle={
|
|
1302
|
+
{
|
|
1303
|
+
"value": {
|
|
1304
|
+
"backgroundColor": "rgba(244, 245, 248, 0)",
|
|
1305
|
+
},
|
|
1306
|
+
}
|
|
1307
|
+
}
|
|
1308
|
+
jestInlineStyle={
|
|
1309
|
+
[
|
|
1310
|
+
{
|
|
1311
|
+
"marginHorizontal": -24,
|
|
1312
|
+
"paddingHorizontal": 24,
|
|
1313
|
+
"paddingVertical": 12,
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"opacity": 1,
|
|
1317
|
+
},
|
|
1318
|
+
]
|
|
1319
|
+
}
|
|
1320
|
+
nativeID="10"
|
|
1032
1321
|
needsOffscreenAlphaCompositing={true}
|
|
1033
1322
|
style={
|
|
1034
1323
|
[
|
|
@@ -1038,7 +1327,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
1038
1327
|
"paddingVertical": 12,
|
|
1039
1328
|
},
|
|
1040
1329
|
{
|
|
1041
|
-
"backgroundColor":
|
|
1330
|
+
"backgroundColor": "rgba(244, 245, 248, 0)",
|
|
1042
1331
|
},
|
|
1043
1332
|
{
|
|
1044
1333
|
"opacity": 1,
|
|
@@ -1047,15 +1336,36 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
1047
1336
|
}
|
|
1048
1337
|
>
|
|
1049
1338
|
<View
|
|
1050
|
-
|
|
1339
|
+
collapsable={false}
|
|
1340
|
+
jestAnimatedProps={
|
|
1051
1341
|
{
|
|
1052
|
-
"
|
|
1053
|
-
{
|
|
1054
|
-
"scale": undefined,
|
|
1055
|
-
},
|
|
1056
|
-
],
|
|
1342
|
+
"value": {},
|
|
1057
1343
|
}
|
|
1058
1344
|
}
|
|
1345
|
+
jestAnimatedStyle={
|
|
1346
|
+
{
|
|
1347
|
+
"value": {
|
|
1348
|
+
"transform": [
|
|
1349
|
+
{
|
|
1350
|
+
"scale": 1,
|
|
1351
|
+
},
|
|
1352
|
+
],
|
|
1353
|
+
},
|
|
1354
|
+
}
|
|
1355
|
+
}
|
|
1356
|
+
jestInlineStyle={{}}
|
|
1357
|
+
nativeID="11"
|
|
1358
|
+
style={
|
|
1359
|
+
[
|
|
1360
|
+
{
|
|
1361
|
+
"transform": [
|
|
1362
|
+
{
|
|
1363
|
+
"scale": 1,
|
|
1364
|
+
},
|
|
1365
|
+
],
|
|
1366
|
+
},
|
|
1367
|
+
]
|
|
1368
|
+
}
|
|
1059
1369
|
>
|
|
1060
1370
|
<View
|
|
1061
1371
|
style={
|
|
@@ -1171,6 +1481,43 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
1171
1481
|
}
|
|
1172
1482
|
/>
|
|
1173
1483
|
<View
|
|
1484
|
+
collapsable={false}
|
|
1485
|
+
jestAnimatedProps={
|
|
1486
|
+
{
|
|
1487
|
+
"value": {},
|
|
1488
|
+
}
|
|
1489
|
+
}
|
|
1490
|
+
jestAnimatedStyle={
|
|
1491
|
+
{
|
|
1492
|
+
"value": {
|
|
1493
|
+
"opacity": 0,
|
|
1494
|
+
"transform": [
|
|
1495
|
+
{
|
|
1496
|
+
"scale": 0.5,
|
|
1497
|
+
},
|
|
1498
|
+
],
|
|
1499
|
+
},
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
jestInlineStyle={
|
|
1503
|
+
[
|
|
1504
|
+
{
|
|
1505
|
+
"borderCurve": "continuous",
|
|
1506
|
+
"left": 0,
|
|
1507
|
+
"position": "absolute",
|
|
1508
|
+
"top": 0,
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"borderRadius": 5,
|
|
1512
|
+
"height": 24,
|
|
1513
|
+
"width": 24,
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"backgroundColor": "#0B3EE3",
|
|
1517
|
+
},
|
|
1518
|
+
]
|
|
1519
|
+
}
|
|
1520
|
+
nativeID="12"
|
|
1174
1521
|
style={
|
|
1175
1522
|
[
|
|
1176
1523
|
{
|
|
@@ -1191,7 +1538,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
1191
1538
|
"opacity": 0,
|
|
1192
1539
|
"transform": [
|
|
1193
1540
|
{
|
|
1194
|
-
"scale":
|
|
1541
|
+
"scale": 0.5,
|
|
1195
1542
|
},
|
|
1196
1543
|
],
|
|
1197
1544
|
},
|
|
@@ -1235,36 +1582,6 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (uncontrolled) 1`] = `
|
|
|
1235
1582
|
</View>
|
|
1236
1583
|
</View>
|
|
1237
1584
|
</View>
|
|
1238
|
-
<BVLinearGradient
|
|
1239
|
-
colors={
|
|
1240
|
-
[
|
|
1241
|
-
16053752,
|
|
1242
|
-
4294243832,
|
|
1243
|
-
]
|
|
1244
|
-
}
|
|
1245
|
-
endPoint={
|
|
1246
|
-
{
|
|
1247
|
-
"x": 0.5,
|
|
1248
|
-
"y": 1,
|
|
1249
|
-
}
|
|
1250
|
-
}
|
|
1251
|
-
locations={null}
|
|
1252
|
-
startPoint={
|
|
1253
|
-
{
|
|
1254
|
-
"x": 0.5,
|
|
1255
|
-
"y": 0,
|
|
1256
|
-
}
|
|
1257
|
-
}
|
|
1258
|
-
style={
|
|
1259
|
-
{
|
|
1260
|
-
"bottom": 0,
|
|
1261
|
-
"height": 16,
|
|
1262
|
-
"left": 16,
|
|
1263
|
-
"position": "absolute",
|
|
1264
|
-
"right": 16,
|
|
1265
|
-
}
|
|
1266
|
-
}
|
|
1267
|
-
/>
|
|
1268
1585
|
</View>
|
|
1269
1586
|
`;
|
|
1270
1587
|
|
|
@@ -1278,7 +1595,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (unselectable items) 1`] = `
|
|
|
1278
1595
|
"borderWidth": 1,
|
|
1279
1596
|
},
|
|
1280
1597
|
{
|
|
1281
|
-
"backgroundColor": "#
|
|
1598
|
+
"backgroundColor": "#FFFFFF",
|
|
1282
1599
|
"borderColor": "#E8EBF1",
|
|
1283
1600
|
},
|
|
1284
1601
|
]
|
|
@@ -1317,14 +1634,51 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (unselectable items) 1`] = `
|
|
|
1317
1634
|
collapsable={false}
|
|
1318
1635
|
>
|
|
1319
1636
|
<View
|
|
1320
|
-
|
|
1637
|
+
collapsable={false}
|
|
1638
|
+
jestAnimatedProps={
|
|
1321
1639
|
{
|
|
1322
|
-
"
|
|
1323
|
-
"flexDirection": "row",
|
|
1324
|
-
"justifyContent": "space-between",
|
|
1325
|
-
"padding": 16,
|
|
1640
|
+
"value": {},
|
|
1326
1641
|
}
|
|
1327
1642
|
}
|
|
1643
|
+
jestAnimatedStyle={
|
|
1644
|
+
{
|
|
1645
|
+
"value": {
|
|
1646
|
+
"borderBottomLeftRadius": 7,
|
|
1647
|
+
"borderBottomRightRadius": 7,
|
|
1648
|
+
"borderTopLeftRadius": 7,
|
|
1649
|
+
"borderTopRightRadius": 7,
|
|
1650
|
+
"overflow": "hidden",
|
|
1651
|
+
},
|
|
1652
|
+
}
|
|
1653
|
+
}
|
|
1654
|
+
jestInlineStyle={
|
|
1655
|
+
[
|
|
1656
|
+
{
|
|
1657
|
+
"alignItems": "center",
|
|
1658
|
+
"flexDirection": "row",
|
|
1659
|
+
"justifyContent": "space-between",
|
|
1660
|
+
"padding": 16,
|
|
1661
|
+
},
|
|
1662
|
+
]
|
|
1663
|
+
}
|
|
1664
|
+
nativeID="13"
|
|
1665
|
+
style={
|
|
1666
|
+
[
|
|
1667
|
+
{
|
|
1668
|
+
"alignItems": "center",
|
|
1669
|
+
"flexDirection": "row",
|
|
1670
|
+
"justifyContent": "space-between",
|
|
1671
|
+
"padding": 16,
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
"borderBottomLeftRadius": 7,
|
|
1675
|
+
"borderBottomRightRadius": 7,
|
|
1676
|
+
"borderTopLeftRadius": 7,
|
|
1677
|
+
"borderTopRightRadius": 7,
|
|
1678
|
+
"overflow": "hidden",
|
|
1679
|
+
},
|
|
1680
|
+
]
|
|
1681
|
+
}
|
|
1328
1682
|
>
|
|
1329
1683
|
<Text
|
|
1330
1684
|
allowFontScaling={true}
|
|
@@ -1347,15 +1701,36 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (unselectable items) 1`] = `
|
|
|
1347
1701
|
Patente di guida
|
|
1348
1702
|
</Text>
|
|
1349
1703
|
<View
|
|
1350
|
-
|
|
1704
|
+
collapsable={false}
|
|
1705
|
+
jestAnimatedProps={
|
|
1351
1706
|
{
|
|
1352
|
-
"
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1707
|
+
"value": {},
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
jestAnimatedStyle={
|
|
1711
|
+
{
|
|
1712
|
+
"value": {
|
|
1713
|
+
"transform": [
|
|
1714
|
+
{
|
|
1715
|
+
"rotate": "0deg",
|
|
1716
|
+
},
|
|
1717
|
+
],
|
|
1718
|
+
},
|
|
1357
1719
|
}
|
|
1358
1720
|
}
|
|
1721
|
+
jestInlineStyle={{}}
|
|
1722
|
+
nativeID="14"
|
|
1723
|
+
style={
|
|
1724
|
+
[
|
|
1725
|
+
{
|
|
1726
|
+
"transform": [
|
|
1727
|
+
{
|
|
1728
|
+
"rotate": "0deg",
|
|
1729
|
+
},
|
|
1730
|
+
],
|
|
1731
|
+
},
|
|
1732
|
+
]
|
|
1733
|
+
}
|
|
1359
1734
|
>
|
|
1360
1735
|
<RNSVGSvgView
|
|
1361
1736
|
accessibilityElementsHidden={true}
|
|
@@ -1364,7 +1739,7 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (unselectable items) 1`] = `
|
|
|
1364
1739
|
align="xMidYMid"
|
|
1365
1740
|
bbHeight={24}
|
|
1366
1741
|
bbWidth={24}
|
|
1367
|
-
color="#
|
|
1742
|
+
color="#0E0F13"
|
|
1368
1743
|
focusable={false}
|
|
1369
1744
|
height={24}
|
|
1370
1745
|
importantForAccessibility="no-hide-descendants"
|
|
@@ -1419,6 +1794,27 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (unselectable items) 1`] = `
|
|
|
1419
1794
|
</View>
|
|
1420
1795
|
</RNGestureHandlerButton>
|
|
1421
1796
|
<View
|
|
1797
|
+
collapsable={false}
|
|
1798
|
+
jestAnimatedProps={
|
|
1799
|
+
{
|
|
1800
|
+
"value": {},
|
|
1801
|
+
}
|
|
1802
|
+
}
|
|
1803
|
+
jestAnimatedStyle={
|
|
1804
|
+
{
|
|
1805
|
+
"value": {
|
|
1806
|
+
"height": 0,
|
|
1807
|
+
},
|
|
1808
|
+
}
|
|
1809
|
+
}
|
|
1810
|
+
jestInlineStyle={
|
|
1811
|
+
[
|
|
1812
|
+
{
|
|
1813
|
+
"overflow": "hidden",
|
|
1814
|
+
},
|
|
1815
|
+
]
|
|
1816
|
+
}
|
|
1817
|
+
nativeID="15"
|
|
1422
1818
|
style={
|
|
1423
1819
|
[
|
|
1424
1820
|
{
|
|
@@ -1534,35 +1930,5 @@ exports[`ClaimsSelector ClaimsSelector Snapshot (unselectable items) 1`] = `
|
|
|
1534
1930
|
</View>
|
|
1535
1931
|
</View>
|
|
1536
1932
|
</View>
|
|
1537
|
-
<BVLinearGradient
|
|
1538
|
-
colors={
|
|
1539
|
-
[
|
|
1540
|
-
16053752,
|
|
1541
|
-
4294243832,
|
|
1542
|
-
]
|
|
1543
|
-
}
|
|
1544
|
-
endPoint={
|
|
1545
|
-
{
|
|
1546
|
-
"x": 0.5,
|
|
1547
|
-
"y": 1,
|
|
1548
|
-
}
|
|
1549
|
-
}
|
|
1550
|
-
locations={null}
|
|
1551
|
-
startPoint={
|
|
1552
|
-
{
|
|
1553
|
-
"x": 0.5,
|
|
1554
|
-
"y": 0,
|
|
1555
|
-
}
|
|
1556
|
-
}
|
|
1557
|
-
style={
|
|
1558
|
-
{
|
|
1559
|
-
"bottom": 0,
|
|
1560
|
-
"height": 16,
|
|
1561
|
-
"left": 16,
|
|
1562
|
-
"position": "absolute",
|
|
1563
|
-
"right": 16,
|
|
1564
|
-
}
|
|
1565
|
-
}
|
|
1566
|
-
/>
|
|
1567
1933
|
</View>
|
|
1568
1934
|
`;
|