react-native-inapp-inspector 1.0.4 → 1.0.6
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/README.md +11 -3
- package/dist/commonjs/components/AnalyticsEventCard.js +10 -10
- package/dist/commonjs/components/CodeSnippet.js +233 -10
- package/dist/commonjs/components/ConsoleLogCard.js +55 -9
- package/dist/commonjs/components/CopyButton.js +2 -1
- package/dist/commonjs/components/ErrorBoundary.d.ts +20 -0
- package/dist/commonjs/components/ErrorBoundary.js +332 -0
- package/dist/commonjs/components/NetworkIcons.d.ts +5 -0
- package/dist/commonjs/components/NetworkIcons.js +45 -1
- package/dist/commonjs/customHooks/reduxLogger.d.ts +4 -0
- package/dist/commonjs/customHooks/reduxLogger.js +30 -0
- package/dist/commonjs/customHooks/webViewLogger.d.ts +2 -0
- package/dist/commonjs/customHooks/webViewLogger.js +281 -246
- package/dist/commonjs/helpers/index.js +2 -1
- package/dist/commonjs/index.d.ts +5 -3
- package/dist/commonjs/index.js +685 -911
- package/dist/commonjs/styles/AppColors.d.ts +29 -1
- package/dist/commonjs/styles/AppColors.js +38 -2
- package/dist/commonjs/styles/index.d.ts +438 -229
- package/dist/commonjs/styles/index.js +448 -209
- package/dist/commonjs/types/index.d.ts +2 -2
- package/dist/esm/components/AnalyticsEventCard.js +10 -10
- package/dist/esm/components/CodeSnippet.js +232 -12
- package/dist/esm/components/ConsoleLogCard.js +55 -9
- package/dist/esm/components/CopyButton.js +2 -1
- package/dist/esm/components/ErrorBoundary.d.ts +20 -0
- package/dist/esm/components/ErrorBoundary.js +295 -0
- package/dist/esm/components/NetworkIcons.d.ts +5 -0
- package/dist/esm/components/NetworkIcons.js +39 -0
- package/dist/esm/customHooks/reduxLogger.d.ts +4 -0
- package/dist/esm/customHooks/reduxLogger.js +23 -0
- package/dist/esm/customHooks/webViewLogger.d.ts +2 -0
- package/dist/esm/customHooks/webViewLogger.js +281 -246
- package/dist/esm/helpers/index.js +2 -1
- package/dist/esm/index.d.ts +5 -3
- package/dist/esm/index.js +683 -914
- package/dist/esm/styles/AppColors.d.ts +29 -1
- package/dist/esm/styles/AppColors.js +35 -1
- package/dist/esm/styles/index.d.ts +438 -229
- package/dist/esm/styles/index.js +412 -209
- package/dist/esm/types/index.d.ts +2 -2
- package/example/App.tsx +351 -127
- package/example/ios/Podfile.lock +26 -0
- package/example/package-lock.json +20 -4
- package/example/package.json +4 -3
- package/package.json +11 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
import AppColors from './AppColors';
|
|
2
|
+
export declare const getRawStyles: (colors: typeof AppColors) => {
|
|
2
3
|
header: {
|
|
3
|
-
flexDirection:
|
|
4
|
-
alignItems:
|
|
4
|
+
flexDirection: string;
|
|
5
|
+
alignItems: string;
|
|
5
6
|
paddingHorizontal: number;
|
|
6
7
|
paddingVertical: number;
|
|
7
8
|
zIndex: number;
|
|
@@ -17,17 +18,17 @@ declare const styles: {
|
|
|
17
18
|
};
|
|
18
19
|
headerLeft: {
|
|
19
20
|
flex: number;
|
|
20
|
-
alignItems:
|
|
21
|
+
alignItems: string;
|
|
21
22
|
};
|
|
22
23
|
headerCenter: {
|
|
23
24
|
flex: number;
|
|
24
|
-
alignItems:
|
|
25
|
+
alignItems: string;
|
|
25
26
|
};
|
|
26
27
|
headerRight: {
|
|
27
28
|
flex: number;
|
|
28
|
-
flexDirection:
|
|
29
|
-
alignItems:
|
|
30
|
-
justifyContent:
|
|
29
|
+
flexDirection: string;
|
|
30
|
+
alignItems: string;
|
|
31
|
+
justifyContent: string;
|
|
31
32
|
};
|
|
32
33
|
headerTitle: {
|
|
33
34
|
fontFamily: string;
|
|
@@ -36,15 +37,17 @@ declare const styles: {
|
|
|
36
37
|
letterSpacing: number;
|
|
37
38
|
};
|
|
38
39
|
headerButtonGroup: {
|
|
39
|
-
flexDirection:
|
|
40
|
-
alignItems:
|
|
40
|
+
flexDirection: string;
|
|
41
|
+
alignItems: string;
|
|
41
42
|
backgroundColor: string;
|
|
42
43
|
borderRadius: number;
|
|
43
44
|
padding: number;
|
|
45
|
+
borderWidth: number;
|
|
46
|
+
borderColor: string;
|
|
44
47
|
};
|
|
45
48
|
headerGroupButton: {
|
|
46
|
-
flexDirection:
|
|
47
|
-
alignItems:
|
|
49
|
+
flexDirection: string;
|
|
50
|
+
alignItems: string;
|
|
48
51
|
paddingHorizontal: number;
|
|
49
52
|
paddingVertical: number;
|
|
50
53
|
borderRadius: number;
|
|
@@ -52,6 +55,14 @@ declare const styles: {
|
|
|
52
55
|
};
|
|
53
56
|
headerGroupButtonActive: {
|
|
54
57
|
backgroundColor: string;
|
|
58
|
+
shadowColor: string;
|
|
59
|
+
shadowOffset: {
|
|
60
|
+
width: number;
|
|
61
|
+
height: number;
|
|
62
|
+
};
|
|
63
|
+
shadowOpacity: number;
|
|
64
|
+
shadowRadius: number;
|
|
65
|
+
elevation: number;
|
|
55
66
|
};
|
|
56
67
|
headerGroupButtonText: {
|
|
57
68
|
fontFamily: string;
|
|
@@ -60,15 +71,15 @@ declare const styles: {
|
|
|
60
71
|
letterSpacing: number;
|
|
61
72
|
};
|
|
62
73
|
headerDetailCenter: {
|
|
63
|
-
alignItems:
|
|
64
|
-
justifyContent:
|
|
65
|
-
width:
|
|
74
|
+
alignItems: string;
|
|
75
|
+
justifyContent: string;
|
|
76
|
+
width: string;
|
|
66
77
|
};
|
|
67
78
|
headerDetailRow: {
|
|
68
|
-
flexDirection:
|
|
69
|
-
alignItems:
|
|
79
|
+
flexDirection: string;
|
|
80
|
+
alignItems: string;
|
|
70
81
|
gap: number;
|
|
71
|
-
maxWidth:
|
|
82
|
+
maxWidth: string;
|
|
72
83
|
};
|
|
73
84
|
headerMethodBadge: {
|
|
74
85
|
paddingHorizontal: number;
|
|
@@ -97,8 +108,8 @@ declare const styles: {
|
|
|
97
108
|
letterSpacing: number;
|
|
98
109
|
};
|
|
99
110
|
headerDetailSubRow: {
|
|
100
|
-
flexDirection:
|
|
101
|
-
alignItems:
|
|
111
|
+
flexDirection: string;
|
|
112
|
+
alignItems: string;
|
|
102
113
|
gap: number;
|
|
103
114
|
marginTop: number;
|
|
104
115
|
};
|
|
@@ -123,8 +134,8 @@ declare const styles: {
|
|
|
123
134
|
letterSpacing: number;
|
|
124
135
|
};
|
|
125
136
|
headerCountBadge: {
|
|
126
|
-
flexDirection:
|
|
127
|
-
alignItems:
|
|
137
|
+
flexDirection: string;
|
|
138
|
+
alignItems: string;
|
|
128
139
|
backgroundColor: string;
|
|
129
140
|
paddingHorizontal: number;
|
|
130
141
|
paddingVertical: number;
|
|
@@ -150,6 +161,16 @@ declare const styles: {
|
|
|
150
161
|
iconBtnMinimal: {
|
|
151
162
|
padding: number;
|
|
152
163
|
};
|
|
164
|
+
closeButtonCircle: {
|
|
165
|
+
width: number;
|
|
166
|
+
height: number;
|
|
167
|
+
borderRadius: number;
|
|
168
|
+
backgroundColor: string;
|
|
169
|
+
alignItems: string;
|
|
170
|
+
justifyContent: string;
|
|
171
|
+
borderWidth: number;
|
|
172
|
+
borderColor: string;
|
|
173
|
+
};
|
|
153
174
|
listContent: {
|
|
154
175
|
paddingBottom: number;
|
|
155
176
|
};
|
|
@@ -162,11 +183,11 @@ declare const styles: {
|
|
|
162
183
|
paddingBottom: number;
|
|
163
184
|
};
|
|
164
185
|
fabWrapper: {
|
|
165
|
-
position:
|
|
186
|
+
position: string;
|
|
166
187
|
bottom: number;
|
|
167
188
|
right: number;
|
|
168
|
-
alignItems:
|
|
169
|
-
justifyContent:
|
|
189
|
+
alignItems: string;
|
|
190
|
+
justifyContent: string;
|
|
170
191
|
zIndex: number;
|
|
171
192
|
elevation: number;
|
|
172
193
|
shadowColor: string;
|
|
@@ -178,7 +199,7 @@ declare const styles: {
|
|
|
178
199
|
shadowRadius: number;
|
|
179
200
|
};
|
|
180
201
|
fabPulseRing: {
|
|
181
|
-
position:
|
|
202
|
+
position: string;
|
|
182
203
|
width: number;
|
|
183
204
|
height: number;
|
|
184
205
|
borderRadius: number;
|
|
@@ -188,8 +209,9 @@ declare const styles: {
|
|
|
188
209
|
width: number;
|
|
189
210
|
height: number;
|
|
190
211
|
borderRadius: number;
|
|
191
|
-
alignItems:
|
|
192
|
-
justifyContent:
|
|
212
|
+
alignItems: string;
|
|
213
|
+
justifyContent: string;
|
|
214
|
+
backgroundColor: string;
|
|
193
215
|
shadowColor: string;
|
|
194
216
|
shadowOffset: {
|
|
195
217
|
width: number;
|
|
@@ -205,14 +227,14 @@ declare const styles: {
|
|
|
205
227
|
fontSize: number;
|
|
206
228
|
};
|
|
207
229
|
fabBadge: {
|
|
208
|
-
position:
|
|
230
|
+
position: string;
|
|
209
231
|
top: number;
|
|
210
232
|
right: number;
|
|
211
233
|
minWidth: number;
|
|
212
234
|
height: number;
|
|
213
235
|
borderRadius: number;
|
|
214
|
-
alignItems:
|
|
215
|
-
justifyContent:
|
|
236
|
+
alignItems: string;
|
|
237
|
+
justifyContent: string;
|
|
216
238
|
paddingHorizontal: number;
|
|
217
239
|
borderWidth: number;
|
|
218
240
|
borderColor: string;
|
|
@@ -236,38 +258,10 @@ declare const styles: {
|
|
|
236
258
|
color: string;
|
|
237
259
|
fontSize: number;
|
|
238
260
|
};
|
|
239
|
-
dashboardCard: {
|
|
240
|
-
marginHorizontal: number;
|
|
241
|
-
marginBottom: number;
|
|
242
|
-
backgroundColor: string;
|
|
243
|
-
borderRadius: number;
|
|
244
|
-
borderWidth: number;
|
|
245
|
-
borderColor: string;
|
|
246
|
-
shadowColor: string;
|
|
247
|
-
shadowOffset: {
|
|
248
|
-
width: number;
|
|
249
|
-
height: number;
|
|
250
|
-
};
|
|
251
|
-
shadowOpacity: number;
|
|
252
|
-
shadowRadius: number;
|
|
253
|
-
elevation: number;
|
|
254
|
-
overflow: "hidden";
|
|
255
|
-
};
|
|
256
|
-
dashboardStatsRow: {
|
|
257
|
-
flexDirection: "row";
|
|
258
|
-
paddingVertical: number;
|
|
259
|
-
paddingHorizontal: number;
|
|
260
|
-
};
|
|
261
261
|
statBox: {
|
|
262
262
|
flex: number;
|
|
263
|
-
alignItems:
|
|
264
|
-
justifyContent:
|
|
265
|
-
};
|
|
266
|
-
dashboardStatDivider: {
|
|
267
|
-
width: number;
|
|
268
|
-
backgroundColor: string;
|
|
269
|
-
height: "80%";
|
|
270
|
-
alignSelf: "center";
|
|
263
|
+
alignItems: string;
|
|
264
|
+
justifyContent: string;
|
|
271
265
|
};
|
|
272
266
|
statValue: {
|
|
273
267
|
fontFamily: string;
|
|
@@ -279,27 +273,27 @@ declare const styles: {
|
|
|
279
273
|
color: string;
|
|
280
274
|
fontSize: number;
|
|
281
275
|
marginTop: number;
|
|
282
|
-
textTransform:
|
|
276
|
+
textTransform: string;
|
|
283
277
|
letterSpacing: number;
|
|
284
278
|
};
|
|
285
279
|
miniGraphWrap: {
|
|
286
280
|
marginTop: number;
|
|
287
281
|
height: number;
|
|
288
|
-
alignItems:
|
|
289
|
-
justifyContent:
|
|
282
|
+
alignItems: string;
|
|
283
|
+
justifyContent: string;
|
|
290
284
|
};
|
|
291
285
|
toolbarRow: {
|
|
292
|
-
flexDirection:
|
|
293
|
-
alignItems:
|
|
294
|
-
justifyContent:
|
|
286
|
+
flexDirection: string;
|
|
287
|
+
alignItems: string;
|
|
288
|
+
justifyContent: string;
|
|
295
289
|
paddingHorizontal: number;
|
|
296
290
|
marginBottom: number;
|
|
297
291
|
gap: number;
|
|
298
292
|
marginTop: number;
|
|
299
293
|
};
|
|
300
294
|
toolbarRight: {
|
|
301
|
-
flexDirection:
|
|
302
|
-
alignItems:
|
|
295
|
+
flexDirection: string;
|
|
296
|
+
alignItems: string;
|
|
303
297
|
gap: number;
|
|
304
298
|
};
|
|
305
299
|
toolbarDivider: {
|
|
@@ -312,8 +306,8 @@ declare const styles: {
|
|
|
312
306
|
width: number;
|
|
313
307
|
height: number;
|
|
314
308
|
borderRadius: number;
|
|
315
|
-
alignItems:
|
|
316
|
-
justifyContent:
|
|
309
|
+
alignItems: string;
|
|
310
|
+
justifyContent: string;
|
|
317
311
|
backgroundColor: string;
|
|
318
312
|
borderWidth: number;
|
|
319
313
|
borderColor: string;
|
|
@@ -334,15 +328,15 @@ declare const styles: {
|
|
|
334
328
|
elevation: number;
|
|
335
329
|
};
|
|
336
330
|
trashBadge: {
|
|
337
|
-
position:
|
|
331
|
+
position: string;
|
|
338
332
|
top: number;
|
|
339
333
|
right: number;
|
|
340
334
|
backgroundColor: string;
|
|
341
335
|
borderRadius: number;
|
|
342
336
|
minWidth: number;
|
|
343
337
|
height: number;
|
|
344
|
-
alignItems:
|
|
345
|
-
justifyContent:
|
|
338
|
+
alignItems: string;
|
|
339
|
+
justifyContent: string;
|
|
346
340
|
borderWidth: number;
|
|
347
341
|
borderColor: string;
|
|
348
342
|
};
|
|
@@ -359,12 +353,12 @@ declare const styles: {
|
|
|
359
353
|
fontFamily: string;
|
|
360
354
|
color: string;
|
|
361
355
|
fontSize: number;
|
|
362
|
-
textTransform:
|
|
356
|
+
textTransform: string;
|
|
363
357
|
letterSpacing: number;
|
|
364
358
|
marginBottom: number;
|
|
365
359
|
};
|
|
366
360
|
statusRowContent: {
|
|
367
|
-
alignItems:
|
|
361
|
+
alignItems: string;
|
|
368
362
|
paddingVertical: number;
|
|
369
363
|
};
|
|
370
364
|
statusFilterWrap: {
|
|
@@ -373,8 +367,8 @@ declare const styles: {
|
|
|
373
367
|
statusFilterChip: {
|
|
374
368
|
paddingHorizontal: number;
|
|
375
369
|
height: number;
|
|
376
|
-
justifyContent:
|
|
377
|
-
alignItems:
|
|
370
|
+
justifyContent: string;
|
|
371
|
+
alignItems: string;
|
|
378
372
|
borderRadius: number;
|
|
379
373
|
borderWidth: number;
|
|
380
374
|
borderColor: string;
|
|
@@ -408,8 +402,8 @@ declare const styles: {
|
|
|
408
402
|
};
|
|
409
403
|
searchContainer: {
|
|
410
404
|
flex: number;
|
|
411
|
-
flexDirection:
|
|
412
|
-
alignItems:
|
|
405
|
+
flexDirection: string;
|
|
406
|
+
alignItems: string;
|
|
413
407
|
backgroundColor: string;
|
|
414
408
|
borderRadius: number;
|
|
415
409
|
paddingHorizontal: number;
|
|
@@ -442,7 +436,7 @@ declare const styles: {
|
|
|
442
436
|
fontSize: number;
|
|
443
437
|
};
|
|
444
438
|
menuDropdown: {
|
|
445
|
-
position:
|
|
439
|
+
position: string;
|
|
446
440
|
top: number;
|
|
447
441
|
width: number;
|
|
448
442
|
backgroundColor: string;
|
|
@@ -458,7 +452,7 @@ declare const styles: {
|
|
|
458
452
|
shadowOpacity: number;
|
|
459
453
|
shadowRadius: number;
|
|
460
454
|
elevation: number;
|
|
461
|
-
overflow:
|
|
455
|
+
overflow: string;
|
|
462
456
|
};
|
|
463
457
|
dropdownItem: {
|
|
464
458
|
padding: number;
|
|
@@ -472,17 +466,17 @@ declare const styles: {
|
|
|
472
466
|
borderTopColor: string;
|
|
473
467
|
};
|
|
474
468
|
domainHeaderRow: {
|
|
475
|
-
flexDirection:
|
|
476
|
-
alignItems:
|
|
477
|
-
justifyContent:
|
|
469
|
+
flexDirection: string;
|
|
470
|
+
alignItems: string;
|
|
471
|
+
justifyContent: string;
|
|
478
472
|
paddingLeft: number;
|
|
479
473
|
paddingRight: number;
|
|
480
474
|
marginTop: number;
|
|
481
475
|
marginBottom: number;
|
|
482
476
|
};
|
|
483
477
|
domainHeaderLeft: {
|
|
484
|
-
flexDirection:
|
|
485
|
-
alignItems:
|
|
478
|
+
flexDirection: string;
|
|
479
|
+
alignItems: string;
|
|
486
480
|
flex: number;
|
|
487
481
|
paddingRight: number;
|
|
488
482
|
gap: number;
|
|
@@ -490,15 +484,15 @@ declare const styles: {
|
|
|
490
484
|
domainHeaderText: {
|
|
491
485
|
fontFamily: string;
|
|
492
486
|
fontSize: number;
|
|
493
|
-
fontWeight:
|
|
494
|
-
textTransform:
|
|
487
|
+
fontWeight: string;
|
|
488
|
+
textTransform: string;
|
|
495
489
|
flexShrink: number;
|
|
496
490
|
marginLeft: number;
|
|
497
491
|
};
|
|
498
492
|
domainSubRow: {
|
|
499
|
-
flexDirection:
|
|
500
|
-
alignItems:
|
|
501
|
-
flexWrap:
|
|
493
|
+
flexDirection: string;
|
|
494
|
+
alignItems: string;
|
|
495
|
+
flexWrap: string;
|
|
502
496
|
marginTop: number;
|
|
503
497
|
};
|
|
504
498
|
domainTimestamp: {
|
|
@@ -512,17 +506,17 @@ declare const styles: {
|
|
|
512
506
|
marginLeft: number;
|
|
513
507
|
};
|
|
514
508
|
domainStatsGroup: {
|
|
515
|
-
flexDirection:
|
|
516
|
-
alignItems:
|
|
509
|
+
flexDirection: string;
|
|
510
|
+
alignItems: string;
|
|
517
511
|
borderRadius: number;
|
|
518
512
|
borderWidth: number;
|
|
519
513
|
borderColor: string;
|
|
520
|
-
overflow:
|
|
514
|
+
overflow: string;
|
|
521
515
|
backgroundColor: string;
|
|
522
516
|
};
|
|
523
517
|
groupBtnItem: {
|
|
524
|
-
flexDirection:
|
|
525
|
-
alignItems:
|
|
518
|
+
flexDirection: string;
|
|
519
|
+
alignItems: string;
|
|
526
520
|
gap: number;
|
|
527
521
|
paddingHorizontal: number;
|
|
528
522
|
paddingVertical: number;
|
|
@@ -536,32 +530,32 @@ declare const styles: {
|
|
|
536
530
|
fontSize: number;
|
|
537
531
|
};
|
|
538
532
|
treeNodeRow: {
|
|
539
|
-
flexDirection:
|
|
540
|
-
alignItems:
|
|
533
|
+
flexDirection: string;
|
|
534
|
+
alignItems: string;
|
|
541
535
|
paddingRight: number;
|
|
542
536
|
};
|
|
543
537
|
treeLines: {
|
|
544
538
|
width: number;
|
|
545
|
-
position:
|
|
539
|
+
position: string;
|
|
546
540
|
};
|
|
547
541
|
modernTreeLine: {
|
|
548
|
-
position:
|
|
542
|
+
position: string;
|
|
549
543
|
left: number;
|
|
550
544
|
top: number;
|
|
551
545
|
width: number;
|
|
552
|
-
height:
|
|
546
|
+
height: string;
|
|
553
547
|
borderLeftWidth: number;
|
|
554
548
|
opacity: number;
|
|
555
549
|
};
|
|
556
550
|
modernTreeLineLast: {
|
|
557
|
-
height:
|
|
551
|
+
height: string;
|
|
558
552
|
borderBottomWidth: number;
|
|
559
553
|
borderBottomLeftRadius: number;
|
|
560
554
|
};
|
|
561
555
|
modernTreeBranch: {
|
|
562
|
-
position:
|
|
556
|
+
position: string;
|
|
563
557
|
left: number;
|
|
564
|
-
top:
|
|
558
|
+
top: string;
|
|
565
559
|
width: number;
|
|
566
560
|
borderTopWidth: number;
|
|
567
561
|
opacity: number;
|
|
@@ -574,7 +568,7 @@ declare const styles: {
|
|
|
574
568
|
marginHorizontal: number;
|
|
575
569
|
marginVertical: number;
|
|
576
570
|
borderRadius: number;
|
|
577
|
-
overflow:
|
|
571
|
+
overflow: string;
|
|
578
572
|
shadowColor: string;
|
|
579
573
|
shadowOffset: {
|
|
580
574
|
width: number;
|
|
@@ -593,8 +587,8 @@ declare const styles: {
|
|
|
593
587
|
paddingBottom: number;
|
|
594
588
|
};
|
|
595
589
|
cardTopRow: {
|
|
596
|
-
flexDirection:
|
|
597
|
-
alignItems:
|
|
590
|
+
flexDirection: string;
|
|
591
|
+
alignItems: string;
|
|
598
592
|
marginBottom: number;
|
|
599
593
|
};
|
|
600
594
|
smallCheckbox: {
|
|
@@ -603,8 +597,8 @@ declare const styles: {
|
|
|
603
597
|
borderRadius: number;
|
|
604
598
|
borderWidth: number;
|
|
605
599
|
borderColor: string;
|
|
606
|
-
alignItems:
|
|
607
|
-
justifyContent:
|
|
600
|
+
alignItems: string;
|
|
601
|
+
justifyContent: string;
|
|
608
602
|
backgroundColor: string;
|
|
609
603
|
marginRight: number;
|
|
610
604
|
};
|
|
@@ -620,8 +614,8 @@ declare const styles: {
|
|
|
620
614
|
minWidth: number;
|
|
621
615
|
};
|
|
622
616
|
chip: {
|
|
623
|
-
flexDirection:
|
|
624
|
-
alignItems:
|
|
617
|
+
flexDirection: string;
|
|
618
|
+
alignItems: string;
|
|
625
619
|
gap: number;
|
|
626
620
|
paddingHorizontal: number;
|
|
627
621
|
paddingVertical: number;
|
|
@@ -633,20 +627,20 @@ declare const styles: {
|
|
|
633
627
|
fontSize: number;
|
|
634
628
|
};
|
|
635
629
|
cardMiddleRow: {
|
|
636
|
-
flexDirection:
|
|
637
|
-
alignItems:
|
|
638
|
-
justifyContent:
|
|
630
|
+
flexDirection: string;
|
|
631
|
+
alignItems: string;
|
|
632
|
+
justifyContent: string;
|
|
639
633
|
marginBottom: number;
|
|
640
634
|
};
|
|
641
635
|
cardBottomRow: {
|
|
642
|
-
flexDirection:
|
|
643
|
-
alignItems:
|
|
644
|
-
justifyContent:
|
|
636
|
+
flexDirection: string;
|
|
637
|
+
alignItems: string;
|
|
638
|
+
justifyContent: string;
|
|
645
639
|
marginBottom: number;
|
|
646
640
|
};
|
|
647
641
|
cardDateRow: {
|
|
648
|
-
flexDirection:
|
|
649
|
-
alignItems:
|
|
642
|
+
flexDirection: string;
|
|
643
|
+
alignItems: string;
|
|
650
644
|
gap: number;
|
|
651
645
|
};
|
|
652
646
|
cardDateText: {
|
|
@@ -656,8 +650,8 @@ declare const styles: {
|
|
|
656
650
|
letterSpacing: number;
|
|
657
651
|
};
|
|
658
652
|
cardMetaRow: {
|
|
659
|
-
flexDirection:
|
|
660
|
-
alignItems:
|
|
653
|
+
flexDirection: string;
|
|
654
|
+
alignItems: string;
|
|
661
655
|
gap: number;
|
|
662
656
|
flexShrink: number;
|
|
663
657
|
};
|
|
@@ -702,18 +696,18 @@ declare const styles: {
|
|
|
702
696
|
backgroundColor: string;
|
|
703
697
|
marginTop: number;
|
|
704
698
|
borderRadius: number;
|
|
705
|
-
overflow:
|
|
706
|
-
position:
|
|
699
|
+
overflow: string;
|
|
700
|
+
position: string;
|
|
707
701
|
};
|
|
708
702
|
timelineBar: {
|
|
709
|
-
position:
|
|
710
|
-
height:
|
|
703
|
+
position: string;
|
|
704
|
+
height: string;
|
|
711
705
|
borderRadius: number;
|
|
712
706
|
};
|
|
713
707
|
empty: {
|
|
714
708
|
flex: number;
|
|
715
|
-
alignItems:
|
|
716
|
-
justifyContent:
|
|
709
|
+
alignItems: string;
|
|
710
|
+
justifyContent: string;
|
|
717
711
|
};
|
|
718
712
|
emptyIcon: {
|
|
719
713
|
fontSize: number;
|
|
@@ -721,8 +715,8 @@ declare const styles: {
|
|
|
721
715
|
};
|
|
722
716
|
emptyContainer: {
|
|
723
717
|
flex: number;
|
|
724
|
-
alignItems:
|
|
725
|
-
justifyContent:
|
|
718
|
+
alignItems: string;
|
|
719
|
+
justifyContent: string;
|
|
726
720
|
paddingVertical: number;
|
|
727
721
|
paddingHorizontal: number;
|
|
728
722
|
};
|
|
@@ -731,8 +725,8 @@ declare const styles: {
|
|
|
731
725
|
height: number;
|
|
732
726
|
borderRadius: number;
|
|
733
727
|
backgroundColor: string;
|
|
734
|
-
alignItems:
|
|
735
|
-
justifyContent:
|
|
728
|
+
alignItems: string;
|
|
729
|
+
justifyContent: string;
|
|
736
730
|
marginBottom: number;
|
|
737
731
|
shadowColor: string;
|
|
738
732
|
shadowOffset: {
|
|
@@ -754,7 +748,7 @@ declare const styles: {
|
|
|
754
748
|
fontFamily: string;
|
|
755
749
|
color: string;
|
|
756
750
|
fontSize: number;
|
|
757
|
-
textAlign:
|
|
751
|
+
textAlign: string;
|
|
758
752
|
lineHeight: number;
|
|
759
753
|
letterSpacing: number;
|
|
760
754
|
};
|
|
@@ -797,14 +791,14 @@ declare const styles: {
|
|
|
797
791
|
elevation: number;
|
|
798
792
|
};
|
|
799
793
|
detailInfoTop: {
|
|
800
|
-
flexDirection:
|
|
801
|
-
alignItems:
|
|
802
|
-
justifyContent:
|
|
794
|
+
flexDirection: string;
|
|
795
|
+
alignItems: string;
|
|
796
|
+
justifyContent: string;
|
|
803
797
|
paddingBottom: number;
|
|
804
798
|
};
|
|
805
799
|
detailInfoRight: {
|
|
806
|
-
flexDirection:
|
|
807
|
-
alignItems:
|
|
800
|
+
flexDirection: string;
|
|
801
|
+
alignItems: string;
|
|
808
802
|
gap: number;
|
|
809
803
|
};
|
|
810
804
|
detailMethodLabel: {
|
|
@@ -832,7 +826,7 @@ declare const styles: {
|
|
|
832
826
|
color: string;
|
|
833
827
|
fontSize: number;
|
|
834
828
|
lineHeight: number;
|
|
835
|
-
textDecorationLine:
|
|
829
|
+
textDecorationLine: string;
|
|
836
830
|
letterSpacing: number;
|
|
837
831
|
};
|
|
838
832
|
metaContainer: {
|
|
@@ -841,7 +835,7 @@ declare const styles: {
|
|
|
841
835
|
borderColor: string;
|
|
842
836
|
borderRadius: number;
|
|
843
837
|
marginBottom: number;
|
|
844
|
-
overflow:
|
|
838
|
+
overflow: string;
|
|
845
839
|
shadowColor: string;
|
|
846
840
|
shadowOffset: {
|
|
847
841
|
width: number;
|
|
@@ -852,9 +846,9 @@ declare const styles: {
|
|
|
852
846
|
elevation: number;
|
|
853
847
|
};
|
|
854
848
|
metaHeader: {
|
|
855
|
-
flexDirection:
|
|
856
|
-
alignItems:
|
|
857
|
-
justifyContent:
|
|
849
|
+
flexDirection: string;
|
|
850
|
+
alignItems: string;
|
|
851
|
+
justifyContent: string;
|
|
858
852
|
paddingHorizontal: number;
|
|
859
853
|
paddingVertical: number;
|
|
860
854
|
borderBottomWidth: number;
|
|
@@ -866,7 +860,7 @@ declare const styles: {
|
|
|
866
860
|
color: string;
|
|
867
861
|
fontSize: number;
|
|
868
862
|
letterSpacing: number;
|
|
869
|
-
textTransform:
|
|
863
|
+
textTransform: string;
|
|
870
864
|
};
|
|
871
865
|
metaChevron: {
|
|
872
866
|
fontFamily: string;
|
|
@@ -879,9 +873,9 @@ declare const styles: {
|
|
|
879
873
|
paddingTop: number;
|
|
880
874
|
};
|
|
881
875
|
metaRow: {
|
|
882
|
-
flexDirection:
|
|
883
|
-
alignItems:
|
|
884
|
-
justifyContent:
|
|
876
|
+
flexDirection: string;
|
|
877
|
+
alignItems: string;
|
|
878
|
+
justifyContent: string;
|
|
885
879
|
paddingVertical: number;
|
|
886
880
|
};
|
|
887
881
|
metaDivider: {
|
|
@@ -889,8 +883,8 @@ declare const styles: {
|
|
|
889
883
|
backgroundColor: string;
|
|
890
884
|
};
|
|
891
885
|
metaLabelRow: {
|
|
892
|
-
flexDirection:
|
|
893
|
-
alignItems:
|
|
886
|
+
flexDirection: string;
|
|
887
|
+
alignItems: string;
|
|
894
888
|
gap: number;
|
|
895
889
|
};
|
|
896
890
|
metaLabel: {
|
|
@@ -904,8 +898,8 @@ declare const styles: {
|
|
|
904
898
|
fontSize: number;
|
|
905
899
|
};
|
|
906
900
|
metaValueRow: {
|
|
907
|
-
flexDirection:
|
|
908
|
-
alignItems:
|
|
901
|
+
flexDirection: string;
|
|
902
|
+
alignItems: string;
|
|
909
903
|
gap: number;
|
|
910
904
|
};
|
|
911
905
|
perfBadge: {
|
|
@@ -924,15 +918,15 @@ declare const styles: {
|
|
|
924
918
|
marginVertical: number;
|
|
925
919
|
};
|
|
926
920
|
detailSearchRow: {
|
|
927
|
-
flexDirection:
|
|
928
|
-
alignItems:
|
|
921
|
+
flexDirection: string;
|
|
922
|
+
alignItems: string;
|
|
929
923
|
marginBottom: number;
|
|
930
924
|
};
|
|
931
925
|
detailSearchBox: {
|
|
932
926
|
flex: number;
|
|
933
|
-
flexDirection:
|
|
934
|
-
alignItems:
|
|
935
|
-
justifyContent:
|
|
927
|
+
flexDirection: string;
|
|
928
|
+
alignItems: string;
|
|
929
|
+
justifyContent: string;
|
|
936
930
|
backgroundColor: string;
|
|
937
931
|
borderRadius: number;
|
|
938
932
|
paddingLeft: number;
|
|
@@ -951,7 +945,7 @@ declare const styles: {
|
|
|
951
945
|
borderColor: string;
|
|
952
946
|
borderRadius: number;
|
|
953
947
|
marginBottom: number;
|
|
954
|
-
overflow:
|
|
948
|
+
overflow: string;
|
|
955
949
|
};
|
|
956
950
|
sectionHeaderGradient: {
|
|
957
951
|
backgroundColor: string;
|
|
@@ -961,13 +955,13 @@ declare const styles: {
|
|
|
961
955
|
borderBottomColor: string;
|
|
962
956
|
};
|
|
963
957
|
sectionHeaderRow: {
|
|
964
|
-
flexDirection:
|
|
965
|
-
alignItems:
|
|
966
|
-
justifyContent:
|
|
958
|
+
flexDirection: string;
|
|
959
|
+
alignItems: string;
|
|
960
|
+
justifyContent: string;
|
|
967
961
|
};
|
|
968
962
|
sectionTitleRow: {
|
|
969
|
-
flexDirection:
|
|
970
|
-
alignItems:
|
|
963
|
+
flexDirection: string;
|
|
964
|
+
alignItems: string;
|
|
971
965
|
gap: number;
|
|
972
966
|
flex: number;
|
|
973
967
|
marginRight: number;
|
|
@@ -979,8 +973,8 @@ declare const styles: {
|
|
|
979
973
|
flexShrink: number;
|
|
980
974
|
};
|
|
981
975
|
sectionHeaderActions: {
|
|
982
|
-
flexDirection:
|
|
983
|
-
alignItems:
|
|
976
|
+
flexDirection: string;
|
|
977
|
+
alignItems: string;
|
|
984
978
|
gap: number;
|
|
985
979
|
};
|
|
986
980
|
htCard: {
|
|
@@ -990,11 +984,11 @@ declare const styles: {
|
|
|
990
984
|
borderColor: string;
|
|
991
985
|
borderLeftWidth: number;
|
|
992
986
|
marginBottom: number;
|
|
993
|
-
overflow:
|
|
987
|
+
overflow: string;
|
|
994
988
|
};
|
|
995
989
|
htCardHeader: {
|
|
996
|
-
flexDirection:
|
|
997
|
-
alignItems:
|
|
990
|
+
flexDirection: string;
|
|
991
|
+
alignItems: string;
|
|
998
992
|
paddingHorizontal: number;
|
|
999
993
|
paddingVertical: number;
|
|
1000
994
|
gap: number;
|
|
@@ -1006,8 +1000,8 @@ declare const styles: {
|
|
|
1006
1000
|
width: number;
|
|
1007
1001
|
height: number;
|
|
1008
1002
|
borderRadius: number;
|
|
1009
|
-
alignItems:
|
|
1010
|
-
justifyContent:
|
|
1003
|
+
alignItems: string;
|
|
1004
|
+
justifyContent: string;
|
|
1011
1005
|
};
|
|
1012
1006
|
htTitle: {
|
|
1013
1007
|
fontFamily: string;
|
|
@@ -1035,11 +1029,11 @@ declare const styles: {
|
|
|
1035
1029
|
borderWidth: number;
|
|
1036
1030
|
borderColor: string;
|
|
1037
1031
|
backgroundColor: string;
|
|
1038
|
-
alignItems:
|
|
1039
|
-
justifyContent:
|
|
1032
|
+
alignItems: string;
|
|
1033
|
+
justifyContent: string;
|
|
1040
1034
|
};
|
|
1041
1035
|
htColHeadRow: {
|
|
1042
|
-
flexDirection:
|
|
1036
|
+
flexDirection: string;
|
|
1043
1037
|
paddingHorizontal: number;
|
|
1044
1038
|
paddingVertical: number;
|
|
1045
1039
|
backgroundColor: string;
|
|
@@ -1051,20 +1045,20 @@ declare const styles: {
|
|
|
1051
1045
|
color: string;
|
|
1052
1046
|
fontSize: number;
|
|
1053
1047
|
letterSpacing: number;
|
|
1054
|
-
textTransform:
|
|
1048
|
+
textTransform: string;
|
|
1055
1049
|
};
|
|
1056
1050
|
htRow: {
|
|
1057
|
-
flexDirection:
|
|
1051
|
+
flexDirection: string;
|
|
1058
1052
|
paddingHorizontal: number;
|
|
1059
1053
|
paddingVertical: number;
|
|
1060
|
-
alignItems:
|
|
1054
|
+
alignItems: string;
|
|
1061
1055
|
};
|
|
1062
1056
|
htRowBorder: {
|
|
1063
1057
|
borderBottomWidth: number;
|
|
1064
1058
|
borderBottomColor: string;
|
|
1065
1059
|
};
|
|
1066
1060
|
htKeyCell: {
|
|
1067
|
-
width:
|
|
1061
|
+
width: string;
|
|
1068
1062
|
paddingVertical: number;
|
|
1069
1063
|
paddingRight: number;
|
|
1070
1064
|
};
|
|
@@ -1077,7 +1071,7 @@ declare const styles: {
|
|
|
1077
1071
|
htCellDivider: {
|
|
1078
1072
|
width: number;
|
|
1079
1073
|
backgroundColor: string;
|
|
1080
|
-
alignSelf:
|
|
1074
|
+
alignSelf: string;
|
|
1081
1075
|
marginVertical: number;
|
|
1082
1076
|
};
|
|
1083
1077
|
htValueCell: {
|
|
@@ -1103,13 +1097,13 @@ declare const styles: {
|
|
|
1103
1097
|
htCopyBtn: {
|
|
1104
1098
|
paddingHorizontal: number;
|
|
1105
1099
|
paddingVertical: number;
|
|
1106
|
-
alignItems:
|
|
1107
|
-
justifyContent:
|
|
1100
|
+
alignItems: string;
|
|
1101
|
+
justifyContent: string;
|
|
1108
1102
|
};
|
|
1109
1103
|
htEmpty: {
|
|
1110
1104
|
paddingHorizontal: number;
|
|
1111
1105
|
paddingVertical: number;
|
|
1112
|
-
alignItems:
|
|
1106
|
+
alignItems: string;
|
|
1113
1107
|
};
|
|
1114
1108
|
htEmptyText: {
|
|
1115
1109
|
fontFamily: string;
|
|
@@ -1123,8 +1117,8 @@ declare const styles: {
|
|
|
1123
1117
|
borderWidth: number;
|
|
1124
1118
|
borderColor: string;
|
|
1125
1119
|
backgroundColor: string;
|
|
1126
|
-
alignItems:
|
|
1127
|
-
justifyContent:
|
|
1120
|
+
alignItems: string;
|
|
1121
|
+
justifyContent: string;
|
|
1128
1122
|
};
|
|
1129
1123
|
iconSquareBtnSuccess: {
|
|
1130
1124
|
borderColor: string;
|
|
@@ -1135,14 +1129,14 @@ declare const styles: {
|
|
|
1135
1129
|
backgroundColor: string;
|
|
1136
1130
|
};
|
|
1137
1131
|
codeBlockScroll: {
|
|
1138
|
-
width:
|
|
1132
|
+
width: string;
|
|
1139
1133
|
backgroundColor: string;
|
|
1140
1134
|
};
|
|
1141
1135
|
codeBlock: {
|
|
1142
1136
|
paddingTop: number;
|
|
1143
1137
|
paddingHorizontal: number;
|
|
1144
1138
|
paddingBottom: number;
|
|
1145
|
-
minWidth:
|
|
1139
|
+
minWidth: string;
|
|
1146
1140
|
};
|
|
1147
1141
|
codeSyntax: {
|
|
1148
1142
|
color: string;
|
|
@@ -1161,8 +1155,8 @@ declare const styles: {
|
|
|
1161
1155
|
fontFamily: string;
|
|
1162
1156
|
};
|
|
1163
1157
|
treeRow: {
|
|
1164
|
-
flexDirection:
|
|
1165
|
-
alignItems:
|
|
1158
|
+
flexDirection: string;
|
|
1159
|
+
alignItems: string;
|
|
1166
1160
|
paddingVertical: number;
|
|
1167
1161
|
};
|
|
1168
1162
|
treeChevron: {
|
|
@@ -1229,8 +1223,8 @@ declare const styles: {
|
|
|
1229
1223
|
marginVertical: number;
|
|
1230
1224
|
};
|
|
1231
1225
|
filePreviewCard: {
|
|
1232
|
-
flexDirection:
|
|
1233
|
-
alignItems:
|
|
1226
|
+
flexDirection: string;
|
|
1227
|
+
alignItems: string;
|
|
1234
1228
|
backgroundColor: string;
|
|
1235
1229
|
borderRadius: number;
|
|
1236
1230
|
padding: number;
|
|
@@ -1250,8 +1244,8 @@ declare const styles: {
|
|
|
1250
1244
|
height: number;
|
|
1251
1245
|
borderRadius: number;
|
|
1252
1246
|
backgroundColor: string;
|
|
1253
|
-
alignItems:
|
|
1254
|
-
justifyContent:
|
|
1247
|
+
alignItems: string;
|
|
1248
|
+
justifyContent: string;
|
|
1255
1249
|
};
|
|
1256
1250
|
filePreviewName: {
|
|
1257
1251
|
fontFamily: string;
|
|
@@ -1265,29 +1259,29 @@ declare const styles: {
|
|
|
1265
1259
|
fontSize: number;
|
|
1266
1260
|
};
|
|
1267
1261
|
imagePreviewWrapper: {
|
|
1268
|
-
width:
|
|
1262
|
+
width: string;
|
|
1269
1263
|
height: number;
|
|
1270
1264
|
borderRadius: number;
|
|
1271
|
-
overflow:
|
|
1265
|
+
overflow: string;
|
|
1272
1266
|
marginBottom: number;
|
|
1273
1267
|
backgroundColor: string;
|
|
1274
1268
|
borderWidth: number;
|
|
1275
1269
|
borderColor: string;
|
|
1276
1270
|
};
|
|
1277
1271
|
imagePreview: {
|
|
1278
|
-
width:
|
|
1279
|
-
height:
|
|
1272
|
+
width: string;
|
|
1273
|
+
height: string;
|
|
1280
1274
|
};
|
|
1281
1275
|
imageDownloadBtn: {
|
|
1282
|
-
position:
|
|
1276
|
+
position: string;
|
|
1283
1277
|
bottom: number;
|
|
1284
1278
|
right: number;
|
|
1285
1279
|
width: number;
|
|
1286
1280
|
height: number;
|
|
1287
1281
|
borderRadius: number;
|
|
1288
1282
|
backgroundColor: string;
|
|
1289
|
-
alignItems:
|
|
1290
|
-
justifyContent:
|
|
1283
|
+
alignItems: string;
|
|
1284
|
+
justifyContent: string;
|
|
1291
1285
|
shadowColor: string;
|
|
1292
1286
|
shadowOffset: {
|
|
1293
1287
|
width: number;
|
|
@@ -1303,12 +1297,12 @@ declare const styles: {
|
|
|
1303
1297
|
borderColor: string;
|
|
1304
1298
|
borderRadius: number;
|
|
1305
1299
|
marginBottom: number;
|
|
1306
|
-
overflow:
|
|
1300
|
+
overflow: string;
|
|
1307
1301
|
};
|
|
1308
1302
|
sourcePageAccordionHeader: {
|
|
1309
|
-
flexDirection:
|
|
1310
|
-
alignItems:
|
|
1311
|
-
justifyContent:
|
|
1303
|
+
flexDirection: string;
|
|
1304
|
+
alignItems: string;
|
|
1305
|
+
justifyContent: string;
|
|
1312
1306
|
paddingHorizontal: number;
|
|
1313
1307
|
paddingVertical: number;
|
|
1314
1308
|
borderBottomWidth: number;
|
|
@@ -1316,14 +1310,14 @@ declare const styles: {
|
|
|
1316
1310
|
backgroundColor: string;
|
|
1317
1311
|
};
|
|
1318
1312
|
sourcePageTop: {
|
|
1319
|
-
flexDirection:
|
|
1320
|
-
alignItems:
|
|
1313
|
+
flexDirection: string;
|
|
1314
|
+
alignItems: string;
|
|
1321
1315
|
gap: number;
|
|
1322
1316
|
flex: number;
|
|
1323
1317
|
};
|
|
1324
1318
|
sourcePageHeaderRight: {
|
|
1325
|
-
flexDirection:
|
|
1326
|
-
alignItems:
|
|
1319
|
+
flexDirection: string;
|
|
1320
|
+
alignItems: string;
|
|
1327
1321
|
gap: number;
|
|
1328
1322
|
};
|
|
1329
1323
|
sourcePageIcon: {
|
|
@@ -1333,8 +1327,8 @@ declare const styles: {
|
|
|
1333
1327
|
backgroundColor: string;
|
|
1334
1328
|
borderWidth: number;
|
|
1335
1329
|
borderColor: string;
|
|
1336
|
-
alignItems:
|
|
1337
|
-
justifyContent:
|
|
1330
|
+
alignItems: string;
|
|
1331
|
+
justifyContent: string;
|
|
1338
1332
|
};
|
|
1339
1333
|
sourcePageLabel: {
|
|
1340
1334
|
fontFamily: string;
|
|
@@ -1352,9 +1346,9 @@ declare const styles: {
|
|
|
1352
1346
|
borderTopColor: string;
|
|
1353
1347
|
};
|
|
1354
1348
|
paramsAccordionHeader: {
|
|
1355
|
-
flexDirection:
|
|
1356
|
-
alignItems:
|
|
1357
|
-
justifyContent:
|
|
1349
|
+
flexDirection: string;
|
|
1350
|
+
alignItems: string;
|
|
1351
|
+
justifyContent: string;
|
|
1358
1352
|
paddingHorizontal: number;
|
|
1359
1353
|
paddingVertical: number;
|
|
1360
1354
|
borderBottomWidth: number;
|
|
@@ -1362,13 +1356,13 @@ declare const styles: {
|
|
|
1362
1356
|
backgroundColor: string;
|
|
1363
1357
|
};
|
|
1364
1358
|
paramsAccordionLeft: {
|
|
1365
|
-
flexDirection:
|
|
1366
|
-
alignItems:
|
|
1359
|
+
flexDirection: string;
|
|
1360
|
+
alignItems: string;
|
|
1367
1361
|
gap: number;
|
|
1368
1362
|
};
|
|
1369
1363
|
paramsAccordionRight: {
|
|
1370
|
-
flexDirection:
|
|
1371
|
-
alignItems:
|
|
1364
|
+
flexDirection: string;
|
|
1365
|
+
alignItems: string;
|
|
1372
1366
|
gap: number;
|
|
1373
1367
|
};
|
|
1374
1368
|
sourceParamsLabel: {
|
|
@@ -1376,7 +1370,7 @@ declare const styles: {
|
|
|
1376
1370
|
color: string;
|
|
1377
1371
|
fontSize: number;
|
|
1378
1372
|
letterSpacing: number;
|
|
1379
|
-
textTransform:
|
|
1373
|
+
textTransform: string;
|
|
1380
1374
|
};
|
|
1381
1375
|
paramsBody: {
|
|
1382
1376
|
paddingHorizontal: number;
|
|
@@ -1384,9 +1378,9 @@ declare const styles: {
|
|
|
1384
1378
|
paddingTop: number;
|
|
1385
1379
|
};
|
|
1386
1380
|
paramRow: {
|
|
1387
|
-
flexDirection:
|
|
1388
|
-
alignItems:
|
|
1389
|
-
justifyContent:
|
|
1381
|
+
flexDirection: string;
|
|
1382
|
+
alignItems: string;
|
|
1383
|
+
justifyContent: string;
|
|
1390
1384
|
paddingVertical: number;
|
|
1391
1385
|
gap: number;
|
|
1392
1386
|
};
|
|
@@ -1401,21 +1395,21 @@ declare const styles: {
|
|
|
1401
1395
|
flex: number;
|
|
1402
1396
|
};
|
|
1403
1397
|
paramValueRow: {
|
|
1404
|
-
flexDirection:
|
|
1405
|
-
alignItems:
|
|
1398
|
+
flexDirection: string;
|
|
1399
|
+
alignItems: string;
|
|
1406
1400
|
gap: number;
|
|
1407
1401
|
flex: number;
|
|
1408
|
-
justifyContent:
|
|
1402
|
+
justifyContent: string;
|
|
1409
1403
|
};
|
|
1410
1404
|
paramValue: {
|
|
1411
1405
|
fontFamily: string;
|
|
1412
1406
|
color: string;
|
|
1413
1407
|
fontSize: number;
|
|
1414
|
-
textAlign:
|
|
1408
|
+
textAlign: string;
|
|
1415
1409
|
flexShrink: number;
|
|
1416
1410
|
};
|
|
1417
1411
|
headerGradient: {
|
|
1418
|
-
width:
|
|
1412
|
+
width: string;
|
|
1419
1413
|
};
|
|
1420
1414
|
statusChip: {
|
|
1421
1415
|
paddingHorizontal: number;
|
|
@@ -1428,7 +1422,7 @@ declare const styles: {
|
|
|
1428
1422
|
fontSize: number;
|
|
1429
1423
|
};
|
|
1430
1424
|
tabBar: {
|
|
1431
|
-
flexDirection:
|
|
1425
|
+
flexDirection: string;
|
|
1432
1426
|
backgroundColor: string;
|
|
1433
1427
|
paddingHorizontal: number;
|
|
1434
1428
|
paddingTop: number;
|
|
@@ -1439,8 +1433,8 @@ declare const styles: {
|
|
|
1439
1433
|
paddingHorizontal: number;
|
|
1440
1434
|
paddingVertical: number;
|
|
1441
1435
|
borderRadius: number;
|
|
1442
|
-
alignItems:
|
|
1443
|
-
justifyContent:
|
|
1436
|
+
alignItems: string;
|
|
1437
|
+
justifyContent: string;
|
|
1444
1438
|
backgroundColor: string;
|
|
1445
1439
|
};
|
|
1446
1440
|
tabItemActive: {
|
|
@@ -1463,9 +1457,9 @@ declare const styles: {
|
|
|
1463
1457
|
color: string;
|
|
1464
1458
|
};
|
|
1465
1459
|
screenSectionHeader: {
|
|
1466
|
-
flexDirection:
|
|
1467
|
-
alignItems:
|
|
1468
|
-
justifyContent:
|
|
1460
|
+
flexDirection: string;
|
|
1461
|
+
alignItems: string;
|
|
1462
|
+
justifyContent: string;
|
|
1469
1463
|
paddingHorizontal: number;
|
|
1470
1464
|
paddingVertical: number;
|
|
1471
1465
|
backgroundColor: string;
|
|
@@ -1484,5 +1478,220 @@ declare const styles: {
|
|
|
1484
1478
|
fontSize: number;
|
|
1485
1479
|
color: string;
|
|
1486
1480
|
};
|
|
1481
|
+
modalBackdrop: {
|
|
1482
|
+
flex: number;
|
|
1483
|
+
backgroundColor: string;
|
|
1484
|
+
justifyContent: string;
|
|
1485
|
+
};
|
|
1486
|
+
modalBackdropPressable: {
|
|
1487
|
+
position: "absolute";
|
|
1488
|
+
left: 0;
|
|
1489
|
+
right: 0;
|
|
1490
|
+
top: 0;
|
|
1491
|
+
bottom: 0;
|
|
1492
|
+
};
|
|
1493
|
+
modalContentCard: {
|
|
1494
|
+
height: string;
|
|
1495
|
+
backgroundColor: string;
|
|
1496
|
+
borderTopLeftRadius: number;
|
|
1497
|
+
borderTopRightRadius: number;
|
|
1498
|
+
overflow: string;
|
|
1499
|
+
shadowColor: string;
|
|
1500
|
+
shadowOffset: {
|
|
1501
|
+
width: number;
|
|
1502
|
+
height: number;
|
|
1503
|
+
};
|
|
1504
|
+
shadowOpacity: number;
|
|
1505
|
+
shadowRadius: number;
|
|
1506
|
+
elevation: number;
|
|
1507
|
+
};
|
|
1508
|
+
tabBarContainer: {
|
|
1509
|
+
backgroundColor: string;
|
|
1510
|
+
borderBottomWidth: number;
|
|
1511
|
+
borderBottomColor: string;
|
|
1512
|
+
paddingVertical: number;
|
|
1513
|
+
paddingHorizontal: number;
|
|
1514
|
+
};
|
|
1515
|
+
contentTabButton: {
|
|
1516
|
+
flexDirection: string;
|
|
1517
|
+
alignItems: string;
|
|
1518
|
+
paddingHorizontal: number;
|
|
1519
|
+
paddingVertical: number;
|
|
1520
|
+
borderRadius: number;
|
|
1521
|
+
marginRight: number;
|
|
1522
|
+
backgroundColor: string;
|
|
1523
|
+
borderWidth: number;
|
|
1524
|
+
borderColor: string;
|
|
1525
|
+
};
|
|
1526
|
+
contentTabButtonActive: {
|
|
1527
|
+
backgroundColor: string;
|
|
1528
|
+
borderColor: string;
|
|
1529
|
+
shadowColor: string;
|
|
1530
|
+
shadowOffset: {
|
|
1531
|
+
width: number;
|
|
1532
|
+
height: number;
|
|
1533
|
+
};
|
|
1534
|
+
shadowOpacity: number;
|
|
1535
|
+
shadowRadius: number;
|
|
1536
|
+
elevation: number;
|
|
1537
|
+
};
|
|
1538
|
+
contentTabButtonText: {
|
|
1539
|
+
fontFamily: string;
|
|
1540
|
+
fontSize: number;
|
|
1541
|
+
color: string;
|
|
1542
|
+
};
|
|
1543
|
+
contentTabButtonTextActive: {
|
|
1544
|
+
color: string;
|
|
1545
|
+
fontWeight: string;
|
|
1546
|
+
};
|
|
1547
|
+
insightsContainer: {
|
|
1548
|
+
flex: number;
|
|
1549
|
+
backgroundColor: string;
|
|
1550
|
+
};
|
|
1551
|
+
insightsContent: {
|
|
1552
|
+
padding: number;
|
|
1553
|
+
paddingBottom: number;
|
|
1554
|
+
};
|
|
1555
|
+
dashboardContainer: {
|
|
1556
|
+
gap: number;
|
|
1557
|
+
};
|
|
1558
|
+
dashboardModuleCard: {
|
|
1559
|
+
backgroundColor: string;
|
|
1560
|
+
borderRadius: number;
|
|
1561
|
+
borderWidth: number;
|
|
1562
|
+
borderColor: string;
|
|
1563
|
+
padding: number;
|
|
1564
|
+
shadowColor: string;
|
|
1565
|
+
shadowOpacity: number;
|
|
1566
|
+
shadowRadius: number;
|
|
1567
|
+
shadowOffset: {
|
|
1568
|
+
width: number;
|
|
1569
|
+
height: number;
|
|
1570
|
+
};
|
|
1571
|
+
elevation: number;
|
|
1572
|
+
};
|
|
1573
|
+
dashboardModuleHeader: {
|
|
1574
|
+
flexDirection: string;
|
|
1575
|
+
justifyContent: string;
|
|
1576
|
+
alignItems: string;
|
|
1577
|
+
marginBottom: number;
|
|
1578
|
+
borderBottomWidth: number;
|
|
1579
|
+
borderBottomColor: string;
|
|
1580
|
+
paddingBottom: number;
|
|
1581
|
+
};
|
|
1582
|
+
dashboardModuleTitle: {
|
|
1583
|
+
fontFamily: string;
|
|
1584
|
+
fontSize: number;
|
|
1585
|
+
color: string;
|
|
1586
|
+
};
|
|
1587
|
+
dashboardModuleGoText: {
|
|
1588
|
+
fontFamily: string;
|
|
1589
|
+
fontSize: number;
|
|
1590
|
+
color: string;
|
|
1591
|
+
};
|
|
1592
|
+
dashboardModuleGrid: {
|
|
1593
|
+
flexDirection: string;
|
|
1594
|
+
flexWrap: string;
|
|
1595
|
+
justifyContent: string;
|
|
1596
|
+
gap: number;
|
|
1597
|
+
};
|
|
1598
|
+
dashboardGridItem: {
|
|
1599
|
+
flex: number;
|
|
1600
|
+
minWidth: string;
|
|
1601
|
+
backgroundColor: string;
|
|
1602
|
+
borderRadius: number;
|
|
1603
|
+
paddingVertical: number;
|
|
1604
|
+
paddingHorizontal: number;
|
|
1605
|
+
alignItems: string;
|
|
1606
|
+
justifyContent: string;
|
|
1607
|
+
};
|
|
1608
|
+
dashboardGridVal: {
|
|
1609
|
+
fontFamily: string;
|
|
1610
|
+
fontSize: number;
|
|
1611
|
+
color: string;
|
|
1612
|
+
};
|
|
1613
|
+
dashboardGridLbl: {
|
|
1614
|
+
fontFamily: string;
|
|
1615
|
+
fontSize: number;
|
|
1616
|
+
color: string;
|
|
1617
|
+
marginTop: number;
|
|
1618
|
+
};
|
|
1619
|
+
analyticsCardRow: {};
|
|
1620
|
+
analyticsTopEventsCard: {
|
|
1621
|
+
marginHorizontal: number;
|
|
1622
|
+
marginBottom: number;
|
|
1623
|
+
backgroundColor: string;
|
|
1624
|
+
borderRadius: number;
|
|
1625
|
+
borderWidth: number;
|
|
1626
|
+
borderColor: string;
|
|
1627
|
+
paddingHorizontal: number;
|
|
1628
|
+
paddingVertical: number;
|
|
1629
|
+
shadowColor: string;
|
|
1630
|
+
shadowOpacity: number;
|
|
1631
|
+
shadowRadius: number;
|
|
1632
|
+
shadowOffset: {
|
|
1633
|
+
width: number;
|
|
1634
|
+
height: number;
|
|
1635
|
+
};
|
|
1636
|
+
elevation: number;
|
|
1637
|
+
};
|
|
1638
|
+
analyticsTopEventsHeaderRow: {
|
|
1639
|
+
flexDirection: string;
|
|
1640
|
+
alignItems: string;
|
|
1641
|
+
justifyContent: string;
|
|
1642
|
+
marginBottom: number;
|
|
1643
|
+
};
|
|
1644
|
+
analyticsTopEventsTitle: {
|
|
1645
|
+
fontFamily: string;
|
|
1646
|
+
fontSize: number;
|
|
1647
|
+
color: string;
|
|
1648
|
+
letterSpacing: number;
|
|
1649
|
+
textTransform: string;
|
|
1650
|
+
};
|
|
1651
|
+
analyticsTopEventsSubtitle: {
|
|
1652
|
+
fontFamily: string;
|
|
1653
|
+
fontSize: number;
|
|
1654
|
+
color: string;
|
|
1655
|
+
letterSpacing: number;
|
|
1656
|
+
};
|
|
1657
|
+
analyticsTopEventRow: {
|
|
1658
|
+
flexDirection: string;
|
|
1659
|
+
alignItems: string;
|
|
1660
|
+
marginBottom: number;
|
|
1661
|
+
gap: number;
|
|
1662
|
+
};
|
|
1663
|
+
analyticsTopEventName: {
|
|
1664
|
+
fontFamily: string;
|
|
1665
|
+
fontSize: number;
|
|
1666
|
+
color: string;
|
|
1667
|
+
flex: number;
|
|
1668
|
+
};
|
|
1669
|
+
analyticsTopEventBarWrap: {
|
|
1670
|
+
flex: number;
|
|
1671
|
+
height: number;
|
|
1672
|
+
backgroundColor: string;
|
|
1673
|
+
borderRadius: number;
|
|
1674
|
+
overflow: string;
|
|
1675
|
+
};
|
|
1676
|
+
analyticsTopEventBar: {
|
|
1677
|
+
height: string;
|
|
1678
|
+
borderRadius: number;
|
|
1679
|
+
};
|
|
1680
|
+
analyticsTopEventCount: {
|
|
1681
|
+
fontFamily: string;
|
|
1682
|
+
fontSize: number;
|
|
1683
|
+
color: string;
|
|
1684
|
+
width: number;
|
|
1685
|
+
textAlign: string;
|
|
1686
|
+
};
|
|
1687
|
+
analyticsIconCircle: {
|
|
1688
|
+
width: number;
|
|
1689
|
+
height: number;
|
|
1690
|
+
borderRadius: number;
|
|
1691
|
+
alignItems: string;
|
|
1692
|
+
justifyContent: string;
|
|
1693
|
+
};
|
|
1487
1694
|
};
|
|
1695
|
+
declare const styles: any;
|
|
1696
|
+
export declare const toggleGlobalTheme: (isDark: boolean) => void;
|
|
1488
1697
|
export default styles;
|