@jjlmoya/utils-pets 1.21.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.
- package/package.json +1 -1
- package/src/category/index.ts +2 -1
- package/src/entries.ts +4 -1
- package/src/index.ts +1 -0
- package/src/tests/i18n_coverage.test.ts +5 -2
- package/src/tests/locale_completeness.test.ts +1 -1
- package/src/tests/qa-test-helpers.ts +32 -0
- package/src/tests/qa_bibliography_links.test.ts +40 -0
- package/src/tests/qa_claim_evidence.test.ts +69 -0
- package/src/tests/qa_logic_reference_coverage.test.ts +46 -0
- package/src/tests/qa_runtime_i18n.test.ts +100 -0
- package/src/tests/tool_validation.test.ts +3 -3
- package/src/tool/petCarrierCrateSizePlanner/bibliography.astro +6 -0
- package/src/tool/petCarrierCrateSizePlanner/bibliography.ts +12 -0
- package/src/tool/petCarrierCrateSizePlanner/component.astro +89 -0
- package/src/tool/petCarrierCrateSizePlanner/controller.ts +128 -0
- package/src/tool/petCarrierCrateSizePlanner/dom-views.ts +96 -0
- package/src/tool/petCarrierCrateSizePlanner/entry.ts +27 -0
- package/src/tool/petCarrierCrateSizePlanner/evaluator.ts +14 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/de.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/en.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/es.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/fr.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/id.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/it.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/ja.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/ko.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/nl.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/pl.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/pt.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/ru.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/sv.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/tr.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/i18n/zh.ts +171 -0
- package/src/tool/petCarrierCrateSizePlanner/index.ts +12 -0
- package/src/tool/petCarrierCrateSizePlanner/logic.test.ts +49 -0
- package/src/tool/petCarrierCrateSizePlanner/logic.ts +77 -0
- package/src/tool/petCarrierCrateSizePlanner/pet-carrier-crate-size-planner.css +639 -0
- package/src/tool/petCarrierCrateSizePlanner/seo.astro +14 -0
- package/src/tool/petCarrierCrateSizePlanner/storage.ts +31 -0
- package/src/tool/petCarrierCrateSizePlanner/ui.ts +59 -0
- package/src/tools.ts +3 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export interface PetCarrierCrateSizePlannerUI {
|
|
2
|
+
[key: string]: string;
|
|
3
|
+
heroEyebrow: string;
|
|
4
|
+
journeyHint: string;
|
|
5
|
+
unitLegend: string;
|
|
6
|
+
speciesStep: string;
|
|
7
|
+
metricUnit: string;
|
|
8
|
+
imperialUnit: string;
|
|
9
|
+
speciesLegend: string;
|
|
10
|
+
speciesDog: string;
|
|
11
|
+
speciesCat: string;
|
|
12
|
+
modeLegend: string;
|
|
13
|
+
modeCar: string;
|
|
14
|
+
modeAir: string;
|
|
15
|
+
measurementsLegend: string;
|
|
16
|
+
noseTailLabel: string;
|
|
17
|
+
noseTailHint: string;
|
|
18
|
+
elbowHeightLabel: string;
|
|
19
|
+
shoulderWidthLabel: string;
|
|
20
|
+
standingHeightLabel: string;
|
|
21
|
+
beddingLabel: string;
|
|
22
|
+
weightLabel: string;
|
|
23
|
+
cmUnit: string;
|
|
24
|
+
inchUnit: string;
|
|
25
|
+
kgUnit: string;
|
|
26
|
+
lbUnit: string;
|
|
27
|
+
snubNosedLabel: string;
|
|
28
|
+
snubNosedHint: string;
|
|
29
|
+
presetLegend: string;
|
|
30
|
+
presetCat: string;
|
|
31
|
+
presetSmallDog: string;
|
|
32
|
+
presetMediumDog: string;
|
|
33
|
+
presetLargeDog: string;
|
|
34
|
+
resultEyebrow: string;
|
|
35
|
+
resultTitle: string;
|
|
36
|
+
resultDimensionLabel: string;
|
|
37
|
+
lengthLabel: string;
|
|
38
|
+
widthLabel: string;
|
|
39
|
+
heightLabel: string;
|
|
40
|
+
petWeightLabel: string;
|
|
41
|
+
journeyLabel: string;
|
|
42
|
+
statusComfort: string;
|
|
43
|
+
statusAirReview: string;
|
|
44
|
+
statusSnub: string;
|
|
45
|
+
resultDetail: string;
|
|
46
|
+
checklistTitle: string;
|
|
47
|
+
checklistStand: string;
|
|
48
|
+
checklistTurn: string;
|
|
49
|
+
checklistLie: string;
|
|
50
|
+
checklistAirline: string;
|
|
51
|
+
invalidInput: string;
|
|
52
|
+
noteTitle: string;
|
|
53
|
+
noteText: string;
|
|
54
|
+
methodTitle: string;
|
|
55
|
+
methodText: string;
|
|
56
|
+
blueprintLabel: string;
|
|
57
|
+
dimensionInside: string;
|
|
58
|
+
checkMark: string;
|
|
59
|
+
}
|
package/src/tools.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { PET_RATION_TOOL } from './tool/petRation';
|
|
|
4
4
|
import { PET_GESTATION_TOOL } from './tool/petGestation';
|
|
5
5
|
import { PET_TOXICITY_TOOL } from './tool/petToxicity';
|
|
6
6
|
import { PET_WATER_INTAKE_TOOL } from './tool/petWaterIntake';
|
|
7
|
+
import { PET_CARRIER_CRATE_SIZE_PLANNER_TOOL } from './tool/petCarrierCrateSizePlanner';
|
|
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
|
PET_GESTATION_TOOL,
|
|
13
14
|
PET_TOXICITY_TOOL,
|
|
14
15
|
PET_WATER_INTAKE_TOOL,
|
|
16
|
+
PET_CARRIER_CRATE_SIZE_PLANNER_TOOL,
|
|
15
17
|
];
|
|
16
18
|
|
|
17
19
|
export {
|
|
@@ -20,4 +22,5 @@ export {
|
|
|
20
22
|
PET_GESTATION_TOOL,
|
|
21
23
|
PET_TOXICITY_TOOL,
|
|
22
24
|
PET_WATER_INTAKE_TOOL,
|
|
25
|
+
PET_CARRIER_CRATE_SIZE_PLANNER_TOOL,
|
|
23
26
|
};
|