@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
|
@@ -48,6 +48,48 @@ exports[`Test Buttons Components - Experimental Enabled ButtonLink Snapshot 1`]
|
|
|
48
48
|
}
|
|
49
49
|
>
|
|
50
50
|
<View
|
|
51
|
+
collapsable={false}
|
|
52
|
+
jestAnimatedProps={
|
|
53
|
+
{
|
|
54
|
+
"value": {},
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
jestAnimatedStyle={
|
|
58
|
+
{
|
|
59
|
+
"value": {
|
|
60
|
+
"transform": [
|
|
61
|
+
{
|
|
62
|
+
"scale": 1,
|
|
63
|
+
},
|
|
64
|
+
],
|
|
65
|
+
},
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
jestInlineStyle={
|
|
69
|
+
[
|
|
70
|
+
{
|
|
71
|
+
"alignItems": "center",
|
|
72
|
+
"borderCurve": "continuous",
|
|
73
|
+
"elevation": 0,
|
|
74
|
+
"flexDirection": "row",
|
|
75
|
+
"justifyContent": "center",
|
|
76
|
+
"overflow": "hidden",
|
|
77
|
+
"textAlignVertical": "center",
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"paddingHorizontal": 0,
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"backgroundColor": "transparent",
|
|
84
|
+
"borderColor": "#0B3EE3",
|
|
85
|
+
"borderRadius": 8,
|
|
86
|
+
"borderWidth": 0,
|
|
87
|
+
"height": undefined,
|
|
88
|
+
},
|
|
89
|
+
{},
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
nativeID="12"
|
|
51
93
|
style={
|
|
52
94
|
[
|
|
53
95
|
{
|
|
@@ -62,7 +104,7 @@ exports[`Test Buttons Components - Experimental Enabled ButtonLink Snapshot 1`]
|
|
|
62
104
|
{
|
|
63
105
|
"transform": [
|
|
64
106
|
{
|
|
65
|
-
"scale":
|
|
107
|
+
"scale": 1,
|
|
66
108
|
},
|
|
67
109
|
],
|
|
68
110
|
},
|
|
@@ -82,6 +124,31 @@ exports[`Test Buttons Components - Experimental Enabled ButtonLink Snapshot 1`]
|
|
|
82
124
|
}
|
|
83
125
|
>
|
|
84
126
|
<View
|
|
127
|
+
collapsable={false}
|
|
128
|
+
jestAnimatedProps={
|
|
129
|
+
{
|
|
130
|
+
"value": {},
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
jestAnimatedStyle={
|
|
134
|
+
{
|
|
135
|
+
"value": {},
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
jestInlineStyle={
|
|
139
|
+
[
|
|
140
|
+
{
|
|
141
|
+
"alignItems": "center",
|
|
142
|
+
"flexDirection": "row",
|
|
143
|
+
"justifyContent": "center",
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"columnGap": 8,
|
|
147
|
+
},
|
|
148
|
+
false,
|
|
149
|
+
]
|
|
150
|
+
}
|
|
151
|
+
nativeID="13"
|
|
85
152
|
style={
|
|
86
153
|
[
|
|
87
154
|
{
|
|
@@ -100,9 +167,33 @@ exports[`Test Buttons Components - Experimental Enabled ButtonLink Snapshot 1`]
|
|
|
100
167
|
accessibilityElementsHidden={true}
|
|
101
168
|
accessible={false}
|
|
102
169
|
allowFontScaling={true}
|
|
170
|
+
collapsable={false}
|
|
103
171
|
ellipsizeMode="tail"
|
|
104
172
|
importantForAccessibility="no-hide-descendants"
|
|
173
|
+
jestAnimatedProps={
|
|
174
|
+
{
|
|
175
|
+
"value": {},
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
jestAnimatedStyle={
|
|
179
|
+
{
|
|
180
|
+
"value": {
|
|
181
|
+
"color": "rgba(11, 62, 227, 1)",
|
|
182
|
+
},
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
jestInlineStyle={
|
|
186
|
+
[
|
|
187
|
+
{
|
|
188
|
+
"textAlign": "auto",
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"color": "#0B3EE3",
|
|
192
|
+
},
|
|
193
|
+
]
|
|
194
|
+
}
|
|
105
195
|
maxFontSizeMultiplier={1.5}
|
|
196
|
+
nativeID="14"
|
|
106
197
|
numberOfLines={1}
|
|
107
198
|
style={
|
|
108
199
|
[
|
|
@@ -123,7 +214,7 @@ exports[`Test Buttons Components - Experimental Enabled ButtonLink Snapshot 1`]
|
|
|
123
214
|
"color": "#0B3EE3",
|
|
124
215
|
},
|
|
125
216
|
{
|
|
126
|
-
"color":
|
|
217
|
+
"color": "rgba(11, 62, 227, 1)",
|
|
127
218
|
},
|
|
128
219
|
],
|
|
129
220
|
]
|
|
@@ -177,6 +268,50 @@ exports[`Test Buttons Components - Experimental Enabled ButtonOutline Snapshot 1
|
|
|
177
268
|
}
|
|
178
269
|
>
|
|
179
270
|
<View
|
|
271
|
+
collapsable={false}
|
|
272
|
+
jestAnimatedProps={
|
|
273
|
+
{
|
|
274
|
+
"value": {},
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
jestAnimatedStyle={
|
|
278
|
+
{
|
|
279
|
+
"value": {
|
|
280
|
+
"backgroundColor": "rgba(9, 50, 182, 0)",
|
|
281
|
+
"borderColor": "rgba(11, 62, 227, 1)",
|
|
282
|
+
"transform": [
|
|
283
|
+
{
|
|
284
|
+
"scale": 1,
|
|
285
|
+
},
|
|
286
|
+
],
|
|
287
|
+
},
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
jestInlineStyle={
|
|
291
|
+
[
|
|
292
|
+
{
|
|
293
|
+
"alignItems": "center",
|
|
294
|
+
"borderCurve": "continuous",
|
|
295
|
+
"elevation": 0,
|
|
296
|
+
"flexDirection": "row",
|
|
297
|
+
"justifyContent": "center",
|
|
298
|
+
"overflow": "hidden",
|
|
299
|
+
"textAlignVertical": "center",
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"paddingHorizontal": 24,
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"backgroundColor": "rgba(9,50,182,0)",
|
|
306
|
+
"borderColor": "#0B3EE3",
|
|
307
|
+
"borderRadius": 8,
|
|
308
|
+
"borderWidth": 2,
|
|
309
|
+
"height": 48,
|
|
310
|
+
},
|
|
311
|
+
{},
|
|
312
|
+
]
|
|
313
|
+
}
|
|
314
|
+
nativeID="15"
|
|
180
315
|
style={
|
|
181
316
|
[
|
|
182
317
|
{
|
|
@@ -191,13 +326,13 @@ exports[`Test Buttons Components - Experimental Enabled ButtonOutline Snapshot 1
|
|
|
191
326
|
{
|
|
192
327
|
"transform": [
|
|
193
328
|
{
|
|
194
|
-
"scale":
|
|
329
|
+
"scale": 1,
|
|
195
330
|
},
|
|
196
331
|
],
|
|
197
332
|
},
|
|
198
333
|
{
|
|
199
|
-
"backgroundColor":
|
|
200
|
-
"borderColor":
|
|
334
|
+
"backgroundColor": "rgba(9, 50, 182, 0)",
|
|
335
|
+
"borderColor": "rgba(11, 62, 227, 1)",
|
|
201
336
|
},
|
|
202
337
|
{
|
|
203
338
|
"paddingHorizontal": 24,
|
|
@@ -214,6 +349,31 @@ exports[`Test Buttons Components - Experimental Enabled ButtonOutline Snapshot 1
|
|
|
214
349
|
}
|
|
215
350
|
>
|
|
216
351
|
<View
|
|
352
|
+
collapsable={false}
|
|
353
|
+
jestAnimatedProps={
|
|
354
|
+
{
|
|
355
|
+
"value": {},
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
jestAnimatedStyle={
|
|
359
|
+
{
|
|
360
|
+
"value": {},
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
jestInlineStyle={
|
|
364
|
+
[
|
|
365
|
+
{
|
|
366
|
+
"alignItems": "center",
|
|
367
|
+
"flexDirection": "row",
|
|
368
|
+
"justifyContent": "center",
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"columnGap": 8,
|
|
372
|
+
},
|
|
373
|
+
false,
|
|
374
|
+
]
|
|
375
|
+
}
|
|
376
|
+
nativeID="16"
|
|
217
377
|
style={
|
|
218
378
|
[
|
|
219
379
|
{
|
|
@@ -232,9 +392,33 @@ exports[`Test Buttons Components - Experimental Enabled ButtonOutline Snapshot 1
|
|
|
232
392
|
accessibilityElementsHidden={true}
|
|
233
393
|
accessible={false}
|
|
234
394
|
allowFontScaling={true}
|
|
395
|
+
collapsable={false}
|
|
235
396
|
ellipsizeMode="tail"
|
|
236
397
|
importantForAccessibility="no-hide-descendants"
|
|
398
|
+
jestAnimatedProps={
|
|
399
|
+
{
|
|
400
|
+
"value": {},
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
jestAnimatedStyle={
|
|
404
|
+
{
|
|
405
|
+
"value": {
|
|
406
|
+
"color": "rgba(11, 62, 227, 1)",
|
|
407
|
+
},
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
jestInlineStyle={
|
|
411
|
+
[
|
|
412
|
+
{
|
|
413
|
+
"textAlign": "auto",
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"color": "#0B3EE3",
|
|
417
|
+
},
|
|
418
|
+
]
|
|
419
|
+
}
|
|
237
420
|
maxFontSizeMultiplier={1.5}
|
|
421
|
+
nativeID="17"
|
|
238
422
|
numberOfLines={1}
|
|
239
423
|
style={
|
|
240
424
|
[
|
|
@@ -255,7 +439,7 @@ exports[`Test Buttons Components - Experimental Enabled ButtonOutline Snapshot 1
|
|
|
255
439
|
"color": "#0B3EE3",
|
|
256
440
|
},
|
|
257
441
|
{
|
|
258
|
-
"color":
|
|
442
|
+
"color": "rgba(11, 62, 227, 1)",
|
|
259
443
|
},
|
|
260
444
|
],
|
|
261
445
|
]
|
|
@@ -309,6 +493,49 @@ exports[`Test Buttons Components - Experimental Enabled ButtonSolid Snapshot 1`]
|
|
|
309
493
|
}
|
|
310
494
|
>
|
|
311
495
|
<View
|
|
496
|
+
collapsable={false}
|
|
497
|
+
jestAnimatedProps={
|
|
498
|
+
{
|
|
499
|
+
"value": {},
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
jestAnimatedStyle={
|
|
503
|
+
{
|
|
504
|
+
"value": {
|
|
505
|
+
"backgroundColor": "rgba(11, 62, 227, 1)",
|
|
506
|
+
"transform": [
|
|
507
|
+
{
|
|
508
|
+
"scale": 1,
|
|
509
|
+
},
|
|
510
|
+
],
|
|
511
|
+
},
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
jestInlineStyle={
|
|
515
|
+
[
|
|
516
|
+
{
|
|
517
|
+
"alignItems": "center",
|
|
518
|
+
"borderCurve": "continuous",
|
|
519
|
+
"elevation": 0,
|
|
520
|
+
"flexDirection": "row",
|
|
521
|
+
"justifyContent": "center",
|
|
522
|
+
"overflow": "hidden",
|
|
523
|
+
"textAlignVertical": "center",
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"paddingHorizontal": 24,
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"backgroundColor": "#0B3EE3",
|
|
530
|
+
"borderColor": "#FFFFFF",
|
|
531
|
+
"borderRadius": 8,
|
|
532
|
+
"borderWidth": 0,
|
|
533
|
+
"height": 48,
|
|
534
|
+
},
|
|
535
|
+
{},
|
|
536
|
+
]
|
|
537
|
+
}
|
|
538
|
+
nativeID="9"
|
|
312
539
|
style={
|
|
313
540
|
[
|
|
314
541
|
{
|
|
@@ -323,12 +550,12 @@ exports[`Test Buttons Components - Experimental Enabled ButtonSolid Snapshot 1`]
|
|
|
323
550
|
{
|
|
324
551
|
"transform": [
|
|
325
552
|
{
|
|
326
|
-
"scale":
|
|
553
|
+
"scale": 1,
|
|
327
554
|
},
|
|
328
555
|
],
|
|
329
556
|
},
|
|
330
557
|
{
|
|
331
|
-
"backgroundColor":
|
|
558
|
+
"backgroundColor": "rgba(11, 62, 227, 1)",
|
|
332
559
|
},
|
|
333
560
|
{
|
|
334
561
|
"paddingHorizontal": 24,
|
|
@@ -345,6 +572,31 @@ exports[`Test Buttons Components - Experimental Enabled ButtonSolid Snapshot 1`]
|
|
|
345
572
|
}
|
|
346
573
|
>
|
|
347
574
|
<View
|
|
575
|
+
collapsable={false}
|
|
576
|
+
jestAnimatedProps={
|
|
577
|
+
{
|
|
578
|
+
"value": {},
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
jestAnimatedStyle={
|
|
582
|
+
{
|
|
583
|
+
"value": {},
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
jestInlineStyle={
|
|
587
|
+
[
|
|
588
|
+
{
|
|
589
|
+
"alignItems": "center",
|
|
590
|
+
"flexDirection": "row",
|
|
591
|
+
"justifyContent": "center",
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"columnGap": 8,
|
|
595
|
+
},
|
|
596
|
+
false,
|
|
597
|
+
]
|
|
598
|
+
}
|
|
599
|
+
nativeID="10"
|
|
348
600
|
style={
|
|
349
601
|
[
|
|
350
602
|
{
|
|
@@ -363,9 +615,33 @@ exports[`Test Buttons Components - Experimental Enabled ButtonSolid Snapshot 1`]
|
|
|
363
615
|
accessibilityElementsHidden={true}
|
|
364
616
|
accessible={false}
|
|
365
617
|
allowFontScaling={true}
|
|
618
|
+
collapsable={false}
|
|
366
619
|
ellipsizeMode="tail"
|
|
367
620
|
importantForAccessibility="no-hide-descendants"
|
|
621
|
+
jestAnimatedProps={
|
|
622
|
+
{
|
|
623
|
+
"value": {},
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
jestAnimatedStyle={
|
|
627
|
+
{
|
|
628
|
+
"value": {
|
|
629
|
+
"color": "rgba(255, 255, 255, 1)",
|
|
630
|
+
},
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
jestInlineStyle={
|
|
634
|
+
[
|
|
635
|
+
{
|
|
636
|
+
"textAlign": "auto",
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"color": "#FFFFFF",
|
|
640
|
+
},
|
|
641
|
+
]
|
|
642
|
+
}
|
|
368
643
|
maxFontSizeMultiplier={1.5}
|
|
644
|
+
nativeID="11"
|
|
369
645
|
numberOfLines={1}
|
|
370
646
|
style={
|
|
371
647
|
[
|
|
@@ -386,7 +662,7 @@ exports[`Test Buttons Components - Experimental Enabled ButtonSolid Snapshot 1`]
|
|
|
386
662
|
"color": "#FFFFFF",
|
|
387
663
|
},
|
|
388
664
|
{
|
|
389
|
-
"color":
|
|
665
|
+
"color": "rgba(255, 255, 255, 1)",
|
|
390
666
|
},
|
|
391
667
|
],
|
|
392
668
|
]
|
|
@@ -435,6 +711,36 @@ exports[`Test Buttons Components - Experimental Enabled IconButton Snapshot 1`]
|
|
|
435
711
|
onStartShouldSetResponder={[Function]}
|
|
436
712
|
>
|
|
437
713
|
<View
|
|
714
|
+
collapsable={false}
|
|
715
|
+
jestAnimatedProps={
|
|
716
|
+
{
|
|
717
|
+
"value": {},
|
|
718
|
+
}
|
|
719
|
+
}
|
|
720
|
+
jestAnimatedStyle={
|
|
721
|
+
{
|
|
722
|
+
"value": {
|
|
723
|
+
"transform": [
|
|
724
|
+
{
|
|
725
|
+
"scale": 1,
|
|
726
|
+
},
|
|
727
|
+
],
|
|
728
|
+
},
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
jestInlineStyle={
|
|
732
|
+
[
|
|
733
|
+
{
|
|
734
|
+
"alignItems": "center",
|
|
735
|
+
"justifyContent": "center",
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"height": 24,
|
|
739
|
+
"width": 24,
|
|
740
|
+
},
|
|
741
|
+
]
|
|
742
|
+
}
|
|
743
|
+
nativeID="19"
|
|
438
744
|
style={
|
|
439
745
|
[
|
|
440
746
|
{
|
|
@@ -448,7 +754,7 @@ exports[`Test Buttons Components - Experimental Enabled IconButton Snapshot 1`]
|
|
|
448
754
|
{
|
|
449
755
|
"transform": [
|
|
450
756
|
{
|
|
451
|
-
"scale":
|
|
757
|
+
"scale": 1,
|
|
452
758
|
},
|
|
453
759
|
],
|
|
454
760
|
},
|
|
@@ -460,20 +766,29 @@ exports[`Test Buttons Components - Experimental Enabled IconButton Snapshot 1`]
|
|
|
460
766
|
accessibilityLabel=""
|
|
461
767
|
accessible={false}
|
|
462
768
|
align="xMidYMid"
|
|
463
|
-
animatedProps={
|
|
464
|
-
{
|
|
465
|
-
"color": undefined,
|
|
466
|
-
}
|
|
467
|
-
}
|
|
468
769
|
bbHeight={24}
|
|
469
770
|
bbWidth={24}
|
|
771
|
+
collapsable={false}
|
|
470
772
|
color="#0B3EE3"
|
|
471
773
|
focusable={false}
|
|
472
774
|
height={24}
|
|
473
775
|
importantForAccessibility="no-hide-descendants"
|
|
776
|
+
jestAnimatedProps={
|
|
777
|
+
{
|
|
778
|
+
"value": {
|
|
779
|
+
"color": "rgba(11, 62, 227, 1)",
|
|
780
|
+
},
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
jestAnimatedStyle={
|
|
784
|
+
{
|
|
785
|
+
"value": {},
|
|
786
|
+
}
|
|
787
|
+
}
|
|
474
788
|
meetOrSlice={0}
|
|
475
789
|
minX={0}
|
|
476
790
|
minY={0}
|
|
791
|
+
nativeID="20"
|
|
477
792
|
style={
|
|
478
793
|
[
|
|
479
794
|
{
|
|
@@ -561,6 +876,38 @@ exports[`Test Buttons Components - Experimental Enabled IconButtonContained Snap
|
|
|
561
876
|
}
|
|
562
877
|
>
|
|
563
878
|
<View
|
|
879
|
+
collapsable={false}
|
|
880
|
+
jestAnimatedProps={
|
|
881
|
+
{
|
|
882
|
+
"value": {},
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
jestAnimatedStyle={
|
|
886
|
+
{
|
|
887
|
+
"value": {
|
|
888
|
+
"backgroundColor": "rgba(11, 62, 227, 0)",
|
|
889
|
+
"transform": [
|
|
890
|
+
{
|
|
891
|
+
"scale": 1,
|
|
892
|
+
},
|
|
893
|
+
],
|
|
894
|
+
},
|
|
895
|
+
}
|
|
896
|
+
}
|
|
897
|
+
jestInlineStyle={
|
|
898
|
+
[
|
|
899
|
+
{
|
|
900
|
+
"alignItems": "center",
|
|
901
|
+
"justifyContent": "center",
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"borderRadius": 48,
|
|
905
|
+
"height": 48,
|
|
906
|
+
"width": 48,
|
|
907
|
+
},
|
|
908
|
+
]
|
|
909
|
+
}
|
|
910
|
+
nativeID="21"
|
|
564
911
|
style={
|
|
565
912
|
[
|
|
566
913
|
{
|
|
@@ -575,12 +922,12 @@ exports[`Test Buttons Components - Experimental Enabled IconButtonContained Snap
|
|
|
575
922
|
{
|
|
576
923
|
"transform": [
|
|
577
924
|
{
|
|
578
|
-
"scale":
|
|
925
|
+
"scale": 1,
|
|
579
926
|
},
|
|
580
927
|
],
|
|
581
928
|
},
|
|
582
929
|
{
|
|
583
|
-
"backgroundColor":
|
|
930
|
+
"backgroundColor": "rgba(11, 62, 227, 0)",
|
|
584
931
|
},
|
|
585
932
|
]
|
|
586
933
|
}
|
|
@@ -590,20 +937,29 @@ exports[`Test Buttons Components - Experimental Enabled IconButtonContained Snap
|
|
|
590
937
|
accessibilityLabel=""
|
|
591
938
|
accessible={false}
|
|
592
939
|
align="xMidYMid"
|
|
593
|
-
animatedProps={
|
|
594
|
-
{
|
|
595
|
-
"color": undefined,
|
|
596
|
-
}
|
|
597
|
-
}
|
|
598
940
|
bbHeight={24}
|
|
599
941
|
bbWidth={24}
|
|
942
|
+
collapsable={false}
|
|
600
943
|
color="#0B3EE3"
|
|
601
944
|
focusable={false}
|
|
602
945
|
height={24}
|
|
603
946
|
importantForAccessibility="no-hide-descendants"
|
|
947
|
+
jestAnimatedProps={
|
|
948
|
+
{
|
|
949
|
+
"value": {
|
|
950
|
+
"color": "rgba(11, 62, 227, 1)",
|
|
951
|
+
},
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
jestAnimatedStyle={
|
|
955
|
+
{
|
|
956
|
+
"value": {},
|
|
957
|
+
}
|
|
958
|
+
}
|
|
604
959
|
meetOrSlice={0}
|
|
605
960
|
minX={0}
|
|
606
961
|
minY={0}
|
|
962
|
+
nativeID="22"
|
|
607
963
|
style={
|
|
608
964
|
[
|
|
609
965
|
{
|
|
@@ -691,6 +1047,41 @@ exports[`Test Buttons Components - Experimental Enabled IconButtonSolid Snapshot
|
|
|
691
1047
|
}
|
|
692
1048
|
>
|
|
693
1049
|
<View
|
|
1050
|
+
collapsable={false}
|
|
1051
|
+
jestAnimatedProps={
|
|
1052
|
+
{
|
|
1053
|
+
"value": {},
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
jestAnimatedStyle={
|
|
1057
|
+
{
|
|
1058
|
+
"value": {
|
|
1059
|
+
"backgroundColor": "rgba(11, 62, 227, 1)",
|
|
1060
|
+
"transform": [
|
|
1061
|
+
{
|
|
1062
|
+
"scale": 1,
|
|
1063
|
+
},
|
|
1064
|
+
],
|
|
1065
|
+
},
|
|
1066
|
+
}
|
|
1067
|
+
}
|
|
1068
|
+
jestInlineStyle={
|
|
1069
|
+
[
|
|
1070
|
+
{
|
|
1071
|
+
"alignItems": "center",
|
|
1072
|
+
"justifyContent": "center",
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"borderRadius": 56,
|
|
1076
|
+
"height": 56,
|
|
1077
|
+
"width": 56,
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"backgroundColor": "#0B3EE3",
|
|
1081
|
+
},
|
|
1082
|
+
]
|
|
1083
|
+
}
|
|
1084
|
+
nativeID="18"
|
|
694
1085
|
style={
|
|
695
1086
|
[
|
|
696
1087
|
{
|
|
@@ -705,12 +1096,12 @@ exports[`Test Buttons Components - Experimental Enabled IconButtonSolid Snapshot
|
|
|
705
1096
|
{
|
|
706
1097
|
"transform": [
|
|
707
1098
|
{
|
|
708
|
-
"scale":
|
|
1099
|
+
"scale": 1,
|
|
709
1100
|
},
|
|
710
1101
|
],
|
|
711
1102
|
},
|
|
712
1103
|
{
|
|
713
|
-
"backgroundColor":
|
|
1104
|
+
"backgroundColor": "rgba(11, 62, 227, 1)",
|
|
714
1105
|
},
|
|
715
1106
|
{
|
|
716
1107
|
"backgroundColor": "#0B3EE3",
|
|
@@ -827,6 +1218,48 @@ exports[`Test Buttons Components ButtonLink Snapshot 1`] = `
|
|
|
827
1218
|
}
|
|
828
1219
|
>
|
|
829
1220
|
<View
|
|
1221
|
+
collapsable={false}
|
|
1222
|
+
jestAnimatedProps={
|
|
1223
|
+
{
|
|
1224
|
+
"value": {},
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
jestAnimatedStyle={
|
|
1228
|
+
{
|
|
1229
|
+
"value": {
|
|
1230
|
+
"transform": [
|
|
1231
|
+
{
|
|
1232
|
+
"scale": 1,
|
|
1233
|
+
},
|
|
1234
|
+
],
|
|
1235
|
+
},
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
jestInlineStyle={
|
|
1239
|
+
[
|
|
1240
|
+
{
|
|
1241
|
+
"alignItems": "center",
|
|
1242
|
+
"borderCurve": "continuous",
|
|
1243
|
+
"elevation": 0,
|
|
1244
|
+
"flexDirection": "row",
|
|
1245
|
+
"justifyContent": "center",
|
|
1246
|
+
"overflow": "hidden",
|
|
1247
|
+
"textAlignVertical": "center",
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"paddingHorizontal": 0,
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"backgroundColor": "transparent",
|
|
1254
|
+
"borderColor": "#0B3EE3",
|
|
1255
|
+
"borderRadius": 8,
|
|
1256
|
+
"borderWidth": 0,
|
|
1257
|
+
"height": undefined,
|
|
1258
|
+
},
|
|
1259
|
+
{},
|
|
1260
|
+
]
|
|
1261
|
+
}
|
|
1262
|
+
nativeID="3"
|
|
830
1263
|
style={
|
|
831
1264
|
[
|
|
832
1265
|
{
|
|
@@ -841,7 +1274,7 @@ exports[`Test Buttons Components ButtonLink Snapshot 1`] = `
|
|
|
841
1274
|
{
|
|
842
1275
|
"transform": [
|
|
843
1276
|
{
|
|
844
|
-
"scale":
|
|
1277
|
+
"scale": 1,
|
|
845
1278
|
},
|
|
846
1279
|
],
|
|
847
1280
|
},
|
|
@@ -861,6 +1294,31 @@ exports[`Test Buttons Components ButtonLink Snapshot 1`] = `
|
|
|
861
1294
|
}
|
|
862
1295
|
>
|
|
863
1296
|
<View
|
|
1297
|
+
collapsable={false}
|
|
1298
|
+
jestAnimatedProps={
|
|
1299
|
+
{
|
|
1300
|
+
"value": {},
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1303
|
+
jestAnimatedStyle={
|
|
1304
|
+
{
|
|
1305
|
+
"value": {},
|
|
1306
|
+
}
|
|
1307
|
+
}
|
|
1308
|
+
jestInlineStyle={
|
|
1309
|
+
[
|
|
1310
|
+
{
|
|
1311
|
+
"alignItems": "center",
|
|
1312
|
+
"flexDirection": "row",
|
|
1313
|
+
"justifyContent": "center",
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"columnGap": 8,
|
|
1317
|
+
},
|
|
1318
|
+
false,
|
|
1319
|
+
]
|
|
1320
|
+
}
|
|
1321
|
+
nativeID="4"
|
|
864
1322
|
style={
|
|
865
1323
|
[
|
|
866
1324
|
{
|
|
@@ -879,9 +1337,33 @@ exports[`Test Buttons Components ButtonLink Snapshot 1`] = `
|
|
|
879
1337
|
accessibilityElementsHidden={true}
|
|
880
1338
|
accessible={false}
|
|
881
1339
|
allowFontScaling={true}
|
|
1340
|
+
collapsable={false}
|
|
882
1341
|
ellipsizeMode="tail"
|
|
883
1342
|
importantForAccessibility="no-hide-descendants"
|
|
1343
|
+
jestAnimatedProps={
|
|
1344
|
+
{
|
|
1345
|
+
"value": {},
|
|
1346
|
+
}
|
|
1347
|
+
}
|
|
1348
|
+
jestAnimatedStyle={
|
|
1349
|
+
{
|
|
1350
|
+
"value": {
|
|
1351
|
+
"color": "rgba(11, 62, 227, 1)",
|
|
1352
|
+
},
|
|
1353
|
+
}
|
|
1354
|
+
}
|
|
1355
|
+
jestInlineStyle={
|
|
1356
|
+
[
|
|
1357
|
+
{
|
|
1358
|
+
"textAlign": "auto",
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"color": "#0B3EE3",
|
|
1362
|
+
},
|
|
1363
|
+
]
|
|
1364
|
+
}
|
|
884
1365
|
maxFontSizeMultiplier={1.5}
|
|
1366
|
+
nativeID="5"
|
|
885
1367
|
numberOfLines={1}
|
|
886
1368
|
style={
|
|
887
1369
|
[
|
|
@@ -902,7 +1384,7 @@ exports[`Test Buttons Components ButtonLink Snapshot 1`] = `
|
|
|
902
1384
|
"color": "#0B3EE3",
|
|
903
1385
|
},
|
|
904
1386
|
{
|
|
905
|
-
"color":
|
|
1387
|
+
"color": "rgba(11, 62, 227, 1)",
|
|
906
1388
|
},
|
|
907
1389
|
],
|
|
908
1390
|
]
|
|
@@ -956,6 +1438,50 @@ exports[`Test Buttons Components ButtonOutline Snapshot 1`] = `
|
|
|
956
1438
|
}
|
|
957
1439
|
>
|
|
958
1440
|
<View
|
|
1441
|
+
collapsable={false}
|
|
1442
|
+
jestAnimatedProps={
|
|
1443
|
+
{
|
|
1444
|
+
"value": {},
|
|
1445
|
+
}
|
|
1446
|
+
}
|
|
1447
|
+
jestAnimatedStyle={
|
|
1448
|
+
{
|
|
1449
|
+
"value": {
|
|
1450
|
+
"backgroundColor": "rgba(9, 50, 182, 0)",
|
|
1451
|
+
"borderColor": "rgba(11, 62, 227, 1)",
|
|
1452
|
+
"transform": [
|
|
1453
|
+
{
|
|
1454
|
+
"scale": 1,
|
|
1455
|
+
},
|
|
1456
|
+
],
|
|
1457
|
+
},
|
|
1458
|
+
}
|
|
1459
|
+
}
|
|
1460
|
+
jestInlineStyle={
|
|
1461
|
+
[
|
|
1462
|
+
{
|
|
1463
|
+
"alignItems": "center",
|
|
1464
|
+
"borderCurve": "continuous",
|
|
1465
|
+
"elevation": 0,
|
|
1466
|
+
"flexDirection": "row",
|
|
1467
|
+
"justifyContent": "center",
|
|
1468
|
+
"overflow": "hidden",
|
|
1469
|
+
"textAlignVertical": "center",
|
|
1470
|
+
},
|
|
1471
|
+
{
|
|
1472
|
+
"paddingHorizontal": 24,
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
"backgroundColor": "rgba(9,50,182,0)",
|
|
1476
|
+
"borderColor": "#0B3EE3",
|
|
1477
|
+
"borderRadius": 8,
|
|
1478
|
+
"borderWidth": 2,
|
|
1479
|
+
"height": 48,
|
|
1480
|
+
},
|
|
1481
|
+
{},
|
|
1482
|
+
]
|
|
1483
|
+
}
|
|
1484
|
+
nativeID="6"
|
|
959
1485
|
style={
|
|
960
1486
|
[
|
|
961
1487
|
{
|
|
@@ -970,13 +1496,13 @@ exports[`Test Buttons Components ButtonOutline Snapshot 1`] = `
|
|
|
970
1496
|
{
|
|
971
1497
|
"transform": [
|
|
972
1498
|
{
|
|
973
|
-
"scale":
|
|
1499
|
+
"scale": 1,
|
|
974
1500
|
},
|
|
975
1501
|
],
|
|
976
1502
|
},
|
|
977
1503
|
{
|
|
978
|
-
"backgroundColor":
|
|
979
|
-
"borderColor":
|
|
1504
|
+
"backgroundColor": "rgba(9, 50, 182, 0)",
|
|
1505
|
+
"borderColor": "rgba(11, 62, 227, 1)",
|
|
980
1506
|
},
|
|
981
1507
|
{
|
|
982
1508
|
"paddingHorizontal": 24,
|
|
@@ -993,6 +1519,31 @@ exports[`Test Buttons Components ButtonOutline Snapshot 1`] = `
|
|
|
993
1519
|
}
|
|
994
1520
|
>
|
|
995
1521
|
<View
|
|
1522
|
+
collapsable={false}
|
|
1523
|
+
jestAnimatedProps={
|
|
1524
|
+
{
|
|
1525
|
+
"value": {},
|
|
1526
|
+
}
|
|
1527
|
+
}
|
|
1528
|
+
jestAnimatedStyle={
|
|
1529
|
+
{
|
|
1530
|
+
"value": {},
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1533
|
+
jestInlineStyle={
|
|
1534
|
+
[
|
|
1535
|
+
{
|
|
1536
|
+
"alignItems": "center",
|
|
1537
|
+
"flexDirection": "row",
|
|
1538
|
+
"justifyContent": "center",
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"columnGap": 8,
|
|
1542
|
+
},
|
|
1543
|
+
false,
|
|
1544
|
+
]
|
|
1545
|
+
}
|
|
1546
|
+
nativeID="7"
|
|
996
1547
|
style={
|
|
997
1548
|
[
|
|
998
1549
|
{
|
|
@@ -1011,9 +1562,33 @@ exports[`Test Buttons Components ButtonOutline Snapshot 1`] = `
|
|
|
1011
1562
|
accessibilityElementsHidden={true}
|
|
1012
1563
|
accessible={false}
|
|
1013
1564
|
allowFontScaling={true}
|
|
1565
|
+
collapsable={false}
|
|
1014
1566
|
ellipsizeMode="tail"
|
|
1015
1567
|
importantForAccessibility="no-hide-descendants"
|
|
1568
|
+
jestAnimatedProps={
|
|
1569
|
+
{
|
|
1570
|
+
"value": {},
|
|
1571
|
+
}
|
|
1572
|
+
}
|
|
1573
|
+
jestAnimatedStyle={
|
|
1574
|
+
{
|
|
1575
|
+
"value": {
|
|
1576
|
+
"color": "rgba(11, 62, 227, 1)",
|
|
1577
|
+
},
|
|
1578
|
+
}
|
|
1579
|
+
}
|
|
1580
|
+
jestInlineStyle={
|
|
1581
|
+
[
|
|
1582
|
+
{
|
|
1583
|
+
"textAlign": "auto",
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
"color": "#0B3EE3",
|
|
1587
|
+
},
|
|
1588
|
+
]
|
|
1589
|
+
}
|
|
1016
1590
|
maxFontSizeMultiplier={1.5}
|
|
1591
|
+
nativeID="8"
|
|
1017
1592
|
numberOfLines={1}
|
|
1018
1593
|
style={
|
|
1019
1594
|
[
|
|
@@ -1034,7 +1609,7 @@ exports[`Test Buttons Components ButtonOutline Snapshot 1`] = `
|
|
|
1034
1609
|
"color": "#0B3EE3",
|
|
1035
1610
|
},
|
|
1036
1611
|
{
|
|
1037
|
-
"color":
|
|
1612
|
+
"color": "rgba(11, 62, 227, 1)",
|
|
1038
1613
|
},
|
|
1039
1614
|
],
|
|
1040
1615
|
]
|
|
@@ -1088,6 +1663,49 @@ exports[`Test Buttons Components ButtonSolid Snapshot 1`] = `
|
|
|
1088
1663
|
}
|
|
1089
1664
|
>
|
|
1090
1665
|
<View
|
|
1666
|
+
collapsable={false}
|
|
1667
|
+
jestAnimatedProps={
|
|
1668
|
+
{
|
|
1669
|
+
"value": {},
|
|
1670
|
+
}
|
|
1671
|
+
}
|
|
1672
|
+
jestAnimatedStyle={
|
|
1673
|
+
{
|
|
1674
|
+
"value": {
|
|
1675
|
+
"backgroundColor": "rgba(11, 62, 227, 1)",
|
|
1676
|
+
"transform": [
|
|
1677
|
+
{
|
|
1678
|
+
"scale": 1,
|
|
1679
|
+
},
|
|
1680
|
+
],
|
|
1681
|
+
},
|
|
1682
|
+
}
|
|
1683
|
+
}
|
|
1684
|
+
jestInlineStyle={
|
|
1685
|
+
[
|
|
1686
|
+
{
|
|
1687
|
+
"alignItems": "center",
|
|
1688
|
+
"borderCurve": "continuous",
|
|
1689
|
+
"elevation": 0,
|
|
1690
|
+
"flexDirection": "row",
|
|
1691
|
+
"justifyContent": "center",
|
|
1692
|
+
"overflow": "hidden",
|
|
1693
|
+
"textAlignVertical": "center",
|
|
1694
|
+
},
|
|
1695
|
+
{
|
|
1696
|
+
"paddingHorizontal": 24,
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"backgroundColor": "#0B3EE3",
|
|
1700
|
+
"borderColor": "#FFFFFF",
|
|
1701
|
+
"borderRadius": 8,
|
|
1702
|
+
"borderWidth": 0,
|
|
1703
|
+
"height": 48,
|
|
1704
|
+
},
|
|
1705
|
+
{},
|
|
1706
|
+
]
|
|
1707
|
+
}
|
|
1708
|
+
nativeID="0"
|
|
1091
1709
|
style={
|
|
1092
1710
|
[
|
|
1093
1711
|
{
|
|
@@ -1102,12 +1720,12 @@ exports[`Test Buttons Components ButtonSolid Snapshot 1`] = `
|
|
|
1102
1720
|
{
|
|
1103
1721
|
"transform": [
|
|
1104
1722
|
{
|
|
1105
|
-
"scale":
|
|
1723
|
+
"scale": 1,
|
|
1106
1724
|
},
|
|
1107
1725
|
],
|
|
1108
1726
|
},
|
|
1109
1727
|
{
|
|
1110
|
-
"backgroundColor":
|
|
1728
|
+
"backgroundColor": "rgba(11, 62, 227, 1)",
|
|
1111
1729
|
},
|
|
1112
1730
|
{
|
|
1113
1731
|
"paddingHorizontal": 24,
|
|
@@ -1124,6 +1742,31 @@ exports[`Test Buttons Components ButtonSolid Snapshot 1`] = `
|
|
|
1124
1742
|
}
|
|
1125
1743
|
>
|
|
1126
1744
|
<View
|
|
1745
|
+
collapsable={false}
|
|
1746
|
+
jestAnimatedProps={
|
|
1747
|
+
{
|
|
1748
|
+
"value": {},
|
|
1749
|
+
}
|
|
1750
|
+
}
|
|
1751
|
+
jestAnimatedStyle={
|
|
1752
|
+
{
|
|
1753
|
+
"value": {},
|
|
1754
|
+
}
|
|
1755
|
+
}
|
|
1756
|
+
jestInlineStyle={
|
|
1757
|
+
[
|
|
1758
|
+
{
|
|
1759
|
+
"alignItems": "center",
|
|
1760
|
+
"flexDirection": "row",
|
|
1761
|
+
"justifyContent": "center",
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"columnGap": 8,
|
|
1765
|
+
},
|
|
1766
|
+
false,
|
|
1767
|
+
]
|
|
1768
|
+
}
|
|
1769
|
+
nativeID="1"
|
|
1127
1770
|
style={
|
|
1128
1771
|
[
|
|
1129
1772
|
{
|
|
@@ -1142,9 +1785,33 @@ exports[`Test Buttons Components ButtonSolid Snapshot 1`] = `
|
|
|
1142
1785
|
accessibilityElementsHidden={true}
|
|
1143
1786
|
accessible={false}
|
|
1144
1787
|
allowFontScaling={true}
|
|
1788
|
+
collapsable={false}
|
|
1145
1789
|
ellipsizeMode="tail"
|
|
1146
1790
|
importantForAccessibility="no-hide-descendants"
|
|
1791
|
+
jestAnimatedProps={
|
|
1792
|
+
{
|
|
1793
|
+
"value": {},
|
|
1794
|
+
}
|
|
1795
|
+
}
|
|
1796
|
+
jestAnimatedStyle={
|
|
1797
|
+
{
|
|
1798
|
+
"value": {
|
|
1799
|
+
"color": "rgba(255, 255, 255, 1)",
|
|
1800
|
+
},
|
|
1801
|
+
}
|
|
1802
|
+
}
|
|
1803
|
+
jestInlineStyle={
|
|
1804
|
+
[
|
|
1805
|
+
{
|
|
1806
|
+
"textAlign": "auto",
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"color": "#FFFFFF",
|
|
1810
|
+
},
|
|
1811
|
+
]
|
|
1812
|
+
}
|
|
1147
1813
|
maxFontSizeMultiplier={1.5}
|
|
1814
|
+
nativeID="2"
|
|
1148
1815
|
numberOfLines={1}
|
|
1149
1816
|
style={
|
|
1150
1817
|
[
|
|
@@ -1165,7 +1832,7 @@ exports[`Test Buttons Components ButtonSolid Snapshot 1`] = `
|
|
|
1165
1832
|
"color": "#FFFFFF",
|
|
1166
1833
|
},
|
|
1167
1834
|
{
|
|
1168
|
-
"color":
|
|
1835
|
+
"color": "rgba(255, 255, 255, 1)",
|
|
1169
1836
|
},
|
|
1170
1837
|
],
|
|
1171
1838
|
]
|