@jjlmoya/utils-drones 1.10.0 → 1.12.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.
@@ -271,312 +271,5 @@ const { ui } = Astro.props;
271
271
  checkLeaflet();
272
272
  </script>
273
273
 
274
- <style>
275
- .gps-converter-ui {
276
- --gps-accent: #0ea5e9;
277
- --gps-accent-rgb: 14, 165, 233;
278
- --gps-accent-glow: rgba(14, 165, 233, 0.15);
279
- --gps-bg: #fff;
280
- --gps-bg-muted: #f8fafc;
281
- --gps-bg-surface: #f1f5f9;
282
- --gps-bg-overlay: #fdfdfd;
283
- --gps-text: #1e293b;
284
- --gps-text-muted: #64748b;
285
- --gps-text-dim: #94a3b8;
286
- --gps-border: #e2e8f0;
287
- --gps-border-light: #f1f5f9;
288
- --gps-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.08);
289
- --gps-danger: #ef4444;
290
- --gps-danger-bg: rgba(239, 68, 68, 0.1);
291
274
 
292
- width: 100%;
293
- max-width: 1200px;
294
- margin: 2rem auto;
295
- padding: 0 1.5rem;
296
- }
297
-
298
- :global([data-theme="dark"]) .gps-converter-ui,
299
- :global(.theme-dark) .gps-converter-ui {
300
- --gps-bg: #0f172a;
301
- --gps-bg-muted: #1e293b;
302
- --gps-bg-surface: #334155;
303
- --gps-bg-overlay: #1e293b;
304
- --gps-text: #f1f5f9;
305
- --gps-text-muted: #94a3b8;
306
- --gps-text-dim: #64748b;
307
- --gps-border: #334155;
308
- --gps-border-light: #1e293b;
309
- --gps-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
310
- }
311
-
312
- .gps-converter-ui .tech-mega-card {
313
- background: var(--gps-bg);
314
- backdrop-filter: blur(24px) saturate(180%);
315
- -webkit-backdrop-filter: blur(24px) saturate(180%);
316
- border: 1px solid var(--gps-border);
317
- border-radius: 40px;
318
- box-shadow: var(--gps-shadow);
319
- position: relative;
320
- overflow: hidden;
321
- }
322
-
323
- .gps-converter-ui .tech-mega-card::before {
324
- content: '';
325
- position: absolute;
326
- top: 0;
327
- left: 0;
328
- right: 0;
329
- height: 6px;
330
- background: linear-gradient(90deg, #0ea5e9, #6366f1, #0ea5e9);
331
- background-size: 200% 100%;
332
- animation: gradient-shift-gps 4s linear infinite;
333
- z-index: 10;
334
- }
335
-
336
- @keyframes gradient-shift-gps {
337
- 0% { background-position: 0% 50%; }
338
- 100% { background-position: 200% 50%; }
339
- }
340
-
341
- .gps-converter-ui .card-grid {
342
- display: grid;
343
- grid-template-columns: 400px 1fr;
344
- min-height: 700px;
345
- }
346
-
347
- .gps-converter-ui .config-sidebar {
348
- padding: 3.5rem 3rem;
349
- background: var(--gps-bg-overlay);
350
- border-right: 1px solid var(--gps-border-light);
351
- display: flex;
352
- flex-direction: column;
353
- gap: 3rem;
354
- }
355
-
356
- .gps-converter-ui .main-display {
357
- padding: 3.5rem 3rem;
358
- display: flex;
359
- flex-direction: column;
360
- gap: 3rem;
361
- background: var(--gps-bg);
362
- }
363
-
364
- .gps-converter-ui .divider {
365
- height: 1px;
366
- width: 100%;
367
- background: linear-gradient(90deg, transparent, var(--gps-border-light), transparent);
368
- }
369
-
370
- .gps-converter-ui :global(.tech-section) {
371
- display: flex;
372
- flex-direction: column;
373
- gap: 1.5rem;
374
- }
375
-
376
- .gps-converter-ui :global(.section-title) {
377
- font-size: 0.75rem;
378
- font-weight: 800;
379
- color: var(--gps-text-muted);
380
- text-transform: uppercase;
381
- letter-spacing: 0.15em;
382
- }
383
-
384
- .gps-converter-ui :global(.field-label) {
385
- font-size: 0.7rem;
386
- font-weight: 800;
387
- color: var(--gps-text-dim);
388
- text-transform: uppercase;
389
- letter-spacing: 0.05em;
390
- margin-bottom: 0.5rem;
391
- display: block;
392
- }
393
-
394
- .gps-converter-ui :global(.tech-input) {
395
- width: 100%;
396
- padding: 1rem 1.25rem;
397
- background: var(--gps-bg-surface);
398
- border: 1px solid var(--gps-border);
399
- border-radius: 16px;
400
- font-weight: 700;
401
- color: var(--gps-text);
402
- font-size: 1rem;
403
- transition: all 0.3s ease;
404
- }
405
-
406
- .gps-converter-ui :global(.tech-input:focus) {
407
- outline: none;
408
- border-color: var(--gps-accent);
409
- box-shadow: 0 0 0 4px var(--gps-accent-glow);
410
- background: var(--gps-bg);
411
- }
412
-
413
- .gps-converter-ui :global(.mode-switch) {
414
- display: flex;
415
- background: var(--gps-bg-surface);
416
- padding: 0.4rem;
417
- border-radius: 18px;
418
- gap: 0.25rem;
419
- }
420
-
421
- .gps-converter-ui :global(.mode-btn) {
422
- flex: 1;
423
- padding: 0.75rem;
424
- border-radius: 14px;
425
- border: none;
426
- background: transparent;
427
- font-size: 0.75rem;
428
- font-weight: 800;
429
- color: var(--gps-text-muted);
430
- cursor: pointer;
431
- transition: all 0.3s ease;
432
- }
433
-
434
- .gps-converter-ui :global(.mode-btn.active) {
435
- background: var(--gps-bg);
436
- color: var(--gps-accent);
437
- box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
438
- }
439
-
440
- .gps-converter-ui :global(.map-container) {
441
- max-width: 100%;
442
- height: 400px;
443
- border-radius: 32px;
444
- overflow: hidden;
445
- background: var(--gps-bg-surface);
446
- border: 1px solid var(--gps-border-light);
447
- }
448
-
449
- .gps-converter-ui :global(.results-area) {
450
- display: grid;
451
- grid-template-columns: repeat(2, 1fr);
452
- gap: 2rem;
453
- }
454
-
455
- .gps-converter-ui :global(.result-box) {
456
- background: var(--gps-bg-overlay);
457
- border: 1px solid var(--gps-border-light);
458
- border-radius: 28px;
459
- padding: 2.5rem;
460
- display: flex;
461
- flex-direction: column;
462
- gap: 1rem;
463
- transition: all 0.3s ease;
464
- }
465
-
466
- .gps-converter-ui :global(.result-box:hover) {
467
- transform: translateY(-5px);
468
- box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
469
- border-color: var(--gps-accent);
470
- }
471
-
472
- .gps-converter-ui :global(.res-header) {
473
- display: flex;
474
- justify-content: space-between;
475
- align-items: center;
476
- }
477
-
478
- .gps-converter-ui :global(.copy-btn) {
479
- background: var(--gps-bg-surface);
480
- border: 1px solid var(--gps-border);
481
- color: var(--gps-text-muted);
482
- padding: 0.5rem 1rem;
483
- border-radius: 12px;
484
- font-size: 0.7rem;
485
- font-weight: 800;
486
- cursor: pointer;
487
- display: flex;
488
- align-items: center;
489
- gap: 0.5rem;
490
- transition: all 0.3s ease;
491
- }
492
-
493
- .gps-converter-ui :global(.copy-btn:hover) {
494
- background: var(--gps-accent);
495
- color: white;
496
- border-color: var(--gps-accent);
497
- }
498
-
499
- .gps-converter-ui :global(.val-display) {
500
- font-size: 1.5rem;
501
- font-weight: 900;
502
- color: var(--gps-text);
503
- word-break: break-all;
504
- letter-spacing: -0.01em;
505
- }
506
-
507
- .gps-converter-ui :global(.history-item) {
508
- padding: 1.25rem 1.5rem;
509
- background: var(--gps-bg-surface);
510
- border-radius: 20px;
511
- display: flex;
512
- justify-content: space-between;
513
- align-items: center;
514
- transition: all 0.3s ease;
515
- border: 1px solid transparent;
516
- }
517
-
518
- .gps-converter-ui :global(.history-item:hover) {
519
- background: var(--gps-bg);
520
- border-color: var(--gps-accent);
521
- transform: translateX(5px);
522
- }
523
-
524
- .gps-converter-ui :global(.hist-info) {
525
- display: flex;
526
- flex-direction: column;
527
- cursor: pointer;
528
- flex: 1;
529
- }
530
-
531
- .gps-converter-ui :global(.hist-coords) {
532
- font-size: 0.9rem;
533
- font-weight: 800;
534
- color: var(--gps-text);
535
- }
536
-
537
- .gps-converter-ui :global(.hist-time) {
538
- font-size: 0.7rem;
539
- color: var(--gps-text-dim);
540
- font-weight: 700;
541
- text-transform: uppercase;
542
- }
543
-
544
- .gps-converter-ui :global(.action-btn) {
545
- background: var(--gps-bg-overlay);
546
- border: 1px solid var(--gps-border);
547
- padding: 0.6rem;
548
- border-radius: 12px;
549
- color: var(--gps-text-dim);
550
- cursor: pointer;
551
- display: flex;
552
- align-items: center;
553
- justify-content: center;
554
- transition: all 0.2s ease;
555
- }
556
-
557
- .gps-converter-ui :global(.no-history) {
558
- text-align: center;
559
- padding: 3rem;
560
- color: var(--gps-text-dim);
561
- font-style: italic;
562
- font-size: 0.9rem;
563
- }
564
-
565
- @media (max-width: 1200px) {
566
- .gps-converter-ui .card-grid {
567
- grid-template-columns: 1fr;
568
- }
569
- .gps-converter-ui .config-sidebar {
570
- border-right: none;
571
- border-bottom: 1px solid var(--gps-border-light);
572
- }
573
- }
574
-
575
- @media (max-width: 600px) {
576
- .gps-converter-ui { padding: 0.5rem; }
577
- .gps-converter-ui .config-sidebar,
578
- .gps-converter-ui .main-display { padding: 2rem 1.5rem; }
579
- .gps-converter-ui :global(.results-area) { grid-template-columns: 1fr; }
580
- }
581
- </style>
582
275
 
@@ -0,0 +1,29 @@
1
+ import type { DronesToolEntry, ToolLocaleContent } from '../../types';
2
+
3
+ export interface GpsCoordinatesConverterUI {
4
+ [key: string]: string;
5
+ }
6
+
7
+ export type GpsCoordinatesConverterLocaleContent = ToolLocaleContent<GpsCoordinatesConverterUI>;
8
+
9
+ export const gpsCoordinatesConverter: DronesToolEntry<GpsCoordinatesConverterUI> = {
10
+ id: 'gps-coordinates-converter',
11
+ icons: { bg: 'mdi:map-marker', fg: 'mdi:crosshairs-gps' },
12
+ i18n: {
13
+ es: () => import('./i18n/es').then((m) => m.content),
14
+ en: () => import('./i18n/en').then((m) => m.content),
15
+ fr: () => import('./i18n/fr').then((m) => m.content),
16
+ de: () => import('./i18n/de').then((m) => m.content),
17
+ it: () => import('./i18n/it').then((m) => m.content),
18
+ pt: () => import('./i18n/pt').then((m) => m.content),
19
+ nl: () => import('./i18n/nl').then((m) => m.content),
20
+ pl: () => import('./i18n/pl').then((m) => m.content),
21
+ ru: () => import('./i18n/ru').then((m) => m.content),
22
+ ja: () => import('./i18n/ja').then((m) => m.content),
23
+ ko: () => import('./i18n/ko').then((m) => m.content),
24
+ zh: () => import('./i18n/zh').then((m) => m.content),
25
+ tr: () => import('./i18n/tr').then((m) => m.content),
26
+ sv: () => import('./i18n/sv').then((m) => m.content),
27
+ id: () => import('./i18n/id').then((m) => m.content),
28
+ },
29
+ };
@@ -0,0 +1,306 @@
1
+ .gps-converter-ui {
2
+ --gps-accent: #0ea5e9;
3
+ --gps-accent-rgb: 14, 165, 233;
4
+ --gps-accent-glow: rgba(14, 165, 233, 0.15);
5
+ --gps-bg: #fff;
6
+ --gps-bg-muted: #f8fafc;
7
+ --gps-bg-surface: #f1f5f9;
8
+ --gps-bg-overlay: #fdfdfd;
9
+ --gps-text: #1e293b;
10
+ --gps-text-muted: #64748b;
11
+ --gps-text-dim: #94a3b8;
12
+ --gps-border: #e2e8f0;
13
+ --gps-border-light: #f1f5f9;
14
+ --gps-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.08);
15
+ --gps-danger: #ef4444;
16
+ --gps-danger-bg: rgba(239, 68, 68, 0.1);
17
+
18
+ width: 100%;
19
+ max-width: 1200px;
20
+ margin: 2rem auto;
21
+ padding: 0 1.5rem;
22
+ }
23
+
24
+ :global([data-theme="dark"]) .gps-converter-ui,
25
+ :global(.theme-dark) .gps-converter-ui {
26
+ --gps-bg: #0f172a;
27
+ --gps-bg-muted: #1e293b;
28
+ --gps-bg-surface: #334155;
29
+ --gps-bg-overlay: #1e293b;
30
+ --gps-text: #f1f5f9;
31
+ --gps-text-muted: #94a3b8;
32
+ --gps-text-dim: #64748b;
33
+ --gps-border: #334155;
34
+ --gps-border-light: #1e293b;
35
+ --gps-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
36
+ }
37
+
38
+ .gps-converter-ui .tech-mega-card {
39
+ background: var(--gps-bg);
40
+ backdrop-filter: blur(24px) saturate(180%);
41
+ -webkit-backdrop-filter: blur(24px) saturate(180%);
42
+ border: 1px solid var(--gps-border);
43
+ border-radius: 40px;
44
+ box-shadow: var(--gps-shadow);
45
+ position: relative;
46
+ overflow: hidden;
47
+ }
48
+
49
+ .gps-converter-ui .tech-mega-card::before {
50
+ content: '';
51
+ position: absolute;
52
+ top: 0;
53
+ left: 0;
54
+ right: 0;
55
+ height: 6px;
56
+ background: linear-gradient(90deg, #0ea5e9, #6366f1, #0ea5e9);
57
+ background-size: 200% 100%;
58
+ animation: gradient-shift-gps 4s linear infinite;
59
+ z-index: 10;
60
+ }
61
+
62
+ @keyframes gradient-shift-gps {
63
+ 0% { background-position: 0% 50%; }
64
+ 100% { background-position: 200% 50%; }
65
+ }
66
+
67
+ .gps-converter-ui .card-grid {
68
+ display: grid;
69
+ grid-template-columns: 400px 1fr;
70
+ min-height: 700px;
71
+ }
72
+
73
+ .gps-converter-ui .config-sidebar {
74
+ padding: 3.5rem 3rem;
75
+ background: var(--gps-bg-overlay);
76
+ border-right: 1px solid var(--gps-border-light);
77
+ display: flex;
78
+ flex-direction: column;
79
+ gap: 3rem;
80
+ }
81
+
82
+ .gps-converter-ui .main-display {
83
+ padding: 3.5rem 3rem;
84
+ display: flex;
85
+ flex-direction: column;
86
+ gap: 3rem;
87
+ background: var(--gps-bg);
88
+ }
89
+
90
+ .gps-converter-ui .divider {
91
+ height: 1px;
92
+ width: 100%;
93
+ background: linear-gradient(90deg, transparent, var(--gps-border-light), transparent);
94
+ }
95
+
96
+ .gps-converter-ui :global(.tech-section) {
97
+ display: flex;
98
+ flex-direction: column;
99
+ gap: 1.5rem;
100
+ }
101
+
102
+ .gps-converter-ui :global(.section-title) {
103
+ font-size: 0.75rem;
104
+ font-weight: 800;
105
+ color: var(--gps-text-muted);
106
+ text-transform: uppercase;
107
+ letter-spacing: 0.15em;
108
+ }
109
+
110
+ .gps-converter-ui :global(.field-label) {
111
+ font-size: 0.7rem;
112
+ font-weight: 800;
113
+ color: var(--gps-text-dim);
114
+ text-transform: uppercase;
115
+ letter-spacing: 0.05em;
116
+ margin-bottom: 0.5rem;
117
+ display: block;
118
+ }
119
+
120
+ .gps-converter-ui :global(.tech-input) {
121
+ width: 100%;
122
+ padding: 1rem 1.25rem;
123
+ background: var(--gps-bg-surface);
124
+ border: 1px solid var(--gps-border);
125
+ border-radius: 16px;
126
+ font-weight: 700;
127
+ color: var(--gps-text);
128
+ font-size: 1rem;
129
+ transition: all 0.3s ease;
130
+ }
131
+
132
+ .gps-converter-ui :global(.tech-input:focus) {
133
+ outline: none;
134
+ border-color: var(--gps-accent);
135
+ box-shadow: 0 0 0 4px var(--gps-accent-glow);
136
+ background: var(--gps-bg);
137
+ }
138
+
139
+ .gps-converter-ui :global(.mode-switch) {
140
+ display: flex;
141
+ background: var(--gps-bg-surface);
142
+ padding: 0.4rem;
143
+ border-radius: 18px;
144
+ gap: 0.25rem;
145
+ }
146
+
147
+ .gps-converter-ui :global(.mode-btn) {
148
+ flex: 1;
149
+ padding: 0.75rem;
150
+ border-radius: 14px;
151
+ border: none;
152
+ background: transparent;
153
+ font-size: 0.75rem;
154
+ font-weight: 800;
155
+ color: var(--gps-text-muted);
156
+ cursor: pointer;
157
+ transition: all 0.3s ease;
158
+ }
159
+
160
+ .gps-converter-ui :global(.mode-btn.active) {
161
+ background: var(--gps-bg);
162
+ color: var(--gps-accent);
163
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
164
+ }
165
+
166
+ .gps-converter-ui :global(.map-container) {
167
+ max-width: 100%;
168
+ height: 400px;
169
+ border-radius: 32px;
170
+ overflow: hidden;
171
+ background: var(--gps-bg-surface);
172
+ border: 1px solid var(--gps-border-light);
173
+ }
174
+
175
+ .gps-converter-ui :global(.results-area) {
176
+ display: grid;
177
+ grid-template-columns: repeat(2, 1fr);
178
+ gap: 2rem;
179
+ }
180
+
181
+ .gps-converter-ui :global(.result-box) {
182
+ background: var(--gps-bg-overlay);
183
+ border: 1px solid var(--gps-border-light);
184
+ border-radius: 28px;
185
+ padding: 2.5rem;
186
+ display: flex;
187
+ flex-direction: column;
188
+ gap: 1rem;
189
+ transition: all 0.3s ease;
190
+ }
191
+
192
+ .gps-converter-ui :global(.result-box:hover) {
193
+ transform: translateY(-5px);
194
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
195
+ border-color: var(--gps-accent);
196
+ }
197
+
198
+ .gps-converter-ui :global(.res-header) {
199
+ display: flex;
200
+ justify-content: space-between;
201
+ align-items: center;
202
+ }
203
+
204
+ .gps-converter-ui :global(.copy-btn) {
205
+ background: var(--gps-bg-surface);
206
+ border: 1px solid var(--gps-border);
207
+ color: var(--gps-text-muted);
208
+ padding: 0.5rem 1rem;
209
+ border-radius: 12px;
210
+ font-size: 0.7rem;
211
+ font-weight: 800;
212
+ cursor: pointer;
213
+ display: flex;
214
+ align-items: center;
215
+ gap: 0.5rem;
216
+ transition: all 0.3s ease;
217
+ }
218
+
219
+ .gps-converter-ui :global(.copy-btn:hover) {
220
+ background: var(--gps-accent);
221
+ color: white;
222
+ border-color: var(--gps-accent);
223
+ }
224
+
225
+ .gps-converter-ui :global(.val-display) {
226
+ font-size: 1.5rem;
227
+ font-weight: 900;
228
+ color: var(--gps-text);
229
+ word-break: break-all;
230
+ letter-spacing: -0.01em;
231
+ }
232
+
233
+ .gps-converter-ui :global(.history-item) {
234
+ padding: 1.25rem 1.5rem;
235
+ background: var(--gps-bg-surface);
236
+ border-radius: 20px;
237
+ display: flex;
238
+ justify-content: space-between;
239
+ align-items: center;
240
+ transition: all 0.3s ease;
241
+ border: 1px solid transparent;
242
+ }
243
+
244
+ .gps-converter-ui :global(.history-item:hover) {
245
+ background: var(--gps-bg);
246
+ border-color: var(--gps-accent);
247
+ transform: translateX(5px);
248
+ }
249
+
250
+ .gps-converter-ui :global(.hist-info) {
251
+ display: flex;
252
+ flex-direction: column;
253
+ cursor: pointer;
254
+ flex: 1;
255
+ }
256
+
257
+ .gps-converter-ui :global(.hist-coords) {
258
+ font-size: 0.9rem;
259
+ font-weight: 800;
260
+ color: var(--gps-text);
261
+ }
262
+
263
+ .gps-converter-ui :global(.hist-time) {
264
+ font-size: 0.7rem;
265
+ color: var(--gps-text-dim);
266
+ font-weight: 700;
267
+ text-transform: uppercase;
268
+ }
269
+
270
+ .gps-converter-ui :global(.action-btn) {
271
+ background: var(--gps-bg-overlay);
272
+ border: 1px solid var(--gps-border);
273
+ padding: 0.6rem;
274
+ border-radius: 12px;
275
+ color: var(--gps-text-dim);
276
+ cursor: pointer;
277
+ display: flex;
278
+ align-items: center;
279
+ justify-content: center;
280
+ transition: all 0.2s ease;
281
+ }
282
+
283
+ .gps-converter-ui :global(.no-history) {
284
+ text-align: center;
285
+ padding: 3rem;
286
+ color: var(--gps-text-dim);
287
+ font-style: italic;
288
+ font-size: 0.9rem;
289
+ }
290
+
291
+ @media (max-width: 1200px) {
292
+ .gps-converter-ui .card-grid {
293
+ grid-template-columns: 1fr;
294
+ }
295
+ .gps-converter-ui .config-sidebar {
296
+ border-right: none;
297
+ border-bottom: 1px solid var(--gps-border-light);
298
+ }
299
+ }
300
+
301
+ @media (max-width: 600px) {
302
+ .gps-converter-ui { padding: 0.5rem; }
303
+ .gps-converter-ui .config-sidebar,
304
+ .gps-converter-ui .main-display { padding: 2rem 1.5rem; }
305
+ .gps-converter-ui :global(.results-area) { grid-template-columns: 1fr; }
306
+ }
@@ -1,33 +1,5 @@
1
- import type { DronesToolEntry, ToolDefinition, ToolLocaleContent } from '../../types';
2
-
3
- export interface GpsCoordinatesConverterUI {
4
- [key: string]: string;
5
- }
6
-
7
- export type GpsCoordinatesConverterLocaleContent = ToolLocaleContent<GpsCoordinatesConverterUI>;
8
-
9
- export const gpsCoordinatesConverter: DronesToolEntry<GpsCoordinatesConverterUI> = {
10
- id: 'gps-coordinates-converter',
11
- icons: { bg: 'mdi:map-marker', fg: 'mdi:crosshairs-gps' },
12
- i18n: {
13
- es: () => import('./i18n/es').then((m) => m.content),
14
- en: () => import('./i18n/en').then((m) => m.content),
15
- fr: () => import('./i18n/fr').then((m) => m.content),
16
- de: () => import('./i18n/de').then((m) => m.content),
17
- it: () => import('./i18n/it').then((m) => m.content),
18
- pt: () => import('./i18n/pt').then((m) => m.content),
19
- nl: () => import('./i18n/nl').then((m) => m.content),
20
- pl: () => import('./i18n/pl').then((m) => m.content),
21
- ru: () => import('./i18n/ru').then((m) => m.content),
22
- ja: () => import('./i18n/ja').then((m) => m.content),
23
- ko: () => import('./i18n/ko').then((m) => m.content),
24
- zh: () => import('./i18n/zh').then((m) => m.content),
25
- tr: () => import('./i18n/tr').then((m) => m.content),
26
- sv: () => import('./i18n/sv').then((m) => m.content),
27
- id: () => import('./i18n/id').then((m) => m.content),
28
- },
29
- };
30
-
1
+ import { gpsCoordinatesConverter } from './entry';
2
+ export * from './entry';
31
3
  export const GPS_COORDINATES_CONVERTER_TOOL: ToolDefinition = {
32
4
  entry: gpsCoordinatesConverter,
33
5
  Component: () => import('./component.astro'),
package/src/tools.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export { ALL_ENTRIES } from './entries';
1
2
  import { DRONE_FLIGHT_TIME_TOOL } from './tool/drone-flight-time/index';
2
3
  import { ANTENNA_LENGTH_CALCULATOR_TOOL } from './tool/antenna-length-calculator/index';
3
4
  import { GPS_COORDINATES_CONVERTER_TOOL } from './tool/gps-coordinates-converter/index';
@@ -15,4 +16,3 @@ export {
15
16
  GPS_COORDINATES_CONVERTER_TOOL,
16
17
  };
17
18
 
18
- export const ALL_ENTRIES = ALL_TOOLS.map(t => t.entry);