@jjlmoya/utils-drones 1.20.0 → 1.22.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.
Files changed (36) hide show
  1. package/package.json +2 -2
  2. package/src/category/index.ts +14 -6
  3. package/src/category/seo.astro +1 -1
  4. package/src/entries.ts +13 -1
  5. package/src/tests/locale_completeness.test.ts +2 -2
  6. package/src/tests/tool_validation.test.ts +2 -2
  7. package/src/tool/drone-battery-c-rating-calculator/bibliography.astro +17 -0
  8. package/src/tool/drone-battery-c-rating-calculator/bibliography.ts +16 -0
  9. package/src/tool/drone-battery-c-rating-calculator/component.astro +192 -0
  10. package/src/tool/drone-battery-c-rating-calculator/controller.ts +225 -0
  11. package/src/tool/drone-battery-c-rating-calculator/dom-views.ts +119 -0
  12. package/src/tool/drone-battery-c-rating-calculator/drone-battery-c-rating-calculator.css +300 -0
  13. package/src/tool/drone-battery-c-rating-calculator/entry.ts +27 -0
  14. package/src/tool/drone-battery-c-rating-calculator/evaluator.ts +37 -0
  15. package/src/tool/drone-battery-c-rating-calculator/i18n/de.ts +192 -0
  16. package/src/tool/drone-battery-c-rating-calculator/i18n/en.ts +192 -0
  17. package/src/tool/drone-battery-c-rating-calculator/i18n/es.ts +192 -0
  18. package/src/tool/drone-battery-c-rating-calculator/i18n/fr.ts +192 -0
  19. package/src/tool/drone-battery-c-rating-calculator/i18n/id.ts +192 -0
  20. package/src/tool/drone-battery-c-rating-calculator/i18n/it.ts +192 -0
  21. package/src/tool/drone-battery-c-rating-calculator/i18n/ja.ts +192 -0
  22. package/src/tool/drone-battery-c-rating-calculator/i18n/ko.ts +192 -0
  23. package/src/tool/drone-battery-c-rating-calculator/i18n/nl.ts +192 -0
  24. package/src/tool/drone-battery-c-rating-calculator/i18n/pl.ts +192 -0
  25. package/src/tool/drone-battery-c-rating-calculator/i18n/pt.ts +192 -0
  26. package/src/tool/drone-battery-c-rating-calculator/i18n/ru.ts +192 -0
  27. package/src/tool/drone-battery-c-rating-calculator/i18n/sv.ts +192 -0
  28. package/src/tool/drone-battery-c-rating-calculator/i18n/tr.ts +192 -0
  29. package/src/tool/drone-battery-c-rating-calculator/i18n/zh.ts +192 -0
  30. package/src/tool/drone-battery-c-rating-calculator/index.ts +10 -0
  31. package/src/tool/drone-battery-c-rating-calculator/logic.test.ts +84 -0
  32. package/src/tool/drone-battery-c-rating-calculator/logic.ts +112 -0
  33. package/src/tool/drone-battery-c-rating-calculator/seo.astro +16 -0
  34. package/src/tool/drone-battery-c-rating-calculator/storage.ts +19 -0
  35. package/src/tool/drone-battery-c-rating-calculator/ui.ts +43 -0
  36. package/src/tools.ts +3 -1
package/src/tools.ts CHANGED
@@ -4,6 +4,7 @@ import { ANTENNA_LENGTH_CALCULATOR_TOOL } from './tool/antenna-length-calculator
4
4
  import { GPS_COORDINATES_CONVERTER_TOOL } from './tool/gps-coordinates-converter/index';
5
5
  import { DRONE_POWER_ANALYZER_TOOL } from './tool/drone-power-analyzer/index';
6
6
  import { GSD_FLIGHT_PLANNER_TOOL } from './tool/gsd-flight-planner/index';
7
+ import { DRONE_BATTERY_C_RATING_CALCULATOR_TOOL } from './tool/drone-battery-c-rating-calculator/index';
7
8
  import type { ToolDefinition } from './types';
8
9
 
9
10
  export const ALL_TOOLS: ToolDefinition[] = [
@@ -12,6 +13,7 @@ export const ALL_TOOLS: ToolDefinition[] = [
12
13
  GPS_COORDINATES_CONVERTER_TOOL,
13
14
  DRONE_POWER_ANALYZER_TOOL,
14
15
  GSD_FLIGHT_PLANNER_TOOL,
16
+ DRONE_BATTERY_C_RATING_CALCULATOR_TOOL,
15
17
  ];
16
18
 
17
19
  export {
@@ -20,5 +22,5 @@ export {
20
22
  GPS_COORDINATES_CONVERTER_TOOL,
21
23
  DRONE_POWER_ANALYZER_TOOL,
22
24
  GSD_FLIGHT_PLANNER_TOOL,
25
+ DRONE_BATTERY_C_RATING_CALCULATOR_TOOL,
23
26
  };
24
-