@jjlmoya/utils-drones 1.13.0 → 1.14.0
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/package.json +1 -1
- package/src/tool/gps-coordinates-converter/components/GpsHistory.astro +0 -27
- package/src/tool/gps-coordinates-converter/components/GpsInputs.astro +0 -37
- package/src/tool/gps-coordinates-converter/components/GpsMap.astro +0 -7
- package/src/tool/gps-coordinates-converter/gps-coordinates-converter.css +71 -1
package/package.json
CHANGED
|
@@ -12,30 +12,3 @@ const { ui } = Astro.props;
|
|
|
12
12
|
</div>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
|
-
<style>
|
|
16
|
-
.history-list {
|
|
17
|
-
display: flex;
|
|
18
|
-
flex-direction: column;
|
|
19
|
-
gap: 1.25rem;
|
|
20
|
-
}
|
|
21
|
-
.header-row {
|
|
22
|
-
display: flex;
|
|
23
|
-
justify-content: space-between;
|
|
24
|
-
align-items: center;
|
|
25
|
-
}
|
|
26
|
-
.text-btn {
|
|
27
|
-
background: transparent;
|
|
28
|
-
border: none;
|
|
29
|
-
color: #94a3b8;
|
|
30
|
-
font-size: 0.7rem;
|
|
31
|
-
font-weight: 700;
|
|
32
|
-
cursor: pointer;
|
|
33
|
-
text-transform: uppercase;
|
|
34
|
-
}
|
|
35
|
-
.text-btn:hover { color: #ef4444; }
|
|
36
|
-
.no-history {
|
|
37
|
-
font-size: 0.8rem;
|
|
38
|
-
color: #94a3b8;
|
|
39
|
-
font-style: italic;
|
|
40
|
-
}
|
|
41
|
-
</style>
|
|
@@ -53,40 +53,3 @@ import { Icon } from "astro-icon/components";
|
|
|
53
53
|
</div>
|
|
54
54
|
</div>
|
|
55
55
|
|
|
56
|
-
<style>
|
|
57
|
-
.row-header {
|
|
58
|
-
display: flex;
|
|
59
|
-
justify-content: space-between;
|
|
60
|
-
align-items: center;
|
|
61
|
-
gap: 1rem;
|
|
62
|
-
}
|
|
63
|
-
.loc-btn {
|
|
64
|
-
background: #0ea5e910;
|
|
65
|
-
border: 1px solid #0ea5e930;
|
|
66
|
-
color: #0ea5e9;
|
|
67
|
-
padding: 0.6rem;
|
|
68
|
-
border-radius: 12px;
|
|
69
|
-
cursor: pointer;
|
|
70
|
-
display: flex;
|
|
71
|
-
align-items: center;
|
|
72
|
-
justify-content: center;
|
|
73
|
-
transition: all 0.2s;
|
|
74
|
-
}
|
|
75
|
-
.loc-btn:hover {
|
|
76
|
-
background: #0ea5e920;
|
|
77
|
-
transform: scale(1.05);
|
|
78
|
-
}
|
|
79
|
-
.gms-group {
|
|
80
|
-
display: flex;
|
|
81
|
-
flex-direction: column;
|
|
82
|
-
gap: 0.5rem;
|
|
83
|
-
}
|
|
84
|
-
.compact-inputs {
|
|
85
|
-
display: grid;
|
|
86
|
-
grid-template-columns: repeat(4, 1fr);
|
|
87
|
-
gap: 0.5rem;
|
|
88
|
-
}
|
|
89
|
-
#dd-inputs.compact-inputs {
|
|
90
|
-
grid-template-columns: 1fr 1fr;
|
|
91
|
-
}
|
|
92
|
-
</style>
|
|
@@ -303,4 +303,74 @@
|
|
|
303
303
|
.gps-converter-ui .config-sidebar,
|
|
304
304
|
.gps-converter-ui .main-display { padding: 2rem 1.5rem; }
|
|
305
305
|
.gps-converter-ui .results-area { grid-template-columns: 1fr; }
|
|
306
|
-
}
|
|
306
|
+
}
|
|
307
|
+
/* GpsHistory.astro */
|
|
308
|
+
.history-list {
|
|
309
|
+
display: flex;
|
|
310
|
+
flex-direction: column;
|
|
311
|
+
gap: 1.25rem;
|
|
312
|
+
}
|
|
313
|
+
.header-row {
|
|
314
|
+
display: flex;
|
|
315
|
+
justify-content: space-between;
|
|
316
|
+
align-items: center;
|
|
317
|
+
}
|
|
318
|
+
.text-btn {
|
|
319
|
+
background: transparent;
|
|
320
|
+
border: none;
|
|
321
|
+
color: #94a3b8;
|
|
322
|
+
font-size: 0.7rem;
|
|
323
|
+
font-weight: 700;
|
|
324
|
+
cursor: pointer;
|
|
325
|
+
text-transform: uppercase;
|
|
326
|
+
}
|
|
327
|
+
.text-btn:hover { color: #ef4444; }
|
|
328
|
+
.no-history {
|
|
329
|
+
font-size: 0.8rem;
|
|
330
|
+
color: #94a3b8;
|
|
331
|
+
font-style: italic;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
/* GpsInputs.astro */
|
|
335
|
+
.row-header {
|
|
336
|
+
display: flex;
|
|
337
|
+
justify-content: space-between;
|
|
338
|
+
align-items: center;
|
|
339
|
+
gap: 1rem;
|
|
340
|
+
}
|
|
341
|
+
.loc-btn {
|
|
342
|
+
background: #0ea5e910;
|
|
343
|
+
border: 1px solid #0ea5e930;
|
|
344
|
+
color: #0ea5e9;
|
|
345
|
+
padding: 0.6rem;
|
|
346
|
+
border-radius: 12px;
|
|
347
|
+
cursor: pointer;
|
|
348
|
+
display: flex;
|
|
349
|
+
align-items: center;
|
|
350
|
+
justify-content: center;
|
|
351
|
+
transition: all 0.2s;
|
|
352
|
+
}
|
|
353
|
+
.loc-btn:hover {
|
|
354
|
+
background: #0ea5e920;
|
|
355
|
+
transform: scale(1.05);
|
|
356
|
+
}
|
|
357
|
+
.gms-group {
|
|
358
|
+
display: flex;
|
|
359
|
+
flex-direction: column;
|
|
360
|
+
gap: 0.5rem;
|
|
361
|
+
}
|
|
362
|
+
.compact-inputs {
|
|
363
|
+
display: grid;
|
|
364
|
+
grid-template-columns: repeat(4, 1fr);
|
|
365
|
+
gap: 0.5rem;
|
|
366
|
+
}
|
|
367
|
+
#dd-inputs.compact-inputs {
|
|
368
|
+
grid-template-columns: 1fr 1fr;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
/* GpsMap.astro */
|
|
372
|
+
.hint {
|
|
373
|
+
font-size: 0.75rem;
|
|
374
|
+
color: #94a3b8;
|
|
375
|
+
margin-top: -0.5rem;
|
|
376
|
+
}
|