@developer_tribe/react-builder 0.1.25 → 0.1.26
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/dist/DeviceMockFrame.d.ts +22 -0
- package/dist/RenderPage.d.ts +6 -3
- package/dist/build-components/OnboardProvider/OnboardProviderProps.generated.d.ts +4 -1
- package/dist/build-components/index.d.ts +0 -1
- package/dist/build-components/useNode.d.ts +2 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/types/Device.d.ts +16 -0
- package/dist/types/Node.d.ts +2 -1
- package/dist/utils/patterns.d.ts +4 -0
- package/package.json +1 -1
- package/scripts/prebuild/build-components.js +4 -4
- package/scripts/prebuild/utils/createBuildComponentsIndex.js +1 -4
- package/scripts/prebuild/utils/createBuildComponentsRootGetDefaults.js +2 -55
- package/scripts/prebuild/utils/createGetDefaultsPerComponent.js +2 -19
- package/scripts/prebuild/utils/createRootGetDefaults.js +2 -44
- package/scripts/prebuild/utils/validateAllComponentsOrThrow.js +3 -1
- package/src/AttributesEditor.tsx +19 -15
- package/src/DeviceMockFrame.tsx +119 -0
- package/src/RenderPage.tsx +19 -27
- package/src/assets/devices.json +364 -91
- package/src/build-components/Button/Button.tsx +2 -0
- package/src/build-components/Carousel/Carousel.tsx +2 -0
- package/src/build-components/CarouselButtons/CarouselButtons.tsx +2 -0
- package/src/build-components/CarouselDots/CarouselDots.tsx +2 -0
- package/src/build-components/CarouselItem/CarouselItem.tsx +2 -0
- package/src/build-components/CarouselProvider/CarouselProvider.tsx +2 -0
- package/src/build-components/Image/Image.tsx +2 -0
- package/src/build-components/Onboard/Onboard.tsx +2 -0
- package/src/build-components/OnboardButton/OnboardButton.tsx +2 -0
- package/src/build-components/OnboardButtons/OnboardButtons.tsx +2 -0
- package/src/build-components/OnboardDot/OnboardDot.tsx +2 -0
- package/src/build-components/OnboardFooter/OnboardFooter.tsx +2 -0
- package/src/build-components/OnboardImage/OnboardImage.tsx +2 -0
- package/src/build-components/OnboardItem/OnboardItem.tsx +2 -0
- package/src/build-components/OnboardProvider/OnboardProvider.tsx +13 -1
- package/src/build-components/OnboardProvider/OnboardProviderProps.generated.ts +4 -1
- package/src/build-components/OnboardProvider/pattern.json +4 -1
- package/src/build-components/OnboardSubtitle/OnboardSubtitle.tsx +2 -0
- package/src/build-components/OnboardSubtitle/pattern.json +1 -1
- package/src/build-components/OnboardTitle/OnboardTitle.tsx +2 -0
- package/src/build-components/OnboardTitle/pattern.json +1 -1
- package/src/build-components/Text/Text.tsx +2 -0
- package/src/build-components/View/View.tsx +2 -0
- package/src/build-components/index.ts +0 -2
- package/src/build-components/useNode.ts +15 -0
- package/src/index.ts +2 -0
- package/src/types/Device.ts +21 -0
- package/src/types/Node.ts +2 -11
- package/src/utils/novaToJson.ts +7 -0
- package/src/utils/patterns.ts +11 -0
- package/dist/build-components/Button/getDefaults.d.ts +0 -3
- package/dist/build-components/Carousel/getDefaults.d.ts +0 -3
- package/dist/build-components/CarouselButtons/getDefaults.d.ts +0 -3
- package/dist/build-components/CarouselDots/getDefaults.d.ts +0 -3
- package/dist/build-components/CarouselItem/getDefaults.d.ts +0 -3
- package/dist/build-components/CarouselProvider/getDefaults.d.ts +0 -3
- package/dist/build-components/Image/getDefaults.d.ts +0 -3
- package/dist/build-components/Onboard/getDefaults.d.ts +0 -3
- package/dist/build-components/OnboardButton/getDefaults.d.ts +0 -3
- package/dist/build-components/OnboardButtons/getDefaults.d.ts +0 -3
- package/dist/build-components/OnboardDot/getDefaults.d.ts +0 -3
- package/dist/build-components/OnboardFooter/getDefaults.d.ts +0 -3
- package/dist/build-components/OnboardImage/getDefaults.d.ts +0 -3
- package/dist/build-components/OnboardItem/getDefaults.d.ts +0 -3
- package/dist/build-components/OnboardProvider/getDefaults.d.ts +0 -3
- package/dist/build-components/OnboardSubtitle/getDefaults.d.ts +0 -3
- package/dist/build-components/OnboardTitle/getDefaults.d.ts +0 -3
- package/dist/build-components/Text/getDefaults.d.ts +0 -3
- package/dist/build-components/View/getDefaults.d.ts +0 -3
- package/dist/build-components/getDefaults.d.ts +0 -25
- package/src/build-components/Button/getDefaults.ts +0 -11
- package/src/build-components/Carousel/getDefaults.ts +0 -11
- package/src/build-components/CarouselButtons/getDefaults.ts +0 -13
- package/src/build-components/CarouselDots/getDefaults.ts +0 -13
- package/src/build-components/CarouselItem/getDefaults.ts +0 -13
- package/src/build-components/CarouselProvider/getDefaults.ts +0 -13
- package/src/build-components/Image/getDefaults.ts +0 -11
- package/src/build-components/Onboard/getDefaults.ts +0 -11
- package/src/build-components/OnboardButton/getDefaults.ts +0 -13
- package/src/build-components/OnboardButtons/getDefaults.ts +0 -13
- package/src/build-components/OnboardDot/getDefaults.ts +0 -13
- package/src/build-components/OnboardFooter/getDefaults.ts +0 -13
- package/src/build-components/OnboardImage/getDefaults.ts +0 -13
- package/src/build-components/OnboardItem/getDefaults.ts +0 -13
- package/src/build-components/OnboardProvider/getDefaults.ts +0 -13
- package/src/build-components/OnboardSubtitle/getDefaults.ts +0 -13
- package/src/build-components/OnboardTitle/getDefaults.ts +0 -13
- package/src/build-components/Text/getDefaults.ts +0 -11
- package/src/build-components/View/getDefaults.ts +0 -11
- package/src/build-components/getDefaults.ts +0 -149
package/src/assets/devices.json
CHANGED
|
@@ -5,7 +5,10 @@
|
|
|
5
5
|
"width": 390,
|
|
6
6
|
"height": 844,
|
|
7
7
|
"type": "phone",
|
|
8
|
-
"importance": 13
|
|
8
|
+
"importance": 13,
|
|
9
|
+
"insets": [47, 0, 34, 0],
|
|
10
|
+
"navigationBarType": "homeIndicator",
|
|
11
|
+
"radius": 40
|
|
9
12
|
},
|
|
10
13
|
{
|
|
11
14
|
"name": "iphone 12 pro",
|
|
@@ -13,7 +16,10 @@
|
|
|
13
16
|
"width": 390,
|
|
14
17
|
"height": 844,
|
|
15
18
|
"type": "phone",
|
|
16
|
-
"importance": 19
|
|
19
|
+
"importance": 19,
|
|
20
|
+
"insets": [47, 0, 34, 0],
|
|
21
|
+
"navigationBarType": "homeIndicator",
|
|
22
|
+
"radius": 40
|
|
17
23
|
},
|
|
18
24
|
{
|
|
19
25
|
"name": "iphone 13",
|
|
@@ -21,7 +27,10 @@
|
|
|
21
27
|
"width": 390,
|
|
22
28
|
"height": 844,
|
|
23
29
|
"type": "phone",
|
|
24
|
-
"importance": 4
|
|
30
|
+
"importance": 4,
|
|
31
|
+
"insets": [47, 0, 34, 0],
|
|
32
|
+
"navigationBarType": "homeIndicator",
|
|
33
|
+
"radius": 40
|
|
25
34
|
},
|
|
26
35
|
{
|
|
27
36
|
"name": "iphone 13 pro",
|
|
@@ -29,7 +38,10 @@
|
|
|
29
38
|
"width": 390,
|
|
30
39
|
"height": 844,
|
|
31
40
|
"type": "phone",
|
|
32
|
-
"importance": 8
|
|
41
|
+
"importance": 8,
|
|
42
|
+
"insets": [47, 0, 34, 0],
|
|
43
|
+
"navigationBarType": "homeIndicator",
|
|
44
|
+
"radius": 40
|
|
33
45
|
},
|
|
34
46
|
{
|
|
35
47
|
"name": "iphone 14",
|
|
@@ -37,7 +49,10 @@
|
|
|
37
49
|
"width": 390,
|
|
38
50
|
"height": 844,
|
|
39
51
|
"type": "phone",
|
|
40
|
-
"importance": 15
|
|
52
|
+
"importance": 15,
|
|
53
|
+
"insets": [47, 0, 34, 0],
|
|
54
|
+
"navigationBarType": "homeIndicator",
|
|
55
|
+
"radius": 40
|
|
41
56
|
},
|
|
42
57
|
{
|
|
43
58
|
"name": "iphone 14 pro",
|
|
@@ -45,7 +60,10 @@
|
|
|
45
60
|
"width": 393,
|
|
46
61
|
"height": 852,
|
|
47
62
|
"type": "phone",
|
|
48
|
-
"importance": 15
|
|
63
|
+
"importance": 15,
|
|
64
|
+
"insets": [47, 0, 34, 0],
|
|
65
|
+
"navigationBarType": "homeIndicator",
|
|
66
|
+
"radius": 40
|
|
49
67
|
},
|
|
50
68
|
{
|
|
51
69
|
"name": "iphone 15",
|
|
@@ -53,7 +71,10 @@
|
|
|
53
71
|
"width": 393,
|
|
54
72
|
"height": 852,
|
|
55
73
|
"type": "phone",
|
|
56
|
-
"importance": 6
|
|
74
|
+
"importance": 6,
|
|
75
|
+
"insets": [47, 0, 34, 0],
|
|
76
|
+
"navigationBarType": "homeIndicator",
|
|
77
|
+
"radius": 40
|
|
57
78
|
},
|
|
58
79
|
{
|
|
59
80
|
"name": "iphone 15 pro",
|
|
@@ -61,7 +82,10 @@
|
|
|
61
82
|
"width": 393,
|
|
62
83
|
"height": 852,
|
|
63
84
|
"type": "phone",
|
|
64
|
-
"importance": 18
|
|
85
|
+
"importance": 18,
|
|
86
|
+
"insets": [47, 0, 34, 0],
|
|
87
|
+
"navigationBarType": "homeIndicator",
|
|
88
|
+
"radius": 40
|
|
65
89
|
},
|
|
66
90
|
{
|
|
67
91
|
"name": "pixel 3 xl",
|
|
@@ -69,7 +93,10 @@
|
|
|
69
93
|
"width": 412,
|
|
70
94
|
"height": 847,
|
|
71
95
|
"type": "phone",
|
|
72
|
-
"importance": 8
|
|
96
|
+
"importance": 8,
|
|
97
|
+
"insets": [24, 0, 24, 0],
|
|
98
|
+
"navigationBarType": "gesture",
|
|
99
|
+
"radius": 20
|
|
73
100
|
},
|
|
74
101
|
{
|
|
75
102
|
"name": "pixel 4 xl",
|
|
@@ -77,7 +104,10 @@
|
|
|
77
104
|
"width": 412,
|
|
78
105
|
"height": 869,
|
|
79
106
|
"type": "phone",
|
|
80
|
-
"importance": 14
|
|
107
|
+
"importance": 14,
|
|
108
|
+
"insets": [24, 0, 24, 0],
|
|
109
|
+
"navigationBarType": "gesture",
|
|
110
|
+
"radius": 20
|
|
81
111
|
},
|
|
82
112
|
{
|
|
83
113
|
"name": "pixel 6",
|
|
@@ -85,7 +115,10 @@
|
|
|
85
115
|
"width": 412,
|
|
86
116
|
"height": 915,
|
|
87
117
|
"type": "phone",
|
|
88
|
-
"importance": 10
|
|
118
|
+
"importance": 10,
|
|
119
|
+
"insets": [24, 0, 24, 0],
|
|
120
|
+
"navigationBarType": "gesture",
|
|
121
|
+
"radius": 20
|
|
89
122
|
},
|
|
90
123
|
{
|
|
91
124
|
"name": "pixel 6 pro",
|
|
@@ -93,7 +126,10 @@
|
|
|
93
126
|
"width": 412,
|
|
94
127
|
"height": 892,
|
|
95
128
|
"type": "phone",
|
|
96
|
-
"importance": 4
|
|
129
|
+
"importance": 4,
|
|
130
|
+
"insets": [24, 0, 24, 0],
|
|
131
|
+
"navigationBarType": "gesture",
|
|
132
|
+
"radius": 20
|
|
97
133
|
},
|
|
98
134
|
{
|
|
99
135
|
"name": "pixel 7",
|
|
@@ -101,7 +137,10 @@
|
|
|
101
137
|
"width": 412,
|
|
102
138
|
"height": 915,
|
|
103
139
|
"type": "phone",
|
|
104
|
-
"importance": 11
|
|
140
|
+
"importance": 11,
|
|
141
|
+
"insets": [24, 0, 24, 0],
|
|
142
|
+
"navigationBarType": "gesture",
|
|
143
|
+
"radius": 20
|
|
105
144
|
},
|
|
106
145
|
{
|
|
107
146
|
"name": "pixel 7 pro",
|
|
@@ -109,7 +148,10 @@
|
|
|
109
148
|
"width": 412,
|
|
110
149
|
"height": 892,
|
|
111
150
|
"type": "phone",
|
|
112
|
-
"importance": 5
|
|
151
|
+
"importance": 5,
|
|
152
|
+
"insets": [24, 0, 24, 0],
|
|
153
|
+
"navigationBarType": "gesture",
|
|
154
|
+
"radius": 20
|
|
113
155
|
},
|
|
114
156
|
{
|
|
115
157
|
"name": "pixel 8",
|
|
@@ -117,7 +159,10 @@
|
|
|
117
159
|
"width": 412,
|
|
118
160
|
"height": 915,
|
|
119
161
|
"type": "phone",
|
|
120
|
-
"importance": 12
|
|
162
|
+
"importance": 12,
|
|
163
|
+
"insets": [24, 0, 24, 0],
|
|
164
|
+
"navigationBarType": "gesture",
|
|
165
|
+
"radius": 20
|
|
121
166
|
},
|
|
122
167
|
{
|
|
123
168
|
"name": "pixel 8 pro",
|
|
@@ -125,7 +170,10 @@
|
|
|
125
170
|
"width": 412,
|
|
126
171
|
"height": 919,
|
|
127
172
|
"type": "phone",
|
|
128
|
-
"importance": 16
|
|
173
|
+
"importance": 16,
|
|
174
|
+
"insets": [24, 0, 24, 0],
|
|
175
|
+
"navigationBarType": "gesture",
|
|
176
|
+
"radius": 20
|
|
129
177
|
},
|
|
130
178
|
{
|
|
131
179
|
"name": "galaxy s8",
|
|
@@ -133,7 +181,10 @@
|
|
|
133
181
|
"width": 360,
|
|
134
182
|
"height": 740,
|
|
135
183
|
"type": "phone",
|
|
136
|
-
"importance": 5
|
|
184
|
+
"importance": 5,
|
|
185
|
+
"insets": [24, 0, 48, 0],
|
|
186
|
+
"navigationBarType": "threeButtons",
|
|
187
|
+
"radius": 16
|
|
137
188
|
},
|
|
138
189
|
{
|
|
139
190
|
"name": "galaxy s8+",
|
|
@@ -141,7 +192,10 @@
|
|
|
141
192
|
"width": 360,
|
|
142
193
|
"height": 740,
|
|
143
194
|
"type": "phone",
|
|
144
|
-
"importance": 1
|
|
195
|
+
"importance": 1,
|
|
196
|
+
"insets": [24, 0, 48, 0],
|
|
197
|
+
"navigationBarType": "threeButtons",
|
|
198
|
+
"radius": 16
|
|
145
199
|
},
|
|
146
200
|
{
|
|
147
201
|
"name": "galaxy s9",
|
|
@@ -149,7 +203,10 @@
|
|
|
149
203
|
"width": 360,
|
|
150
204
|
"height": 740,
|
|
151
205
|
"type": "phone",
|
|
152
|
-
"importance": 4
|
|
206
|
+
"importance": 4,
|
|
207
|
+
"insets": [24, 0, 48, 0],
|
|
208
|
+
"navigationBarType": "threeButtons",
|
|
209
|
+
"radius": 16
|
|
153
210
|
},
|
|
154
211
|
{
|
|
155
212
|
"name": "galaxy s9+",
|
|
@@ -157,7 +214,10 @@
|
|
|
157
214
|
"width": 360,
|
|
158
215
|
"height": 740,
|
|
159
216
|
"type": "phone",
|
|
160
|
-
"importance": 4
|
|
217
|
+
"importance": 4,
|
|
218
|
+
"insets": [24, 0, 48, 0],
|
|
219
|
+
"navigationBarType": "threeButtons",
|
|
220
|
+
"radius": 16
|
|
161
221
|
},
|
|
162
222
|
{
|
|
163
223
|
"name": "galaxy s10",
|
|
@@ -165,7 +225,10 @@
|
|
|
165
225
|
"width": 360,
|
|
166
226
|
"height": 760,
|
|
167
227
|
"type": "phone",
|
|
168
|
-
"importance": 19
|
|
228
|
+
"importance": 19,
|
|
229
|
+
"insets": [24, 0, 24, 0],
|
|
230
|
+
"navigationBarType": "gesture",
|
|
231
|
+
"radius": 20
|
|
169
232
|
},
|
|
170
233
|
{
|
|
171
234
|
"name": "galaxy s10+",
|
|
@@ -173,7 +236,10 @@
|
|
|
173
236
|
"width": 412,
|
|
174
237
|
"height": 869,
|
|
175
238
|
"type": "phone",
|
|
176
|
-
"importance": 15
|
|
239
|
+
"importance": 15,
|
|
240
|
+
"insets": [24, 0, 24, 0],
|
|
241
|
+
"navigationBarType": "gesture",
|
|
242
|
+
"radius": 20
|
|
177
243
|
},
|
|
178
244
|
{
|
|
179
245
|
"name": "galaxy s20",
|
|
@@ -181,7 +247,10 @@
|
|
|
181
247
|
"width": 360,
|
|
182
248
|
"height": 800,
|
|
183
249
|
"type": "phone",
|
|
184
|
-
"importance": 13
|
|
250
|
+
"importance": 13,
|
|
251
|
+
"insets": [24, 0, 24, 0],
|
|
252
|
+
"navigationBarType": "gesture",
|
|
253
|
+
"radius": 20
|
|
185
254
|
},
|
|
186
255
|
{
|
|
187
256
|
"name": "galaxy s20+",
|
|
@@ -189,7 +258,10 @@
|
|
|
189
258
|
"width": 412,
|
|
190
259
|
"height": 915,
|
|
191
260
|
"type": "phone",
|
|
192
|
-
"importance": 16
|
|
261
|
+
"importance": 16,
|
|
262
|
+
"insets": [24, 0, 24, 0],
|
|
263
|
+
"navigationBarType": "gesture",
|
|
264
|
+
"radius": 20
|
|
193
265
|
},
|
|
194
266
|
{
|
|
195
267
|
"name": "galaxy s20 ultra",
|
|
@@ -197,7 +269,10 @@
|
|
|
197
269
|
"width": 412,
|
|
198
270
|
"height": 915,
|
|
199
271
|
"type": "phone",
|
|
200
|
-
"importance": 2
|
|
272
|
+
"importance": 2,
|
|
273
|
+
"insets": [24, 0, 24, 0],
|
|
274
|
+
"navigationBarType": "gesture",
|
|
275
|
+
"radius": 20
|
|
201
276
|
},
|
|
202
277
|
{
|
|
203
278
|
"name": "galaxy s21",
|
|
@@ -205,7 +280,10 @@
|
|
|
205
280
|
"width": 360,
|
|
206
281
|
"height": 800,
|
|
207
282
|
"type": "phone",
|
|
208
|
-
"importance": 13
|
|
283
|
+
"importance": 13,
|
|
284
|
+
"insets": [24, 0, 24, 0],
|
|
285
|
+
"navigationBarType": "gesture",
|
|
286
|
+
"radius": 20
|
|
209
287
|
},
|
|
210
288
|
{
|
|
211
289
|
"name": "galaxy s21+",
|
|
@@ -213,7 +291,10 @@
|
|
|
213
291
|
"width": 412,
|
|
214
292
|
"height": 915,
|
|
215
293
|
"type": "phone",
|
|
216
|
-
"importance": 12
|
|
294
|
+
"importance": 12,
|
|
295
|
+
"insets": [24, 0, 24, 0],
|
|
296
|
+
"navigationBarType": "gesture",
|
|
297
|
+
"radius": 20
|
|
217
298
|
},
|
|
218
299
|
{
|
|
219
300
|
"name": "galaxy s21 ultra",
|
|
@@ -221,7 +302,10 @@
|
|
|
221
302
|
"width": 412,
|
|
222
303
|
"height": 915,
|
|
223
304
|
"type": "phone",
|
|
224
|
-
"importance": 2
|
|
305
|
+
"importance": 2,
|
|
306
|
+
"insets": [24, 0, 24, 0],
|
|
307
|
+
"navigationBarType": "gesture",
|
|
308
|
+
"radius": 20
|
|
225
309
|
},
|
|
226
310
|
{
|
|
227
311
|
"name": "galaxy s22",
|
|
@@ -229,7 +313,10 @@
|
|
|
229
313
|
"width": 360,
|
|
230
314
|
"height": 780,
|
|
231
315
|
"type": "phone",
|
|
232
|
-
"importance": 2
|
|
316
|
+
"importance": 2,
|
|
317
|
+
"insets": [24, 0, 24, 0],
|
|
318
|
+
"navigationBarType": "gesture",
|
|
319
|
+
"radius": 20
|
|
233
320
|
},
|
|
234
321
|
{
|
|
235
322
|
"name": "galaxy s22+",
|
|
@@ -237,7 +324,10 @@
|
|
|
237
324
|
"width": 412,
|
|
238
325
|
"height": 915,
|
|
239
326
|
"type": "phone",
|
|
240
|
-
"importance": 8
|
|
327
|
+
"importance": 8,
|
|
328
|
+
"insets": [24, 0, 24, 0],
|
|
329
|
+
"navigationBarType": "gesture",
|
|
330
|
+
"radius": 20
|
|
241
331
|
},
|
|
242
332
|
{
|
|
243
333
|
"name": "galaxy s22 ultra",
|
|
@@ -245,7 +335,10 @@
|
|
|
245
335
|
"width": 412,
|
|
246
336
|
"height": 915,
|
|
247
337
|
"type": "phone",
|
|
248
|
-
"importance": 19
|
|
338
|
+
"importance": 19,
|
|
339
|
+
"insets": [24, 0, 24, 0],
|
|
340
|
+
"navigationBarType": "gesture",
|
|
341
|
+
"radius": 20
|
|
249
342
|
},
|
|
250
343
|
{
|
|
251
344
|
"name": "galaxy s23",
|
|
@@ -253,7 +346,10 @@
|
|
|
253
346
|
"width": 360,
|
|
254
347
|
"height": 780,
|
|
255
348
|
"type": "phone",
|
|
256
|
-
"importance": 19
|
|
349
|
+
"importance": 19,
|
|
350
|
+
"insets": [24, 0, 24, 0],
|
|
351
|
+
"navigationBarType": "gesture",
|
|
352
|
+
"radius": 20
|
|
257
353
|
},
|
|
258
354
|
{
|
|
259
355
|
"name": "galaxy s23+",
|
|
@@ -261,7 +357,10 @@
|
|
|
261
357
|
"width": 412,
|
|
262
358
|
"height": 915,
|
|
263
359
|
"type": "phone",
|
|
264
|
-
"importance": 1
|
|
360
|
+
"importance": 1,
|
|
361
|
+
"insets": [24, 0, 24, 0],
|
|
362
|
+
"navigationBarType": "gesture",
|
|
363
|
+
"radius": 20
|
|
265
364
|
},
|
|
266
365
|
{
|
|
267
366
|
"name": "galaxy s23 ultra",
|
|
@@ -269,7 +368,10 @@
|
|
|
269
368
|
"width": 412,
|
|
270
369
|
"height": 915,
|
|
271
370
|
"type": "phone",
|
|
272
|
-
"importance": 19
|
|
371
|
+
"importance": 19,
|
|
372
|
+
"insets": [24, 0, 24, 0],
|
|
373
|
+
"navigationBarType": "gesture",
|
|
374
|
+
"radius": 20
|
|
273
375
|
},
|
|
274
376
|
{
|
|
275
377
|
"name": "oneplus 8",
|
|
@@ -277,7 +379,10 @@
|
|
|
277
379
|
"width": 412,
|
|
278
380
|
"height": 915,
|
|
279
381
|
"type": "phone",
|
|
280
|
-
"importance": 4
|
|
382
|
+
"importance": 4,
|
|
383
|
+
"insets": [24, 0, 24, 0],
|
|
384
|
+
"navigationBarType": "gesture",
|
|
385
|
+
"radius": 20
|
|
281
386
|
},
|
|
282
387
|
{
|
|
283
388
|
"name": "oneplus 8 pro",
|
|
@@ -285,7 +390,10 @@
|
|
|
285
390
|
"width": 412,
|
|
286
391
|
"height": 915,
|
|
287
392
|
"type": "phone",
|
|
288
|
-
"importance": 20
|
|
393
|
+
"importance": 20,
|
|
394
|
+
"insets": [24, 0, 24, 0],
|
|
395
|
+
"navigationBarType": "gesture",
|
|
396
|
+
"radius": 20
|
|
289
397
|
},
|
|
290
398
|
{
|
|
291
399
|
"name": "oneplus 9",
|
|
@@ -293,7 +401,10 @@
|
|
|
293
401
|
"width": 412,
|
|
294
402
|
"height": 915,
|
|
295
403
|
"type": "phone",
|
|
296
|
-
"importance": 3
|
|
404
|
+
"importance": 3,
|
|
405
|
+
"insets": [24, 0, 24, 0],
|
|
406
|
+
"navigationBarType": "gesture",
|
|
407
|
+
"radius": 20
|
|
297
408
|
},
|
|
298
409
|
{
|
|
299
410
|
"name": "oneplus 9 pro",
|
|
@@ -301,7 +412,10 @@
|
|
|
301
412
|
"width": 412,
|
|
302
413
|
"height": 915,
|
|
303
414
|
"type": "phone",
|
|
304
|
-
"importance": 1
|
|
415
|
+
"importance": 1,
|
|
416
|
+
"insets": [24, 0, 24, 0],
|
|
417
|
+
"navigationBarType": "gesture",
|
|
418
|
+
"radius": 20
|
|
305
419
|
},
|
|
306
420
|
{
|
|
307
421
|
"name": "xiaomi mi 11",
|
|
@@ -309,7 +423,10 @@
|
|
|
309
423
|
"width": 412,
|
|
310
424
|
"height": 915,
|
|
311
425
|
"type": "phone",
|
|
312
|
-
"importance": 9
|
|
426
|
+
"importance": 9,
|
|
427
|
+
"insets": [24, 0, 24, 0],
|
|
428
|
+
"navigationBarType": "gesture",
|
|
429
|
+
"radius": 20
|
|
313
430
|
},
|
|
314
431
|
{
|
|
315
432
|
"name": "huawei p30",
|
|
@@ -317,7 +434,10 @@
|
|
|
317
434
|
"width": 360,
|
|
318
435
|
"height": 750,
|
|
319
436
|
"type": "phone",
|
|
320
|
-
"importance": 10
|
|
437
|
+
"importance": 10,
|
|
438
|
+
"insets": [24, 0, 48, 0],
|
|
439
|
+
"navigationBarType": "threeButtons",
|
|
440
|
+
"radius": 16
|
|
321
441
|
},
|
|
322
442
|
{
|
|
323
443
|
"name": "huawei p30 pro",
|
|
@@ -325,7 +445,10 @@
|
|
|
325
445
|
"width": 360,
|
|
326
446
|
"height": 780,
|
|
327
447
|
"type": "phone",
|
|
328
|
-
"importance": 14
|
|
448
|
+
"importance": 14,
|
|
449
|
+
"insets": [24, 0, 48, 0],
|
|
450
|
+
"navigationBarType": "threeButtons",
|
|
451
|
+
"radius": 16
|
|
329
452
|
},
|
|
330
453
|
{
|
|
331
454
|
"name": "oppo find x3 pro",
|
|
@@ -333,7 +456,10 @@
|
|
|
333
456
|
"width": 412,
|
|
334
457
|
"height": 915,
|
|
335
458
|
"type": "phone",
|
|
336
|
-
"importance": 7
|
|
459
|
+
"importance": 7,
|
|
460
|
+
"insets": [24, 0, 24, 0],
|
|
461
|
+
"navigationBarType": "gesture",
|
|
462
|
+
"radius": 20
|
|
337
463
|
},
|
|
338
464
|
{
|
|
339
465
|
"name": "iphone 6 plus",
|
|
@@ -341,7 +467,10 @@
|
|
|
341
467
|
"width": 414,
|
|
342
468
|
"height": 736,
|
|
343
469
|
"type": "phone",
|
|
344
|
-
"importance": 27
|
|
470
|
+
"importance": 27,
|
|
471
|
+
"insets": [20, 0, 0, 0],
|
|
472
|
+
"navigationBarType": "none",
|
|
473
|
+
"radius": 0
|
|
345
474
|
},
|
|
346
475
|
{
|
|
347
476
|
"name": "iphone 6s plus",
|
|
@@ -349,7 +478,10 @@
|
|
|
349
478
|
"width": 414,
|
|
350
479
|
"height": 736,
|
|
351
480
|
"type": "phone",
|
|
352
|
-
"importance": 35
|
|
481
|
+
"importance": 35,
|
|
482
|
+
"insets": [20, 0, 0, 0],
|
|
483
|
+
"navigationBarType": "none",
|
|
484
|
+
"radius": 0
|
|
353
485
|
},
|
|
354
486
|
{
|
|
355
487
|
"name": "iphone 7 plus",
|
|
@@ -357,7 +489,10 @@
|
|
|
357
489
|
"width": 414,
|
|
358
490
|
"height": 736,
|
|
359
491
|
"type": "phone",
|
|
360
|
-
"importance": 40
|
|
492
|
+
"importance": 40,
|
|
493
|
+
"insets": [20, 0, 0, 0],
|
|
494
|
+
"navigationBarType": "none",
|
|
495
|
+
"radius": 0
|
|
361
496
|
},
|
|
362
497
|
{
|
|
363
498
|
"name": "iphone 8 plus",
|
|
@@ -365,7 +500,10 @@
|
|
|
365
500
|
"width": 414,
|
|
366
501
|
"height": 736,
|
|
367
502
|
"type": "phone",
|
|
368
|
-
"importance": 32
|
|
503
|
+
"importance": 32,
|
|
504
|
+
"insets": [20, 0, 0, 0],
|
|
505
|
+
"navigationBarType": "none",
|
|
506
|
+
"radius": 0
|
|
369
507
|
},
|
|
370
508
|
{
|
|
371
509
|
"name": "iphone xs max",
|
|
@@ -373,7 +511,10 @@
|
|
|
373
511
|
"width": 414,
|
|
374
512
|
"height": 896,
|
|
375
513
|
"type": "phone",
|
|
376
|
-
"importance": 21
|
|
514
|
+
"importance": 21,
|
|
515
|
+
"insets": [47, 0, 34, 0],
|
|
516
|
+
"navigationBarType": "homeIndicator",
|
|
517
|
+
"radius": 40
|
|
377
518
|
},
|
|
378
519
|
{
|
|
379
520
|
"name": "iphone xr",
|
|
@@ -381,7 +522,10 @@
|
|
|
381
522
|
"width": 414,
|
|
382
523
|
"height": 896,
|
|
383
524
|
"type": "phone",
|
|
384
|
-
"importance": 31
|
|
525
|
+
"importance": 31,
|
|
526
|
+
"insets": [47, 0, 34, 0],
|
|
527
|
+
"navigationBarType": "homeIndicator",
|
|
528
|
+
"radius": 40
|
|
385
529
|
},
|
|
386
530
|
{
|
|
387
531
|
"name": "iphone 11",
|
|
@@ -389,7 +533,10 @@
|
|
|
389
533
|
"width": 414,
|
|
390
534
|
"height": 896,
|
|
391
535
|
"type": "phone",
|
|
392
|
-
"importance": 36
|
|
536
|
+
"importance": 36,
|
|
537
|
+
"insets": [47, 0, 34, 0],
|
|
538
|
+
"navigationBarType": "homeIndicator",
|
|
539
|
+
"radius": 40
|
|
393
540
|
},
|
|
394
541
|
{
|
|
395
542
|
"name": "iphone 11 pro max",
|
|
@@ -397,7 +544,10 @@
|
|
|
397
544
|
"width": 414,
|
|
398
545
|
"height": 896,
|
|
399
546
|
"type": "phone",
|
|
400
|
-
"importance": 22
|
|
547
|
+
"importance": 22,
|
|
548
|
+
"insets": [47, 0, 34, 0],
|
|
549
|
+
"navigationBarType": "homeIndicator",
|
|
550
|
+
"radius": 40
|
|
401
551
|
},
|
|
402
552
|
{
|
|
403
553
|
"name": "iphone 12 pro max",
|
|
@@ -405,7 +555,10 @@
|
|
|
405
555
|
"width": 428,
|
|
406
556
|
"height": 926,
|
|
407
557
|
"type": "phone",
|
|
408
|
-
"importance": 28
|
|
558
|
+
"importance": 28,
|
|
559
|
+
"insets": [47, 0, 34, 0],
|
|
560
|
+
"navigationBarType": "homeIndicator",
|
|
561
|
+
"radius": 40
|
|
409
562
|
},
|
|
410
563
|
{
|
|
411
564
|
"name": "iphone 13 pro max",
|
|
@@ -413,7 +566,10 @@
|
|
|
413
566
|
"width": 428,
|
|
414
567
|
"height": 926,
|
|
415
568
|
"type": "phone",
|
|
416
|
-
"importance": 30
|
|
569
|
+
"importance": 30,
|
|
570
|
+
"insets": [47, 0, 34, 0],
|
|
571
|
+
"navigationBarType": "homeIndicator",
|
|
572
|
+
"radius": 40
|
|
417
573
|
},
|
|
418
574
|
{
|
|
419
575
|
"name": "iphone 14 plus",
|
|
@@ -421,7 +577,10 @@
|
|
|
421
577
|
"width": 428,
|
|
422
578
|
"height": 926,
|
|
423
579
|
"type": "phone",
|
|
424
|
-
"importance": 29
|
|
580
|
+
"importance": 29,
|
|
581
|
+
"insets": [47, 0, 34, 0],
|
|
582
|
+
"navigationBarType": "homeIndicator",
|
|
583
|
+
"radius": 40
|
|
425
584
|
},
|
|
426
585
|
{
|
|
427
586
|
"name": "iphone 14 pro max",
|
|
@@ -429,7 +588,10 @@
|
|
|
429
588
|
"width": 430,
|
|
430
589
|
"height": 932,
|
|
431
590
|
"type": "phone",
|
|
432
|
-
"importance": 39
|
|
591
|
+
"importance": 39,
|
|
592
|
+
"insets": [47, 0, 34, 0],
|
|
593
|
+
"navigationBarType": "homeIndicator",
|
|
594
|
+
"radius": 40
|
|
433
595
|
},
|
|
434
596
|
{
|
|
435
597
|
"name": "iphone 15 plus",
|
|
@@ -437,7 +599,10 @@
|
|
|
437
599
|
"width": 430,
|
|
438
600
|
"height": 932,
|
|
439
601
|
"type": "phone",
|
|
440
|
-
"importance": 24
|
|
602
|
+
"importance": 24,
|
|
603
|
+
"insets": [47, 0, 34, 0],
|
|
604
|
+
"navigationBarType": "homeIndicator",
|
|
605
|
+
"radius": 40
|
|
441
606
|
},
|
|
442
607
|
{
|
|
443
608
|
"name": "iphone 15 pro max",
|
|
@@ -445,7 +610,10 @@
|
|
|
445
610
|
"width": 430,
|
|
446
611
|
"height": 932,
|
|
447
612
|
"type": "phone",
|
|
448
|
-
"importance": 22
|
|
613
|
+
"importance": 22,
|
|
614
|
+
"insets": [47, 0, 34, 0],
|
|
615
|
+
"navigationBarType": "homeIndicator",
|
|
616
|
+
"radius": 40
|
|
449
617
|
},
|
|
450
618
|
{
|
|
451
619
|
"name": "pixel 2",
|
|
@@ -453,7 +621,10 @@
|
|
|
453
621
|
"width": 411,
|
|
454
622
|
"height": 731,
|
|
455
623
|
"type": "phone",
|
|
456
|
-
"importance": 29
|
|
624
|
+
"importance": 29,
|
|
625
|
+
"insets": [24, 0, 48, 0],
|
|
626
|
+
"navigationBarType": "threeButtons",
|
|
627
|
+
"radius": 16
|
|
457
628
|
},
|
|
458
629
|
{
|
|
459
630
|
"name": "pixel 2 xl",
|
|
@@ -461,7 +632,10 @@
|
|
|
461
632
|
"width": 411,
|
|
462
633
|
"height": 823,
|
|
463
634
|
"type": "phone",
|
|
464
|
-
"importance": 36
|
|
635
|
+
"importance": 36,
|
|
636
|
+
"insets": [24, 0, 48, 0],
|
|
637
|
+
"navigationBarType": "threeButtons",
|
|
638
|
+
"radius": 16
|
|
465
639
|
},
|
|
466
640
|
{
|
|
467
641
|
"name": "pixel 3",
|
|
@@ -469,7 +643,10 @@
|
|
|
469
643
|
"width": 393,
|
|
470
644
|
"height": 786,
|
|
471
645
|
"type": "phone",
|
|
472
|
-
"importance": 39
|
|
646
|
+
"importance": 39,
|
|
647
|
+
"insets": [24, 0, 24, 0],
|
|
648
|
+
"navigationBarType": "gesture",
|
|
649
|
+
"radius": 20
|
|
473
650
|
},
|
|
474
651
|
{
|
|
475
652
|
"name": "pixel 4",
|
|
@@ -477,7 +654,10 @@
|
|
|
477
654
|
"width": 411,
|
|
478
655
|
"height": 869,
|
|
479
656
|
"type": "phone",
|
|
480
|
-
"importance": 24
|
|
657
|
+
"importance": 24,
|
|
658
|
+
"insets": [24, 0, 24, 0],
|
|
659
|
+
"navigationBarType": "gesture",
|
|
660
|
+
"radius": 20
|
|
481
661
|
},
|
|
482
662
|
{
|
|
483
663
|
"name": "pixel 5",
|
|
@@ -485,7 +665,10 @@
|
|
|
485
665
|
"width": 393,
|
|
486
666
|
"height": 851,
|
|
487
667
|
"type": "phone",
|
|
488
|
-
"importance": 23
|
|
668
|
+
"importance": 23,
|
|
669
|
+
"insets": [24, 0, 24, 0],
|
|
670
|
+
"navigationBarType": "gesture",
|
|
671
|
+
"radius": 20
|
|
489
672
|
},
|
|
490
673
|
{
|
|
491
674
|
"name": "xiaomi mi 9",
|
|
@@ -493,7 +676,10 @@
|
|
|
493
676
|
"width": 393,
|
|
494
677
|
"height": 851,
|
|
495
678
|
"type": "phone",
|
|
496
|
-
"importance": 39
|
|
679
|
+
"importance": 39,
|
|
680
|
+
"insets": [24, 0, 24, 0],
|
|
681
|
+
"navigationBarType": "gesture",
|
|
682
|
+
"radius": 20
|
|
497
683
|
},
|
|
498
684
|
{
|
|
499
685
|
"name": "iphone 6",
|
|
@@ -501,7 +687,10 @@
|
|
|
501
687
|
"width": 375,
|
|
502
688
|
"height": 667,
|
|
503
689
|
"type": "phone",
|
|
504
|
-
"importance": 42
|
|
690
|
+
"importance": 42,
|
|
691
|
+
"insets": [20, 0, 0, 0],
|
|
692
|
+
"navigationBarType": "none",
|
|
693
|
+
"radius": 0
|
|
505
694
|
},
|
|
506
695
|
{
|
|
507
696
|
"name": "iphone 6s",
|
|
@@ -509,7 +698,10 @@
|
|
|
509
698
|
"width": 375,
|
|
510
699
|
"height": 667,
|
|
511
700
|
"type": "phone",
|
|
512
|
-
"importance": 60
|
|
701
|
+
"importance": 60,
|
|
702
|
+
"insets": [20, 0, 0, 0],
|
|
703
|
+
"navigationBarType": "none",
|
|
704
|
+
"radius": 0
|
|
513
705
|
},
|
|
514
706
|
{
|
|
515
707
|
"name": "iphone 7",
|
|
@@ -517,7 +709,10 @@
|
|
|
517
709
|
"width": 375,
|
|
518
710
|
"height": 667,
|
|
519
711
|
"type": "phone",
|
|
520
|
-
"importance": 41
|
|
712
|
+
"importance": 41,
|
|
713
|
+
"insets": [20, 0, 0, 0],
|
|
714
|
+
"navigationBarType": "none",
|
|
715
|
+
"radius": 0
|
|
521
716
|
},
|
|
522
717
|
{
|
|
523
718
|
"name": "iphone 8",
|
|
@@ -525,7 +720,10 @@
|
|
|
525
720
|
"width": 375,
|
|
526
721
|
"height": 667,
|
|
527
722
|
"type": "phone",
|
|
528
|
-
"importance": 59
|
|
723
|
+
"importance": 59,
|
|
724
|
+
"insets": [20, 0, 0, 0],
|
|
725
|
+
"navigationBarType": "none",
|
|
726
|
+
"radius": 0
|
|
529
727
|
},
|
|
530
728
|
{
|
|
531
729
|
"name": "iphone x",
|
|
@@ -533,7 +731,10 @@
|
|
|
533
731
|
"width": 375,
|
|
534
732
|
"height": 812,
|
|
535
733
|
"type": "phone",
|
|
536
|
-
"importance": 46
|
|
734
|
+
"importance": 46,
|
|
735
|
+
"insets": [47, 0, 34, 0],
|
|
736
|
+
"navigationBarType": "homeIndicator",
|
|
737
|
+
"radius": 40
|
|
537
738
|
},
|
|
538
739
|
{
|
|
539
740
|
"name": "iphone xs",
|
|
@@ -541,7 +742,10 @@
|
|
|
541
742
|
"width": 375,
|
|
542
743
|
"height": 812,
|
|
543
744
|
"type": "phone",
|
|
544
|
-
"importance": 56
|
|
745
|
+
"importance": 56,
|
|
746
|
+
"insets": [47, 0, 34, 0],
|
|
747
|
+
"navigationBarType": "homeIndicator",
|
|
748
|
+
"radius": 40
|
|
545
749
|
},
|
|
546
750
|
{
|
|
547
751
|
"name": "iphone 11 pro",
|
|
@@ -549,7 +753,10 @@
|
|
|
549
753
|
"width": 375,
|
|
550
754
|
"height": 812,
|
|
551
755
|
"type": "phone",
|
|
552
|
-
"importance": 57
|
|
756
|
+
"importance": 57,
|
|
757
|
+
"insets": [47, 0, 34, 0],
|
|
758
|
+
"navigationBarType": "homeIndicator",
|
|
759
|
+
"radius": 40
|
|
553
760
|
},
|
|
554
761
|
{
|
|
555
762
|
"name": "iphone se (2nd gen)",
|
|
@@ -557,7 +764,10 @@
|
|
|
557
764
|
"width": 375,
|
|
558
765
|
"height": 667,
|
|
559
766
|
"type": "phone",
|
|
560
|
-
"importance": 56
|
|
767
|
+
"importance": 56,
|
|
768
|
+
"insets": [20, 0, 0, 0],
|
|
769
|
+
"navigationBarType": "none",
|
|
770
|
+
"radius": 0
|
|
561
771
|
},
|
|
562
772
|
{
|
|
563
773
|
"name": "iphone se (3rd gen)",
|
|
@@ -565,7 +775,10 @@
|
|
|
565
775
|
"width": 375,
|
|
566
776
|
"height": 667,
|
|
567
777
|
"type": "phone",
|
|
568
|
-
"importance": 59
|
|
778
|
+
"importance": 59,
|
|
779
|
+
"insets": [20, 0, 0, 0],
|
|
780
|
+
"navigationBarType": "none",
|
|
781
|
+
"radius": 0
|
|
569
782
|
},
|
|
570
783
|
{
|
|
571
784
|
"name": "iphone 12 mini",
|
|
@@ -573,7 +786,10 @@
|
|
|
573
786
|
"width": 360,
|
|
574
787
|
"height": 780,
|
|
575
788
|
"type": "phone",
|
|
576
|
-
"importance": 70
|
|
789
|
+
"importance": 70,
|
|
790
|
+
"insets": [47, 0, 34, 0],
|
|
791
|
+
"navigationBarType": "homeIndicator",
|
|
792
|
+
"radius": 40
|
|
577
793
|
},
|
|
578
794
|
{
|
|
579
795
|
"name": "iphone 13 mini",
|
|
@@ -581,7 +797,10 @@
|
|
|
581
797
|
"width": 360,
|
|
582
798
|
"height": 780,
|
|
583
799
|
"type": "phone",
|
|
584
|
-
"importance": 78
|
|
800
|
+
"importance": 78,
|
|
801
|
+
"insets": [47, 0, 34, 0],
|
|
802
|
+
"navigationBarType": "homeIndicator",
|
|
803
|
+
"radius": 40
|
|
585
804
|
},
|
|
586
805
|
{
|
|
587
806
|
"name": "iphone (1st gen)",
|
|
@@ -589,7 +808,10 @@
|
|
|
589
808
|
"width": 320,
|
|
590
809
|
"height": 480,
|
|
591
810
|
"type": "phone",
|
|
592
|
-
"importance": 82
|
|
811
|
+
"importance": 82,
|
|
812
|
+
"insets": [20, 0, 0, 0],
|
|
813
|
+
"navigationBarType": "none",
|
|
814
|
+
"radius": 0
|
|
593
815
|
},
|
|
594
816
|
{
|
|
595
817
|
"name": "iphone 3g",
|
|
@@ -597,7 +819,10 @@
|
|
|
597
819
|
"width": 320,
|
|
598
820
|
"height": 480,
|
|
599
821
|
"type": "phone",
|
|
600
|
-
"importance": 84
|
|
822
|
+
"importance": 84,
|
|
823
|
+
"insets": [20, 0, 0, 0],
|
|
824
|
+
"navigationBarType": "none",
|
|
825
|
+
"radius": 0
|
|
601
826
|
},
|
|
602
827
|
{
|
|
603
828
|
"name": "iphone 3gs",
|
|
@@ -605,7 +830,10 @@
|
|
|
605
830
|
"width": 320,
|
|
606
831
|
"height": 480,
|
|
607
832
|
"type": "phone",
|
|
608
|
-
"importance": 88
|
|
833
|
+
"importance": 88,
|
|
834
|
+
"insets": [20, 0, 0, 0],
|
|
835
|
+
"navigationBarType": "none",
|
|
836
|
+
"radius": 0
|
|
609
837
|
},
|
|
610
838
|
{
|
|
611
839
|
"name": "iphone 4",
|
|
@@ -613,7 +841,10 @@
|
|
|
613
841
|
"width": 320,
|
|
614
842
|
"height": 480,
|
|
615
843
|
"type": "phone",
|
|
616
|
-
"importance": 86
|
|
844
|
+
"importance": 86,
|
|
845
|
+
"insets": [20, 0, 0, 0],
|
|
846
|
+
"navigationBarType": "none",
|
|
847
|
+
"radius": 0
|
|
617
848
|
},
|
|
618
849
|
{
|
|
619
850
|
"name": "iphone 4s",
|
|
@@ -621,7 +852,10 @@
|
|
|
621
852
|
"width": 320,
|
|
622
853
|
"height": 480,
|
|
623
854
|
"type": "phone",
|
|
624
|
-
"importance": 92
|
|
855
|
+
"importance": 92,
|
|
856
|
+
"insets": [20, 0, 0, 0],
|
|
857
|
+
"navigationBarType": "none",
|
|
858
|
+
"radius": 0
|
|
625
859
|
},
|
|
626
860
|
{
|
|
627
861
|
"name": "iphone 5",
|
|
@@ -629,7 +863,10 @@
|
|
|
629
863
|
"width": 320,
|
|
630
864
|
"height": 568,
|
|
631
865
|
"type": "phone",
|
|
632
|
-
"importance": 100
|
|
866
|
+
"importance": 100,
|
|
867
|
+
"insets": [20, 0, 0, 0],
|
|
868
|
+
"navigationBarType": "none",
|
|
869
|
+
"radius": 0
|
|
633
870
|
},
|
|
634
871
|
{
|
|
635
872
|
"name": "iphone 5c",
|
|
@@ -637,7 +874,10 @@
|
|
|
637
874
|
"width": 320,
|
|
638
875
|
"height": 568,
|
|
639
876
|
"type": "phone",
|
|
640
|
-
"importance": 92
|
|
877
|
+
"importance": 92,
|
|
878
|
+
"insets": [20, 0, 0, 0],
|
|
879
|
+
"navigationBarType": "none",
|
|
880
|
+
"radius": 0
|
|
641
881
|
},
|
|
642
882
|
{
|
|
643
883
|
"name": "iphone 5s",
|
|
@@ -645,7 +885,10 @@
|
|
|
645
885
|
"width": 320,
|
|
646
886
|
"height": 568,
|
|
647
887
|
"type": "phone",
|
|
648
|
-
"importance": 96
|
|
888
|
+
"importance": 96,
|
|
889
|
+
"insets": [20, 0, 0, 0],
|
|
890
|
+
"navigationBarType": "none",
|
|
891
|
+
"radius": 0
|
|
649
892
|
},
|
|
650
893
|
{
|
|
651
894
|
"name": "iphone se (1st gen)",
|
|
@@ -653,7 +896,10 @@
|
|
|
653
896
|
"width": 320,
|
|
654
897
|
"height": 568,
|
|
655
898
|
"type": "phone",
|
|
656
|
-
"importance": 86
|
|
899
|
+
"importance": 86,
|
|
900
|
+
"insets": [20, 0, 0, 0],
|
|
901
|
+
"navigationBarType": "none",
|
|
902
|
+
"radius": 0
|
|
657
903
|
},
|
|
658
904
|
{
|
|
659
905
|
"name": "nexus 7 (2013)",
|
|
@@ -661,7 +907,10 @@
|
|
|
661
907
|
"width": 600,
|
|
662
908
|
"height": 960,
|
|
663
909
|
"type": "tablet",
|
|
664
|
-
"importance": 83
|
|
910
|
+
"importance": 83,
|
|
911
|
+
"insets": [24, 0, 48, 0],
|
|
912
|
+
"navigationBarType": "threeButtons",
|
|
913
|
+
"radius": 12
|
|
665
914
|
},
|
|
666
915
|
{
|
|
667
916
|
"name": "nexus 9",
|
|
@@ -669,7 +918,10 @@
|
|
|
669
918
|
"width": 768,
|
|
670
919
|
"height": 1024,
|
|
671
920
|
"type": "tablet",
|
|
672
|
-
"importance": 90
|
|
921
|
+
"importance": 90,
|
|
922
|
+
"insets": [24, 0, 48, 0],
|
|
923
|
+
"navigationBarType": "threeButtons",
|
|
924
|
+
"radius": 12
|
|
673
925
|
},
|
|
674
926
|
{
|
|
675
927
|
"name": "pixel c",
|
|
@@ -677,7 +929,10 @@
|
|
|
677
929
|
"width": 900,
|
|
678
930
|
"height": 1280,
|
|
679
931
|
"type": "tablet",
|
|
680
|
-
"importance": 100
|
|
932
|
+
"importance": 100,
|
|
933
|
+
"insets": [24, 0, 48, 0],
|
|
934
|
+
"navigationBarType": "threeButtons",
|
|
935
|
+
"radius": 12
|
|
681
936
|
},
|
|
682
937
|
{
|
|
683
938
|
"name": "galaxy tab s6",
|
|
@@ -685,7 +940,10 @@
|
|
|
685
940
|
"width": 800,
|
|
686
941
|
"height": 1280,
|
|
687
942
|
"type": "tablet",
|
|
688
|
-
"importance": 97
|
|
943
|
+
"importance": 97,
|
|
944
|
+
"insets": [24, 0, 24, 0],
|
|
945
|
+
"navigationBarType": "gesture",
|
|
946
|
+
"radius": 12
|
|
689
947
|
},
|
|
690
948
|
{
|
|
691
949
|
"name": "galaxy tab s7",
|
|
@@ -693,7 +951,10 @@
|
|
|
693
951
|
"width": 800,
|
|
694
952
|
"height": 1280,
|
|
695
953
|
"type": "tablet",
|
|
696
|
-
"importance": 99
|
|
954
|
+
"importance": 99,
|
|
955
|
+
"insets": [24, 0, 24, 0],
|
|
956
|
+
"navigationBarType": "gesture",
|
|
957
|
+
"radius": 12
|
|
697
958
|
},
|
|
698
959
|
{
|
|
699
960
|
"name": "galaxy tab s8",
|
|
@@ -701,7 +962,10 @@
|
|
|
701
962
|
"width": 800,
|
|
702
963
|
"height": 1280,
|
|
703
964
|
"type": "tablet",
|
|
704
|
-
"importance": 81
|
|
965
|
+
"importance": 81,
|
|
966
|
+
"insets": [24, 0, 24, 0],
|
|
967
|
+
"navigationBarType": "gesture",
|
|
968
|
+
"radius": 12
|
|
705
969
|
},
|
|
706
970
|
{
|
|
707
971
|
"name": "galaxy tab a 10.1",
|
|
@@ -709,7 +973,10 @@
|
|
|
709
973
|
"width": 800,
|
|
710
974
|
"height": 1280,
|
|
711
975
|
"type": "tablet",
|
|
712
|
-
"importance": 94
|
|
976
|
+
"importance": 94,
|
|
977
|
+
"insets": [24, 0, 48, 0],
|
|
978
|
+
"navigationBarType": "threeButtons",
|
|
979
|
+
"radius": 12
|
|
713
980
|
},
|
|
714
981
|
{
|
|
715
982
|
"name": "lenovo tab p11",
|
|
@@ -717,7 +984,10 @@
|
|
|
717
984
|
"width": 800,
|
|
718
985
|
"height": 1280,
|
|
719
986
|
"type": "tablet",
|
|
720
|
-
"importance": 91
|
|
987
|
+
"importance": 91,
|
|
988
|
+
"insets": [24, 0, 24, 0],
|
|
989
|
+
"navigationBarType": "gesture",
|
|
990
|
+
"radius": 12
|
|
721
991
|
},
|
|
722
992
|
{
|
|
723
993
|
"name": "fire hd 10",
|
|
@@ -725,6 +995,9 @@
|
|
|
725
995
|
"width": 800,
|
|
726
996
|
"height": 1280,
|
|
727
997
|
"type": "tablet",
|
|
728
|
-
"importance": 98
|
|
998
|
+
"importance": 98,
|
|
999
|
+
"insets": [24, 0, 48, 0],
|
|
1000
|
+
"navigationBarType": "threeButtons",
|
|
1001
|
+
"radius": 12
|
|
729
1002
|
}
|
|
730
1003
|
]
|