@hero-design/rn 8.12.0 → 8.12.2
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 +9 -9
- package/es/index.js +121 -34
- package/lib/index.js +120 -33
- package/package.json +5 -5
- package/src/components/Button/Button.tsx +42 -2
- package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +1 -1
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +1 -1
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
- package/src/components/Button/StyledButton.tsx +21 -14
- package/src/components/Button/__tests__/Button.spec.tsx +46 -1
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +1564 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +126 -110
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +24 -22
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +17 -3
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +29 -12
- package/src/components/FAB/ActionGroup/ActionItem.tsx +17 -6
- package/src/components/FAB/ActionGroup/StyledActionItem.tsx +15 -17
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +170 -160
- package/src/components/FAB/FAB.tsx +3 -1
- package/src/components/List/BasicListItem.tsx +6 -0
- package/src/components/List/ListItem.tsx +6 -0
- package/src/components/List/StyledBasicListItem.tsx +2 -2
- package/src/components/List/StyledListItem.tsx +2 -2
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +22 -18
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +32 -28
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +44 -36
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +50 -46
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +22 -18
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +33 -27
- package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +4 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +11 -9
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +132 -108
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +268 -166
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +11 -9
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +132 -108
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +232 -139
- package/src/components/TextInput/StyledTextInput.tsx +3 -0
- package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +466 -28
- package/src/components/TextInput/__tests__/index.spec.tsx +32 -0
- package/src/components/TextInput/index.tsx +32 -4
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +34 -6
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +46 -15
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +18 -0
- package/src/theme/components/button.ts +16 -2
- package/src/theme/components/fab.ts +2 -0
- package/src/theme/components/textInput.ts +1 -0
- package/src/theme/global/borders.ts +2 -0
- package/types/components/Button/Button.d.ts +1 -1
- package/types/components/Button/StyledButton.d.ts +4 -3
- package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +3 -3
- package/types/components/List/StyledBasicListItem.d.ts +3 -3
- package/types/components/List/StyledListItem.d.ts +3 -3
- package/types/theme/components/button.d.ts +14 -0
- package/types/theme/components/fab.d.ts +2 -0
- package/types/theme/components/textInput.d.ts +1 -0
- package/types/theme/global/borders.d.ts +1 -0
|
@@ -8,7 +8,6 @@ exports[`BasicListItem when suffix and prefix are icon name renders correctly 1`
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
accessible={true}
|
|
11
|
-
collapsable={false}
|
|
12
11
|
focusable={false}
|
|
13
12
|
onClick={[Function]}
|
|
14
13
|
onResponderGrant={[Function]}
|
|
@@ -18,14 +17,17 @@ exports[`BasicListItem when suffix and prefix are icon name renders correctly 1`
|
|
|
18
17
|
onResponderTerminationRequest={[Function]}
|
|
19
18
|
onStartShouldSetResponder={[Function]}
|
|
20
19
|
style={
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
20
|
+
Array [
|
|
21
|
+
Object {
|
|
22
|
+
"alignItems": "center",
|
|
23
|
+
"backgroundColor": "#ffffff",
|
|
24
|
+
"borderRadius": 4,
|
|
25
|
+
"flexDirection": "row",
|
|
26
|
+
"opacity": 1,
|
|
27
|
+
"padding": 16,
|
|
28
|
+
},
|
|
29
|
+
undefined,
|
|
30
|
+
]
|
|
29
31
|
}
|
|
30
32
|
testID="basic-list-item"
|
|
31
33
|
>
|
|
@@ -141,7 +143,6 @@ exports[`BasicListItem when suffix and prefix are react element renders correctl
|
|
|
141
143
|
}
|
|
142
144
|
}
|
|
143
145
|
accessible={true}
|
|
144
|
-
collapsable={false}
|
|
145
146
|
focusable={false}
|
|
146
147
|
onClick={[Function]}
|
|
147
148
|
onResponderGrant={[Function]}
|
|
@@ -151,14 +152,17 @@ exports[`BasicListItem when suffix and prefix are react element renders correctl
|
|
|
151
152
|
onResponderTerminationRequest={[Function]}
|
|
152
153
|
onStartShouldSetResponder={[Function]}
|
|
153
154
|
style={
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
155
|
+
Array [
|
|
156
|
+
Object {
|
|
157
|
+
"alignItems": "center",
|
|
158
|
+
"backgroundColor": "#ffffff",
|
|
159
|
+
"borderRadius": 4,
|
|
160
|
+
"flexDirection": "row",
|
|
161
|
+
"opacity": 1,
|
|
162
|
+
"padding": 16,
|
|
163
|
+
},
|
|
164
|
+
undefined,
|
|
165
|
+
]
|
|
162
166
|
}
|
|
163
167
|
testID="basic-list-item"
|
|
164
168
|
>
|
|
@@ -8,7 +8,6 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
accessible={true}
|
|
11
|
-
collapsable={false}
|
|
12
11
|
focusable={false}
|
|
13
12
|
onClick={[Function]}
|
|
14
13
|
onResponderGrant={[Function]}
|
|
@@ -18,12 +17,14 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
|
|
|
18
17
|
onResponderTerminationRequest={[Function]}
|
|
19
18
|
onStartShouldSetResponder={[Function]}
|
|
20
19
|
style={
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
20
|
+
Array [
|
|
21
|
+
Object {
|
|
22
|
+
"backgroundColor": "#ffffff",
|
|
23
|
+
"flexDirection": "row",
|
|
24
|
+
"padding": 16,
|
|
25
|
+
},
|
|
26
|
+
undefined,
|
|
27
|
+
]
|
|
27
28
|
}
|
|
28
29
|
>
|
|
29
30
|
<View
|
|
@@ -318,7 +319,6 @@ exports[`ListItem renders correctly ListItem with icon 1`] = `
|
|
|
318
319
|
}
|
|
319
320
|
}
|
|
320
321
|
accessible={true}
|
|
321
|
-
collapsable={false}
|
|
322
322
|
focusable={false}
|
|
323
323
|
onClick={[Function]}
|
|
324
324
|
onResponderGrant={[Function]}
|
|
@@ -328,12 +328,14 @@ exports[`ListItem renders correctly ListItem with icon 1`] = `
|
|
|
328
328
|
onResponderTerminationRequest={[Function]}
|
|
329
329
|
onStartShouldSetResponder={[Function]}
|
|
330
330
|
style={
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
331
|
+
Array [
|
|
332
|
+
Object {
|
|
333
|
+
"backgroundColor": "#ffffff",
|
|
334
|
+
"flexDirection": "row",
|
|
335
|
+
"padding": 16,
|
|
336
|
+
},
|
|
337
|
+
undefined,
|
|
338
|
+
]
|
|
337
339
|
}
|
|
338
340
|
testID="list-item"
|
|
339
341
|
>
|
|
@@ -446,7 +448,6 @@ exports[`ListItem renders correctly ListItem with leading status 1`] = `
|
|
|
446
448
|
}
|
|
447
449
|
}
|
|
448
450
|
accessible={true}
|
|
449
|
-
collapsable={false}
|
|
450
451
|
focusable={false}
|
|
451
452
|
onClick={[Function]}
|
|
452
453
|
onResponderGrant={[Function]}
|
|
@@ -456,12 +457,14 @@ exports[`ListItem renders correctly ListItem with leading status 1`] = `
|
|
|
456
457
|
onResponderTerminationRequest={[Function]}
|
|
457
458
|
onStartShouldSetResponder={[Function]}
|
|
458
459
|
style={
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
460
|
+
Array [
|
|
461
|
+
Object {
|
|
462
|
+
"backgroundColor": "#ffffff",
|
|
463
|
+
"flexDirection": "row",
|
|
464
|
+
"padding": 16,
|
|
465
|
+
},
|
|
466
|
+
undefined,
|
|
467
|
+
]
|
|
465
468
|
}
|
|
466
469
|
>
|
|
467
470
|
<View
|
|
@@ -568,7 +571,6 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
|
|
|
568
571
|
}
|
|
569
572
|
}
|
|
570
573
|
accessible={true}
|
|
571
|
-
collapsable={false}
|
|
572
574
|
focusable={false}
|
|
573
575
|
onClick={[Function]}
|
|
574
576
|
onResponderGrant={[Function]}
|
|
@@ -578,12 +580,14 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
|
|
|
578
580
|
onResponderTerminationRequest={[Function]}
|
|
579
581
|
onStartShouldSetResponder={[Function]}
|
|
580
582
|
style={
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
583
|
+
Array [
|
|
584
|
+
Object {
|
|
585
|
+
"backgroundColor": "#ffffff",
|
|
586
|
+
"flexDirection": "row",
|
|
587
|
+
"padding": 16,
|
|
588
|
+
},
|
|
589
|
+
undefined,
|
|
590
|
+
]
|
|
587
591
|
}
|
|
588
592
|
testID="list-item"
|
|
589
593
|
>
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
exports[`StyledListItemContainer renders correctly themeSelected false themeDisabled false 1`] = `
|
|
4
4
|
<View
|
|
5
5
|
accessible={true}
|
|
6
|
-
collapsable={false}
|
|
7
6
|
focusable={false}
|
|
8
7
|
onClick={[Function]}
|
|
9
8
|
onResponderGrant={[Function]}
|
|
@@ -13,14 +12,17 @@ exports[`StyledListItemContainer renders correctly themeSelected false themeDisa
|
|
|
13
12
|
onResponderTerminationRequest={[Function]}
|
|
14
13
|
onStartShouldSetResponder={[Function]}
|
|
15
14
|
style={
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
15
|
+
Array [
|
|
16
|
+
Object {
|
|
17
|
+
"alignItems": "center",
|
|
18
|
+
"backgroundColor": "#ffffff",
|
|
19
|
+
"borderRadius": 4,
|
|
20
|
+
"flexDirection": "row",
|
|
21
|
+
"opacity": 1,
|
|
22
|
+
"padding": 16,
|
|
23
|
+
},
|
|
24
|
+
undefined,
|
|
25
|
+
]
|
|
24
26
|
}
|
|
25
27
|
>
|
|
26
28
|
<Text
|
|
@@ -49,7 +51,6 @@ exports[`StyledListItemContainer renders correctly themeSelected false themeDisa
|
|
|
49
51
|
exports[`StyledListItemContainer renders correctly themeSelected false themeDisabled true 1`] = `
|
|
50
52
|
<View
|
|
51
53
|
accessible={true}
|
|
52
|
-
collapsable={false}
|
|
53
54
|
focusable={false}
|
|
54
55
|
onClick={[Function]}
|
|
55
56
|
onResponderGrant={[Function]}
|
|
@@ -59,14 +60,17 @@ exports[`StyledListItemContainer renders correctly themeSelected false themeDisa
|
|
|
59
60
|
onResponderTerminationRequest={[Function]}
|
|
60
61
|
onStartShouldSetResponder={[Function]}
|
|
61
62
|
style={
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
Array [
|
|
64
|
+
Object {
|
|
65
|
+
"alignItems": "center",
|
|
66
|
+
"backgroundColor": "#ffffff",
|
|
67
|
+
"borderRadius": 4,
|
|
68
|
+
"flexDirection": "row",
|
|
69
|
+
"opacity": 0.38,
|
|
70
|
+
"padding": 16,
|
|
71
|
+
},
|
|
72
|
+
undefined,
|
|
73
|
+
]
|
|
70
74
|
}
|
|
71
75
|
>
|
|
72
76
|
<Text
|
|
@@ -95,7 +99,6 @@ exports[`StyledListItemContainer renders correctly themeSelected false themeDisa
|
|
|
95
99
|
exports[`StyledListItemContainer renders correctly themeSelected true themeDisabled false 1`] = `
|
|
96
100
|
<View
|
|
97
101
|
accessible={true}
|
|
98
|
-
collapsable={false}
|
|
99
102
|
focusable={false}
|
|
100
103
|
onClick={[Function]}
|
|
101
104
|
onResponderGrant={[Function]}
|
|
@@ -105,14 +108,17 @@ exports[`StyledListItemContainer renders correctly themeSelected true themeDisab
|
|
|
105
108
|
onResponderTerminationRequest={[Function]}
|
|
106
109
|
onStartShouldSetResponder={[Function]}
|
|
107
110
|
style={
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
111
|
+
Array [
|
|
112
|
+
Object {
|
|
113
|
+
"alignItems": "center",
|
|
114
|
+
"backgroundColor": "#ece8ef",
|
|
115
|
+
"borderRadius": 4,
|
|
116
|
+
"flexDirection": "row",
|
|
117
|
+
"opacity": 1,
|
|
118
|
+
"padding": 16,
|
|
119
|
+
},
|
|
120
|
+
undefined,
|
|
121
|
+
]
|
|
116
122
|
}
|
|
117
123
|
>
|
|
118
124
|
<Text
|
|
@@ -141,7 +147,6 @@ exports[`StyledListItemContainer renders correctly themeSelected true themeDisab
|
|
|
141
147
|
exports[`StyledListItemContainer renders correctly themeSelected true themeDisabled true 1`] = `
|
|
142
148
|
<View
|
|
143
149
|
accessible={true}
|
|
144
|
-
collapsable={false}
|
|
145
150
|
focusable={false}
|
|
146
151
|
onClick={[Function]}
|
|
147
152
|
onResponderGrant={[Function]}
|
|
@@ -151,14 +156,17 @@ exports[`StyledListItemContainer renders correctly themeSelected true themeDisab
|
|
|
151
156
|
onResponderTerminationRequest={[Function]}
|
|
152
157
|
onStartShouldSetResponder={[Function]}
|
|
153
158
|
style={
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
159
|
+
Array [
|
|
160
|
+
Object {
|
|
161
|
+
"alignItems": "center",
|
|
162
|
+
"backgroundColor": "#ece8ef",
|
|
163
|
+
"borderRadius": 4,
|
|
164
|
+
"flexDirection": "row",
|
|
165
|
+
"opacity": 0.38,
|
|
166
|
+
"padding": 16,
|
|
167
|
+
},
|
|
168
|
+
undefined,
|
|
169
|
+
]
|
|
162
170
|
}
|
|
163
171
|
>
|
|
164
172
|
<Text
|
|
@@ -88,7 +88,6 @@ exports[`LeadingStatus renders correctly themeLeadingStausIntent warning 1`] = `
|
|
|
88
88
|
exports[`ListItemContainer renders correctly themeSelected false themeVariant card 1`] = `
|
|
89
89
|
<View
|
|
90
90
|
accessible={true}
|
|
91
|
-
collapsable={false}
|
|
92
91
|
focusable={false}
|
|
93
92
|
onClick={[Function]}
|
|
94
93
|
onResponderGrant={[Function]}
|
|
@@ -98,22 +97,24 @@ exports[`ListItemContainer renders correctly themeSelected false themeVariant ca
|
|
|
98
97
|
onResponderTerminationRequest={[Function]}
|
|
99
98
|
onStartShouldSetResponder={[Function]}
|
|
100
99
|
style={
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
100
|
+
Array [
|
|
101
|
+
Object {
|
|
102
|
+
"alignItems": "center",
|
|
103
|
+
"backgroundColor": "#ffffff",
|
|
104
|
+
"borderRadius": 8,
|
|
105
|
+
"elevation": 10,
|
|
106
|
+
"flexDirection": "row",
|
|
107
|
+
"padding": 16,
|
|
108
|
+
"shadowColor": "#e8e9ea",
|
|
109
|
+
"shadowOffset": Object {
|
|
110
|
+
"height": 2,
|
|
111
|
+
"width": 0,
|
|
112
|
+
},
|
|
113
|
+
"shadowOpacity": 1,
|
|
114
|
+
"shadowRadius": 4,
|
|
113
115
|
},
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}
|
|
116
|
+
undefined,
|
|
117
|
+
]
|
|
117
118
|
}
|
|
118
119
|
>
|
|
119
120
|
<Text
|
|
@@ -142,7 +143,6 @@ exports[`ListItemContainer renders correctly themeSelected false themeVariant ca
|
|
|
142
143
|
exports[`ListItemContainer renders correctly themeSelected false themeVariant full-width 1`] = `
|
|
143
144
|
<View
|
|
144
145
|
accessible={true}
|
|
145
|
-
collapsable={false}
|
|
146
146
|
focusable={false}
|
|
147
147
|
onClick={[Function]}
|
|
148
148
|
onResponderGrant={[Function]}
|
|
@@ -152,12 +152,14 @@ exports[`ListItemContainer renders correctly themeSelected false themeVariant fu
|
|
|
152
152
|
onResponderTerminationRequest={[Function]}
|
|
153
153
|
onStartShouldSetResponder={[Function]}
|
|
154
154
|
style={
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
155
|
+
Array [
|
|
156
|
+
Object {
|
|
157
|
+
"backgroundColor": "#ffffff",
|
|
158
|
+
"flexDirection": "row",
|
|
159
|
+
"padding": 16,
|
|
160
|
+
},
|
|
161
|
+
undefined,
|
|
162
|
+
]
|
|
161
163
|
}
|
|
162
164
|
>
|
|
163
165
|
<Text
|
|
@@ -186,7 +188,6 @@ exports[`ListItemContainer renders correctly themeSelected false themeVariant fu
|
|
|
186
188
|
exports[`ListItemContainer renders correctly themeSelected true themeVariant card 1`] = `
|
|
187
189
|
<View
|
|
188
190
|
accessible={true}
|
|
189
|
-
collapsable={false}
|
|
190
191
|
focusable={false}
|
|
191
192
|
onClick={[Function]}
|
|
192
193
|
onResponderGrant={[Function]}
|
|
@@ -196,22 +197,24 @@ exports[`ListItemContainer renders correctly themeSelected true themeVariant car
|
|
|
196
197
|
onResponderTerminationRequest={[Function]}
|
|
197
198
|
onStartShouldSetResponder={[Function]}
|
|
198
199
|
style={
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
200
|
+
Array [
|
|
201
|
+
Object {
|
|
202
|
+
"alignItems": "center",
|
|
203
|
+
"backgroundColor": "#ece8ef",
|
|
204
|
+
"borderRadius": 8,
|
|
205
|
+
"elevation": 10,
|
|
206
|
+
"flexDirection": "row",
|
|
207
|
+
"padding": 16,
|
|
208
|
+
"shadowColor": "#e8e9ea",
|
|
209
|
+
"shadowOffset": Object {
|
|
210
|
+
"height": 2,
|
|
211
|
+
"width": 0,
|
|
212
|
+
},
|
|
213
|
+
"shadowOpacity": 1,
|
|
214
|
+
"shadowRadius": 4,
|
|
211
215
|
},
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
}
|
|
216
|
+
undefined,
|
|
217
|
+
]
|
|
215
218
|
}
|
|
216
219
|
>
|
|
217
220
|
<Text
|
|
@@ -240,7 +243,6 @@ exports[`ListItemContainer renders correctly themeSelected true themeVariant car
|
|
|
240
243
|
exports[`ListItemContainer renders correctly themeSelected true themeVariant full-width 1`] = `
|
|
241
244
|
<View
|
|
242
245
|
accessible={true}
|
|
243
|
-
collapsable={false}
|
|
244
246
|
focusable={false}
|
|
245
247
|
onClick={[Function]}
|
|
246
248
|
onResponderGrant={[Function]}
|
|
@@ -250,12 +252,14 @@ exports[`ListItemContainer renders correctly themeSelected true themeVariant ful
|
|
|
250
252
|
onResponderTerminationRequest={[Function]}
|
|
251
253
|
onStartShouldSetResponder={[Function]}
|
|
252
254
|
style={
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
255
|
+
Array [
|
|
256
|
+
Object {
|
|
257
|
+
"backgroundColor": "#ece8ef",
|
|
258
|
+
"flexDirection": "row",
|
|
259
|
+
"padding": 16,
|
|
260
|
+
},
|
|
261
|
+
undefined,
|
|
262
|
+
]
|
|
259
263
|
}
|
|
260
264
|
>
|
|
261
265
|
<Text
|
|
@@ -8,7 +8,6 @@ exports[`rendering renders correctly when checked 1`] = `
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
accessible={true}
|
|
11
|
-
collapsable={false}
|
|
12
11
|
focusable={true}
|
|
13
12
|
onClick={[Function]}
|
|
14
13
|
onResponderGrant={[Function]}
|
|
@@ -18,14 +17,17 @@ exports[`rendering renders correctly when checked 1`] = `
|
|
|
18
17
|
onResponderTerminationRequest={[Function]}
|
|
19
18
|
onStartShouldSetResponder={[Function]}
|
|
20
19
|
style={
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
20
|
+
Array [
|
|
21
|
+
Object {
|
|
22
|
+
"alignItems": "center",
|
|
23
|
+
"backgroundColor": "#ece8ef",
|
|
24
|
+
"borderRadius": 4,
|
|
25
|
+
"flexDirection": "row",
|
|
26
|
+
"opacity": 1,
|
|
27
|
+
"padding": 16,
|
|
28
|
+
},
|
|
29
|
+
undefined,
|
|
30
|
+
]
|
|
29
31
|
}
|
|
30
32
|
>
|
|
31
33
|
<View
|
|
@@ -112,7 +114,6 @@ exports[`rendering renders correctly when not checked 1`] = `
|
|
|
112
114
|
}
|
|
113
115
|
}
|
|
114
116
|
accessible={true}
|
|
115
|
-
collapsable={false}
|
|
116
117
|
focusable={true}
|
|
117
118
|
onClick={[Function]}
|
|
118
119
|
onResponderGrant={[Function]}
|
|
@@ -122,14 +123,17 @@ exports[`rendering renders correctly when not checked 1`] = `
|
|
|
122
123
|
onResponderTerminationRequest={[Function]}
|
|
123
124
|
onStartShouldSetResponder={[Function]}
|
|
124
125
|
style={
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
126
|
+
Array [
|
|
127
|
+
Object {
|
|
128
|
+
"alignItems": "center",
|
|
129
|
+
"backgroundColor": "#ffffff",
|
|
130
|
+
"borderRadius": 4,
|
|
131
|
+
"flexDirection": "row",
|
|
132
|
+
"opacity": 1,
|
|
133
|
+
"padding": 16,
|
|
134
|
+
},
|
|
135
|
+
undefined,
|
|
136
|
+
]
|
|
133
137
|
}
|
|
134
138
|
>
|
|
135
139
|
<View
|
|
@@ -9,7 +9,6 @@ exports[`rendering renders correctly 1`] = `
|
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
accessible={true}
|
|
12
|
-
collapsable={false}
|
|
13
12
|
focusable={true}
|
|
14
13
|
onClick={[Function]}
|
|
15
14
|
onResponderGrant={[Function]}
|
|
@@ -19,14 +18,17 @@ exports[`rendering renders correctly 1`] = `
|
|
|
19
18
|
onResponderTerminationRequest={[Function]}
|
|
20
19
|
onStartShouldSetResponder={[Function]}
|
|
21
20
|
style={
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
21
|
+
Array [
|
|
22
|
+
Object {
|
|
23
|
+
"alignItems": "center",
|
|
24
|
+
"backgroundColor": "#ffffff",
|
|
25
|
+
"borderRadius": 4,
|
|
26
|
+
"flexDirection": "row",
|
|
27
|
+
"opacity": 1,
|
|
28
|
+
"padding": 16,
|
|
29
|
+
},
|
|
30
|
+
undefined,
|
|
31
|
+
]
|
|
30
32
|
}
|
|
31
33
|
>
|
|
32
34
|
<View
|
|
@@ -105,7 +107,6 @@ exports[`rendering renders correctly 1`] = `
|
|
|
105
107
|
}
|
|
106
108
|
}
|
|
107
109
|
accessible={true}
|
|
108
|
-
collapsable={false}
|
|
109
110
|
focusable={true}
|
|
110
111
|
onClick={[Function]}
|
|
111
112
|
onResponderGrant={[Function]}
|
|
@@ -115,14 +116,17 @@ exports[`rendering renders correctly 1`] = `
|
|
|
115
116
|
onResponderTerminationRequest={[Function]}
|
|
116
117
|
onStartShouldSetResponder={[Function]}
|
|
117
118
|
style={
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
119
|
+
Array [
|
|
120
|
+
Object {
|
|
121
|
+
"alignItems": "center",
|
|
122
|
+
"backgroundColor": "#ffffff",
|
|
123
|
+
"borderRadius": 4,
|
|
124
|
+
"flexDirection": "row",
|
|
125
|
+
"opacity": 1,
|
|
126
|
+
"padding": 16,
|
|
127
|
+
},
|
|
128
|
+
undefined,
|
|
129
|
+
]
|
|
126
130
|
}
|
|
127
131
|
>
|
|
128
132
|
<View
|
|
@@ -201,7 +205,6 @@ exports[`rendering renders correctly 1`] = `
|
|
|
201
205
|
}
|
|
202
206
|
}
|
|
203
207
|
accessible={true}
|
|
204
|
-
collapsable={false}
|
|
205
208
|
focusable={true}
|
|
206
209
|
onClick={[Function]}
|
|
207
210
|
onResponderGrant={[Function]}
|
|
@@ -211,14 +214,17 @@ exports[`rendering renders correctly 1`] = `
|
|
|
211
214
|
onResponderTerminationRequest={[Function]}
|
|
212
215
|
onStartShouldSetResponder={[Function]}
|
|
213
216
|
style={
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
217
|
+
Array [
|
|
218
|
+
Object {
|
|
219
|
+
"alignItems": "center",
|
|
220
|
+
"backgroundColor": "#ece8ef",
|
|
221
|
+
"borderRadius": 4,
|
|
222
|
+
"flexDirection": "row",
|
|
223
|
+
"opacity": 1,
|
|
224
|
+
"padding": 16,
|
|
225
|
+
},
|
|
226
|
+
undefined,
|
|
227
|
+
]
|
|
222
228
|
}
|
|
223
229
|
>
|
|
224
230
|
<View
|
|
@@ -17,6 +17,8 @@ exports[`RichTextEditor onMessage recevied event editor-layout should update hei
|
|
|
17
17
|
Array [
|
|
18
18
|
Object {
|
|
19
19
|
"alignItems": "center",
|
|
20
|
+
"backgroundColor": "#ffffff",
|
|
21
|
+
"borderRadius": 8,
|
|
20
22
|
"flexDirection": "row",
|
|
21
23
|
"padding": 16,
|
|
22
24
|
},
|
|
@@ -283,6 +285,8 @@ exports[`RichTextEditor should render correctly 1`] = `
|
|
|
283
285
|
Array [
|
|
284
286
|
Object {
|
|
285
287
|
"alignItems": "center",
|
|
288
|
+
"backgroundColor": "#ffffff",
|
|
289
|
+
"borderRadius": 8,
|
|
286
290
|
"flexDirection": "row",
|
|
287
291
|
"padding": 16,
|
|
288
292
|
},
|