@developer_tribe/react-builder 1.0.7 → 1.0.9
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/build-components/BIcon/BIconProps.generated.d.ts +3 -0
- package/dist/build-components/BackgroundImage/BackgroundImageProps.generated.d.ts +1 -0
- package/dist/build-components/Button/ButtonProps.generated.d.ts +1 -0
- package/dist/build-components/Carousel/CarouselProps.generated.d.ts +5 -0
- package/dist/build-components/CarouselButtons/CarouselButtonsProps.generated.d.ts +1 -0
- package/dist/build-components/CarouselDots/CarouselDotsProps.generated.d.ts +1 -0
- package/dist/build-components/CarouselItem/CarouselItemProps.generated.d.ts +1 -0
- package/dist/build-components/CarouselProvider/CarouselProviderProps.generated.d.ts +1 -0
- package/dist/build-components/Image/ImageProps.generated.d.ts +1 -0
- package/dist/build-components/Main/MainProps.generated.d.ts +1 -1
- package/dist/build-components/Onboard/OnboardProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardButton/OnboardButtonProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardButtons/OnboardButtonsProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardDot/OnboardDotProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +3 -0
- package/dist/build-components/OnboardImage/OnboardImageProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardItem/OnboardItemProps.generated.d.ts +1 -0
- package/dist/build-components/OnboardProvider/OnboardProviderProps.generated.d.ts +3 -0
- package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +3 -0
- package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +3 -0
- package/dist/build-components/PaywallBackground/PaywallBackgroundProps.generated.d.ts +1 -1
- package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +3 -1
- package/dist/build-components/PaywallOptions/PaywallOptionsProps.generated.d.ts +1 -1
- package/dist/build-components/PaywallProvider/PaywallContext.d.ts +12 -0
- package/dist/build-components/PaywallProvider/PaywallProviderProps.generated.d.ts +1 -1
- package/dist/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.d.ts +1 -0
- package/dist/build-components/RadioButton/RadioButtonProps.generated.d.ts +1 -1
- package/dist/build-components/Text/TextProps.generated.d.ts +3 -0
- package/dist/build-components/View/ViewProps.generated.d.ts +1 -0
- package/dist/build-components/patterns.generated.d.ts +372 -374
- package/dist/components/BuilderProvider.d.ts +2 -0
- package/dist/components/ParamsProvider.d.ts +5 -0
- package/dist/components/RenderErrorBoundary.d.ts +28 -0
- package/dist/hooks/useSyncHtmlThemeClass.d.ts +7 -0
- package/dist/index.cjs.js +5 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.native.cjs.js +4 -4
- package/dist/index.native.cjs.js.map +1 -1
- package/dist/index.native.d.ts +1 -0
- package/dist/index.native.esm.js +4 -4
- package/dist/index.native.esm.js.map +1 -1
- package/dist/migrations/migratePipe.d.ts +14 -0
- package/dist/migrations/migrations/1.1.0_normalize_style_attributes.d.ts +2 -0
- package/dist/migrations/semver.d.ts +8 -0
- package/dist/migrations/types.d.ts +8 -0
- package/dist/mockOS/components/SubscriptionModal.d.ts +7 -0
- package/dist/mockOS/context/MockOSContextBase.d.ts +1 -0
- package/dist/mockOS/hooks/useMockIap.d.ts +3 -0
- package/dist/mockOS/index.d.ts +4 -0
- package/dist/mockOS/managers/mockOSIapManager.d.ts +6 -0
- package/dist/mockOS/managers/subscriptionManager.d.ts +10 -0
- package/dist/pages/ProjectDebug.d.ts +14 -0
- package/dist/pages/ProjectMigrationPage.d.ts +23 -0
- package/dist/pages/ProjectValidationPage.d.ts +15 -0
- package/dist/styles.css +1 -1
- package/dist/types/Device.d.ts +5 -0
- package/dist/utils/__special_exceptions.d.ts +7 -0
- package/dist/utils/getImage.d.ts +23 -0
- package/dist/utils/pasteNode.d.ts +15 -0
- package/dist/utils/patterns.d.ts +1 -2
- package/package.json +6 -2
- package/scripts/migrate-patterns-to-v2.mjs +131 -0
- package/scripts/migrate-samples-to-current.ts +79 -0
- package/scripts/prebuild/utils/createGeneratedProps.js +4 -5
- package/scripts/prebuild/utils/validateAllComponentsOrThrow.js +32 -21
- package/scripts/prebuild/utils/validatePatternJson.js +12 -10
- package/src/.DS_Store +0 -0
- package/src/AttributesEditor.tsx +41 -11
- package/src/RenderPage.tsx +55 -0
- package/src/assets/.DS_Store +0 -0
- package/src/assets/devices.json +91 -0
- package/src/assets/samples/carousel-sample.json +141 -29
- package/src/assets/samples/getSamples.ts +9 -0
- package/src/assets/samples/paywall-1.json +119 -71
- package/src/assets/samples/simple-1.json +28 -16
- package/src/assets/samples/simple-2.json +157 -82
- package/src/assets/samples/unmigrated-builder1.json +42 -0
- package/src/assets/samples/unvalidated-builder1.json +49 -0
- package/src/assets/samples/unvalidated-crash1.json +19 -0
- package/src/assets/samples/unvalidated-crashcomponent1.json +16 -0
- package/src/assets/samples/vpn-onboard-1.json +91 -51
- package/src/assets/samples/vpn-onboard-2.json +318 -278
- package/src/assets/samples/vpn-onboard-3.json +286 -252
- package/src/assets/samples/vpn-onboard-4.json +286 -252
- package/src/assets/samples/vpn-onboard-5.json +434 -374
- package/src/assets/samples/vpn-onboard-6.json +290 -250
- package/src/attributes-editor/Field.tsx +1 -1
- package/src/attributes-editor/LayoutPreviewPicker.tsx +5 -2
- package/src/build-components/BIcon/BIconProps.generated.ts +3 -0
- package/src/build-components/BIcon/pattern.json +12 -9
- package/src/build-components/BackgroundImage/BackgroundImage.tsx +3 -1
- package/src/build-components/BackgroundImage/BackgroundImageProps.generated.ts +1 -0
- package/src/build-components/BackgroundImage/pattern.json +25 -16
- package/src/build-components/Button/Button.tsx +26 -3
- package/src/build-components/Button/ButtonProps.generated.ts +1 -0
- package/src/build-components/Button/pattern.json +10 -6
- package/src/build-components/Carousel/CarouselProps.generated.ts +5 -0
- package/src/build-components/Carousel/pattern.json +19 -8
- package/src/build-components/CarouselButtons/CarouselButtonsProps.generated.ts +1 -0
- package/src/build-components/CarouselButtons/pattern.json +11 -5
- package/src/build-components/CarouselDots/CarouselDotsProps.generated.ts +1 -0
- package/src/build-components/CarouselDots/pattern.json +5 -4
- package/src/build-components/CarouselItem/CarouselItemProps.generated.ts +1 -0
- package/src/build-components/CarouselItem/pattern.json +5 -4
- package/src/build-components/CarouselProvider/CarouselProvider.tsx +44 -2
- package/src/build-components/CarouselProvider/CarouselProviderProps.generated.ts +1 -0
- package/src/build-components/Image/Image.tsx +2 -1
- package/src/build-components/Image/ImageProps.generated.ts +1 -0
- package/src/build-components/Image/pattern.json +11 -5
- package/src/build-components/Main/MainProps.generated.ts +1 -1
- package/src/build-components/Main/pattern.json +12 -9
- package/src/build-components/Onboard/OnboardProps.generated.ts +1 -0
- package/src/build-components/Onboard/pattern.json +14 -9
- package/src/build-components/OnboardButton/OnboardButtonProps.generated.ts +1 -0
- package/src/build-components/OnboardButton/pattern.json +5 -4
- package/src/build-components/OnboardButtons/OnboardButtonsProps.generated.ts +1 -0
- package/src/build-components/OnboardButtons/pattern.json +5 -4
- package/src/build-components/OnboardDot/OnboardDotProps.generated.ts +1 -0
- package/src/build-components/OnboardDot/pattern.json +5 -4
- package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +3 -0
- package/src/build-components/OnboardFooter/pattern.json +8 -5
- package/src/build-components/OnboardImage/OnboardImageProps.generated.ts +1 -0
- package/src/build-components/OnboardImage/pattern.json +7 -4
- package/src/build-components/OnboardItem/OnboardItemProps.generated.ts +1 -0
- package/src/build-components/OnboardItem/pattern.json +18 -9
- package/src/build-components/OnboardProvider/OnboardProviderProps.generated.ts +3 -0
- package/src/build-components/OnboardProvider/pattern.json +21 -6
- package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +3 -0
- package/src/build-components/OnboardSubtitle/pattern.json +10 -6
- package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +3 -0
- package/src/build-components/OnboardTitle/pattern.json +11 -7
- package/src/build-components/PaywallBackground/PaywallBackgroundProps.generated.ts +1 -1
- package/src/build-components/PaywallBackground/pattern.json +5 -4
- package/src/build-components/PaywallCloseButton/PaywallCloseButton.tsx +6 -1
- package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +3 -1
- package/src/build-components/PaywallCloseButton/pattern.json +15 -12
- package/src/build-components/PaywallOptions/PaywallOptionButton.tsx +0 -1
- package/src/build-components/PaywallOptions/PaywallOptions.tsx +3 -2
- package/src/build-components/PaywallOptions/PaywallOptionsProps.generated.ts +1 -1
- package/src/build-components/PaywallOptions/pattern.json +14 -11
- package/src/build-components/PaywallProvider/PaywallContext.ts +25 -0
- package/src/build-components/PaywallProvider/PaywallProvider.tsx +102 -5
- package/src/build-components/PaywallProvider/PaywallProviderProps.generated.ts +1 -1
- package/src/build-components/PaywallProvider/pattern.json +11 -8
- package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButton.tsx +7 -0
- package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.ts +1 -0
- package/src/build-components/PaywallSubscribeButton/pattern.json +16 -13
- package/src/build-components/RadioButton/RadioButtonProps.generated.ts +1 -1
- package/src/build-components/RadioButton/pattern.json +5 -4
- package/src/build-components/Text/Text.tsx +107 -4
- package/src/build-components/Text/TextProps.generated.ts +3 -0
- package/src/build-components/Text/pattern.json +19 -4
- package/src/build-components/View/ViewProps.generated.ts +1 -0
- package/src/build-components/View/pattern.json +28 -13
- package/src/build-components/other.tsx +15 -0
- package/src/build-components/patterns.generated.ts +340 -235
- package/src/build-components/useNode.ts +22 -3
- package/src/components/BottomBar.tsx +45 -45
- package/src/components/Builder.tsx +20 -6
- package/src/components/BuilderButton.tsx +75 -38
- package/src/components/BuilderProvider.tsx +22 -2
- package/src/components/DeviceButton.tsx +12 -5
- package/src/components/EditorHeader.tsx +296 -38
- package/src/components/ParamsProvider.tsx +7 -0
- package/src/components/RenderErrorBoundary.tsx +200 -0
- package/src/hooks/useParams.ts +5 -1
- package/src/hooks/useSyncHtmlThemeClass.ts +19 -0
- package/src/index.native.ts +7 -0
- package/src/index.ts +8 -0
- package/src/migrations/migratePipe.ts +59 -0
- package/src/migrations/migrations/1.1.0_normalize_style_attributes.ts +80 -0
- package/src/migrations/semver.ts +24 -0
- package/src/migrations/types.ts +9 -0
- package/src/mockOS/components/PermissionModal.tsx +3 -2
- package/src/mockOS/components/SubscriptionModal.tsx +400 -0
- package/src/mockOS/context/MockOSContext.tsx +61 -10
- package/src/mockOS/context/MockOSContextBase.ts +1 -0
- package/src/mockOS/hooks/useMockIap.ts +11 -0
- package/src/mockOS/index.ts +7 -0
- package/src/mockOS/managers/mockOSIapManager.ts +10 -0
- package/src/mockOS/managers/subscriptionManager.ts +36 -0
- package/src/modals/IconPickerModal.tsx +1 -1
- package/src/pages/ProjectDebug.tsx +331 -0
- package/src/pages/ProjectMigrationPage.tsx +92 -0
- package/src/pages/ProjectPage.tsx +318 -166
- package/src/pages/ProjectValidationPage.tsx +54 -0
- package/src/styles/base/_global.scss +58 -11
- package/src/styles/components/_attributes-editor.scss +1 -1
- package/src/styles/components/_bottom-bar.scss +7 -4
- package/src/styles/components/_editor-shell.scss +126 -4
- package/src/styles/components/_mockos-router.scss +3 -2
- package/src/styles/components/_ui-components.scss +10 -5
- package/src/styles/foundation/_colors.scss +78 -11
- package/src/styles/foundation/_mixins.scss +4 -1
- package/src/styles/foundation/_sizes.scss +4 -2
- package/src/styles/index.scss +1 -0
- package/src/styles/layout/_builder.scss +61 -0
- package/src/styles/layout/_project-validation.scss +214 -0
- package/src/styles/modals/_add-component.scss +4 -2
- package/src/styles/modals/_color-modal.scss +4 -2
- package/src/styles/modals/_modal-shell.scss +3 -1
- package/src/types/Device.ts +5 -0
- package/src/utils/__special_exceptions.ts +88 -0
- package/src/utils/analyseNode.ts +8 -2
- package/src/utils/analyseNodeByPatterns.ts +43 -9
- package/src/utils/extractTextStyle.ts +19 -6
- package/src/utils/extractViewStyle.ts +68 -59
- package/src/utils/getImage.ts +76 -0
- package/src/utils/novaToJson.ts +2 -1
- package/src/utils/pasteNode.ts +172 -0
- package/src/utils/patterns.ts +4 -3
- package/dist/android.svg +0 -43
- package/dist/apple.svg +0 -16
- package/dist/background.jpg +0 -0
package/src/assets/devices.json
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"platform": "ios",
|
|
5
5
|
"width": 390,
|
|
6
6
|
"height": 844,
|
|
7
|
+
"aspect": "tall",
|
|
7
8
|
"type": "phone",
|
|
8
9
|
"importance": 13,
|
|
9
10
|
"insets": [47, 0, 34, 0],
|
|
@@ -15,6 +16,7 @@
|
|
|
15
16
|
"platform": "ios",
|
|
16
17
|
"width": 390,
|
|
17
18
|
"height": 844,
|
|
19
|
+
"aspect": "tall",
|
|
18
20
|
"type": "phone",
|
|
19
21
|
"importance": 19,
|
|
20
22
|
"insets": [47, 0, 34, 0],
|
|
@@ -26,6 +28,7 @@
|
|
|
26
28
|
"platform": "ios",
|
|
27
29
|
"width": 390,
|
|
28
30
|
"height": 844,
|
|
31
|
+
"aspect": "tall",
|
|
29
32
|
"type": "phone",
|
|
30
33
|
"importance": 4,
|
|
31
34
|
"insets": [47, 0, 34, 0],
|
|
@@ -37,6 +40,7 @@
|
|
|
37
40
|
"platform": "ios",
|
|
38
41
|
"width": 390,
|
|
39
42
|
"height": 844,
|
|
43
|
+
"aspect": "tall",
|
|
40
44
|
"type": "phone",
|
|
41
45
|
"importance": 8,
|
|
42
46
|
"insets": [47, 0, 34, 0],
|
|
@@ -48,6 +52,7 @@
|
|
|
48
52
|
"platform": "ios",
|
|
49
53
|
"width": 390,
|
|
50
54
|
"height": 844,
|
|
55
|
+
"aspect": "tall",
|
|
51
56
|
"type": "phone",
|
|
52
57
|
"importance": 15,
|
|
53
58
|
"insets": [47, 0, 34, 0],
|
|
@@ -59,6 +64,7 @@
|
|
|
59
64
|
"platform": "ios",
|
|
60
65
|
"width": 393,
|
|
61
66
|
"height": 852,
|
|
67
|
+
"aspect": "tall",
|
|
62
68
|
"type": "phone",
|
|
63
69
|
"importance": 15,
|
|
64
70
|
"insets": [47, 0, 34, 0],
|
|
@@ -70,6 +76,7 @@
|
|
|
70
76
|
"platform": "ios",
|
|
71
77
|
"width": 393,
|
|
72
78
|
"height": 852,
|
|
79
|
+
"aspect": "tall",
|
|
73
80
|
"type": "phone",
|
|
74
81
|
"importance": 6,
|
|
75
82
|
"insets": [47, 0, 34, 0],
|
|
@@ -81,6 +88,7 @@
|
|
|
81
88
|
"platform": "ios",
|
|
82
89
|
"width": 393,
|
|
83
90
|
"height": 852,
|
|
91
|
+
"aspect": "tall",
|
|
84
92
|
"type": "phone",
|
|
85
93
|
"importance": 18,
|
|
86
94
|
"insets": [47, 0, 34, 0],
|
|
@@ -92,6 +100,7 @@
|
|
|
92
100
|
"platform": "android",
|
|
93
101
|
"width": 412,
|
|
94
102
|
"height": 847,
|
|
103
|
+
"aspect": "tall",
|
|
95
104
|
"type": "phone",
|
|
96
105
|
"importance": 8,
|
|
97
106
|
"insets": [24, 0, 24, 0],
|
|
@@ -103,6 +112,7 @@
|
|
|
103
112
|
"platform": "android",
|
|
104
113
|
"width": 412,
|
|
105
114
|
"height": 869,
|
|
115
|
+
"aspect": "tall",
|
|
106
116
|
"type": "phone",
|
|
107
117
|
"importance": 14,
|
|
108
118
|
"insets": [24, 0, 24, 0],
|
|
@@ -114,6 +124,7 @@
|
|
|
114
124
|
"platform": "android",
|
|
115
125
|
"width": 412,
|
|
116
126
|
"height": 915,
|
|
127
|
+
"aspect": "tall",
|
|
117
128
|
"type": "phone",
|
|
118
129
|
"importance": 10,
|
|
119
130
|
"insets": [24, 0, 24, 0],
|
|
@@ -125,6 +136,7 @@
|
|
|
125
136
|
"platform": "android",
|
|
126
137
|
"width": 412,
|
|
127
138
|
"height": 892,
|
|
139
|
+
"aspect": "tall",
|
|
128
140
|
"type": "phone",
|
|
129
141
|
"importance": 4,
|
|
130
142
|
"insets": [24, 0, 24, 0],
|
|
@@ -136,6 +148,7 @@
|
|
|
136
148
|
"platform": "android",
|
|
137
149
|
"width": 412,
|
|
138
150
|
"height": 915,
|
|
151
|
+
"aspect": "tall",
|
|
139
152
|
"type": "phone",
|
|
140
153
|
"importance": 11,
|
|
141
154
|
"insets": [24, 0, 24, 0],
|
|
@@ -147,6 +160,7 @@
|
|
|
147
160
|
"platform": "android",
|
|
148
161
|
"width": 412,
|
|
149
162
|
"height": 892,
|
|
163
|
+
"aspect": "tall",
|
|
150
164
|
"type": "phone",
|
|
151
165
|
"importance": 5,
|
|
152
166
|
"insets": [24, 0, 24, 0],
|
|
@@ -158,6 +172,7 @@
|
|
|
158
172
|
"platform": "android",
|
|
159
173
|
"width": 412,
|
|
160
174
|
"height": 915,
|
|
175
|
+
"aspect": "tall",
|
|
161
176
|
"type": "phone",
|
|
162
177
|
"importance": 12,
|
|
163
178
|
"insets": [24, 0, 24, 0],
|
|
@@ -169,6 +184,7 @@
|
|
|
169
184
|
"platform": "android",
|
|
170
185
|
"width": 412,
|
|
171
186
|
"height": 919,
|
|
187
|
+
"aspect": "tall",
|
|
172
188
|
"type": "phone",
|
|
173
189
|
"importance": 16,
|
|
174
190
|
"insets": [24, 0, 24, 0],
|
|
@@ -180,6 +196,7 @@
|
|
|
180
196
|
"platform": "android",
|
|
181
197
|
"width": 360,
|
|
182
198
|
"height": 740,
|
|
199
|
+
"aspect": "tall",
|
|
183
200
|
"type": "phone",
|
|
184
201
|
"importance": 5,
|
|
185
202
|
"insets": [24, 0, 48, 0],
|
|
@@ -191,6 +208,7 @@
|
|
|
191
208
|
"platform": "android",
|
|
192
209
|
"width": 360,
|
|
193
210
|
"height": 740,
|
|
211
|
+
"aspect": "tall",
|
|
194
212
|
"type": "phone",
|
|
195
213
|
"importance": 1,
|
|
196
214
|
"insets": [24, 0, 48, 0],
|
|
@@ -202,6 +220,7 @@
|
|
|
202
220
|
"platform": "android",
|
|
203
221
|
"width": 360,
|
|
204
222
|
"height": 740,
|
|
223
|
+
"aspect": "tall",
|
|
205
224
|
"type": "phone",
|
|
206
225
|
"importance": 4,
|
|
207
226
|
"insets": [24, 0, 48, 0],
|
|
@@ -213,6 +232,7 @@
|
|
|
213
232
|
"platform": "android",
|
|
214
233
|
"width": 360,
|
|
215
234
|
"height": 740,
|
|
235
|
+
"aspect": "tall",
|
|
216
236
|
"type": "phone",
|
|
217
237
|
"importance": 4,
|
|
218
238
|
"insets": [24, 0, 48, 0],
|
|
@@ -224,6 +244,7 @@
|
|
|
224
244
|
"platform": "android",
|
|
225
245
|
"width": 360,
|
|
226
246
|
"height": 760,
|
|
247
|
+
"aspect": "tall",
|
|
227
248
|
"type": "phone",
|
|
228
249
|
"importance": 19,
|
|
229
250
|
"insets": [24, 0, 24, 0],
|
|
@@ -235,6 +256,7 @@
|
|
|
235
256
|
"platform": "android",
|
|
236
257
|
"width": 412,
|
|
237
258
|
"height": 869,
|
|
259
|
+
"aspect": "tall",
|
|
238
260
|
"type": "phone",
|
|
239
261
|
"importance": 15,
|
|
240
262
|
"insets": [24, 0, 24, 0],
|
|
@@ -246,6 +268,7 @@
|
|
|
246
268
|
"platform": "android",
|
|
247
269
|
"width": 360,
|
|
248
270
|
"height": 800,
|
|
271
|
+
"aspect": "tall",
|
|
249
272
|
"type": "phone",
|
|
250
273
|
"importance": 13,
|
|
251
274
|
"insets": [24, 0, 24, 0],
|
|
@@ -257,6 +280,7 @@
|
|
|
257
280
|
"platform": "android",
|
|
258
281
|
"width": 412,
|
|
259
282
|
"height": 915,
|
|
283
|
+
"aspect": "tall",
|
|
260
284
|
"type": "phone",
|
|
261
285
|
"importance": 16,
|
|
262
286
|
"insets": [24, 0, 24, 0],
|
|
@@ -268,6 +292,7 @@
|
|
|
268
292
|
"platform": "android",
|
|
269
293
|
"width": 412,
|
|
270
294
|
"height": 915,
|
|
295
|
+
"aspect": "tall",
|
|
271
296
|
"type": "phone",
|
|
272
297
|
"importance": 2,
|
|
273
298
|
"insets": [24, 0, 24, 0],
|
|
@@ -279,6 +304,7 @@
|
|
|
279
304
|
"platform": "android",
|
|
280
305
|
"width": 360,
|
|
281
306
|
"height": 800,
|
|
307
|
+
"aspect": "tall",
|
|
282
308
|
"type": "phone",
|
|
283
309
|
"importance": 13,
|
|
284
310
|
"insets": [24, 0, 24, 0],
|
|
@@ -290,6 +316,7 @@
|
|
|
290
316
|
"platform": "android",
|
|
291
317
|
"width": 412,
|
|
292
318
|
"height": 915,
|
|
319
|
+
"aspect": "tall",
|
|
293
320
|
"type": "phone",
|
|
294
321
|
"importance": 12,
|
|
295
322
|
"insets": [24, 0, 24, 0],
|
|
@@ -301,6 +328,7 @@
|
|
|
301
328
|
"platform": "android",
|
|
302
329
|
"width": 412,
|
|
303
330
|
"height": 915,
|
|
331
|
+
"aspect": "tall",
|
|
304
332
|
"type": "phone",
|
|
305
333
|
"importance": 2,
|
|
306
334
|
"insets": [24, 0, 24, 0],
|
|
@@ -312,6 +340,7 @@
|
|
|
312
340
|
"platform": "android",
|
|
313
341
|
"width": 360,
|
|
314
342
|
"height": 780,
|
|
343
|
+
"aspect": "tall",
|
|
315
344
|
"type": "phone",
|
|
316
345
|
"importance": 2,
|
|
317
346
|
"insets": [24, 0, 24, 0],
|
|
@@ -323,6 +352,7 @@
|
|
|
323
352
|
"platform": "android",
|
|
324
353
|
"width": 412,
|
|
325
354
|
"height": 915,
|
|
355
|
+
"aspect": "tall",
|
|
326
356
|
"type": "phone",
|
|
327
357
|
"importance": 8,
|
|
328
358
|
"insets": [24, 0, 24, 0],
|
|
@@ -334,6 +364,7 @@
|
|
|
334
364
|
"platform": "android",
|
|
335
365
|
"width": 412,
|
|
336
366
|
"height": 915,
|
|
367
|
+
"aspect": "tall",
|
|
337
368
|
"type": "phone",
|
|
338
369
|
"importance": 19,
|
|
339
370
|
"insets": [24, 0, 24, 0],
|
|
@@ -345,6 +376,7 @@
|
|
|
345
376
|
"platform": "android",
|
|
346
377
|
"width": 360,
|
|
347
378
|
"height": 780,
|
|
379
|
+
"aspect": "tall",
|
|
348
380
|
"type": "phone",
|
|
349
381
|
"importance": 19,
|
|
350
382
|
"insets": [24, 0, 24, 0],
|
|
@@ -356,6 +388,7 @@
|
|
|
356
388
|
"platform": "android",
|
|
357
389
|
"width": 412,
|
|
358
390
|
"height": 915,
|
|
391
|
+
"aspect": "tall",
|
|
359
392
|
"type": "phone",
|
|
360
393
|
"importance": 1,
|
|
361
394
|
"insets": [24, 0, 24, 0],
|
|
@@ -367,6 +400,7 @@
|
|
|
367
400
|
"platform": "android",
|
|
368
401
|
"width": 412,
|
|
369
402
|
"height": 915,
|
|
403
|
+
"aspect": "tall",
|
|
370
404
|
"type": "phone",
|
|
371
405
|
"importance": 19,
|
|
372
406
|
"insets": [24, 0, 24, 0],
|
|
@@ -378,6 +412,7 @@
|
|
|
378
412
|
"platform": "android",
|
|
379
413
|
"width": 412,
|
|
380
414
|
"height": 915,
|
|
415
|
+
"aspect": "tall",
|
|
381
416
|
"type": "phone",
|
|
382
417
|
"importance": 4,
|
|
383
418
|
"insets": [24, 0, 24, 0],
|
|
@@ -389,6 +424,7 @@
|
|
|
389
424
|
"platform": "android",
|
|
390
425
|
"width": 412,
|
|
391
426
|
"height": 915,
|
|
427
|
+
"aspect": "tall",
|
|
392
428
|
"type": "phone",
|
|
393
429
|
"importance": 20,
|
|
394
430
|
"insets": [24, 0, 24, 0],
|
|
@@ -400,6 +436,7 @@
|
|
|
400
436
|
"platform": "android",
|
|
401
437
|
"width": 412,
|
|
402
438
|
"height": 915,
|
|
439
|
+
"aspect": "tall",
|
|
403
440
|
"type": "phone",
|
|
404
441
|
"importance": 3,
|
|
405
442
|
"insets": [24, 0, 24, 0],
|
|
@@ -411,6 +448,7 @@
|
|
|
411
448
|
"platform": "android",
|
|
412
449
|
"width": 412,
|
|
413
450
|
"height": 915,
|
|
451
|
+
"aspect": "tall",
|
|
414
452
|
"type": "phone",
|
|
415
453
|
"importance": 1,
|
|
416
454
|
"insets": [24, 0, 24, 0],
|
|
@@ -422,6 +460,7 @@
|
|
|
422
460
|
"platform": "android",
|
|
423
461
|
"width": 412,
|
|
424
462
|
"height": 915,
|
|
463
|
+
"aspect": "tall",
|
|
425
464
|
"type": "phone",
|
|
426
465
|
"importance": 9,
|
|
427
466
|
"insets": [24, 0, 24, 0],
|
|
@@ -433,6 +472,7 @@
|
|
|
433
472
|
"platform": "android",
|
|
434
473
|
"width": 360,
|
|
435
474
|
"height": 750,
|
|
475
|
+
"aspect": "tall",
|
|
436
476
|
"type": "phone",
|
|
437
477
|
"importance": 10,
|
|
438
478
|
"insets": [24, 0, 48, 0],
|
|
@@ -444,6 +484,7 @@
|
|
|
444
484
|
"platform": "android",
|
|
445
485
|
"width": 360,
|
|
446
486
|
"height": 780,
|
|
487
|
+
"aspect": "tall",
|
|
447
488
|
"type": "phone",
|
|
448
489
|
"importance": 14,
|
|
449
490
|
"insets": [24, 0, 48, 0],
|
|
@@ -455,6 +496,7 @@
|
|
|
455
496
|
"platform": "android",
|
|
456
497
|
"width": 412,
|
|
457
498
|
"height": 915,
|
|
499
|
+
"aspect": "tall",
|
|
458
500
|
"type": "phone",
|
|
459
501
|
"importance": 7,
|
|
460
502
|
"insets": [24, 0, 24, 0],
|
|
@@ -466,6 +508,7 @@
|
|
|
466
508
|
"platform": "ios",
|
|
467
509
|
"width": 414,
|
|
468
510
|
"height": 736,
|
|
511
|
+
"aspect": "regular",
|
|
469
512
|
"type": "phone",
|
|
470
513
|
"importance": 27,
|
|
471
514
|
"insets": [20, 0, 0, 0],
|
|
@@ -477,6 +520,7 @@
|
|
|
477
520
|
"platform": "ios",
|
|
478
521
|
"width": 414,
|
|
479
522
|
"height": 736,
|
|
523
|
+
"aspect": "regular",
|
|
480
524
|
"type": "phone",
|
|
481
525
|
"importance": 35,
|
|
482
526
|
"insets": [20, 0, 0, 0],
|
|
@@ -488,6 +532,7 @@
|
|
|
488
532
|
"platform": "ios",
|
|
489
533
|
"width": 414,
|
|
490
534
|
"height": 736,
|
|
535
|
+
"aspect": "regular",
|
|
491
536
|
"type": "phone",
|
|
492
537
|
"importance": 40,
|
|
493
538
|
"insets": [20, 0, 0, 0],
|
|
@@ -499,6 +544,7 @@
|
|
|
499
544
|
"platform": "ios",
|
|
500
545
|
"width": 414,
|
|
501
546
|
"height": 736,
|
|
547
|
+
"aspect": "regular",
|
|
502
548
|
"type": "phone",
|
|
503
549
|
"importance": 32,
|
|
504
550
|
"insets": [20, 0, 0, 0],
|
|
@@ -510,6 +556,7 @@
|
|
|
510
556
|
"platform": "ios",
|
|
511
557
|
"width": 414,
|
|
512
558
|
"height": 896,
|
|
559
|
+
"aspect": "tall",
|
|
513
560
|
"type": "phone",
|
|
514
561
|
"importance": 21,
|
|
515
562
|
"insets": [47, 0, 34, 0],
|
|
@@ -521,6 +568,7 @@
|
|
|
521
568
|
"platform": "ios",
|
|
522
569
|
"width": 414,
|
|
523
570
|
"height": 896,
|
|
571
|
+
"aspect": "tall",
|
|
524
572
|
"type": "phone",
|
|
525
573
|
"importance": 31,
|
|
526
574
|
"insets": [47, 0, 34, 0],
|
|
@@ -532,6 +580,7 @@
|
|
|
532
580
|
"platform": "ios",
|
|
533
581
|
"width": 414,
|
|
534
582
|
"height": 896,
|
|
583
|
+
"aspect": "tall",
|
|
535
584
|
"type": "phone",
|
|
536
585
|
"importance": 36,
|
|
537
586
|
"insets": [47, 0, 34, 0],
|
|
@@ -543,6 +592,7 @@
|
|
|
543
592
|
"platform": "ios",
|
|
544
593
|
"width": 414,
|
|
545
594
|
"height": 896,
|
|
595
|
+
"aspect": "tall",
|
|
546
596
|
"type": "phone",
|
|
547
597
|
"importance": 22,
|
|
548
598
|
"insets": [47, 0, 34, 0],
|
|
@@ -554,6 +604,7 @@
|
|
|
554
604
|
"platform": "ios",
|
|
555
605
|
"width": 428,
|
|
556
606
|
"height": 926,
|
|
607
|
+
"aspect": "tall",
|
|
557
608
|
"type": "phone",
|
|
558
609
|
"importance": 28,
|
|
559
610
|
"insets": [47, 0, 34, 0],
|
|
@@ -565,6 +616,7 @@
|
|
|
565
616
|
"platform": "ios",
|
|
566
617
|
"width": 428,
|
|
567
618
|
"height": 926,
|
|
619
|
+
"aspect": "tall",
|
|
568
620
|
"type": "phone",
|
|
569
621
|
"importance": 30,
|
|
570
622
|
"insets": [47, 0, 34, 0],
|
|
@@ -576,6 +628,7 @@
|
|
|
576
628
|
"platform": "ios",
|
|
577
629
|
"width": 428,
|
|
578
630
|
"height": 926,
|
|
631
|
+
"aspect": "tall",
|
|
579
632
|
"type": "phone",
|
|
580
633
|
"importance": 29,
|
|
581
634
|
"insets": [47, 0, 34, 0],
|
|
@@ -587,6 +640,7 @@
|
|
|
587
640
|
"platform": "ios",
|
|
588
641
|
"width": 430,
|
|
589
642
|
"height": 932,
|
|
643
|
+
"aspect": "tall",
|
|
590
644
|
"type": "phone",
|
|
591
645
|
"importance": 39,
|
|
592
646
|
"insets": [47, 0, 34, 0],
|
|
@@ -598,6 +652,7 @@
|
|
|
598
652
|
"platform": "ios",
|
|
599
653
|
"width": 430,
|
|
600
654
|
"height": 932,
|
|
655
|
+
"aspect": "tall",
|
|
601
656
|
"type": "phone",
|
|
602
657
|
"importance": 24,
|
|
603
658
|
"insets": [47, 0, 34, 0],
|
|
@@ -609,6 +664,7 @@
|
|
|
609
664
|
"platform": "ios",
|
|
610
665
|
"width": 430,
|
|
611
666
|
"height": 932,
|
|
667
|
+
"aspect": "tall",
|
|
612
668
|
"type": "phone",
|
|
613
669
|
"importance": 22,
|
|
614
670
|
"insets": [47, 0, 34, 0],
|
|
@@ -620,6 +676,7 @@
|
|
|
620
676
|
"platform": "android",
|
|
621
677
|
"width": 411,
|
|
622
678
|
"height": 731,
|
|
679
|
+
"aspect": "regular",
|
|
623
680
|
"type": "phone",
|
|
624
681
|
"importance": 29,
|
|
625
682
|
"insets": [24, 0, 48, 0],
|
|
@@ -631,6 +688,7 @@
|
|
|
631
688
|
"platform": "android",
|
|
632
689
|
"width": 411,
|
|
633
690
|
"height": 823,
|
|
691
|
+
"aspect": "regular",
|
|
634
692
|
"type": "phone",
|
|
635
693
|
"importance": 36,
|
|
636
694
|
"insets": [24, 0, 48, 0],
|
|
@@ -642,6 +700,7 @@
|
|
|
642
700
|
"platform": "android",
|
|
643
701
|
"width": 393,
|
|
644
702
|
"height": 786,
|
|
703
|
+
"aspect": "regular",
|
|
645
704
|
"type": "phone",
|
|
646
705
|
"importance": 39,
|
|
647
706
|
"insets": [24, 0, 24, 0],
|
|
@@ -653,6 +712,7 @@
|
|
|
653
712
|
"platform": "android",
|
|
654
713
|
"width": 411,
|
|
655
714
|
"height": 869,
|
|
715
|
+
"aspect": "tall",
|
|
656
716
|
"type": "phone",
|
|
657
717
|
"importance": 24,
|
|
658
718
|
"insets": [24, 0, 24, 0],
|
|
@@ -664,6 +724,7 @@
|
|
|
664
724
|
"platform": "android",
|
|
665
725
|
"width": 393,
|
|
666
726
|
"height": 851,
|
|
727
|
+
"aspect": "tall",
|
|
667
728
|
"type": "phone",
|
|
668
729
|
"importance": 23,
|
|
669
730
|
"insets": [24, 0, 24, 0],
|
|
@@ -675,6 +736,7 @@
|
|
|
675
736
|
"platform": "android",
|
|
676
737
|
"width": 393,
|
|
677
738
|
"height": 851,
|
|
739
|
+
"aspect": "tall",
|
|
678
740
|
"type": "phone",
|
|
679
741
|
"importance": 39,
|
|
680
742
|
"insets": [24, 0, 24, 0],
|
|
@@ -686,6 +748,7 @@
|
|
|
686
748
|
"platform": "ios",
|
|
687
749
|
"width": 375,
|
|
688
750
|
"height": 667,
|
|
751
|
+
"aspect": "regular",
|
|
689
752
|
"type": "phone",
|
|
690
753
|
"importance": 42,
|
|
691
754
|
"insets": [20, 0, 0, 0],
|
|
@@ -697,6 +760,7 @@
|
|
|
697
760
|
"platform": "ios",
|
|
698
761
|
"width": 375,
|
|
699
762
|
"height": 667,
|
|
763
|
+
"aspect": "regular",
|
|
700
764
|
"type": "phone",
|
|
701
765
|
"importance": 60,
|
|
702
766
|
"insets": [20, 0, 0, 0],
|
|
@@ -708,6 +772,7 @@
|
|
|
708
772
|
"platform": "ios",
|
|
709
773
|
"width": 375,
|
|
710
774
|
"height": 667,
|
|
775
|
+
"aspect": "regular",
|
|
711
776
|
"type": "phone",
|
|
712
777
|
"importance": 41,
|
|
713
778
|
"insets": [20, 0, 0, 0],
|
|
@@ -719,6 +784,7 @@
|
|
|
719
784
|
"platform": "ios",
|
|
720
785
|
"width": 375,
|
|
721
786
|
"height": 667,
|
|
787
|
+
"aspect": "regular",
|
|
722
788
|
"type": "phone",
|
|
723
789
|
"importance": 59,
|
|
724
790
|
"insets": [20, 0, 0, 0],
|
|
@@ -730,6 +796,7 @@
|
|
|
730
796
|
"platform": "ios",
|
|
731
797
|
"width": 375,
|
|
732
798
|
"height": 812,
|
|
799
|
+
"aspect": "tall",
|
|
733
800
|
"type": "phone",
|
|
734
801
|
"importance": 46,
|
|
735
802
|
"insets": [47, 0, 34, 0],
|
|
@@ -741,6 +808,7 @@
|
|
|
741
808
|
"platform": "ios",
|
|
742
809
|
"width": 375,
|
|
743
810
|
"height": 812,
|
|
811
|
+
"aspect": "tall",
|
|
744
812
|
"type": "phone",
|
|
745
813
|
"importance": 56,
|
|
746
814
|
"insets": [47, 0, 34, 0],
|
|
@@ -752,6 +820,7 @@
|
|
|
752
820
|
"platform": "ios",
|
|
753
821
|
"width": 375,
|
|
754
822
|
"height": 812,
|
|
823
|
+
"aspect": "tall",
|
|
755
824
|
"type": "phone",
|
|
756
825
|
"importance": 57,
|
|
757
826
|
"insets": [47, 0, 34, 0],
|
|
@@ -763,6 +832,7 @@
|
|
|
763
832
|
"platform": "ios",
|
|
764
833
|
"width": 375,
|
|
765
834
|
"height": 667,
|
|
835
|
+
"aspect": "regular",
|
|
766
836
|
"type": "phone",
|
|
767
837
|
"importance": 56,
|
|
768
838
|
"insets": [20, 0, 0, 0],
|
|
@@ -774,6 +844,7 @@
|
|
|
774
844
|
"platform": "ios",
|
|
775
845
|
"width": 375,
|
|
776
846
|
"height": 667,
|
|
847
|
+
"aspect": "regular",
|
|
777
848
|
"type": "phone",
|
|
778
849
|
"importance": 59,
|
|
779
850
|
"insets": [20, 0, 0, 0],
|
|
@@ -785,6 +856,7 @@
|
|
|
785
856
|
"platform": "ios",
|
|
786
857
|
"width": 360,
|
|
787
858
|
"height": 780,
|
|
859
|
+
"aspect": "tall",
|
|
788
860
|
"type": "phone",
|
|
789
861
|
"importance": 70,
|
|
790
862
|
"insets": [47, 0, 34, 0],
|
|
@@ -796,6 +868,7 @@
|
|
|
796
868
|
"platform": "ios",
|
|
797
869
|
"width": 360,
|
|
798
870
|
"height": 780,
|
|
871
|
+
"aspect": "tall",
|
|
799
872
|
"type": "phone",
|
|
800
873
|
"importance": 78,
|
|
801
874
|
"insets": [47, 0, 34, 0],
|
|
@@ -807,6 +880,7 @@
|
|
|
807
880
|
"platform": "ios",
|
|
808
881
|
"width": 320,
|
|
809
882
|
"height": 480,
|
|
883
|
+
"aspect": "wide",
|
|
810
884
|
"type": "phone",
|
|
811
885
|
"importance": 82,
|
|
812
886
|
"insets": [20, 0, 0, 0],
|
|
@@ -818,6 +892,7 @@
|
|
|
818
892
|
"platform": "ios",
|
|
819
893
|
"width": 320,
|
|
820
894
|
"height": 480,
|
|
895
|
+
"aspect": "wide",
|
|
821
896
|
"type": "phone",
|
|
822
897
|
"importance": 84,
|
|
823
898
|
"insets": [20, 0, 0, 0],
|
|
@@ -829,6 +904,7 @@
|
|
|
829
904
|
"platform": "ios",
|
|
830
905
|
"width": 320,
|
|
831
906
|
"height": 480,
|
|
907
|
+
"aspect": "wide",
|
|
832
908
|
"type": "phone",
|
|
833
909
|
"importance": 88,
|
|
834
910
|
"insets": [20, 0, 0, 0],
|
|
@@ -840,6 +916,7 @@
|
|
|
840
916
|
"platform": "ios",
|
|
841
917
|
"width": 320,
|
|
842
918
|
"height": 480,
|
|
919
|
+
"aspect": "wide",
|
|
843
920
|
"type": "phone",
|
|
844
921
|
"importance": 86,
|
|
845
922
|
"insets": [20, 0, 0, 0],
|
|
@@ -851,6 +928,7 @@
|
|
|
851
928
|
"platform": "ios",
|
|
852
929
|
"width": 320,
|
|
853
930
|
"height": 480,
|
|
931
|
+
"aspect": "wide",
|
|
854
932
|
"type": "phone",
|
|
855
933
|
"importance": 92,
|
|
856
934
|
"insets": [20, 0, 0, 0],
|
|
@@ -862,6 +940,7 @@
|
|
|
862
940
|
"platform": "ios",
|
|
863
941
|
"width": 320,
|
|
864
942
|
"height": 568,
|
|
943
|
+
"aspect": "regular",
|
|
865
944
|
"type": "phone",
|
|
866
945
|
"importance": 100,
|
|
867
946
|
"insets": [20, 0, 0, 0],
|
|
@@ -873,6 +952,7 @@
|
|
|
873
952
|
"platform": "ios",
|
|
874
953
|
"width": 320,
|
|
875
954
|
"height": 568,
|
|
955
|
+
"aspect": "regular",
|
|
876
956
|
"type": "phone",
|
|
877
957
|
"importance": 92,
|
|
878
958
|
"insets": [20, 0, 0, 0],
|
|
@@ -884,6 +964,7 @@
|
|
|
884
964
|
"platform": "ios",
|
|
885
965
|
"width": 320,
|
|
886
966
|
"height": 568,
|
|
967
|
+
"aspect": "regular",
|
|
887
968
|
"type": "phone",
|
|
888
969
|
"importance": 96,
|
|
889
970
|
"insets": [20, 0, 0, 0],
|
|
@@ -895,6 +976,7 @@
|
|
|
895
976
|
"platform": "ios",
|
|
896
977
|
"width": 320,
|
|
897
978
|
"height": 568,
|
|
979
|
+
"aspect": "regular",
|
|
898
980
|
"type": "phone",
|
|
899
981
|
"importance": 86,
|
|
900
982
|
"insets": [20, 0, 0, 0],
|
|
@@ -906,6 +988,7 @@
|
|
|
906
988
|
"platform": "android",
|
|
907
989
|
"width": 600,
|
|
908
990
|
"height": 960,
|
|
991
|
+
"aspect": "wide",
|
|
909
992
|
"type": "tablet",
|
|
910
993
|
"importance": 83,
|
|
911
994
|
"insets": [24, 0, 48, 0],
|
|
@@ -917,6 +1000,7 @@
|
|
|
917
1000
|
"platform": "android",
|
|
918
1001
|
"width": 768,
|
|
919
1002
|
"height": 1024,
|
|
1003
|
+
"aspect": "wide",
|
|
920
1004
|
"type": "tablet",
|
|
921
1005
|
"importance": 90,
|
|
922
1006
|
"insets": [24, 0, 48, 0],
|
|
@@ -928,6 +1012,7 @@
|
|
|
928
1012
|
"platform": "android",
|
|
929
1013
|
"width": 900,
|
|
930
1014
|
"height": 1280,
|
|
1015
|
+
"aspect": "wide",
|
|
931
1016
|
"type": "tablet",
|
|
932
1017
|
"importance": 100,
|
|
933
1018
|
"insets": [24, 0, 48, 0],
|
|
@@ -939,6 +1024,7 @@
|
|
|
939
1024
|
"platform": "android",
|
|
940
1025
|
"width": 800,
|
|
941
1026
|
"height": 1280,
|
|
1027
|
+
"aspect": "wide",
|
|
942
1028
|
"type": "tablet",
|
|
943
1029
|
"importance": 97,
|
|
944
1030
|
"insets": [24, 0, 24, 0],
|
|
@@ -950,6 +1036,7 @@
|
|
|
950
1036
|
"platform": "android",
|
|
951
1037
|
"width": 800,
|
|
952
1038
|
"height": 1280,
|
|
1039
|
+
"aspect": "wide",
|
|
953
1040
|
"type": "tablet",
|
|
954
1041
|
"importance": 99,
|
|
955
1042
|
"insets": [24, 0, 24, 0],
|
|
@@ -961,6 +1048,7 @@
|
|
|
961
1048
|
"platform": "android",
|
|
962
1049
|
"width": 800,
|
|
963
1050
|
"height": 1280,
|
|
1051
|
+
"aspect": "wide",
|
|
964
1052
|
"type": "tablet",
|
|
965
1053
|
"importance": 81,
|
|
966
1054
|
"insets": [24, 0, 24, 0],
|
|
@@ -972,6 +1060,7 @@
|
|
|
972
1060
|
"platform": "android",
|
|
973
1061
|
"width": 800,
|
|
974
1062
|
"height": 1280,
|
|
1063
|
+
"aspect": "wide",
|
|
975
1064
|
"type": "tablet",
|
|
976
1065
|
"importance": 94,
|
|
977
1066
|
"insets": [24, 0, 48, 0],
|
|
@@ -983,6 +1072,7 @@
|
|
|
983
1072
|
"platform": "android",
|
|
984
1073
|
"width": 800,
|
|
985
1074
|
"height": 1280,
|
|
1075
|
+
"aspect": "wide",
|
|
986
1076
|
"type": "tablet",
|
|
987
1077
|
"importance": 91,
|
|
988
1078
|
"insets": [24, 0, 24, 0],
|
|
@@ -994,6 +1084,7 @@
|
|
|
994
1084
|
"platform": "android",
|
|
995
1085
|
"width": 800,
|
|
996
1086
|
"height": 1280,
|
|
1087
|
+
"aspect": "wide",
|
|
997
1088
|
"type": "tablet",
|
|
998
1089
|
"importance": 98,
|
|
999
1090
|
"insets": [24, 0, 48, 0],
|