@jjlmoya/utils-forensic-science 1.1.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 +69 -0
- package/scripts/crystal-lattice-catalog-translations.mjs +459 -0
- package/scripts/postinstall.mjs +27 -0
- package/scripts/sync-crystal-lattice-i18n.mjs +50 -0
- package/src/category/i18n/de.ts +55 -0
- package/src/category/i18n/en.ts +55 -0
- package/src/category/i18n/es.ts +55 -0
- package/src/category/i18n/fr.ts +55 -0
- package/src/category/i18n/id.ts +55 -0
- package/src/category/i18n/it.ts +55 -0
- package/src/category/i18n/ja.ts +56 -0
- package/src/category/i18n/ko.ts +56 -0
- package/src/category/i18n/nl.ts +55 -0
- package/src/category/i18n/pl.ts +55 -0
- package/src/category/i18n/pt.ts +55 -0
- package/src/category/i18n/ru.ts +55 -0
- package/src/category/i18n/sv.ts +55 -0
- package/src/category/i18n/tr.ts +55 -0
- package/src/category/i18n/zh.ts +56 -0
- package/src/category/index.ts +48 -0
- package/src/category/seo.astro +15 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +10 -0
- package/src/entries.ts +48 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +29 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +162 -0
- package/src/pages/[locale].astro +261 -0
- package/src/pages/index.astro +3 -0
- package/src/tests/diacritics_density.test.ts +140 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/i18n_coverage.test.ts +36 -0
- package/src/tests/inverted_punctuation.test.ts +84 -0
- package/src/tests/locale_completeness.test.ts +24 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_en_dash.test.ts +70 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/script_density.test.ts +94 -0
- package/src/tests/seo_length.test.ts +46 -0
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/slug_language_code_format.test.ts +23 -0
- package/src/tests/slug_uniqueness.test.ts +81 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +16 -0
- package/src/tests/widmark.test.ts +28 -0
- package/src/tool/forensic-age-estimator/bibliography.astro +14 -0
- package/src/tool/forensic-age-estimator/bibliography.ts +16 -0
- package/src/tool/forensic-age-estimator/component.astro +321 -0
- package/src/tool/forensic-age-estimator/dental-skeletal-third-molar-age-estimator.css +634 -0
- package/src/tool/forensic-age-estimator/entry.ts +32 -0
- package/src/tool/forensic-age-estimator/i18n/de.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/en.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/es.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/fr.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/id.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/it.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/ja.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/ko.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/nl.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/pl.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/pt.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/ru.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/sv.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/tr.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/zh.ts +246 -0
- package/src/tool/forensic-age-estimator/index.ts +11 -0
- package/src/tool/forensic-age-estimator/logic.ts +81 -0
- package/src/tool/forensic-age-estimator/seo.astro +15 -0
- package/src/tool/forensic-blood-test-simulator/bibliography.astro +6 -0
- package/src/tool/forensic-blood-test-simulator/bibliography.ts +12 -0
- package/src/tool/forensic-blood-test-simulator/component.astro +168 -0
- package/src/tool/forensic-blood-test-simulator/dom-utils.ts +40 -0
- package/src/tool/forensic-blood-test-simulator/entry.ts +32 -0
- package/src/tool/forensic-blood-test-simulator/forensic-presumptive-blood-testing-luminol-kastle-meyer-simulator.css +532 -0
- package/src/tool/forensic-blood-test-simulator/helpers.ts +16 -0
- package/src/tool/forensic-blood-test-simulator/i18n/de.ts +185 -0
- package/src/tool/forensic-blood-test-simulator/i18n/en.ts +185 -0
- package/src/tool/forensic-blood-test-simulator/i18n/es.ts +185 -0
- package/src/tool/forensic-blood-test-simulator/i18n/fr.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/id.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/it.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/ja.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/ko.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/nl.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/pl.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/pt.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/ru.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/sv.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/tr.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/zh.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/index.ts +11 -0
- package/src/tool/forensic-blood-test-simulator/logic.ts +174 -0
- package/src/tool/forensic-blood-test-simulator/script.ts +192 -0
- package/src/tool/forensic-blood-test-simulator/seo.astro +15 -0
- package/src/tool/forensic-fiber-comparison-microscope/bibliography.astro +6 -0
- package/src/tool/forensic-fiber-comparison-microscope/bibliography.ts +16 -0
- package/src/tool/forensic-fiber-comparison-microscope/component.astro +146 -0
- package/src/tool/forensic-fiber-comparison-microscope/entry.ts +32 -0
- package/src/tool/forensic-fiber-comparison-microscope/forensic-fiber-comparison-microscope.css +629 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/de.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/en.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/es.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/fr.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/id.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/it.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/ja.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/ko.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/nl.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/pl.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/pt.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/ru.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/sv.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/tr.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/zh.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/index.ts +11 -0
- package/src/tool/forensic-fiber-comparison-microscope/logic.ts +244 -0
- package/src/tool/forensic-fiber-comparison-microscope/render.ts +265 -0
- package/src/tool/forensic-fiber-comparison-microscope/seo.astro +15 -0
- package/src/tool/forensic-fiber-comparison-microscope/view.ts +267 -0
- package/src/tool/forensic-glass-becke-line-simulator/bibliography.astro +6 -0
- package/src/tool/forensic-glass-becke-line-simulator/bibliography.ts +16 -0
- package/src/tool/forensic-glass-becke-line-simulator/component.astro +81 -0
- package/src/tool/forensic-glass-becke-line-simulator/entry.ts +32 -0
- package/src/tool/forensic-glass-becke-line-simulator/forensic-glass-becke-line-simulator.css +392 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/de.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/en.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/es.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/fr.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/id.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/it.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/ja.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/ko.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/nl.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/pl.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/pt.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/ru.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/sv.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/tr.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/zh.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/index.ts +11 -0
- package/src/tool/forensic-glass-becke-line-simulator/logic.ts +100 -0
- package/src/tool/forensic-glass-becke-line-simulator/seo.astro +15 -0
- package/src/tool/forensic-glass-becke-line-simulator/view.ts +281 -0
- package/src/tool/forensic-image-authenticity-analyzer/bibliography.astro +9 -0
- package/src/tool/forensic-image-authenticity-analyzer/bibliography.ts +7 -0
- package/src/tool/forensic-image-authenticity-analyzer/component.astro +250 -0
- package/src/tool/forensic-image-authenticity-analyzer/entry.ts +29 -0
- package/src/tool/forensic-image-authenticity-analyzer/forensic-image-metadata-authenticity-analyzer.css +679 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/de.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/en.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/es.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/fr.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/id.ts +76 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/it.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/ja.ts +72 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/ko.ts +72 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/nl.ts +75 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/pl.ts +75 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/pt.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/ru.ts +75 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/sv.ts +76 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/tr.ts +76 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/zh.ts +71 -0
- package/src/tool/forensic-image-authenticity-analyzer/index.ts +11 -0
- package/src/tool/forensic-image-authenticity-analyzer/logic.ts +283 -0
- package/src/tool/forensic-image-authenticity-analyzer/seo.astro +10 -0
- package/src/tool/forensic-microcrystal-drug-simulator/bibliography.astro +6 -0
- package/src/tool/forensic-microcrystal-drug-simulator/bibliography.ts +12 -0
- package/src/tool/forensic-microcrystal-drug-simulator/component.astro +240 -0
- package/src/tool/forensic-microcrystal-drug-simulator/entry.ts +32 -0
- package/src/tool/forensic-microcrystal-drug-simulator/forensic-microcrystal-drug-simulator.css +430 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/de.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/en.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/es.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/fr.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/id.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/it.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/ja.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/ko.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/nl.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/pl.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/pt.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/ru.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/sv.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/tr.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/zh.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/index.ts +11 -0
- package/src/tool/forensic-microcrystal-drug-simulator/logic.ts +189 -0
- package/src/tool/forensic-microcrystal-drug-simulator/seo.astro +15 -0
- package/src/tool/forensic-sex-determinator/bibliography.astro +14 -0
- package/src/tool/forensic-sex-determinator/bibliography.ts +12 -0
- package/src/tool/forensic-sex-determinator/component.astro +463 -0
- package/src/tool/forensic-sex-determinator/entry.ts +32 -0
- package/src/tool/forensic-sex-determinator/forensic-sex-determinator.css +413 -0
- package/src/tool/forensic-sex-determinator/i18n/de.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/en.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/es.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/fr.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/id.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/it.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/ja.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/ko.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/nl.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/pl.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/pt.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/ru.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/sv.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/tr.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/zh.ts +211 -0
- package/src/tool/forensic-sex-determinator/index.ts +11 -0
- package/src/tool/forensic-sex-determinator/logic.ts +89 -0
- package/src/tool/forensic-sex-determinator/seo.astro +15 -0
- package/src/tool/forensic-stature-estimator/bibliography.astro +14 -0
- package/src/tool/forensic-stature-estimator/bibliography.ts +12 -0
- package/src/tool/forensic-stature-estimator/component.astro +49 -0
- package/src/tool/forensic-stature-estimator/components/EstimationPanel.astro +65 -0
- package/src/tool/forensic-stature-estimator/components/OsteometricBoard.astro +39 -0
- package/src/tool/forensic-stature-estimator/components/OsteometricSelector.astro +109 -0
- package/src/tool/forensic-stature-estimator/dom-utils.ts +71 -0
- package/src/tool/forensic-stature-estimator/entry.ts +32 -0
- package/src/tool/forensic-stature-estimator/forensic-stature-estimator.css +689 -0
- package/src/tool/forensic-stature-estimator/helpers.ts +51 -0
- package/src/tool/forensic-stature-estimator/i18n/de.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/en.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/es.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/fr.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/id.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/it.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/ja.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/ko.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/nl.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/pl.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/pt.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/ru.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/sv.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/tr.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/zh.ts +196 -0
- package/src/tool/forensic-stature-estimator/index.ts +11 -0
- package/src/tool/forensic-stature-estimator/logic.ts +119 -0
- package/src/tool/forensic-stature-estimator/script.ts +288 -0
- package/src/tool/forensic-stature-estimator/seo.astro +15 -0
- package/src/tool/forensic-tlc-ink-simulator/bibliography.astro +6 -0
- package/src/tool/forensic-tlc-ink-simulator/bibliography.ts +16 -0
- package/src/tool/forensic-tlc-ink-simulator/component.astro +245 -0
- package/src/tool/forensic-tlc-ink-simulator/entry.ts +32 -0
- package/src/tool/forensic-tlc-ink-simulator/forensic-tlc-ink-simulator.css +462 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/de.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/en.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/es.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/fr.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/id.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/it.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/ja.ts +235 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/ko.ts +235 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/nl.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/pl.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/pt.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/ru.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/sv.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/tr.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/zh.ts +235 -0
- package/src/tool/forensic-tlc-ink-simulator/index.ts +11 -0
- package/src/tool/forensic-tlc-ink-simulator/logic.ts +152 -0
- package/src/tool/forensic-tlc-ink-simulator/seo.astro +15 -0
- package/src/tool/gsr-dispersion-calculator/bibliography.astro +6 -0
- package/src/tool/gsr-dispersion-calculator/bibliography.ts +16 -0
- package/src/tool/gsr-dispersion-calculator/component.astro +294 -0
- package/src/tool/gsr-dispersion-calculator/entry.ts +32 -0
- package/src/tool/gsr-dispersion-calculator/gsr-dispersion-calculator.css +305 -0
- package/src/tool/gsr-dispersion-calculator/i18n/de.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/en.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/es.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/fr.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/id.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/it.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/ja.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/ko.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/nl.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/pl.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/pt.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/ru.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/sv.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/tr.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/zh.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/index.ts +11 -0
- package/src/tool/gsr-dispersion-calculator/logic.ts +148 -0
- package/src/tool/gsr-dispersion-calculator/seo.astro +15 -0
- package/src/tool/widmark-alcohol-simulator/bibliography.astro +14 -0
- package/src/tool/widmark-alcohol-simulator/bibliography.ts +12 -0
- package/src/tool/widmark-alcohol-simulator/component.astro +453 -0
- package/src/tool/widmark-alcohol-simulator/entry.ts +32 -0
- package/src/tool/widmark-alcohol-simulator/i18n/de.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/en.ts +206 -0
- package/src/tool/widmark-alcohol-simulator/i18n/es.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/fr.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/id.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/it.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/ja.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/ko.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/nl.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/pl.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/pt.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/ru.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/sv.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/tr.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/zh.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/index.ts +11 -0
- package/src/tool/widmark-alcohol-simulator/logic.ts +97 -0
- package/src/tool/widmark-alcohol-simulator/seo.astro +15 -0
- package/src/tool/widmark-alcohol-simulator/widmark-alcohol-simulator.css +386 -0
- package/src/tools.ts +27 -0
- package/src/types.ts +70 -0
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
.widmark-simulator {
|
|
2
|
+
--wm-ink: #0f172a;
|
|
3
|
+
--wm-muted: #64748b;
|
|
4
|
+
--wm-paper: #fff;
|
|
5
|
+
--wm-border: #e2e8f0;
|
|
6
|
+
--wm-accent: #0284c7;
|
|
7
|
+
--wm-accent-light: rgba(2, 132, 199, 0.06);
|
|
8
|
+
--wm-input-bg: #f8fafc;
|
|
9
|
+
--wm-input-border: #cbd5e1;
|
|
10
|
+
--wm-limit-danger: #ef4444;
|
|
11
|
+
--wm-limit-warning: #f59e0b;
|
|
12
|
+
--wm-limit-safe: #10b981;
|
|
13
|
+
|
|
14
|
+
display: grid;
|
|
15
|
+
grid-template-columns: 1fr;
|
|
16
|
+
background: var(--wm-paper);
|
|
17
|
+
border: 1px solid var(--wm-border);
|
|
18
|
+
border-radius: 16px;
|
|
19
|
+
max-width: 960px;
|
|
20
|
+
margin: 0 auto;
|
|
21
|
+
color: var(--wm-ink);
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.theme-dark .widmark-simulator {
|
|
26
|
+
--wm-ink: #f1f5f9;
|
|
27
|
+
--wm-muted: #94a3b8;
|
|
28
|
+
--wm-paper: #0f172a;
|
|
29
|
+
--wm-border: #1e293b;
|
|
30
|
+
--wm-accent: #38bdf8;
|
|
31
|
+
--wm-accent-light: rgba(56, 189, 248, 0.08);
|
|
32
|
+
--wm-input-bg: #1e293b;
|
|
33
|
+
--wm-input-border: #334155;
|
|
34
|
+
--wm-limit-danger: #f87171;
|
|
35
|
+
--wm-limit-warning: #fbbf24;
|
|
36
|
+
--wm-limit-safe: #34d399;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@media (min-width: 800px) {
|
|
40
|
+
.widmark-simulator {
|
|
41
|
+
grid-template-columns: 320px 1fr;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.widmark-panel {
|
|
46
|
+
display: flex;
|
|
47
|
+
flex-direction: column;
|
|
48
|
+
gap: 1.25rem;
|
|
49
|
+
padding: 1.5rem;
|
|
50
|
+
border-bottom: 1px solid var(--wm-border);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@media (min-width: 800px) {
|
|
54
|
+
.widmark-panel {
|
|
55
|
+
border-bottom: none;
|
|
56
|
+
border-right: 1px solid var(--wm-border);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.widmark-section-title {
|
|
61
|
+
font-size: 0.9rem;
|
|
62
|
+
font-weight: 800;
|
|
63
|
+
text-transform: uppercase;
|
|
64
|
+
letter-spacing: 0.05em;
|
|
65
|
+
color: var(--wm-accent);
|
|
66
|
+
margin: 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.widmark-field {
|
|
70
|
+
display: flex;
|
|
71
|
+
flex-direction: column;
|
|
72
|
+
gap: 0.35rem;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.widmark-field span {
|
|
76
|
+
font-size: 0.75rem;
|
|
77
|
+
font-weight: 700;
|
|
78
|
+
color: var(--wm-muted);
|
|
79
|
+
text-transform: uppercase;
|
|
80
|
+
letter-spacing: 0.02em;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.widmark-input,
|
|
84
|
+
.widmark-select {
|
|
85
|
+
background: var(--wm-input-bg);
|
|
86
|
+
border: 1px solid var(--wm-input-border);
|
|
87
|
+
border-radius: 6px;
|
|
88
|
+
padding: 0.5rem 0.75rem;
|
|
89
|
+
color: var(--wm-ink);
|
|
90
|
+
font-size: 0.85rem;
|
|
91
|
+
transition: all 0.2s ease;
|
|
92
|
+
width: 100%;
|
|
93
|
+
box-sizing: border-box;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.widmark-input:focus,
|
|
97
|
+
.widmark-select:focus {
|
|
98
|
+
outline: none;
|
|
99
|
+
border-color: var(--wm-accent);
|
|
100
|
+
box-shadow: 0 0 0 2px var(--wm-accent-light);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.widmark-radio-group {
|
|
104
|
+
display: grid;
|
|
105
|
+
grid-template-columns: 1fr 1fr;
|
|
106
|
+
gap: 0.5rem;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.widmark-radio-card {
|
|
110
|
+
display: flex;
|
|
111
|
+
align-items: center;
|
|
112
|
+
justify-content: center;
|
|
113
|
+
background: var(--wm-input-bg);
|
|
114
|
+
border: 1px solid var(--wm-input-border);
|
|
115
|
+
border-radius: 6px;
|
|
116
|
+
padding: 0.5rem;
|
|
117
|
+
cursor: pointer;
|
|
118
|
+
transition: all 0.2s ease;
|
|
119
|
+
user-select: none;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.widmark-radio-card input {
|
|
123
|
+
position: absolute;
|
|
124
|
+
opacity: 0;
|
|
125
|
+
width: 0;
|
|
126
|
+
height: 0;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.widmark-radio-card span {
|
|
130
|
+
font-size: 0.8rem;
|
|
131
|
+
font-weight: 700;
|
|
132
|
+
color: var(--wm-muted);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.widmark-radio-card:hover {
|
|
136
|
+
border-color: var(--wm-accent);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.widmark-radio-card:has(input:checked) {
|
|
140
|
+
background: var(--wm-accent-light);
|
|
141
|
+
border-color: var(--wm-accent);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.widmark-radio-card:has(input:checked) span {
|
|
145
|
+
color: var(--wm-accent);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.widmark-drink-form-grid {
|
|
149
|
+
display: grid;
|
|
150
|
+
grid-template-columns: 1fr 1fr;
|
|
151
|
+
gap: 0.5rem;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.widmark-drink-form-grid .widmark-field:last-of-type {
|
|
155
|
+
grid-column: span 2;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.widmark-quick-drinks {
|
|
159
|
+
display: grid;
|
|
160
|
+
grid-template-columns: repeat(3, 1fr);
|
|
161
|
+
gap: 0.35rem;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.widmark-quick-btn {
|
|
165
|
+
background: var(--wm-input-bg);
|
|
166
|
+
border: 1px solid var(--wm-input-border);
|
|
167
|
+
border-radius: 4px;
|
|
168
|
+
padding: 0.35rem;
|
|
169
|
+
color: var(--wm-muted);
|
|
170
|
+
font-size: 0.7rem;
|
|
171
|
+
font-weight: 700;
|
|
172
|
+
text-transform: uppercase;
|
|
173
|
+
cursor: pointer;
|
|
174
|
+
transition: all 0.2s;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.widmark-quick-btn:hover {
|
|
178
|
+
border-color: var(--wm-accent);
|
|
179
|
+
color: var(--wm-ink);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.widmark-btn-primary {
|
|
183
|
+
background: var(--wm-accent);
|
|
184
|
+
border: none;
|
|
185
|
+
border-radius: 6px;
|
|
186
|
+
padding: 0.6rem;
|
|
187
|
+
color: #fff;
|
|
188
|
+
font-size: 0.85rem;
|
|
189
|
+
font-weight: 700;
|
|
190
|
+
cursor: pointer;
|
|
191
|
+
transition: all 0.2s;
|
|
192
|
+
width: 100%;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.widmark-btn-primary:hover {
|
|
196
|
+
opacity: 0.9;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.widmark-drinks-list {
|
|
200
|
+
display: flex;
|
|
201
|
+
flex-direction: column;
|
|
202
|
+
gap: 0.35rem;
|
|
203
|
+
max-height: 140px;
|
|
204
|
+
overflow-y: auto;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.widmark-drink-item {
|
|
208
|
+
display: flex;
|
|
209
|
+
align-items: center;
|
|
210
|
+
justify-content: space-between;
|
|
211
|
+
border-bottom: 1px dashed var(--wm-border);
|
|
212
|
+
padding: 0.4rem 0;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.widmark-drink-details {
|
|
216
|
+
display: flex;
|
|
217
|
+
flex-direction: column;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.widmark-drink-title {
|
|
221
|
+
font-size: 0.8rem;
|
|
222
|
+
font-weight: 700;
|
|
223
|
+
color: var(--wm-ink);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.widmark-drink-meta {
|
|
227
|
+
font-size: 0.7rem;
|
|
228
|
+
color: var(--wm-muted);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.widmark-btn-remove {
|
|
232
|
+
background: transparent;
|
|
233
|
+
border: none;
|
|
234
|
+
color: #ef4444;
|
|
235
|
+
cursor: pointer;
|
|
236
|
+
font-size: 0.7rem;
|
|
237
|
+
font-weight: 700;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.widmark-dashboard {
|
|
241
|
+
display: flex;
|
|
242
|
+
flex-direction: column;
|
|
243
|
+
padding: 1.5rem;
|
|
244
|
+
gap: 1.5rem;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.widmark-metrics-grid {
|
|
248
|
+
display: grid;
|
|
249
|
+
grid-template-columns: 1fr 1fr;
|
|
250
|
+
gap: 1rem;
|
|
251
|
+
border-bottom: 1px solid var(--wm-border);
|
|
252
|
+
padding-bottom: 1.5rem;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
@media (min-width: 550px) {
|
|
256
|
+
.widmark-metrics-grid {
|
|
257
|
+
grid-template-columns: repeat(4, 1fr);
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.widmark-metric-card {
|
|
262
|
+
display: flex;
|
|
263
|
+
flex-direction: column;
|
|
264
|
+
gap: 0.15rem;
|
|
265
|
+
border-left: 2px solid var(--wm-border);
|
|
266
|
+
padding-left: 0.75rem;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.widmark-metric-card.alert-safe {
|
|
270
|
+
border-left-color: var(--wm-limit-safe);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.widmark-metric-card.alert-warning {
|
|
274
|
+
border-left-color: var(--wm-limit-warning);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.widmark-metric-card.alert-danger {
|
|
278
|
+
border-left-color: var(--wm-limit-danger);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.widmark-metric-label {
|
|
282
|
+
font-size: 0.65rem;
|
|
283
|
+
font-weight: 800;
|
|
284
|
+
color: var(--wm-muted);
|
|
285
|
+
text-transform: uppercase;
|
|
286
|
+
letter-spacing: 0.05em;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.widmark-metric-value {
|
|
290
|
+
font-size: 1.5rem;
|
|
291
|
+
font-weight: 800;
|
|
292
|
+
letter-spacing: -0.03em;
|
|
293
|
+
color: var(--wm-ink);
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.widmark-metric-unit {
|
|
297
|
+
font-size: 0.75rem;
|
|
298
|
+
font-weight: 700;
|
|
299
|
+
color: var(--wm-muted);
|
|
300
|
+
margin-left: 0.15rem;
|
|
301
|
+
letter-spacing: 0;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.widmark-visual-container {
|
|
305
|
+
display: flex;
|
|
306
|
+
flex-direction: column;
|
|
307
|
+
gap: 1rem;
|
|
308
|
+
position: relative;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.widmark-chart-wrapper {
|
|
312
|
+
position: relative;
|
|
313
|
+
width: 100%;
|
|
314
|
+
height: 200px;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.widmark-chart-svg {
|
|
318
|
+
width: 100%;
|
|
319
|
+
height: 100%;
|
|
320
|
+
overflow: visible;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.widmark-grid-line {
|
|
324
|
+
stroke: var(--wm-chart-grid);
|
|
325
|
+
stroke-width: 1;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.widmark-grid-text {
|
|
329
|
+
fill: var(--wm-muted);
|
|
330
|
+
font-size: 9px;
|
|
331
|
+
font-weight: 700;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.widmark-limit-line {
|
|
335
|
+
stroke: var(--wm-limit-danger);
|
|
336
|
+
stroke-width: 1;
|
|
337
|
+
stroke-dasharray: 3 3;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.widmark-curve-path {
|
|
341
|
+
fill: none;
|
|
342
|
+
stroke: var(--wm-accent);
|
|
343
|
+
stroke-width: 3.5;
|
|
344
|
+
stroke-linecap: round;
|
|
345
|
+
stroke-linejoin: round;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.widmark-curve-fill {
|
|
349
|
+
fill: url("#chart-gradient");
|
|
350
|
+
opacity: 0.08;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.widmark-no-drinks {
|
|
354
|
+
position: absolute;
|
|
355
|
+
inset: 0;
|
|
356
|
+
display: flex;
|
|
357
|
+
align-items: center;
|
|
358
|
+
justify-content: center;
|
|
359
|
+
background: var(--wm-input-bg);
|
|
360
|
+
border-radius: 8px;
|
|
361
|
+
color: var(--wm-muted);
|
|
362
|
+
font-size: 0.85rem;
|
|
363
|
+
font-weight: 700;
|
|
364
|
+
text-transform: uppercase;
|
|
365
|
+
letter-spacing: 0.03em;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.widmark-disclaimer {
|
|
369
|
+
background: var(--wm-accent-light);
|
|
370
|
+
border-left: 3px solid var(--wm-accent);
|
|
371
|
+
padding: 0.75rem 1rem;
|
|
372
|
+
color: var(--wm-ink);
|
|
373
|
+
font-size: 0.75rem;
|
|
374
|
+
line-height: 1.4;
|
|
375
|
+
display: flex;
|
|
376
|
+
flex-direction: column;
|
|
377
|
+
gap: 0.15rem;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.widmark-disclaimer strong {
|
|
381
|
+
font-size: 0.8rem;
|
|
382
|
+
font-weight: 800;
|
|
383
|
+
text-transform: uppercase;
|
|
384
|
+
letter-spacing: 0.02em;
|
|
385
|
+
color: var(--wm-accent);
|
|
386
|
+
}
|
package/src/tools.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export { ALL_ENTRIES } from './entries';
|
|
2
|
+
import type { ToolDefinition } from './types';
|
|
3
|
+
import { FORENSIC_AGE_ESTIMATOR_TOOL } from './tool/forensic-age-estimator/index';
|
|
4
|
+
import { WIDMARK_ALCOHOL_SIMULATOR_TOOL } from './tool/widmark-alcohol-simulator/index';
|
|
5
|
+
import { FORENSIC_SEX_DETERMINATOR_TOOL } from './tool/forensic-sex-determinator/index';
|
|
6
|
+
import { FORENSIC_STATURE_ESTIMATOR_TOOL } from './tool/forensic-stature-estimator/index';
|
|
7
|
+
import { FORENSIC_BLOOD_TEST_SIMULATOR_TOOL } from './tool/forensic-blood-test-simulator/index';
|
|
8
|
+
import { FORENSIC_IMAGE_AUTHENTICITY_ANALYZER_TOOL } from './tool/forensic-image-authenticity-analyzer/index';
|
|
9
|
+
import { GSR_DISPERSION_CALCULATOR_TOOL } from './tool/gsr-dispersion-calculator/index';
|
|
10
|
+
import { FORENSIC_TLC_INK_SIMULATOR_TOOL } from './tool/forensic-tlc-ink-simulator/index';
|
|
11
|
+
import { FORENSIC_MICROCRYSTAL_DRUG_SIMULATOR_TOOL } from './tool/forensic-microcrystal-drug-simulator/index';
|
|
12
|
+
import { FORENSIC_GLASS_BECKE_LINE_SIMULATOR_TOOL } from './tool/forensic-glass-becke-line-simulator/index';
|
|
13
|
+
import { FORENSIC_FIBER_COMPARISON_MICROSCOPE_TOOL } from './tool/forensic-fiber-comparison-microscope/index';
|
|
14
|
+
|
|
15
|
+
export const ALL_TOOLS: ToolDefinition[] = [
|
|
16
|
+
FORENSIC_AGE_ESTIMATOR_TOOL,
|
|
17
|
+
WIDMARK_ALCOHOL_SIMULATOR_TOOL,
|
|
18
|
+
FORENSIC_SEX_DETERMINATOR_TOOL,
|
|
19
|
+
FORENSIC_STATURE_ESTIMATOR_TOOL,
|
|
20
|
+
FORENSIC_BLOOD_TEST_SIMULATOR_TOOL,
|
|
21
|
+
FORENSIC_IMAGE_AUTHENTICITY_ANALYZER_TOOL,
|
|
22
|
+
GSR_DISPERSION_CALCULATOR_TOOL,
|
|
23
|
+
FORENSIC_TLC_INK_SIMULATOR_TOOL,
|
|
24
|
+
FORENSIC_MICROCRYSTAL_DRUG_SIMULATOR_TOOL,
|
|
25
|
+
FORENSIC_GLASS_BECKE_LINE_SIMULATOR_TOOL,
|
|
26
|
+
FORENSIC_FIBER_COMPARISON_MICROSCOPE_TOOL
|
|
27
|
+
];
|
package/src/types.ts
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import type { SEOSection } from '@jjlmoya/utils-shared';
|
|
2
|
+
import type { WithContext, Thing } from 'schema-dts';
|
|
3
|
+
|
|
4
|
+
export type { SEOSection };
|
|
5
|
+
|
|
6
|
+
export type KnownLocale =
|
|
7
|
+
| 'ar' | 'da' | 'de' | 'en' | 'es' | 'fi'
|
|
8
|
+
| 'fr' | 'id' | 'it' | 'ja' | 'ko' | 'nb' | 'nl'
|
|
9
|
+
| 'pl' | 'pt' | 'ru' | 'sv' | 'tr' | 'zh';
|
|
10
|
+
|
|
11
|
+
export interface FAQItem {
|
|
12
|
+
question: string;
|
|
13
|
+
answer: string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface BibliographyEntry {
|
|
17
|
+
name: string;
|
|
18
|
+
url: string;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface HowToStep {
|
|
22
|
+
name: string;
|
|
23
|
+
text: string;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface ToolLocaleContent<TUI extends Record<string, string> = Record<string, string>> {
|
|
27
|
+
slug: string;
|
|
28
|
+
title: string;
|
|
29
|
+
description: string;
|
|
30
|
+
ui: TUI;
|
|
31
|
+
seo: SEOSection[];
|
|
32
|
+
faq: FAQItem[];
|
|
33
|
+
bibliography: BibliographyEntry[];
|
|
34
|
+
howTo: HowToStep[];
|
|
35
|
+
schemas: WithContext<Thing>[];
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface CategoryLocaleContent {
|
|
39
|
+
slug: string;
|
|
40
|
+
title: string;
|
|
41
|
+
description: string;
|
|
42
|
+
seo: SEOSection[];
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export type LocaleLoader<T> = () => Promise<T>;
|
|
46
|
+
|
|
47
|
+
export type LocaleMap<T> = Partial<Record<KnownLocale, LocaleLoader<T>>>;
|
|
48
|
+
|
|
49
|
+
export interface ScienceToolEntry<TUI extends Record<string, string> = Record<string, string>> {
|
|
50
|
+
id: string;
|
|
51
|
+
icons: {
|
|
52
|
+
bg: string;
|
|
53
|
+
fg: string;
|
|
54
|
+
};
|
|
55
|
+
i18n: LocaleMap<ToolLocaleContent<TUI>>;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export interface ScienceCategoryEntry {
|
|
59
|
+
icon: string;
|
|
60
|
+
tools: ScienceToolEntry[];
|
|
61
|
+
i18n: LocaleMap<CategoryLocaleContent>;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export interface ToolDefinition {
|
|
65
|
+
entry: ScienceToolEntry;
|
|
66
|
+
Component: unknown;
|
|
67
|
+
SEOComponent: unknown;
|
|
68
|
+
BibliographyComponent: unknown;
|
|
69
|
+
}
|
|
70
|
+
|