react-native-map4d-map-dtqg 0.1.5 → 0.1.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/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/android/build.gradle +21 -0
- package/lib/commonjs/components/MFBanDoSo/constants.js +4 -1
- package/lib/commonjs/components/MFBanDoSo/constants.js.map +1 -1
- package/lib/commonjs/components/MFBanDoSo/styles.js +19 -13
- package/lib/commonjs/components/MFBanDoSo/styles.js.map +1 -1
- package/lib/commonjs/components/MFBanDoSo/ui.js +52 -41
- package/lib/commonjs/components/MFBanDoSo/ui.js.map +1 -1
- package/lib/commonjs/components/MFBanDoSo.js +11 -0
- package/lib/commonjs/components/MFBanDoSo.js.map +1 -1
- package/lib/module/components/MFBanDoSo/constants.js +4 -1
- package/lib/module/components/MFBanDoSo/constants.js.map +1 -1
- package/lib/module/components/MFBanDoSo/styles.js +20 -13
- package/lib/module/components/MFBanDoSo/styles.js.map +1 -1
- package/lib/module/components/MFBanDoSo/ui.js +52 -41
- package/lib/module/components/MFBanDoSo/ui.js.map +1 -1
- package/lib/module/components/MFBanDoSo.js +11 -0
- package/lib/module/components/MFBanDoSo.js.map +1 -1
- package/lib/typescript/components/MFBanDoSo/constants.d.ts +3 -0
- package/lib/typescript/components/MFBanDoSo/constants.d.ts.map +1 -1
- package/lib/typescript/components/MFBanDoSo/styles.d.ts +323 -449
- package/lib/typescript/components/MFBanDoSo/styles.d.ts.map +1 -1
- package/lib/typescript/components/MFBanDoSo/ui.d.ts +5 -3
- package/lib/typescript/components/MFBanDoSo/ui.d.ts.map +1 -1
- package/lib/typescript/components/MFBanDoSo.d.ts +1 -0
- package/lib/typescript/components/MFBanDoSo.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/MFBanDoSo/constants.js +6 -0
- package/src/components/MFBanDoSo/styles.js +20 -13
- package/src/components/MFBanDoSo/ui.js +72 -41
- package/src/components/MFBanDoSo.js +12 -0
|
@@ -1,462 +1,336 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
export { height_2 as height };
|
|
42
|
-
let borderRadius_1: number;
|
|
43
|
-
export { borderRadius_1 as borderRadius };
|
|
44
|
-
let borderWidth_1: number;
|
|
45
|
-
export { borderWidth_1 as borderWidth };
|
|
46
|
-
let borderColor_2: string;
|
|
47
|
-
export { borderColor_2 as borderColor };
|
|
48
|
-
let backgroundColor_2: string;
|
|
49
|
-
export { backgroundColor_2 as backgroundColor };
|
|
50
|
-
export let transform: ({
|
|
1
|
+
export const styles: StyleSheet.NamedStyles<any> | StyleSheet.NamedStyles<{
|
|
2
|
+
hiddenButton: {
|
|
3
|
+
display: "none";
|
|
4
|
+
};
|
|
5
|
+
layerButton: {
|
|
6
|
+
position: "absolute";
|
|
7
|
+
top: number;
|
|
8
|
+
right: number;
|
|
9
|
+
width: number;
|
|
10
|
+
height: number;
|
|
11
|
+
borderRadius: number;
|
|
12
|
+
borderWidth: number;
|
|
13
|
+
borderColor: string;
|
|
14
|
+
backgroundColor: string;
|
|
15
|
+
alignItems: "center";
|
|
16
|
+
justifyContent: "center";
|
|
17
|
+
shadowColor: string;
|
|
18
|
+
shadowOpacity: number;
|
|
19
|
+
shadowRadius: number;
|
|
20
|
+
shadowOffset: {
|
|
21
|
+
width: number;
|
|
22
|
+
height: number;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
layerButtonActive: {
|
|
26
|
+
borderColor: string;
|
|
27
|
+
backgroundColor: string;
|
|
28
|
+
};
|
|
29
|
+
legendButton: {
|
|
30
|
+
top: number;
|
|
31
|
+
};
|
|
32
|
+
layerIconBoxPrimary: {
|
|
33
|
+
position: "absolute";
|
|
34
|
+
width: number;
|
|
35
|
+
height: number;
|
|
36
|
+
borderRadius: number;
|
|
37
|
+
borderWidth: number;
|
|
38
|
+
borderColor: string;
|
|
39
|
+
backgroundColor: string;
|
|
40
|
+
transform: ({
|
|
51
41
|
translateX: number;
|
|
52
42
|
translateY?: undefined;
|
|
53
43
|
} | {
|
|
54
44
|
translateY: number;
|
|
55
45
|
translateX?: undefined;
|
|
56
46
|
})[];
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
let borderWidth_2: number;
|
|
68
|
-
export { borderWidth_2 as borderWidth };
|
|
69
|
-
let borderColor_3: string;
|
|
70
|
-
export { borderColor_3 as borderColor };
|
|
71
|
-
let backgroundColor_3: string;
|
|
72
|
-
export { backgroundColor_3 as backgroundColor };
|
|
73
|
-
let transform_1: ({
|
|
47
|
+
};
|
|
48
|
+
layerIconBoxSecondary: {
|
|
49
|
+
position: "absolute";
|
|
50
|
+
width: number;
|
|
51
|
+
height: number;
|
|
52
|
+
borderRadius: number;
|
|
53
|
+
borderWidth: number;
|
|
54
|
+
borderColor: string;
|
|
55
|
+
backgroundColor: string;
|
|
56
|
+
transform: ({
|
|
74
57
|
translateX: number;
|
|
75
58
|
translateY?: undefined;
|
|
76
59
|
} | {
|
|
77
60
|
translateY: number;
|
|
78
61
|
translateX?: undefined;
|
|
79
62
|
})[];
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
let legendContainer: any;
|
|
354
|
-
namespace legendPanel {
|
|
355
|
-
let position_4: "absolute";
|
|
356
|
-
export { position_4 as position };
|
|
357
|
-
let right_1: number;
|
|
358
|
-
export { right_1 as right };
|
|
359
|
-
let bottom_1: number;
|
|
360
|
-
export { bottom_1 as bottom };
|
|
361
|
-
let width_13: number;
|
|
362
|
-
export { width_13 as width };
|
|
363
|
-
export let maxHeight: number;
|
|
364
|
-
let backgroundColor_13: string;
|
|
365
|
-
export { backgroundColor_13 as backgroundColor };
|
|
366
|
-
let borderRadius_8: number;
|
|
367
|
-
export { borderRadius_8 as borderRadius };
|
|
368
|
-
let paddingHorizontal_2: number;
|
|
369
|
-
export { paddingHorizontal_2 as paddingHorizontal };
|
|
370
|
-
export let paddingVertical: number;
|
|
371
|
-
let shadowColor_2: string;
|
|
372
|
-
export { shadowColor_2 as shadowColor };
|
|
373
|
-
let shadowOpacity_2: number;
|
|
374
|
-
export { shadowOpacity_2 as shadowOpacity };
|
|
375
|
-
let shadowRadius_2: number;
|
|
376
|
-
export { shadowRadius_2 as shadowRadius };
|
|
377
|
-
export namespace shadowOffset_2 {
|
|
378
|
-
let width_14: number;
|
|
379
|
-
export { width_14 as width };
|
|
380
|
-
let height_11: number;
|
|
381
|
-
export { height_11 as height };
|
|
382
|
-
}
|
|
383
|
-
export { shadowOffset_2 as shadowOffset };
|
|
384
|
-
}
|
|
385
|
-
namespace legendTitle {
|
|
386
|
-
let fontSize_5: number;
|
|
387
|
-
export { fontSize_5 as fontSize };
|
|
388
|
-
let fontWeight_5: "600";
|
|
389
|
-
export { fontWeight_5 as fontWeight };
|
|
390
|
-
let color_5: string;
|
|
391
|
-
export { color_5 as color };
|
|
392
|
-
let marginBottom_4: number;
|
|
393
|
-
export { marginBottom_4 as marginBottom };
|
|
394
|
-
}
|
|
395
|
-
namespace legendDivider {
|
|
396
|
-
let height_12: number;
|
|
397
|
-
export { height_12 as height };
|
|
398
|
-
let backgroundColor_14: string;
|
|
399
|
-
export { backgroundColor_14 as backgroundColor };
|
|
400
|
-
let marginBottom_5: number;
|
|
401
|
-
export { marginBottom_5 as marginBottom };
|
|
402
|
-
}
|
|
403
|
-
namespace legendList {
|
|
404
|
-
let maxHeight_1: number;
|
|
405
|
-
export { maxHeight_1 as maxHeight };
|
|
406
|
-
let marginLeft_1: number;
|
|
407
|
-
export { marginLeft_1 as marginLeft };
|
|
408
|
-
let marginRight_4: number;
|
|
409
|
-
export { marginRight_4 as marginRight };
|
|
410
|
-
}
|
|
411
|
-
namespace legendListInner {
|
|
412
|
-
let paddingBottom_2: number;
|
|
413
|
-
export { paddingBottom_2 as paddingBottom };
|
|
414
|
-
let paddingHorizontal_3: number;
|
|
415
|
-
export { paddingHorizontal_3 as paddingHorizontal };
|
|
416
|
-
}
|
|
417
|
-
namespace legendRow {
|
|
418
|
-
let flexDirection_4: "row";
|
|
419
|
-
export { flexDirection_4 as flexDirection };
|
|
420
|
-
let alignItems_8: "center";
|
|
421
|
-
export { alignItems_8 as alignItems };
|
|
422
|
-
let minHeight_3: number;
|
|
423
|
-
export { minHeight_3 as minHeight };
|
|
424
|
-
let marginBottom_6: number;
|
|
425
|
-
export { marginBottom_6 as marginBottom };
|
|
426
|
-
let paddingRight_1: number;
|
|
427
|
-
export { paddingRight_1 as paddingRight };
|
|
428
|
-
}
|
|
429
|
-
namespace legendLabel {
|
|
430
|
-
let flex_5: number;
|
|
431
|
-
export { flex_5 as flex };
|
|
432
|
-
let fontSize_6: number;
|
|
433
|
-
export { fontSize_6 as fontSize };
|
|
434
|
-
let color_6: string;
|
|
435
|
-
export { color_6 as color };
|
|
436
|
-
let fontWeight_6: "500";
|
|
437
|
-
export { fontWeight_6 as fontWeight };
|
|
438
|
-
}
|
|
439
|
-
namespace legendDot {
|
|
440
|
-
let width_15: number;
|
|
441
|
-
export { width_15 as width };
|
|
442
|
-
let height_13: number;
|
|
443
|
-
export { height_13 as height };
|
|
444
|
-
let borderRadius_9: number;
|
|
445
|
-
export { borderRadius_9 as borderRadius };
|
|
446
|
-
let borderWidth_5: number;
|
|
447
|
-
export { borderWidth_5 as borderWidth };
|
|
448
|
-
let marginRight_5: number;
|
|
449
|
-
export { marginRight_5 as marginRight };
|
|
450
|
-
let backgroundColor_15: string;
|
|
451
|
-
export { backgroundColor_15 as backgroundColor };
|
|
452
|
-
let borderColor_9: string;
|
|
453
|
-
export { borderColor_9 as borderColor };
|
|
454
|
-
}
|
|
455
|
-
namespace legendDotUnchecked {
|
|
456
|
-
let backgroundColor_16: string;
|
|
457
|
-
export { backgroundColor_16 as backgroundColor };
|
|
458
|
-
let borderColor_10: string;
|
|
459
|
-
export { borderColor_10 as borderColor };
|
|
460
|
-
}
|
|
461
|
-
}
|
|
63
|
+
};
|
|
64
|
+
legendToggleIconRow: {
|
|
65
|
+
width: number;
|
|
66
|
+
flexDirection: "row";
|
|
67
|
+
alignItems: "center";
|
|
68
|
+
marginVertical: number;
|
|
69
|
+
};
|
|
70
|
+
legendToggleIconDot: {
|
|
71
|
+
width: number;
|
|
72
|
+
height: number;
|
|
73
|
+
borderRadius: number;
|
|
74
|
+
backgroundColor: string;
|
|
75
|
+
marginRight: number;
|
|
76
|
+
};
|
|
77
|
+
legendToggleIconLine: {
|
|
78
|
+
flex: number;
|
|
79
|
+
height: number;
|
|
80
|
+
borderRadius: number;
|
|
81
|
+
backgroundColor: string;
|
|
82
|
+
};
|
|
83
|
+
selectorContainer: {
|
|
84
|
+
position: string;
|
|
85
|
+
top: number;
|
|
86
|
+
left: number;
|
|
87
|
+
right: number;
|
|
88
|
+
height: string;
|
|
89
|
+
};
|
|
90
|
+
selectorBackdrop: {
|
|
91
|
+
backgroundColor: string;
|
|
92
|
+
position: string;
|
|
93
|
+
top: number;
|
|
94
|
+
left: number;
|
|
95
|
+
right: number;
|
|
96
|
+
height: string;
|
|
97
|
+
};
|
|
98
|
+
selectorBackdropPressable: {
|
|
99
|
+
position: string;
|
|
100
|
+
top: number;
|
|
101
|
+
left: number;
|
|
102
|
+
right: number;
|
|
103
|
+
height: string;
|
|
104
|
+
};
|
|
105
|
+
selectorPanel: {
|
|
106
|
+
position: "absolute";
|
|
107
|
+
top: number;
|
|
108
|
+
left: number;
|
|
109
|
+
height: "100%";
|
|
110
|
+
width: "76%";
|
|
111
|
+
maxWidth: number;
|
|
112
|
+
minWidth: number;
|
|
113
|
+
backgroundColor: string;
|
|
114
|
+
borderTopRightRadius: number;
|
|
115
|
+
borderBottomRightRadius: number;
|
|
116
|
+
paddingHorizontal: number;
|
|
117
|
+
paddingTop: number;
|
|
118
|
+
paddingBottom: number;
|
|
119
|
+
shadowColor: string;
|
|
120
|
+
shadowOpacity: number;
|
|
121
|
+
shadowRadius: number;
|
|
122
|
+
shadowOffset: {
|
|
123
|
+
width: number;
|
|
124
|
+
height: number;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
selectorHeader: {
|
|
128
|
+
marginBottom: number;
|
|
129
|
+
};
|
|
130
|
+
selectorTitle: {
|
|
131
|
+
fontSize: number;
|
|
132
|
+
fontWeight: "700";
|
|
133
|
+
color: string;
|
|
134
|
+
};
|
|
135
|
+
selectorList: {
|
|
136
|
+
flex: number;
|
|
137
|
+
};
|
|
138
|
+
selectorGrid: {
|
|
139
|
+
paddingBottom: number;
|
|
140
|
+
};
|
|
141
|
+
selectorGroupSection: {
|
|
142
|
+
marginBottom: number;
|
|
143
|
+
};
|
|
144
|
+
selectorGroupHeader: {
|
|
145
|
+
flexDirection: "row";
|
|
146
|
+
alignItems: "center";
|
|
147
|
+
minHeight: number;
|
|
148
|
+
paddingHorizontal: number;
|
|
149
|
+
marginBottom: number;
|
|
150
|
+
};
|
|
151
|
+
selectorGroupCheckAction: {
|
|
152
|
+
width: number;
|
|
153
|
+
alignItems: "center";
|
|
154
|
+
justifyContent: "center";
|
|
155
|
+
marginRight: number;
|
|
156
|
+
};
|
|
157
|
+
selectorGroupToggleAction: {
|
|
158
|
+
flex: number;
|
|
159
|
+
minHeight: number;
|
|
160
|
+
flexDirection: "row";
|
|
161
|
+
alignItems: "center";
|
|
162
|
+
marginLeft: number;
|
|
163
|
+
paddingLeft: number;
|
|
164
|
+
};
|
|
165
|
+
selectorGroupChevronTriangle: {
|
|
166
|
+
width: number;
|
|
167
|
+
height: number;
|
|
168
|
+
marginRight: number;
|
|
169
|
+
};
|
|
170
|
+
selectorGroupChevronCollapsed: {
|
|
171
|
+
borderTopWidth: number;
|
|
172
|
+
borderBottomWidth: number;
|
|
173
|
+
borderLeftWidth: number;
|
|
174
|
+
borderTopColor: string;
|
|
175
|
+
borderBottomColor: string;
|
|
176
|
+
borderLeftColor: string;
|
|
177
|
+
};
|
|
178
|
+
selectorGroupChevronExpanded: {
|
|
179
|
+
borderLeftWidth: number;
|
|
180
|
+
borderRightWidth: number;
|
|
181
|
+
borderTopWidth: number;
|
|
182
|
+
borderLeftColor: string;
|
|
183
|
+
borderRightColor: string;
|
|
184
|
+
borderTopColor: string;
|
|
185
|
+
marginTop: number;
|
|
186
|
+
};
|
|
187
|
+
selectorGroupTitle: {
|
|
188
|
+
flex: number;
|
|
189
|
+
fontSize: number;
|
|
190
|
+
fontWeight: "700";
|
|
191
|
+
color: string;
|
|
192
|
+
};
|
|
193
|
+
selectorGroupBody: {
|
|
194
|
+
paddingLeft: number;
|
|
195
|
+
paddingTop: number;
|
|
196
|
+
};
|
|
197
|
+
selectorRow: {
|
|
198
|
+
flexDirection: "row";
|
|
199
|
+
alignItems: "center";
|
|
200
|
+
minHeight: number;
|
|
201
|
+
marginBottom: number;
|
|
202
|
+
paddingRight: number;
|
|
203
|
+
};
|
|
204
|
+
selectorLabel: {
|
|
205
|
+
flex: number;
|
|
206
|
+
fontSize: number;
|
|
207
|
+
color: string;
|
|
208
|
+
lineHeight: number;
|
|
209
|
+
fontWeight: "500";
|
|
210
|
+
};
|
|
211
|
+
checkboxOuter: {
|
|
212
|
+
width: number;
|
|
213
|
+
height: number;
|
|
214
|
+
borderRadius: number;
|
|
215
|
+
borderWidth: number;
|
|
216
|
+
marginRight: number;
|
|
217
|
+
marginTop: number;
|
|
218
|
+
borderColor: string;
|
|
219
|
+
alignItems: "center";
|
|
220
|
+
justifyContent: "center";
|
|
221
|
+
backgroundColor: string;
|
|
222
|
+
};
|
|
223
|
+
checkboxOuterChecked: {
|
|
224
|
+
borderColor: string;
|
|
225
|
+
backgroundColor: string;
|
|
226
|
+
};
|
|
227
|
+
checkboxMark: {
|
|
228
|
+
fontSize: number;
|
|
229
|
+
fontWeight: "700";
|
|
230
|
+
color: string;
|
|
231
|
+
lineHeight: number;
|
|
232
|
+
};
|
|
233
|
+
groupCheckOuter: {
|
|
234
|
+
width: number;
|
|
235
|
+
height: number;
|
|
236
|
+
borderRadius: number;
|
|
237
|
+
borderWidth: number;
|
|
238
|
+
borderColor: string;
|
|
239
|
+
backgroundColor: string;
|
|
240
|
+
alignItems: "center";
|
|
241
|
+
justifyContent: "center";
|
|
242
|
+
};
|
|
243
|
+
groupCheckOuterChecked: {
|
|
244
|
+
borderColor: string;
|
|
245
|
+
backgroundColor: string;
|
|
246
|
+
};
|
|
247
|
+
groupCheckOuterIndeterminate: {
|
|
248
|
+
borderColor: string;
|
|
249
|
+
backgroundColor: string;
|
|
250
|
+
};
|
|
251
|
+
groupCheckMark: {
|
|
252
|
+
fontSize: number;
|
|
253
|
+
fontWeight: "700";
|
|
254
|
+
color: string;
|
|
255
|
+
lineHeight: number;
|
|
256
|
+
};
|
|
257
|
+
groupCheckIndeterminateMark: {
|
|
258
|
+
width: number;
|
|
259
|
+
height: number;
|
|
260
|
+
borderRadius: number;
|
|
261
|
+
backgroundColor: string;
|
|
262
|
+
};
|
|
263
|
+
legendContainer: {
|
|
264
|
+
position: string;
|
|
265
|
+
top: number;
|
|
266
|
+
left: number;
|
|
267
|
+
right: number;
|
|
268
|
+
height: string;
|
|
269
|
+
};
|
|
270
|
+
legendPanel: {
|
|
271
|
+
position: "absolute";
|
|
272
|
+
right: number;
|
|
273
|
+
bottom: number;
|
|
274
|
+
width: number;
|
|
275
|
+
maxHeight: number;
|
|
276
|
+
backgroundColor: string;
|
|
277
|
+
borderRadius: number;
|
|
278
|
+
paddingHorizontal: number;
|
|
279
|
+
paddingVertical: number;
|
|
280
|
+
shadowColor: string;
|
|
281
|
+
shadowOpacity: number;
|
|
282
|
+
shadowRadius: number;
|
|
283
|
+
shadowOffset: {
|
|
284
|
+
width: number;
|
|
285
|
+
height: number;
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
legendTitle: {
|
|
289
|
+
fontSize: number;
|
|
290
|
+
fontWeight: "600";
|
|
291
|
+
color: string;
|
|
292
|
+
marginBottom: number;
|
|
293
|
+
};
|
|
294
|
+
legendDivider: {
|
|
295
|
+
height: number;
|
|
296
|
+
backgroundColor: string;
|
|
297
|
+
marginBottom: number;
|
|
298
|
+
};
|
|
299
|
+
legendList: {
|
|
300
|
+
maxHeight: number;
|
|
301
|
+
marginLeft: number;
|
|
302
|
+
marginRight: number;
|
|
303
|
+
};
|
|
304
|
+
legendListInner: {
|
|
305
|
+
paddingBottom: number;
|
|
306
|
+
paddingHorizontal: number;
|
|
307
|
+
};
|
|
308
|
+
legendRow: {
|
|
309
|
+
flexDirection: "row";
|
|
310
|
+
alignItems: "center";
|
|
311
|
+
minHeight: number;
|
|
312
|
+
marginBottom: number;
|
|
313
|
+
paddingRight: number;
|
|
314
|
+
};
|
|
315
|
+
legendLabel: {
|
|
316
|
+
flex: number;
|
|
317
|
+
fontSize: number;
|
|
318
|
+
color: string;
|
|
319
|
+
fontWeight: "500";
|
|
320
|
+
};
|
|
321
|
+
legendDot: {
|
|
322
|
+
width: number;
|
|
323
|
+
height: number;
|
|
324
|
+
borderRadius: number;
|
|
325
|
+
borderWidth: number;
|
|
326
|
+
marginRight: number;
|
|
327
|
+
backgroundColor: string;
|
|
328
|
+
borderColor: string;
|
|
329
|
+
};
|
|
330
|
+
legendDotUnchecked: {
|
|
331
|
+
backgroundColor: string;
|
|
332
|
+
borderColor: string;
|
|
333
|
+
};
|
|
334
|
+
}>;
|
|
335
|
+
import { StyleSheet } from 'react-native';
|
|
462
336
|
//# sourceMappingURL=styles.d.ts.map
|