@jjlmoya/utils-diy 1.10.0 → 1.12.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 +3 -1
- package/src/index.ts +2 -0
- package/src/pages/[locale]/[slug].astro +28 -12
- package/src/tests/locale_completeness.test.ts +7 -9
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/balusterCalculator/baluster-calculator.css +9 -9
- package/src/tool/balusterCalculator/bibliography.astro +2 -10
- package/src/tool/balusterCalculator/bibliography.ts +16 -0
- package/src/tool/balusterCalculator/i18n/de.ts +2 -15
- package/src/tool/balusterCalculator/i18n/en.ts +2 -15
- package/src/tool/balusterCalculator/i18n/es.ts +2 -15
- package/src/tool/balusterCalculator/i18n/fr.ts +2 -15
- package/src/tool/balusterCalculator/i18n/id.ts +2 -15
- package/src/tool/balusterCalculator/i18n/it.ts +2 -15
- package/src/tool/balusterCalculator/i18n/ja.ts +2 -15
- package/src/tool/balusterCalculator/i18n/ko.ts +2 -15
- package/src/tool/balusterCalculator/i18n/nl.ts +2 -15
- package/src/tool/balusterCalculator/i18n/pl.ts +2 -15
- package/src/tool/balusterCalculator/i18n/pt.ts +2 -15
- package/src/tool/balusterCalculator/i18n/ru.ts +2 -15
- package/src/tool/balusterCalculator/i18n/sv.ts +2 -15
- package/src/tool/balusterCalculator/i18n/tr.ts +2 -15
- package/src/tool/balusterCalculator/i18n/zh.ts +2 -15
- package/src/tool/balusterCalculator/seo.astro +1 -1
- package/src/tool/clayCalculator/bibliography.astro +2 -10
- package/src/tool/clayCalculator/bibliography.ts +12 -0
- package/src/tool/clayCalculator/clay-shrinkage-calculator.css +30 -30
- package/src/tool/clayCalculator/i18n/de.ts +2 -11
- package/src/tool/clayCalculator/i18n/en.ts +2 -11
- package/src/tool/clayCalculator/i18n/es.ts +2 -11
- package/src/tool/clayCalculator/i18n/fr.ts +2 -11
- package/src/tool/clayCalculator/i18n/id.ts +2 -11
- package/src/tool/clayCalculator/i18n/it.ts +2 -11
- package/src/tool/clayCalculator/i18n/ja.ts +2 -11
- package/src/tool/clayCalculator/i18n/ko.ts +2 -11
- package/src/tool/clayCalculator/i18n/nl.ts +2 -11
- package/src/tool/clayCalculator/i18n/pl.ts +2 -11
- package/src/tool/clayCalculator/i18n/pt.ts +2 -11
- package/src/tool/clayCalculator/i18n/ru.ts +2 -11
- package/src/tool/clayCalculator/i18n/sv.ts +2 -11
- package/src/tool/clayCalculator/i18n/tr.ts +2 -11
- package/src/tool/clayCalculator/i18n/zh.ts +2 -11
- package/src/tool/clayCalculator/seo.astro +1 -1
- package/src/tool/concreteCalculator/bibliography.astro +2 -9
- package/src/tool/concreteCalculator/bibliography.ts +7 -0
- package/src/tool/concreteCalculator/concrete-mortar-calculator.css +18 -18
- package/src/tool/concreteCalculator/i18n/de.ts +2 -15
- package/src/tool/concreteCalculator/i18n/en.ts +2 -15
- package/src/tool/concreteCalculator/i18n/es.ts +2 -15
- package/src/tool/concreteCalculator/i18n/fr.ts +2 -15
- package/src/tool/concreteCalculator/i18n/id.ts +2 -15
- package/src/tool/concreteCalculator/i18n/it.ts +2 -15
- package/src/tool/concreteCalculator/i18n/ja.ts +2 -15
- package/src/tool/concreteCalculator/i18n/ko.ts +2 -15
- package/src/tool/concreteCalculator/i18n/nl.ts +2 -15
- package/src/tool/concreteCalculator/i18n/pl.ts +2 -15
- package/src/tool/concreteCalculator/i18n/pt.ts +2 -15
- package/src/tool/concreteCalculator/i18n/ru.ts +2 -15
- package/src/tool/concreteCalculator/i18n/sv.ts +2 -15
- package/src/tool/concreteCalculator/i18n/tr.ts +2 -15
- package/src/tool/concreteCalculator/i18n/zh.ts +2 -15
- package/src/tool/concreteCalculator/seo.astro +2 -1
- package/src/tool/cutOptimizer/bibliography.astro +2 -9
- package/src/tool/cutOptimizer/bibliography.ts +12 -0
- package/src/tool/cutOptimizer/cut-optimizer.css +25 -25
- package/src/tool/cutOptimizer/i18n/de.ts +2 -11
- package/src/tool/cutOptimizer/i18n/en.ts +2 -11
- package/src/tool/cutOptimizer/i18n/es.ts +2 -11
- package/src/tool/cutOptimizer/i18n/fr.ts +2 -11
- package/src/tool/cutOptimizer/i18n/id.ts +2 -11
- package/src/tool/cutOptimizer/i18n/it.ts +2 -11
- package/src/tool/cutOptimizer/i18n/ja.ts +2 -11
- package/src/tool/cutOptimizer/i18n/ko.ts +2 -11
- package/src/tool/cutOptimizer/i18n/nl.ts +2 -11
- package/src/tool/cutOptimizer/i18n/pl.ts +2 -11
- package/src/tool/cutOptimizer/i18n/pt.ts +2 -11
- package/src/tool/cutOptimizer/i18n/ru.ts +2 -11
- package/src/tool/cutOptimizer/i18n/sv.ts +2 -11
- package/src/tool/cutOptimizer/i18n/tr.ts +2 -11
- package/src/tool/cutOptimizer/i18n/zh.ts +2 -11
- package/src/tool/cutOptimizer/seo.astro +2 -1
- package/src/tool/drillCalculator/bibliography.astro +2 -9
- package/src/tool/drillCalculator/bibliography.ts +12 -0
- package/src/tool/drillCalculator/drill-rpm-calculator.css +57 -57
- package/src/tool/drillCalculator/i18n/de.ts +2 -5
- package/src/tool/drillCalculator/i18n/en.ts +2 -5
- package/src/tool/drillCalculator/i18n/es.ts +2 -5
- package/src/tool/drillCalculator/i18n/fr.ts +2 -5
- package/src/tool/drillCalculator/i18n/id.ts +2 -5
- package/src/tool/drillCalculator/i18n/it.ts +2 -5
- package/src/tool/drillCalculator/i18n/ja.ts +2 -5
- package/src/tool/drillCalculator/i18n/ko.ts +2 -5
- package/src/tool/drillCalculator/i18n/nl.ts +2 -5
- package/src/tool/drillCalculator/i18n/pl.ts +2 -5
- package/src/tool/drillCalculator/i18n/pt.ts +2 -5
- package/src/tool/drillCalculator/i18n/ru.ts +2 -5
- package/src/tool/drillCalculator/i18n/sv.ts +2 -5
- package/src/tool/drillCalculator/i18n/tr.ts +2 -5
- package/src/tool/drillCalculator/i18n/zh.ts +2 -5
- package/src/tool/drillCalculator/seo.astro +2 -1
- package/src/tool/drillSharpener/bibliography.astro +2 -9
- package/src/tool/drillSharpener/bibliography.ts +16 -0
- package/src/tool/drillSharpener/drill-sharpening-master.css +1 -1
- package/src/tool/drillSharpener/i18n/de.ts +2 -5
- package/src/tool/drillSharpener/i18n/en.ts +2 -6
- package/src/tool/drillSharpener/i18n/es.ts +2 -6
- package/src/tool/drillSharpener/i18n/fr.ts +2 -6
- package/src/tool/drillSharpener/i18n/id.ts +2 -5
- package/src/tool/drillSharpener/i18n/it.ts +2 -5
- package/src/tool/drillSharpener/i18n/ja.ts +2 -5
- package/src/tool/drillSharpener/i18n/ko.ts +2 -5
- package/src/tool/drillSharpener/i18n/nl.ts +2 -5
- package/src/tool/drillSharpener/i18n/pl.ts +2 -5
- package/src/tool/drillSharpener/i18n/pt.ts +2 -5
- package/src/tool/drillSharpener/i18n/ru.ts +2 -5
- package/src/tool/drillSharpener/i18n/sv.ts +2 -5
- package/src/tool/drillSharpener/i18n/tr.ts +2 -5
- package/src/tool/drillSharpener/i18n/zh.ts +2 -5
- package/src/tool/drillSharpener/seo.astro +2 -1
- package/src/tool/epoxyCalculator/bibliography.astro +2 -10
- package/src/tool/epoxyCalculator/bibliography.ts +20 -0
- package/src/tool/epoxyCalculator/epoxy-resin-calculator.css +13 -13
- package/src/tool/epoxyCalculator/i18n/de.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/en.ts +2 -19
- package/src/tool/epoxyCalculator/i18n/es.ts +2 -19
- package/src/tool/epoxyCalculator/i18n/fr.ts +2 -19
- package/src/tool/epoxyCalculator/i18n/id.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/it.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/ja.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/ko.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/nl.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/pl.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/pt.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/ru.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/sv.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/tr.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/zh.ts +2 -5
- package/src/tool/epoxyCalculator/seo.astro +1 -1
- package/src/tool/furnitureFit/bibliography.astro +2 -9
- package/src/tool/furnitureFit/bibliography.ts +12 -0
- package/src/tool/furnitureFit/furniture-fit-calculator.css +7 -7
- package/src/tool/furnitureFit/i18n/de.ts +2 -5
- package/src/tool/furnitureFit/i18n/en.ts +2 -5
- package/src/tool/furnitureFit/i18n/es.ts +2 -5
- package/src/tool/furnitureFit/i18n/fr.ts +2 -5
- package/src/tool/furnitureFit/i18n/id.ts +2 -5
- package/src/tool/furnitureFit/i18n/it.ts +2 -5
- package/src/tool/furnitureFit/i18n/ja.ts +2 -5
- package/src/tool/furnitureFit/i18n/ko.ts +2 -5
- package/src/tool/furnitureFit/i18n/nl.ts +2 -5
- package/src/tool/furnitureFit/i18n/pl.ts +2 -5
- package/src/tool/furnitureFit/i18n/pt.ts +2 -5
- package/src/tool/furnitureFit/i18n/ru.ts +2 -5
- package/src/tool/furnitureFit/i18n/sv.ts +2 -5
- package/src/tool/furnitureFit/i18n/tr.ts +2 -5
- package/src/tool/furnitureFit/i18n/zh.ts +2 -5
- package/src/tool/furnitureFit/seo.astro +2 -1
- package/src/tool/mortarCalculator/bibliography.astro +2 -9
- package/src/tool/mortarCalculator/bibliography.ts +20 -0
- package/src/tool/mortarCalculator/i18n/de.ts +2 -5
- package/src/tool/mortarCalculator/i18n/en.ts +2 -19
- package/src/tool/mortarCalculator/i18n/es.ts +2 -19
- package/src/tool/mortarCalculator/i18n/fr.ts +2 -19
- package/src/tool/mortarCalculator/i18n/id.ts +2 -5
- package/src/tool/mortarCalculator/i18n/it.ts +2 -5
- package/src/tool/mortarCalculator/i18n/ja.ts +2 -5
- package/src/tool/mortarCalculator/i18n/ko.ts +2 -5
- package/src/tool/mortarCalculator/i18n/nl.ts +2 -5
- package/src/tool/mortarCalculator/i18n/pl.ts +2 -5
- package/src/tool/mortarCalculator/i18n/pt.ts +2 -5
- package/src/tool/mortarCalculator/i18n/ru.ts +2 -5
- package/src/tool/mortarCalculator/i18n/sv.ts +2 -5
- package/src/tool/mortarCalculator/i18n/tr.ts +2 -5
- package/src/tool/mortarCalculator/i18n/zh.ts +2 -5
- package/src/tool/mortarCalculator/lime-mortar-calculator.css +30 -30
- package/src/tool/mortarCalculator/seo.astro +2 -1
- package/src/tool/passepartoutCalculator/bibliography.astro +2 -9
- package/src/tool/passepartoutCalculator/bibliography.ts +16 -0
- package/src/tool/passepartoutCalculator/i18n/de.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/en.ts +2 -15
- package/src/tool/passepartoutCalculator/i18n/es.ts +2 -15
- package/src/tool/passepartoutCalculator/i18n/fr.ts +2 -15
- package/src/tool/passepartoutCalculator/i18n/id.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/it.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/ja.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/ko.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/nl.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/pl.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/pt.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/ru.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/sv.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/tr.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/zh.ts +2 -6
- package/src/tool/passepartoutCalculator/passepartout-calculator.css +26 -26
- package/src/tool/passepartoutCalculator/seo.astro +2 -1
- package/src/tool/stairCalculator/bibliography.astro +2 -9
- package/src/tool/stairCalculator/bibliography.ts +16 -0
- package/src/tool/stairCalculator/i18n/de.ts +2 -5
- package/src/tool/stairCalculator/i18n/en.ts +2 -6
- package/src/tool/stairCalculator/i18n/es.ts +2 -6
- package/src/tool/stairCalculator/i18n/fr.ts +2 -6
- package/src/tool/stairCalculator/i18n/id.ts +2 -5
- package/src/tool/stairCalculator/i18n/it.ts +2 -5
- package/src/tool/stairCalculator/i18n/ja.ts +2 -5
- package/src/tool/stairCalculator/i18n/ko.ts +2 -5
- package/src/tool/stairCalculator/i18n/nl.ts +2 -5
- package/src/tool/stairCalculator/i18n/pl.ts +2 -5
- package/src/tool/stairCalculator/i18n/pt.ts +2 -5
- package/src/tool/stairCalculator/i18n/ru.ts +2 -5
- package/src/tool/stairCalculator/i18n/sv.ts +2 -5
- package/src/tool/stairCalculator/i18n/tr.ts +2 -5
- package/src/tool/stairCalculator/i18n/zh.ts +2 -5
- package/src/tool/stairCalculator/seo.astro +2 -1
- package/src/tool/stairCalculator/stair-calculator.css +10 -10
- package/src/tool/thermalExpansionCalculator/bibliography.astro +2 -9
- package/src/tool/thermalExpansionCalculator/bibliography.ts +16 -0
- package/src/tool/thermalExpansionCalculator/i18n/de.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/en.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/es.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/fr.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/id.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/it.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/ja.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/ko.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/nl.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/pl.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/pt.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/ru.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/sv.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/tr.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/zh.ts +2 -6
- package/src/tool/thermalExpansionCalculator/seo.astro +2 -1
- package/src/tool/thermalExpansionCalculator/thermal-expansion-calculator.css +19 -19
- package/src/tool/voltageDropCalculator/bibliography.astro +2 -9
- package/src/tool/voltageDropCalculator/bibliography.ts +16 -0
- package/src/tool/voltageDropCalculator/i18n/de.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/en.ts +2 -6
- package/src/tool/voltageDropCalculator/i18n/es.ts +2 -6
- package/src/tool/voltageDropCalculator/i18n/fr.ts +2 -6
- package/src/tool/voltageDropCalculator/i18n/id.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/it.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/ja.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/ko.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/nl.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/pl.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/pt.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/ru.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/sv.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/tr.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/zh.ts +2 -5
- package/src/tool/voltageDropCalculator/seo.astro +2 -1
- package/src/tool/voltageDropCalculator/voltage-drop-calculator.css +24 -24
- package/src/tool/workshopFractionConverter/bibliography.astro +6 -0
- package/src/tool/workshopFractionConverter/bibliography.ts +12 -0
- package/src/tool/workshopFractionConverter/client.ts +183 -0
- package/src/tool/workshopFractionConverter/component.astro +226 -0
- package/src/tool/workshopFractionConverter/converter.ts +110 -0
- package/src/tool/workshopFractionConverter/engine.ts +223 -0
- package/src/tool/workshopFractionConverter/entry.ts +24 -0
- package/src/tool/workshopFractionConverter/i18n/de.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/en.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/es.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/fr.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/id.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/it.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/ja.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/ko.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/nl.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/pl.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/pt.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/ru.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/sv.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/tr.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/zh.ts +141 -0
- package/src/tool/workshopFractionConverter/index.ts +11 -0
- package/src/tool/workshopFractionConverter/seo.astro +15 -0
- package/src/tool/workshopFractionConverter/types-client.ts +89 -0
- package/src/tool/workshopFractionConverter/ui-updater.ts +94 -0
- package/src/tool/workshopFractionConverter/ui.ts +38 -0
- package/src/tool/workshopFractionConverter/workshop-fraction-converter.css +563 -0
- package/src/tools.ts +2 -1
- package/src/types.ts +1 -1
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
--sc-bg: #fff;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
.theme-dark {
|
|
14
14
|
--sc-primary: #818cf8;
|
|
15
15
|
--sc-primary-dark: #6366f1;
|
|
16
16
|
--sc-neutral: #f1f5f9;
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
border: 1px solid var(--sc-border);
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
|
|
82
|
+
.theme-dark .sc-stat-box {
|
|
83
83
|
background: rgba(255, 255, 255, 0.04);
|
|
84
84
|
}
|
|
85
85
|
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
box-sizing: border-box;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
|
|
157
|
+
.theme-dark .sc-stepper {
|
|
158
158
|
background: rgba(255, 255, 255, 0.04);
|
|
159
159
|
}
|
|
160
160
|
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
cursor: pointer;
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
-
|
|
227
|
+
.theme-dark .sc-select {
|
|
228
228
|
background-color: #0f172a;
|
|
229
229
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23818cf8' d='M7.41 8.58L12 13.17l4.59-4.59L18 10l-6 6l-6-6l1.41-1.42Z'/%3E%3C/svg%3E");
|
|
230
230
|
}
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
color: #1e293b;
|
|
235
235
|
}
|
|
236
236
|
|
|
237
|
-
|
|
237
|
+
.theme-dark .sc-select option {
|
|
238
238
|
background: #1e293b;
|
|
239
239
|
color: #f1f5f9;
|
|
240
240
|
}
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
border: 1px solid var(--sc-border);
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
-
|
|
306
|
+
.theme-dark .sc-table-card {
|
|
307
307
|
background: rgba(255, 255, 255, 0.03);
|
|
308
308
|
}
|
|
309
309
|
|
|
@@ -320,11 +320,11 @@
|
|
|
320
320
|
overflow-y: auto;
|
|
321
321
|
}
|
|
322
322
|
|
|
323
|
-
|
|
323
|
+
.sc-table-wrapper table {
|
|
324
324
|
width: 100%;
|
|
325
325
|
}
|
|
326
326
|
|
|
327
|
-
|
|
327
|
+
.sc-table-wrapper th {
|
|
328
328
|
text-align: left;
|
|
329
329
|
font-size: 0.55rem;
|
|
330
330
|
text-transform: uppercase;
|
|
@@ -333,7 +333,7 @@
|
|
|
333
333
|
background: transparent;
|
|
334
334
|
}
|
|
335
335
|
|
|
336
|
-
|
|
336
|
+
.sc-table-wrapper td {
|
|
337
337
|
padding: 0.6rem 0.2rem;
|
|
338
338
|
border-bottom: 1px solid var(--sc-border);
|
|
339
339
|
font-size: 0.8rem;
|
|
@@ -356,7 +356,7 @@
|
|
|
356
356
|
border: 1px solid var(--sc-primary);
|
|
357
357
|
}
|
|
358
358
|
|
|
359
|
-
|
|
359
|
+
.theme-dark .sc-materials-card {
|
|
360
360
|
background: rgba(129, 140, 248, 0.08);
|
|
361
361
|
}
|
|
362
362
|
|
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
import { Bibliography as SharedBibliography } from '@jjlmoya/utils-shared';
|
|
3
|
-
import {
|
|
4
|
-
import type { KnownLocale } from '../../types';
|
|
5
|
-
|
|
6
|
-
interface Props {
|
|
7
|
-
locale?: KnownLocale;
|
|
8
|
-
}
|
|
9
|
-
const { locale = 'es' } = Astro.props;
|
|
10
|
-
const content = await thermalExpansionCalculator.i18n[locale]?.();
|
|
3
|
+
import { bibliography } from './bibliography';
|
|
11
4
|
---
|
|
12
5
|
|
|
13
|
-
|
|
6
|
+
<SharedBibliography links={bibliography} />
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { BibliographyEntry } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const bibliography: BibliographyEntry[] = [
|
|
4
|
+
{
|
|
5
|
+
name: 'Coefficient of Thermal Expansion — Engineering Toolbox',
|
|
6
|
+
url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html',
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
name: 'Thermal expansion and temperature — Britannica',
|
|
10
|
+
url: 'https://www.britannica.com/science/thermal-expansion',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
name: 'Linear Thermal Expansion — Physics Hypertextbook',
|
|
14
|
+
url: 'https://physics.info/expansion/',
|
|
15
|
+
},
|
|
16
|
+
];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'waermeausdehnungs-rechner';
|
|
6
7
|
const title = 'Rechner für thermische Ausdehnung von Balken und Strukturen';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Häufig gestellte Fragen',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'Coefficient of Thermal Expansion — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: 'Thermal expansion and temperature — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: 'Linear Thermal Expansion — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'thermal-expansion-calculator';
|
|
6
7
|
const title = 'Thermal Expansion Calculator for Beams and Structural Materials';
|
|
@@ -89,12 +90,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Frequently Asked Questions',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{ name: 'Coefficient of Thermal Expansion — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
95
|
-
{ name: 'Thermal expansion and temperature — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
96
|
-
{ name: 'Linear Thermal Expansion — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
97
|
-
],
|
|
93
|
+
bibliography,
|
|
98
94
|
howTo: howToData,
|
|
99
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
100
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calculadora-dilatacion-termica';
|
|
6
7
|
const title = 'Calculadora de Dilatación Térmica de Vigas y Estructuras';
|
|
@@ -89,12 +90,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Preguntas Frecuentes',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{ name: 'Coefficient of Thermal Expansion — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
95
|
-
{ name: 'Thermal expansion and temperature — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
96
|
-
{ name: 'Linear Thermal Expansion — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
97
|
-
],
|
|
93
|
+
bibliography,
|
|
98
94
|
howTo: howToData,
|
|
99
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
100
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calculateur-dilatation-thermique';
|
|
6
7
|
const title = 'Calculateur de Dilatation Thermique pour Structures et Poutres';
|
|
@@ -89,12 +90,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Questions Fréquentes',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{ name: 'Coefficient of Thermal Expansion — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
95
|
-
{ name: 'Thermal expansion and temperature — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
96
|
-
{ name: 'Linear Thermal Expansion — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
97
|
-
],
|
|
93
|
+
bibliography,
|
|
98
94
|
howTo: howToData,
|
|
99
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
100
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'kalkulator-pemuaian-panas';
|
|
6
7
|
const title = 'Kalkulator Pemuaian Panas Balok dan Struktur';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Pertanyaan Umum',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'Koefisien Ekspansi Termal — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: 'Ekspansi Termal dan Suhu — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: 'Ekspansi Termal Linier — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calcolatore-dilatazione-termica';
|
|
6
7
|
const title = 'Calcolatore di Dilatazione Termica di Travi e Strutture';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Domande Frequenti',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'Coefficient of Thermal Expansion — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: 'Thermal expansion and temperature — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: 'Linear Thermal Expansion — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'thermal-expansion-calculator';
|
|
6
7
|
const title = '梁と構造物の熱膨張計算機';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'よくある質問',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: '熱膨張係数 — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: '熱膨張と温度 — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: '線熱膨張 — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'thermal-expansion-calculator';
|
|
6
7
|
const title = '보 및 구조물 열팽창 계산기';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: '자주 묻는 질문',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: '열팽창 계수 — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: '열팽창과 온도 — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: '선열팽창 — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'thermische-expansie-calculator';
|
|
6
7
|
const title = 'Thermische Expansie Calculator voor Balken en Structuren';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Veelgestelde Vragen',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'Coefficient of Thermal Expansion — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: 'Thermal expansion and temperature — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: 'Linear Thermal Expansion — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'kalkulator-rozszerzalnosci-cieplnej';
|
|
6
7
|
const title = 'Kalkulator Rozszerzalności Cieplnej Belek i Struktur';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Często Zadawane Pytania',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'Coefficient of Thermal Expansion — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: 'Thermal expansion and temperature — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: 'Linear Thermal Expansion — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calculadora-dilatacao-termica';
|
|
6
7
|
const title = 'Calculadora de Dilatação Térmica de Vigas e Estruturas';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Perguntas Frequentes',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'Coefficient of Thermal Expansion — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: 'Thermal expansion and temperature — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: 'Linear Thermal Expansion — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'kalkulyator-teplovogo-rasshireniya';
|
|
6
7
|
const title = 'Калькулятор теплового расширения балок и конструкций';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Часто задаваемые вопросы',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'Coefficient of Thermal Expansion — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: 'Thermal expansion and temperature — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: 'Linear Thermal Expansion — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'kalkylator-termisk-expansion';
|
|
6
7
|
const title = 'Kalkylator för termisk expansion av balkar och strukturer';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Vanliga frågor',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'Coefficient of Thermal Expansion — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: 'Thermal expansion and temperature — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: 'Linear Thermal Expansion — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'termal-genlesme-hesaplayici';
|
|
6
7
|
const title = 'Kiriş ve Yapıların Termal Genleşme Hesaplayıcısı';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Sıkça Sorulan Sorular',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'Termal Genleşme Katsayısı — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: 'Termal Genleşme ve Sıcaklık — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: 'Lineer Termal Genleşme — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ThermalExpansionCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'thermal-expansion-calculator';
|
|
6
7
|
const title = '梁与结构热膨胀计算器';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<ThermalExpansionCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: '常见问题',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: '热膨胀系数 — Engineering Toolbox', url: 'https://www.engineeringtoolbox.com/linear-expansion-coefficients-d_95.html' },
|
|
78
|
-
{ name: '热膨胀与温度 — Britannica', url: 'https://www.britannica.com/science/thermal-expansion' },
|
|
79
|
-
{ name: '线热膨胀 — Physics Hypertextbook', url: 'https://physics.info/expansion/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|
|
@@ -6,9 +6,10 @@ import type { KnownLocale } from '../../types';
|
|
|
6
6
|
interface Props {
|
|
7
7
|
locale?: KnownLocale;
|
|
8
8
|
}
|
|
9
|
+
|
|
9
10
|
const { locale = 'es' } = Astro.props;
|
|
10
11
|
const content = await thermalExpansionCalculator.i18n[locale]?.();
|
|
11
12
|
if (!content) return null;
|
|
12
13
|
---
|
|
13
14
|
|
|
14
|
-
<SEORenderer content={{ locale
|
|
15
|
+
{content.seo?.length > 0 && <SEORenderer content={{ locale, sections: content.seo }} />}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
overflow: hidden;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
.theme-dark .te-grid {
|
|
16
16
|
border-color: rgba(255, 255, 255, 0.08);
|
|
17
17
|
}
|
|
18
18
|
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
gap: 1.5rem;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
.theme-dark .te-sidebar {
|
|
29
29
|
background: rgba(255, 255, 255, 0.02);
|
|
30
30
|
border-right-color: rgba(255, 255, 255, 0.06);
|
|
31
31
|
}
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
background: rgba(255, 255, 255, 0.3);
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
.theme-dark .te-main {
|
|
42
42
|
background: rgba(255, 255, 255, 0.01);
|
|
43
43
|
}
|
|
44
44
|
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
padding: 0.75rem 1rem;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
|
|
64
|
+
.theme-dark .te-cat-badge {
|
|
65
65
|
background: rgba(255, 255, 255, 0.04);
|
|
66
66
|
border-color: rgba(255, 255, 255, 0.06);
|
|
67
67
|
}
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
color: #374151;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
|
|
83
|
+
.theme-dark .te-cat-name {
|
|
84
84
|
color: #e5e7eb;
|
|
85
85
|
}
|
|
86
86
|
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
color: #6b7280;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
|
|
101
|
+
.theme-dark .te-label {
|
|
102
102
|
color: #9ca3af;
|
|
103
103
|
}
|
|
104
104
|
|
|
@@ -125,13 +125,13 @@
|
|
|
125
125
|
border-color: #f97316;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
-
|
|
128
|
+
.theme-dark .te-input {
|
|
129
129
|
background: rgba(0, 0, 0, 0.25);
|
|
130
130
|
border-color: rgba(255, 255, 255, 0.1);
|
|
131
131
|
color: #f9fafb;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
-
|
|
134
|
+
.theme-dark .te-input:focus {
|
|
135
135
|
border-color: #f97316;
|
|
136
136
|
}
|
|
137
137
|
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
border-color: #f97316;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
-
|
|
170
|
+
.theme-dark .te-select {
|
|
171
171
|
background-color: rgba(0, 0, 0, 0.25);
|
|
172
172
|
border-color: rgba(255, 255, 255, 0.1);
|
|
173
173
|
color: #f9fafb;
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
justify-content: center;
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
|
|
220
|
+
.theme-dark .te-viz {
|
|
221
221
|
background: rgba(255, 255, 255, 0.01);
|
|
222
222
|
border-color: rgba(255, 255, 255, 0.06);
|
|
223
223
|
}
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
z-index: 2;
|
|
238
238
|
}
|
|
239
239
|
|
|
240
|
-
|
|
240
|
+
.theme-dark .te-beam-base {
|
|
241
241
|
background: linear-gradient(to bottom, #4b5563, #374151);
|
|
242
242
|
}
|
|
243
243
|
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
border: 1px solid rgba(255, 255, 255, 0.7);
|
|
323
323
|
}
|
|
324
324
|
|
|
325
|
-
|
|
325
|
+
.theme-dark .te-result-secondary {
|
|
326
326
|
background: rgba(255, 255, 255, 0.04);
|
|
327
327
|
border-color: rgba(255, 255, 255, 0.06);
|
|
328
328
|
}
|
|
@@ -340,7 +340,7 @@
|
|
|
340
340
|
opacity: 1;
|
|
341
341
|
}
|
|
342
342
|
|
|
343
|
-
|
|
343
|
+
.theme-dark .te-result-secondary .te-result-lbl {
|
|
344
344
|
color: #9ca3af;
|
|
345
345
|
}
|
|
346
346
|
|
|
@@ -360,7 +360,7 @@
|
|
|
360
360
|
color: #111827;
|
|
361
361
|
}
|
|
362
362
|
|
|
363
|
-
|
|
363
|
+
.theme-dark .te-result-secondary .te-result-num {
|
|
364
364
|
color: #f9fafb;
|
|
365
365
|
}
|
|
366
366
|
|
|
@@ -375,7 +375,7 @@
|
|
|
375
375
|
opacity: 1;
|
|
376
376
|
}
|
|
377
377
|
|
|
378
|
-
|
|
378
|
+
.theme-dark .te-result-secondary .te-result-unit {
|
|
379
379
|
color: #d1d5db;
|
|
380
380
|
}
|
|
381
381
|
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
border-color 0.25s;
|
|
399
399
|
}
|
|
400
400
|
|
|
401
|
-
|
|
401
|
+
.theme-dark .te-ref-card {
|
|
402
402
|
background: rgba(255, 255, 255, 0.03);
|
|
403
403
|
border-color: rgba(255, 255, 255, 0.06);
|
|
404
404
|
}
|
|
@@ -427,7 +427,7 @@
|
|
|
427
427
|
color: #374151;
|
|
428
428
|
}
|
|
429
429
|
|
|
430
|
-
|
|
430
|
+
.theme-dark .te-ref-val {
|
|
431
431
|
color: #e5e7eb;
|
|
432
432
|
}
|
|
433
433
|
|
|
@@ -464,7 +464,7 @@
|
|
|
464
464
|
font-style: italic;
|
|
465
465
|
}
|
|
466
466
|
|
|
467
|
-
|
|
467
|
+
.theme-dark .te-tip-text {
|
|
468
468
|
color: #9ca3af;
|
|
469
469
|
}
|
|
470
470
|
|
|
@@ -478,7 +478,7 @@
|
|
|
478
478
|
border-bottom: 1px solid #e5e7eb;
|
|
479
479
|
}
|
|
480
480
|
|
|
481
|
-
|
|
481
|
+
.theme-dark .te-sidebar {
|
|
482
482
|
border-bottom-color: rgba(255, 255, 255, 0.06);
|
|
483
483
|
}
|
|
484
484
|
|
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
import { Bibliography as SharedBibliography } from '@jjlmoya/utils-shared';
|
|
3
|
-
import {
|
|
4
|
-
import type { KnownLocale } from '../../types';
|
|
5
|
-
|
|
6
|
-
interface Props {
|
|
7
|
-
locale?: KnownLocale;
|
|
8
|
-
}
|
|
9
|
-
const { locale = 'es' } = Astro.props;
|
|
10
|
-
const content = await voltageDropCalculator.i18n[locale]?.();
|
|
3
|
+
import { bibliography } from './bibliography';
|
|
11
4
|
---
|
|
12
5
|
|
|
13
|
-
|
|
6
|
+
<SharedBibliography links={bibliography} />
|