@hero-design/rn 8.98.1 → 8.99.1
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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +12 -0
- package/babel.config.js +4 -1
- package/es/index.js +45 -66
- package/lib/index.js +45 -66
- package/package.json +39 -19
- package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +0 -3
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +52 -52
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +87 -87
- package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +2 -4
- package/src/components/FAB/__tests__/__snapshots__/AnimatedFABIcon.spec.tsx.snap +2 -2
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Radio/Radio.tsx +7 -1
- package/src/components/Radio/RadioGroup.tsx +1 -0
- package/src/components/Radio/__tests__/Radio.spec.tsx +15 -0
- package/src/components/Radio/__tests__/RadioGroup.spec.tsx +27 -0
- package/src/components/Radio/types.ts +3 -1
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +1472 -1496
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +2992 -3040
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +1644 -1672
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +2512 -2554
- package/src/components/Spinner/__tests__/__snapshots__/AnimatedSpinner.spec.tsx.snap +6 -6
- package/src/components/Spinner/__tests__/__snapshots__/StyledSpinner.spec.tsx.snap +24 -24
- package/src/components/Spinner/__tests__/__snapshots__/index.spec.tsx.snap +6 -6
- package/src/components/StatusScreens/Empty/__tests__/__snapshots__/index.spec.tsx.snap +120 -0
- package/src/components/StatusScreens/Empty/__tests__/index.spec.tsx +21 -1
- package/src/components/StatusScreens/Empty/index.tsx +1 -1
- package/src/components/StatusScreens/Error/__tests__/__snapshots__/index.spec.tsx.snap +134 -0
- package/src/components/StatusScreens/Error/__tests__/index.spec.tsx +14 -0
- package/src/components/StatusScreens/Error/index.tsx +1 -1
- package/src/components/StatusScreens/Success/__tests__/__snapshots__/index.spec.tsx.snap +134 -0
- package/src/components/StatusScreens/Success/__tests__/index.spec.tsx +13 -0
- package/src/components/StatusScreens/Success/index.tsx +1 -1
- package/src/components/Tabs/ScrollableTabs.tsx +0 -1
- package/src/components/Tabs/index.tsx +0 -1
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +2 -2
- package/stats/8.98.1/rn-stats.html +3 -1
- package/stats/8.99.0/rn-stats.html +4842 -0
- package/stats/8.99.1/rn-stats.html +4842 -0
- package/testUtils/setup.tsx +0 -1
- package/types/components/Accordion/StyledAccordion.d.ts +3 -5
- package/types/components/Alert/StyledAlert.d.ts +3 -5
- package/types/components/Attachment/StyledAttachment.d.ts +3 -5
- package/types/components/Avatar/StyledAvatar.d.ts +3 -5
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +3 -5
- package/types/components/Button/StyledButton.d.ts +3 -5
- package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +3 -5
- package/types/components/Calendar/StyledCalendar.d.ts +3 -5
- package/types/components/Checkbox/StyledCheckbox.d.ts +3 -5
- package/types/components/Chip/StyledChip.d.ts +2 -5
- package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +2 -5
- package/types/components/FAB/StyledFAB.d.ts +2 -2
- package/types/components/FloatingIsland/StyledFloatingIsland.d.ts +2 -2
- package/types/components/List/StyledBasicListItem.d.ts +3 -5
- package/types/components/List/StyledListItem.d.ts +3 -5
- package/types/components/Radio/Radio.d.ts +6 -1
- package/types/components/Radio/types.d.ts +3 -1
- package/types/components/RichTextEditor/StyledToolbar.d.ts +3 -5
- package/types/components/StatusScreens/Empty/index.d.ts +1 -1
- package/types/components/StatusScreens/Error/index.d.ts +1 -1
- package/types/components/StatusScreens/Success/index.d.ts +1 -1
- package/types/components/Swipeable/StyledSwipeable.d.ts +2 -5
- package/types/components/Toast/StyledToast.d.ts +3 -5
- package/types/components/Toolbar/StyledToolbar.d.ts +3 -5
|
@@ -287,7 +287,7 @@ exports[`Button renders correctly 2`] = `
|
|
|
287
287
|
}
|
|
288
288
|
}
|
|
289
289
|
accessible={true}
|
|
290
|
-
focusable={
|
|
290
|
+
focusable={false}
|
|
291
291
|
onClick={[Function]}
|
|
292
292
|
onResponderGrant={[Function]}
|
|
293
293
|
onResponderMove={[Function]}
|
|
@@ -349,7 +349,7 @@ exports[`Button renders correctly 2`] = `
|
|
|
349
349
|
"marginHorizontal": 8,
|
|
350
350
|
"width": 12,
|
|
351
351
|
},
|
|
352
|
-
|
|
352
|
+
undefined,
|
|
353
353
|
]
|
|
354
354
|
}
|
|
355
355
|
themeVariant="filled-primary"
|
|
@@ -379,7 +379,7 @@ exports[`Button renders correctly 2`] = `
|
|
|
379
379
|
"marginHorizontal": 8,
|
|
380
380
|
"width": 12,
|
|
381
381
|
},
|
|
382
|
-
|
|
382
|
+
undefined,
|
|
383
383
|
]
|
|
384
384
|
}
|
|
385
385
|
themeVariant="filled-primary"
|
|
@@ -409,7 +409,7 @@ exports[`Button renders correctly 2`] = `
|
|
|
409
409
|
"marginHorizontal": 8,
|
|
410
410
|
"width": 12,
|
|
411
411
|
},
|
|
412
|
-
|
|
412
|
+
undefined,
|
|
413
413
|
]
|
|
414
414
|
}
|
|
415
415
|
themeVariant="filled-primary"
|
|
@@ -463,7 +463,7 @@ exports[`Button renders correctly 3`] = `
|
|
|
463
463
|
}
|
|
464
464
|
}
|
|
465
465
|
accessible={true}
|
|
466
|
-
focusable={
|
|
466
|
+
focusable={false}
|
|
467
467
|
onClick={[Function]}
|
|
468
468
|
onResponderGrant={[Function]}
|
|
469
469
|
onResponderMove={[Function]}
|
|
@@ -671,7 +671,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
671
671
|
}
|
|
672
672
|
}
|
|
673
673
|
accessible={true}
|
|
674
|
-
focusable={
|
|
674
|
+
focusable={false}
|
|
675
675
|
onClick={[Function]}
|
|
676
676
|
onResponderGrant={[Function]}
|
|
677
677
|
onResponderMove={[Function]}
|
|
@@ -733,7 +733,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
733
733
|
"marginHorizontal": 8,
|
|
734
734
|
"width": 12,
|
|
735
735
|
},
|
|
736
|
-
|
|
736
|
+
undefined,
|
|
737
737
|
]
|
|
738
738
|
}
|
|
739
739
|
themeVariant="filled-white"
|
|
@@ -763,7 +763,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
763
763
|
"marginHorizontal": 8,
|
|
764
764
|
"width": 12,
|
|
765
765
|
},
|
|
766
|
-
|
|
766
|
+
undefined,
|
|
767
767
|
]
|
|
768
768
|
}
|
|
769
769
|
themeVariant="filled-white"
|
|
@@ -793,7 +793,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
793
793
|
"marginHorizontal": 8,
|
|
794
794
|
"width": 12,
|
|
795
795
|
},
|
|
796
|
-
|
|
796
|
+
undefined,
|
|
797
797
|
]
|
|
798
798
|
}
|
|
799
799
|
themeVariant="filled-white"
|
|
@@ -847,7 +847,7 @@ exports[`Button renders correctly 6`] = `
|
|
|
847
847
|
}
|
|
848
848
|
}
|
|
849
849
|
accessible={true}
|
|
850
|
-
focusable={
|
|
850
|
+
focusable={false}
|
|
851
851
|
onClick={[Function]}
|
|
852
852
|
onResponderGrant={[Function]}
|
|
853
853
|
onResponderMove={[Function]}
|
|
@@ -1057,7 +1057,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1057
1057
|
}
|
|
1058
1058
|
}
|
|
1059
1059
|
accessible={true}
|
|
1060
|
-
focusable={
|
|
1060
|
+
focusable={false}
|
|
1061
1061
|
onClick={[Function]}
|
|
1062
1062
|
onResponderGrant={[Function]}
|
|
1063
1063
|
onResponderMove={[Function]}
|
|
@@ -1121,7 +1121,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1121
1121
|
"marginHorizontal": 8,
|
|
1122
1122
|
"width": 12,
|
|
1123
1123
|
},
|
|
1124
|
-
|
|
1124
|
+
undefined,
|
|
1125
1125
|
]
|
|
1126
1126
|
}
|
|
1127
1127
|
themeVariant="outlined-primary"
|
|
@@ -1151,7 +1151,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1151
1151
|
"marginHorizontal": 8,
|
|
1152
1152
|
"width": 12,
|
|
1153
1153
|
},
|
|
1154
|
-
|
|
1154
|
+
undefined,
|
|
1155
1155
|
]
|
|
1156
1156
|
}
|
|
1157
1157
|
themeVariant="outlined-primary"
|
|
@@ -1181,7 +1181,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1181
1181
|
"marginHorizontal": 8,
|
|
1182
1182
|
"width": 12,
|
|
1183
1183
|
},
|
|
1184
|
-
|
|
1184
|
+
undefined,
|
|
1185
1185
|
]
|
|
1186
1186
|
}
|
|
1187
1187
|
themeVariant="outlined-primary"
|
|
@@ -1235,7 +1235,7 @@ exports[`Button renders correctly 9`] = `
|
|
|
1235
1235
|
}
|
|
1236
1236
|
}
|
|
1237
1237
|
accessible={true}
|
|
1238
|
-
focusable={
|
|
1238
|
+
focusable={false}
|
|
1239
1239
|
onClick={[Function]}
|
|
1240
1240
|
onResponderGrant={[Function]}
|
|
1241
1241
|
onResponderMove={[Function]}
|
|
@@ -1447,7 +1447,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1447
1447
|
}
|
|
1448
1448
|
}
|
|
1449
1449
|
accessible={true}
|
|
1450
|
-
focusable={
|
|
1450
|
+
focusable={false}
|
|
1451
1451
|
onClick={[Function]}
|
|
1452
1452
|
onResponderGrant={[Function]}
|
|
1453
1453
|
onResponderMove={[Function]}
|
|
@@ -1511,7 +1511,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1511
1511
|
"marginHorizontal": 8,
|
|
1512
1512
|
"width": 12,
|
|
1513
1513
|
},
|
|
1514
|
-
|
|
1514
|
+
undefined,
|
|
1515
1515
|
]
|
|
1516
1516
|
}
|
|
1517
1517
|
themeVariant="outlined-white"
|
|
@@ -1541,7 +1541,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1541
1541
|
"marginHorizontal": 8,
|
|
1542
1542
|
"width": 12,
|
|
1543
1543
|
},
|
|
1544
|
-
|
|
1544
|
+
undefined,
|
|
1545
1545
|
]
|
|
1546
1546
|
}
|
|
1547
1547
|
themeVariant="outlined-white"
|
|
@@ -1571,7 +1571,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1571
1571
|
"marginHorizontal": 8,
|
|
1572
1572
|
"width": 12,
|
|
1573
1573
|
},
|
|
1574
|
-
|
|
1574
|
+
undefined,
|
|
1575
1575
|
]
|
|
1576
1576
|
}
|
|
1577
1577
|
themeVariant="outlined-white"
|
|
@@ -1625,7 +1625,7 @@ exports[`Button renders correctly 12`] = `
|
|
|
1625
1625
|
}
|
|
1626
1626
|
}
|
|
1627
1627
|
accessible={true}
|
|
1628
|
-
focusable={
|
|
1628
|
+
focusable={false}
|
|
1629
1629
|
onClick={[Function]}
|
|
1630
1630
|
onResponderGrant={[Function]}
|
|
1631
1631
|
onResponderMove={[Function]}
|
|
@@ -1837,7 +1837,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1837
1837
|
}
|
|
1838
1838
|
}
|
|
1839
1839
|
accessible={true}
|
|
1840
|
-
focusable={
|
|
1840
|
+
focusable={false}
|
|
1841
1841
|
onClick={[Function]}
|
|
1842
1842
|
onResponderGrant={[Function]}
|
|
1843
1843
|
onResponderMove={[Function]}
|
|
@@ -1899,7 +1899,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1899
1899
|
"marginHorizontal": 8,
|
|
1900
1900
|
"width": 12,
|
|
1901
1901
|
},
|
|
1902
|
-
|
|
1902
|
+
undefined,
|
|
1903
1903
|
]
|
|
1904
1904
|
}
|
|
1905
1905
|
themeVariant="text-primary"
|
|
@@ -1929,7 +1929,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1929
1929
|
"marginHorizontal": 8,
|
|
1930
1930
|
"width": 12,
|
|
1931
1931
|
},
|
|
1932
|
-
|
|
1932
|
+
undefined,
|
|
1933
1933
|
]
|
|
1934
1934
|
}
|
|
1935
1935
|
themeVariant="text-primary"
|
|
@@ -1959,7 +1959,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1959
1959
|
"marginHorizontal": 8,
|
|
1960
1960
|
"width": 12,
|
|
1961
1961
|
},
|
|
1962
|
-
|
|
1962
|
+
undefined,
|
|
1963
1963
|
]
|
|
1964
1964
|
}
|
|
1965
1965
|
themeVariant="text-primary"
|
|
@@ -2013,7 +2013,7 @@ exports[`Button renders correctly 15`] = `
|
|
|
2013
2013
|
}
|
|
2014
2014
|
}
|
|
2015
2015
|
accessible={true}
|
|
2016
|
-
focusable={
|
|
2016
|
+
focusable={false}
|
|
2017
2017
|
onClick={[Function]}
|
|
2018
2018
|
onResponderGrant={[Function]}
|
|
2019
2019
|
onResponderMove={[Function]}
|
|
@@ -2225,7 +2225,7 @@ exports[`Button renders correctly 17`] = `
|
|
|
2225
2225
|
}
|
|
2226
2226
|
}
|
|
2227
2227
|
accessible={true}
|
|
2228
|
-
focusable={
|
|
2228
|
+
focusable={false}
|
|
2229
2229
|
onClick={[Function]}
|
|
2230
2230
|
onResponderGrant={[Function]}
|
|
2231
2231
|
onResponderMove={[Function]}
|
|
@@ -2287,7 +2287,7 @@ exports[`Button renders correctly 17`] = `
|
|
|
2287
2287
|
"marginHorizontal": 8,
|
|
2288
2288
|
"width": 12,
|
|
2289
2289
|
},
|
|
2290
|
-
|
|
2290
|
+
undefined,
|
|
2291
2291
|
]
|
|
2292
2292
|
}
|
|
2293
2293
|
themeVariant="text-secondary"
|
|
@@ -2317,7 +2317,7 @@ exports[`Button renders correctly 17`] = `
|
|
|
2317
2317
|
"marginHorizontal": 8,
|
|
2318
2318
|
"width": 12,
|
|
2319
2319
|
},
|
|
2320
|
-
|
|
2320
|
+
undefined,
|
|
2321
2321
|
]
|
|
2322
2322
|
}
|
|
2323
2323
|
themeVariant="text-secondary"
|
|
@@ -2347,7 +2347,7 @@ exports[`Button renders correctly 17`] = `
|
|
|
2347
2347
|
"marginHorizontal": 8,
|
|
2348
2348
|
"width": 12,
|
|
2349
2349
|
},
|
|
2350
|
-
|
|
2350
|
+
undefined,
|
|
2351
2351
|
]
|
|
2352
2352
|
}
|
|
2353
2353
|
themeVariant="text-secondary"
|
|
@@ -2401,7 +2401,7 @@ exports[`Button renders correctly 18`] = `
|
|
|
2401
2401
|
}
|
|
2402
2402
|
}
|
|
2403
2403
|
accessible={true}
|
|
2404
|
-
focusable={
|
|
2404
|
+
focusable={false}
|
|
2405
2405
|
onClick={[Function]}
|
|
2406
2406
|
onResponderGrant={[Function]}
|
|
2407
2407
|
onResponderMove={[Function]}
|
|
@@ -2613,7 +2613,7 @@ exports[`Button renders correctly 20`] = `
|
|
|
2613
2613
|
}
|
|
2614
2614
|
}
|
|
2615
2615
|
accessible={true}
|
|
2616
|
-
focusable={
|
|
2616
|
+
focusable={false}
|
|
2617
2617
|
onClick={[Function]}
|
|
2618
2618
|
onResponderGrant={[Function]}
|
|
2619
2619
|
onResponderMove={[Function]}
|
|
@@ -2675,7 +2675,7 @@ exports[`Button renders correctly 20`] = `
|
|
|
2675
2675
|
"marginHorizontal": 8,
|
|
2676
2676
|
"width": 12,
|
|
2677
2677
|
},
|
|
2678
|
-
|
|
2678
|
+
undefined,
|
|
2679
2679
|
]
|
|
2680
2680
|
}
|
|
2681
2681
|
themeVariant="text-danger"
|
|
@@ -2705,7 +2705,7 @@ exports[`Button renders correctly 20`] = `
|
|
|
2705
2705
|
"marginHorizontal": 8,
|
|
2706
2706
|
"width": 12,
|
|
2707
2707
|
},
|
|
2708
|
-
|
|
2708
|
+
undefined,
|
|
2709
2709
|
]
|
|
2710
2710
|
}
|
|
2711
2711
|
themeVariant="text-danger"
|
|
@@ -2735,7 +2735,7 @@ exports[`Button renders correctly 20`] = `
|
|
|
2735
2735
|
"marginHorizontal": 8,
|
|
2736
2736
|
"width": 12,
|
|
2737
2737
|
},
|
|
2738
|
-
|
|
2738
|
+
undefined,
|
|
2739
2739
|
]
|
|
2740
2740
|
}
|
|
2741
2741
|
themeVariant="text-danger"
|
|
@@ -2789,7 +2789,7 @@ exports[`Button renders correctly 21`] = `
|
|
|
2789
2789
|
}
|
|
2790
2790
|
}
|
|
2791
2791
|
accessible={true}
|
|
2792
|
-
focusable={
|
|
2792
|
+
focusable={false}
|
|
2793
2793
|
onClick={[Function]}
|
|
2794
2794
|
onResponderGrant={[Function]}
|
|
2795
2795
|
onResponderMove={[Function]}
|
|
@@ -3001,7 +3001,7 @@ exports[`Button renders correctly 23`] = `
|
|
|
3001
3001
|
}
|
|
3002
3002
|
}
|
|
3003
3003
|
accessible={true}
|
|
3004
|
-
focusable={
|
|
3004
|
+
focusable={false}
|
|
3005
3005
|
onClick={[Function]}
|
|
3006
3006
|
onResponderGrant={[Function]}
|
|
3007
3007
|
onResponderMove={[Function]}
|
|
@@ -3063,7 +3063,7 @@ exports[`Button renders correctly 23`] = `
|
|
|
3063
3063
|
"marginHorizontal": 8,
|
|
3064
3064
|
"width": 12,
|
|
3065
3065
|
},
|
|
3066
|
-
|
|
3066
|
+
undefined,
|
|
3067
3067
|
]
|
|
3068
3068
|
}
|
|
3069
3069
|
themeVariant="text-white"
|
|
@@ -3093,7 +3093,7 @@ exports[`Button renders correctly 23`] = `
|
|
|
3093
3093
|
"marginHorizontal": 8,
|
|
3094
3094
|
"width": 12,
|
|
3095
3095
|
},
|
|
3096
|
-
|
|
3096
|
+
undefined,
|
|
3097
3097
|
]
|
|
3098
3098
|
}
|
|
3099
3099
|
themeVariant="text-white"
|
|
@@ -3123,7 +3123,7 @@ exports[`Button renders correctly 23`] = `
|
|
|
3123
3123
|
"marginHorizontal": 8,
|
|
3124
3124
|
"width": 12,
|
|
3125
3125
|
},
|
|
3126
|
-
|
|
3126
|
+
undefined,
|
|
3127
3127
|
]
|
|
3128
3128
|
}
|
|
3129
3129
|
themeVariant="text-white"
|
|
@@ -3177,7 +3177,7 @@ exports[`Button renders correctly 24`] = `
|
|
|
3177
3177
|
}
|
|
3178
3178
|
}
|
|
3179
3179
|
accessible={true}
|
|
3180
|
-
focusable={
|
|
3180
|
+
focusable={false}
|
|
3181
3181
|
onClick={[Function]}
|
|
3182
3182
|
onResponderGrant={[Function]}
|
|
3183
3183
|
onResponderMove={[Function]}
|
|
@@ -3389,7 +3389,7 @@ exports[`Button renders correctly 26`] = `
|
|
|
3389
3389
|
}
|
|
3390
3390
|
}
|
|
3391
3391
|
accessible={true}
|
|
3392
|
-
focusable={
|
|
3392
|
+
focusable={false}
|
|
3393
3393
|
onClick={[Function]}
|
|
3394
3394
|
onResponderGrant={[Function]}
|
|
3395
3395
|
onResponderMove={[Function]}
|
|
@@ -3451,7 +3451,7 @@ exports[`Button renders correctly 26`] = `
|
|
|
3451
3451
|
"marginHorizontal": 8,
|
|
3452
3452
|
"width": 12,
|
|
3453
3453
|
},
|
|
3454
|
-
|
|
3454
|
+
undefined,
|
|
3455
3455
|
]
|
|
3456
3456
|
}
|
|
3457
3457
|
themeVariant="text-secondary"
|
|
@@ -3481,7 +3481,7 @@ exports[`Button renders correctly 26`] = `
|
|
|
3481
3481
|
"marginHorizontal": 8,
|
|
3482
3482
|
"width": 12,
|
|
3483
3483
|
},
|
|
3484
|
-
|
|
3484
|
+
undefined,
|
|
3485
3485
|
]
|
|
3486
3486
|
}
|
|
3487
3487
|
themeVariant="text-secondary"
|
|
@@ -3511,7 +3511,7 @@ exports[`Button renders correctly 26`] = `
|
|
|
3511
3511
|
"marginHorizontal": 8,
|
|
3512
3512
|
"width": 12,
|
|
3513
3513
|
},
|
|
3514
|
-
|
|
3514
|
+
undefined,
|
|
3515
3515
|
]
|
|
3516
3516
|
}
|
|
3517
3517
|
themeVariant="text-secondary"
|
|
@@ -3671,7 +3671,7 @@ exports[`Button renders correctly 28`] = `
|
|
|
3671
3671
|
}
|
|
3672
3672
|
}
|
|
3673
3673
|
accessible={true}
|
|
3674
|
-
focusable={
|
|
3674
|
+
focusable={false}
|
|
3675
3675
|
onClick={[Function]}
|
|
3676
3676
|
onResponderGrant={[Function]}
|
|
3677
3677
|
onResponderMove={[Function]}
|
|
@@ -3733,7 +3733,7 @@ exports[`Button renders correctly 28`] = `
|
|
|
3733
3733
|
"marginHorizontal": 8,
|
|
3734
3734
|
"width": 12,
|
|
3735
3735
|
},
|
|
3736
|
-
|
|
3736
|
+
undefined,
|
|
3737
3737
|
]
|
|
3738
3738
|
}
|
|
3739
3739
|
themeVariant="text-primary"
|
|
@@ -3763,7 +3763,7 @@ exports[`Button renders correctly 28`] = `
|
|
|
3763
3763
|
"marginHorizontal": 8,
|
|
3764
3764
|
"width": 12,
|
|
3765
3765
|
},
|
|
3766
|
-
|
|
3766
|
+
undefined,
|
|
3767
3767
|
]
|
|
3768
3768
|
}
|
|
3769
3769
|
themeVariant="text-primary"
|
|
@@ -3793,7 +3793,7 @@ exports[`Button renders correctly 28`] = `
|
|
|
3793
3793
|
"marginHorizontal": 8,
|
|
3794
3794
|
"width": 12,
|
|
3795
3795
|
},
|
|
3796
|
-
|
|
3796
|
+
undefined,
|
|
3797
3797
|
]
|
|
3798
3798
|
}
|
|
3799
3799
|
themeVariant="text-primary"
|
|
@@ -3847,7 +3847,7 @@ exports[`Button renders correctly 29`] = `
|
|
|
3847
3847
|
}
|
|
3848
3848
|
}
|
|
3849
3849
|
accessible={true}
|
|
3850
|
-
focusable={
|
|
3850
|
+
focusable={false}
|
|
3851
3851
|
onClick={[Function]}
|
|
3852
3852
|
onResponderGrant={[Function]}
|
|
3853
3853
|
onResponderMove={[Function]}
|
|
@@ -4063,7 +4063,7 @@ exports[`Button renders correctly 31`] = `
|
|
|
4063
4063
|
}
|
|
4064
4064
|
}
|
|
4065
4065
|
accessible={true}
|
|
4066
|
-
focusable={
|
|
4066
|
+
focusable={false}
|
|
4067
4067
|
onClick={[Function]}
|
|
4068
4068
|
onResponderGrant={[Function]}
|
|
4069
4069
|
onResponderMove={[Function]}
|
|
@@ -4126,7 +4126,7 @@ exports[`Button renders correctly 31`] = `
|
|
|
4126
4126
|
"marginHorizontal": 8,
|
|
4127
4127
|
"width": 12,
|
|
4128
4128
|
},
|
|
4129
|
-
|
|
4129
|
+
undefined,
|
|
4130
4130
|
]
|
|
4131
4131
|
}
|
|
4132
4132
|
themeVariant="filled-primary"
|
|
@@ -4156,7 +4156,7 @@ exports[`Button renders correctly 31`] = `
|
|
|
4156
4156
|
"marginHorizontal": 8,
|
|
4157
4157
|
"width": 12,
|
|
4158
4158
|
},
|
|
4159
|
-
|
|
4159
|
+
undefined,
|
|
4160
4160
|
]
|
|
4161
4161
|
}
|
|
4162
4162
|
themeVariant="filled-primary"
|
|
@@ -4186,7 +4186,7 @@ exports[`Button renders correctly 31`] = `
|
|
|
4186
4186
|
"marginHorizontal": 8,
|
|
4187
4187
|
"width": 12,
|
|
4188
4188
|
},
|
|
4189
|
-
|
|
4189
|
+
undefined,
|
|
4190
4190
|
]
|
|
4191
4191
|
}
|
|
4192
4192
|
themeVariant="filled-primary"
|
|
@@ -4240,7 +4240,7 @@ exports[`Button renders correctly 32`] = `
|
|
|
4240
4240
|
}
|
|
4241
4241
|
}
|
|
4242
4242
|
accessible={true}
|
|
4243
|
-
focusable={
|
|
4243
|
+
focusable={false}
|
|
4244
4244
|
onClick={[Function]}
|
|
4245
4245
|
onResponderGrant={[Function]}
|
|
4246
4246
|
onResponderMove={[Function]}
|
|
@@ -4462,7 +4462,7 @@ exports[`Button renders correctly 34`] = `
|
|
|
4462
4462
|
}
|
|
4463
4463
|
}
|
|
4464
4464
|
accessible={true}
|
|
4465
|
-
focusable={
|
|
4465
|
+
focusable={false}
|
|
4466
4466
|
onClick={[Function]}
|
|
4467
4467
|
onResponderGrant={[Function]}
|
|
4468
4468
|
onResponderMove={[Function]}
|
|
@@ -4527,7 +4527,7 @@ exports[`Button renders correctly 34`] = `
|
|
|
4527
4527
|
"marginHorizontal": 8,
|
|
4528
4528
|
"width": 12,
|
|
4529
4529
|
},
|
|
4530
|
-
|
|
4530
|
+
undefined,
|
|
4531
4531
|
]
|
|
4532
4532
|
}
|
|
4533
4533
|
themeVariant="outlined-primary"
|
|
@@ -4557,7 +4557,7 @@ exports[`Button renders correctly 34`] = `
|
|
|
4557
4557
|
"marginHorizontal": 8,
|
|
4558
4558
|
"width": 12,
|
|
4559
4559
|
},
|
|
4560
|
-
|
|
4560
|
+
undefined,
|
|
4561
4561
|
]
|
|
4562
4562
|
}
|
|
4563
4563
|
themeVariant="outlined-primary"
|
|
@@ -4587,7 +4587,7 @@ exports[`Button renders correctly 34`] = `
|
|
|
4587
4587
|
"marginHorizontal": 8,
|
|
4588
4588
|
"width": 12,
|
|
4589
4589
|
},
|
|
4590
|
-
|
|
4590
|
+
undefined,
|
|
4591
4591
|
]
|
|
4592
4592
|
}
|
|
4593
4593
|
themeVariant="outlined-primary"
|
|
@@ -4641,7 +4641,7 @@ exports[`Button renders correctly 35`] = `
|
|
|
4641
4641
|
}
|
|
4642
4642
|
}
|
|
4643
4643
|
accessible={true}
|
|
4644
|
-
focusable={
|
|
4644
|
+
focusable={false}
|
|
4645
4645
|
onClick={[Function]}
|
|
4646
4646
|
onResponderGrant={[Function]}
|
|
4647
4647
|
onResponderMove={[Function]}
|
|
@@ -4861,7 +4861,7 @@ exports[`Button renders correctly 37`] = `
|
|
|
4861
4861
|
}
|
|
4862
4862
|
}
|
|
4863
4863
|
accessible={true}
|
|
4864
|
-
focusable={
|
|
4864
|
+
focusable={false}
|
|
4865
4865
|
onClick={[Function]}
|
|
4866
4866
|
onResponderGrant={[Function]}
|
|
4867
4867
|
onResponderMove={[Function]}
|
|
@@ -4925,7 +4925,7 @@ exports[`Button renders correctly 37`] = `
|
|
|
4925
4925
|
"marginHorizontal": 8,
|
|
4926
4926
|
"width": 12,
|
|
4927
4927
|
},
|
|
4928
|
-
|
|
4928
|
+
undefined,
|
|
4929
4929
|
]
|
|
4930
4930
|
}
|
|
4931
4931
|
themeVariant="text-primary"
|
|
@@ -4955,7 +4955,7 @@ exports[`Button renders correctly 37`] = `
|
|
|
4955
4955
|
"marginHorizontal": 8,
|
|
4956
4956
|
"width": 12,
|
|
4957
4957
|
},
|
|
4958
|
-
|
|
4958
|
+
undefined,
|
|
4959
4959
|
]
|
|
4960
4960
|
}
|
|
4961
4961
|
themeVariant="text-primary"
|
|
@@ -4985,7 +4985,7 @@ exports[`Button renders correctly 37`] = `
|
|
|
4985
4985
|
"marginHorizontal": 8,
|
|
4986
4986
|
"width": 12,
|
|
4987
4987
|
},
|
|
4988
|
-
|
|
4988
|
+
undefined,
|
|
4989
4989
|
]
|
|
4990
4990
|
}
|
|
4991
4991
|
themeVariant="text-primary"
|
|
@@ -5039,7 +5039,7 @@ exports[`Button renders correctly 38`] = `
|
|
|
5039
5039
|
}
|
|
5040
5040
|
}
|
|
5041
5041
|
accessible={true}
|
|
5042
|
-
focusable={
|
|
5042
|
+
focusable={false}
|
|
5043
5043
|
onClick={[Function]}
|
|
5044
5044
|
onResponderGrant={[Function]}
|
|
5045
5045
|
onResponderMove={[Function]}
|
|
@@ -5255,7 +5255,7 @@ exports[`Button renders correctly 40`] = `
|
|
|
5255
5255
|
}
|
|
5256
5256
|
}
|
|
5257
5257
|
accessible={true}
|
|
5258
|
-
focusable={
|
|
5258
|
+
focusable={false}
|
|
5259
5259
|
onClick={[Function]}
|
|
5260
5260
|
onResponderGrant={[Function]}
|
|
5261
5261
|
onResponderMove={[Function]}
|
|
@@ -5319,7 +5319,7 @@ exports[`Button renders correctly 40`] = `
|
|
|
5319
5319
|
"marginHorizontal": 8,
|
|
5320
5320
|
"width": 12,
|
|
5321
5321
|
},
|
|
5322
|
-
|
|
5322
|
+
undefined,
|
|
5323
5323
|
]
|
|
5324
5324
|
}
|
|
5325
5325
|
themeVariant="text-secondary"
|
|
@@ -5349,7 +5349,7 @@ exports[`Button renders correctly 40`] = `
|
|
|
5349
5349
|
"marginHorizontal": 8,
|
|
5350
5350
|
"width": 12,
|
|
5351
5351
|
},
|
|
5352
|
-
|
|
5352
|
+
undefined,
|
|
5353
5353
|
]
|
|
5354
5354
|
}
|
|
5355
5355
|
themeVariant="text-secondary"
|
|
@@ -5379,7 +5379,7 @@ exports[`Button renders correctly 40`] = `
|
|
|
5379
5379
|
"marginHorizontal": 8,
|
|
5380
5380
|
"width": 12,
|
|
5381
5381
|
},
|
|
5382
|
-
|
|
5382
|
+
undefined,
|
|
5383
5383
|
]
|
|
5384
5384
|
}
|
|
5385
5385
|
themeVariant="text-secondary"
|
|
@@ -5433,7 +5433,7 @@ exports[`Button renders correctly 41`] = `
|
|
|
5433
5433
|
}
|
|
5434
5434
|
}
|
|
5435
5435
|
accessible={true}
|
|
5436
|
-
focusable={
|
|
5436
|
+
focusable={false}
|
|
5437
5437
|
onClick={[Function]}
|
|
5438
5438
|
onResponderGrant={[Function]}
|
|
5439
5439
|
onResponderMove={[Function]}
|
|
@@ -5649,7 +5649,7 @@ exports[`Button renders correctly 43`] = `
|
|
|
5649
5649
|
}
|
|
5650
5650
|
}
|
|
5651
5651
|
accessible={true}
|
|
5652
|
-
focusable={
|
|
5652
|
+
focusable={false}
|
|
5653
5653
|
onClick={[Function]}
|
|
5654
5654
|
onResponderGrant={[Function]}
|
|
5655
5655
|
onResponderMove={[Function]}
|
|
@@ -5713,7 +5713,7 @@ exports[`Button renders correctly 43`] = `
|
|
|
5713
5713
|
"marginHorizontal": 8,
|
|
5714
5714
|
"width": 12,
|
|
5715
5715
|
},
|
|
5716
|
-
|
|
5716
|
+
undefined,
|
|
5717
5717
|
]
|
|
5718
5718
|
}
|
|
5719
5719
|
themeVariant="text-danger"
|
|
@@ -5743,7 +5743,7 @@ exports[`Button renders correctly 43`] = `
|
|
|
5743
5743
|
"marginHorizontal": 8,
|
|
5744
5744
|
"width": 12,
|
|
5745
5745
|
},
|
|
5746
|
-
|
|
5746
|
+
undefined,
|
|
5747
5747
|
]
|
|
5748
5748
|
}
|
|
5749
5749
|
themeVariant="text-danger"
|
|
@@ -5773,7 +5773,7 @@ exports[`Button renders correctly 43`] = `
|
|
|
5773
5773
|
"marginHorizontal": 8,
|
|
5774
5774
|
"width": 12,
|
|
5775
5775
|
},
|
|
5776
|
-
|
|
5776
|
+
undefined,
|
|
5777
5777
|
]
|
|
5778
5778
|
}
|
|
5779
5779
|
themeVariant="text-danger"
|
|
@@ -5827,7 +5827,7 @@ exports[`Button renders correctly 44`] = `
|
|
|
5827
5827
|
}
|
|
5828
5828
|
}
|
|
5829
5829
|
accessible={true}
|
|
5830
|
-
focusable={
|
|
5830
|
+
focusable={false}
|
|
5831
5831
|
onClick={[Function]}
|
|
5832
5832
|
onResponderGrant={[Function]}
|
|
5833
5833
|
onResponderMove={[Function]}
|
|
@@ -6043,7 +6043,7 @@ exports[`Button renders correctly 46`] = `
|
|
|
6043
6043
|
}
|
|
6044
6044
|
}
|
|
6045
6045
|
accessible={true}
|
|
6046
|
-
focusable={
|
|
6046
|
+
focusable={false}
|
|
6047
6047
|
onClick={[Function]}
|
|
6048
6048
|
onResponderGrant={[Function]}
|
|
6049
6049
|
onResponderMove={[Function]}
|
|
@@ -6107,7 +6107,7 @@ exports[`Button renders correctly 46`] = `
|
|
|
6107
6107
|
"marginHorizontal": 8,
|
|
6108
6108
|
"width": 12,
|
|
6109
6109
|
},
|
|
6110
|
-
|
|
6110
|
+
undefined,
|
|
6111
6111
|
]
|
|
6112
6112
|
}
|
|
6113
6113
|
themeVariant="text-secondary"
|
|
@@ -6137,7 +6137,7 @@ exports[`Button renders correctly 46`] = `
|
|
|
6137
6137
|
"marginHorizontal": 8,
|
|
6138
6138
|
"width": 12,
|
|
6139
6139
|
},
|
|
6140
|
-
|
|
6140
|
+
undefined,
|
|
6141
6141
|
]
|
|
6142
6142
|
}
|
|
6143
6143
|
themeVariant="text-secondary"
|
|
@@ -6167,7 +6167,7 @@ exports[`Button renders correctly 46`] = `
|
|
|
6167
6167
|
"marginHorizontal": 8,
|
|
6168
6168
|
"width": 12,
|
|
6169
6169
|
},
|
|
6170
|
-
|
|
6170
|
+
undefined,
|
|
6171
6171
|
]
|
|
6172
6172
|
}
|
|
6173
6173
|
themeVariant="text-secondary"
|
|
@@ -6329,7 +6329,7 @@ exports[`Button renders correctly 48`] = `
|
|
|
6329
6329
|
}
|
|
6330
6330
|
}
|
|
6331
6331
|
accessible={true}
|
|
6332
|
-
focusable={
|
|
6332
|
+
focusable={false}
|
|
6333
6333
|
onClick={[Function]}
|
|
6334
6334
|
onResponderGrant={[Function]}
|
|
6335
6335
|
onResponderMove={[Function]}
|
|
@@ -6393,7 +6393,7 @@ exports[`Button renders correctly 48`] = `
|
|
|
6393
6393
|
"marginHorizontal": 8,
|
|
6394
6394
|
"width": 12,
|
|
6395
6395
|
},
|
|
6396
|
-
|
|
6396
|
+
undefined,
|
|
6397
6397
|
]
|
|
6398
6398
|
}
|
|
6399
6399
|
themeVariant="text-primary"
|
|
@@ -6423,7 +6423,7 @@ exports[`Button renders correctly 48`] = `
|
|
|
6423
6423
|
"marginHorizontal": 8,
|
|
6424
6424
|
"width": 12,
|
|
6425
6425
|
},
|
|
6426
|
-
|
|
6426
|
+
undefined,
|
|
6427
6427
|
]
|
|
6428
6428
|
}
|
|
6429
6429
|
themeVariant="text-primary"
|
|
@@ -6453,7 +6453,7 @@ exports[`Button renders correctly 48`] = `
|
|
|
6453
6453
|
"marginHorizontal": 8,
|
|
6454
6454
|
"width": 12,
|
|
6455
6455
|
},
|
|
6456
|
-
|
|
6456
|
+
undefined,
|
|
6457
6457
|
]
|
|
6458
6458
|
}
|
|
6459
6459
|
themeVariant="text-primary"
|
|
@@ -6507,7 +6507,7 @@ exports[`Button renders correctly 49`] = `
|
|
|
6507
6507
|
}
|
|
6508
6508
|
}
|
|
6509
6509
|
accessible={true}
|
|
6510
|
-
focusable={
|
|
6510
|
+
focusable={false}
|
|
6511
6511
|
onClick={[Function]}
|
|
6512
6512
|
onResponderGrant={[Function]}
|
|
6513
6513
|
onResponderMove={[Function]}
|
|
@@ -6615,7 +6615,7 @@ exports[`Button renders loading icon 1`] = `
|
|
|
6615
6615
|
}
|
|
6616
6616
|
}
|
|
6617
6617
|
accessible={true}
|
|
6618
|
-
focusable={
|
|
6618
|
+
focusable={false}
|
|
6619
6619
|
onClick={[Function]}
|
|
6620
6620
|
onResponderGrant={[Function]}
|
|
6621
6621
|
onResponderMove={[Function]}
|
|
@@ -6678,7 +6678,7 @@ exports[`Button renders loading icon 1`] = `
|
|
|
6678
6678
|
"marginHorizontal": 8,
|
|
6679
6679
|
"width": 12,
|
|
6680
6680
|
},
|
|
6681
|
-
|
|
6681
|
+
undefined,
|
|
6682
6682
|
]
|
|
6683
6683
|
}
|
|
6684
6684
|
themeVariant="filled-primary"
|
|
@@ -6708,7 +6708,7 @@ exports[`Button renders loading icon 1`] = `
|
|
|
6708
6708
|
"marginHorizontal": 8,
|
|
6709
6709
|
"width": 12,
|
|
6710
6710
|
},
|
|
6711
|
-
|
|
6711
|
+
undefined,
|
|
6712
6712
|
]
|
|
6713
6713
|
}
|
|
6714
6714
|
themeVariant="filled-primary"
|
|
@@ -6738,7 +6738,7 @@ exports[`Button renders loading icon 1`] = `
|
|
|
6738
6738
|
"marginHorizontal": 8,
|
|
6739
6739
|
"width": 12,
|
|
6740
6740
|
},
|
|
6741
|
-
|
|
6741
|
+
undefined,
|
|
6742
6742
|
]
|
|
6743
6743
|
}
|
|
6744
6744
|
themeVariant="filled-primary"
|