@jjlmoya/utils-drones 1.34.0 → 1.36.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 (34) hide show
  1. package/package.json +1 -1
  2. package/src/entries.ts +4 -0
  3. package/src/index.ts +1 -0
  4. package/src/tests/locale_completeness.test.ts +2 -2
  5. package/src/tests/seo_translation_completeness.test.ts +18 -12
  6. package/src/tests/tool_validation.test.ts +2 -2
  7. package/src/tool/fpv-drone-speed-calculator/bibliography.astro +6 -0
  8. package/src/tool/fpv-drone-speed-calculator/bibliography.ts +14 -0
  9. package/src/tool/fpv-drone-speed-calculator/component.astro +115 -0
  10. package/src/tool/fpv-drone-speed-calculator/controller.ts +105 -0
  11. package/src/tool/fpv-drone-speed-calculator/dom-views.ts +80 -0
  12. package/src/tool/fpv-drone-speed-calculator/entry.ts +27 -0
  13. package/src/tool/fpv-drone-speed-calculator/fpv-drone-speed-calculator.css +558 -0
  14. package/src/tool/fpv-drone-speed-calculator/i18n/de.ts +20 -0
  15. package/src/tool/fpv-drone-speed-calculator/i18n/en.ts +47 -0
  16. package/src/tool/fpv-drone-speed-calculator/i18n/es.ts +40 -0
  17. package/src/tool/fpv-drone-speed-calculator/i18n/fr.ts +13 -0
  18. package/src/tool/fpv-drone-speed-calculator/i18n/id.ts +13 -0
  19. package/src/tool/fpv-drone-speed-calculator/i18n/it.ts +13 -0
  20. package/src/tool/fpv-drone-speed-calculator/i18n/ja.ts +13 -0
  21. package/src/tool/fpv-drone-speed-calculator/i18n/ko.ts +13 -0
  22. package/src/tool/fpv-drone-speed-calculator/i18n/nl.ts +13 -0
  23. package/src/tool/fpv-drone-speed-calculator/i18n/pl.ts +13 -0
  24. package/src/tool/fpv-drone-speed-calculator/i18n/pt.ts +13 -0
  25. package/src/tool/fpv-drone-speed-calculator/i18n/ru.ts +13 -0
  26. package/src/tool/fpv-drone-speed-calculator/i18n/sv.ts +13 -0
  27. package/src/tool/fpv-drone-speed-calculator/i18n/tr.ts +13 -0
  28. package/src/tool/fpv-drone-speed-calculator/i18n/zh.ts +13 -0
  29. package/src/tool/fpv-drone-speed-calculator/index.ts +11 -0
  30. package/src/tool/fpv-drone-speed-calculator/logic.test.ts +53 -0
  31. package/src/tool/fpv-drone-speed-calculator/logic.ts +126 -0
  32. package/src/tool/fpv-drone-speed-calculator/seo.astro +16 -0
  33. package/src/tool/fpv-drone-speed-calculator/ui.ts +47 -0
  34. package/src/tools.ts +3 -0
@@ -0,0 +1,47 @@
1
+ export interface FpvDroneSpeedUI extends Record<string, string> {
2
+ presetsLabel: string;
3
+ presetRacing: string;
4
+ presetFreestyle: string;
5
+ presetCruiser: string;
6
+ unitsLabel: string;
7
+ metricUnit: string;
8
+ imperialUnit: string;
9
+ inputsLabel: string;
10
+ motorKvLabel: string;
11
+ batteryVoltageLabel: string;
12
+ propellerPitchLabel: string;
13
+ efficiencyLabel: string;
14
+ aircraftMassLabel: string;
15
+ calculateFromLabel: string;
16
+ resultsLabel: string;
17
+ estimatedSpeedLabel: string;
18
+ pitchSpeedLabel: string;
19
+ loadedRpmLabel: string;
20
+ noLoadRpmLabel: string;
21
+ slipLabel: string;
22
+ loadEffectLabel: string;
23
+ speedLaneLabel: string;
24
+ sensitivityLabel: string;
25
+ lowerPitchLabel: string;
26
+ selectedPitchLabel: string;
27
+ higherPitchLabel: string;
28
+ diagnosisLabel: string;
29
+ diagnosisPlanning: string;
30
+ diagnosisHighSlip: string;
31
+ diagnosisHeavyLoad: string;
32
+ diagnosisOverspeed: string;
33
+ diagnosisPlanningAdvice: string;
34
+ diagnosisHighSlipAdvice: string;
35
+ diagnosisHeavyLoadAdvice: string;
36
+ diagnosisOverspeedAdvice: string;
37
+ assumptionsLabel: string;
38
+ assumptionsText: string;
39
+ safetyText: string;
40
+ speedAxisStart: string;
41
+ speedAxisEnd: string;
42
+ noLoadCaption: string;
43
+ loadedCaption: string;
44
+ slipCaption: string;
45
+ massUnit: string;
46
+ speedUnit: string;
47
+ }
package/src/tools.ts CHANGED
@@ -7,6 +7,7 @@ import { GSD_FLIGHT_PLANNER_TOOL } from './tool/gsd-flight-planner/index';
7
7
  import { DRONE_BATTERY_C_RATING_CALCULATOR_TOOL } from './tool/drone-battery-c-rating-calculator/index';
8
8
  import { FPV_DRONE_THRUST_TO_WEIGHT_RATIO_TOOL } from './tool/fpv-drone-thrust-to-weight-ratio/index';
9
9
  import { DRONE_MOTOR_PROPELLER_CALCULATOR_TOOL } from './tool/drone-motor-propeller-calculator/index';
10
+ import { FPV_DRONE_SPEED_CALCULATOR_TOOL } from './tool/fpv-drone-speed-calculator/index';
10
11
  import type { ToolDefinition } from './types';
11
12
 
12
13
  export const ALL_TOOLS: ToolDefinition[] = [
@@ -18,6 +19,7 @@ export const ALL_TOOLS: ToolDefinition[] = [
18
19
  DRONE_BATTERY_C_RATING_CALCULATOR_TOOL,
19
20
  FPV_DRONE_THRUST_TO_WEIGHT_RATIO_TOOL,
20
21
  DRONE_MOTOR_PROPELLER_CALCULATOR_TOOL,
22
+ FPV_DRONE_SPEED_CALCULATOR_TOOL,
21
23
  ];
22
24
 
23
25
  export {
@@ -29,4 +31,5 @@ export {
29
31
  DRONE_BATTERY_C_RATING_CALCULATOR_TOOL,
30
32
  FPV_DRONE_THRUST_TO_WEIGHT_RATIO_TOOL,
31
33
  DRONE_MOTOR_PROPELLER_CALCULATOR_TOOL,
34
+ FPV_DRONE_SPEED_CALCULATOR_TOOL,
32
35
  };