@jjlmoya/utils-nautical 1.22.0 → 1.24.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 +2 -2
- package/src/category/i18n/en.ts +1 -1
- package/src/category/index.ts +2 -1
- package/src/data.ts +1 -0
- package/src/entries.ts +4 -1
- package/src/index.ts +1 -0
- package/src/layouts/PreviewLayout.astro +118 -118
- package/src/tests/bibliography_wellformed_export.test.ts +46 -0
- package/src/tests/category_seo_quality.test.ts +74 -0
- package/src/tests/faq_count.test.ts +30 -30
- package/src/tests/i18n_coverage.test.ts +6 -1
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/no_h1_in_components.test.ts +1 -1
- package/src/tests/seo_length.test.ts +29 -29
- package/src/tests/seo_parity.test.ts +2 -2
- package/src/tests/seo_wellformed_export.test.ts +65 -0
- package/src/tests/spanish_leakage.test.ts +175 -175
- package/src/tests/tool_validation.test.ts +54 -51
- package/src/tool/endurance/i18n/fr.ts +205 -205
- package/src/tool/endurance/seo.astro +15 -15
- package/src/tool/hullSpeed/bibliography.astro +14 -0
- package/src/tool/hullSpeed/bibliography.ts +12 -0
- package/src/tool/hullSpeed/component.astro +116 -0
- package/src/tool/hullSpeed/controller.ts +204 -0
- package/src/tool/hullSpeed/dom-views.ts +141 -0
- package/src/tool/hullSpeed/entry.ts +32 -0
- package/src/tool/hullSpeed/evaluator.ts +20 -0
- package/src/tool/hullSpeed/hull-draw.ts +185 -0
- package/src/tool/hullSpeed/i18n/de.ts +199 -0
- package/src/tool/hullSpeed/i18n/en.ts +199 -0
- package/src/tool/hullSpeed/i18n/es.ts +199 -0
- package/src/tool/hullSpeed/i18n/fr.ts +199 -0
- package/src/tool/hullSpeed/i18n/id.ts +199 -0
- package/src/tool/hullSpeed/i18n/it.ts +199 -0
- package/src/tool/hullSpeed/i18n/ja.ts +199 -0
- package/src/tool/hullSpeed/i18n/ko.ts +199 -0
- package/src/tool/hullSpeed/i18n/nl.ts +199 -0
- package/src/tool/hullSpeed/i18n/pl.ts +199 -0
- package/src/tool/hullSpeed/i18n/pt.ts +199 -0
- package/src/tool/hullSpeed/i18n/ru.ts +199 -0
- package/src/tool/hullSpeed/i18n/sv.ts +199 -0
- package/src/tool/hullSpeed/i18n/tr.ts +199 -0
- package/src/tool/hullSpeed/i18n/zh.ts +199 -0
- package/src/tool/hullSpeed/index.ts +11 -0
- package/src/tool/hullSpeed/logic.test.ts +105 -0
- package/src/tool/hullSpeed/logic.ts +116 -0
- package/src/tool/hullSpeed/presets.ts +17 -0
- package/src/tool/hullSpeed/sailboat-hull-speed-calculator.css +504 -0
- package/src/tool/hullSpeed/seo.astro +15 -0
- package/src/tool/hullSpeed/storage.test.ts +23 -0
- package/src/tool/hullSpeed/storage.ts +65 -0
- package/src/tool/hullSpeed/ui.ts +43 -0
- package/src/tool/nauticalConverter/seo.astro +15 -15
- package/src/tool/sailArea/seo.astro +15 -15
- package/src/tool/speedConverter/i18n/fr.ts +259 -259
- package/src/tool/speedConverter/seo.astro +15 -15
- package/src/tool/tideCalculator/seo.astro +15 -15
- package/src/tool/underKeel/seo.astro +15 -15
- package/src/tools.ts +3 -0
package/src/tools.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { SAIL_AREA_TOOL } from './tool/sailArea';
|
|
|
6
6
|
import { SPEED_CONVERTER_TOOL } from './tool/speedConverter';
|
|
7
7
|
import { ENDURANCE_TOOL } from './tool/endurance';
|
|
8
8
|
import { ANCHOR_SCOPE_TOOL } from './tool/anchorScope';
|
|
9
|
+
import { HULL_SPEED_TOOL } from './tool/hullSpeed';
|
|
9
10
|
import type { ToolDefinition } from './types';
|
|
10
11
|
|
|
11
12
|
export const ALL_TOOLS: ToolDefinition[] = [
|
|
@@ -16,6 +17,7 @@ export const ALL_TOOLS: ToolDefinition[] = [
|
|
|
16
17
|
SPEED_CONVERTER_TOOL,
|
|
17
18
|
ENDURANCE_TOOL,
|
|
18
19
|
ANCHOR_SCOPE_TOOL,
|
|
20
|
+
HULL_SPEED_TOOL,
|
|
19
21
|
];
|
|
20
22
|
|
|
21
23
|
export {
|
|
@@ -26,5 +28,6 @@ export {
|
|
|
26
28
|
SPEED_CONVERTER_TOOL,
|
|
27
29
|
ENDURANCE_TOOL,
|
|
28
30
|
ANCHOR_SCOPE_TOOL,
|
|
31
|
+
HULL_SPEED_TOOL,
|
|
29
32
|
};
|
|
30
33
|
|