@jjlmoya/utils-diy 1.8.0 → 1.10.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 +7 -4
- package/scripts/postinstall.mjs +27 -0
- package/src/entries.ts +31 -0
- package/src/tool/balusterCalculator/baluster-calculator.css +320 -0
- package/src/tool/balusterCalculator/component.astro +0 -322
- package/src/tool/balusterCalculator/entry.ts +29 -0
- package/src/tool/balusterCalculator/index.ts +2 -31
- package/src/tool/clayCalculator/clay-shrinkage-calculator.css +530 -0
- package/src/tool/clayCalculator/component.astro +0 -532
- package/src/tool/clayCalculator/entry.ts +29 -0
- package/src/tool/clayCalculator/index.ts +2 -31
- package/src/tool/concreteCalculator/component.astro +0 -705
- package/src/tool/concreteCalculator/concrete-mortar-calculator.css +703 -0
- package/src/tool/concreteCalculator/entry.ts +25 -0
- package/src/tool/concreteCalculator/index.ts +2 -26
- package/src/tool/cutOptimizer/component.astro +0 -477
- package/src/tool/cutOptimizer/cut-optimizer.css +475 -0
- package/src/tool/cutOptimizer/entry.ts +25 -0
- package/src/tool/cutOptimizer/index.ts +2 -26
- package/src/tool/drillCalculator/component.astro +0 -815
- package/src/tool/drillCalculator/drill-rpm-calculator.css +813 -0
- package/src/tool/drillCalculator/entry.ts +25 -0
- package/src/tool/drillCalculator/index.ts +2 -26
- package/src/tool/drillSharpener/component.astro +0 -393
- package/src/tool/drillSharpener/drill-sharpening-master.css +391 -0
- package/src/tool/drillSharpener/entry.ts +25 -0
- package/src/tool/drillSharpener/index.ts +2 -27
- package/src/tool/epoxyCalculator/component.astro +0 -571
- package/src/tool/epoxyCalculator/entry.ts +29 -0
- package/src/tool/epoxyCalculator/epoxy-resin-calculator.css +569 -0
- package/src/tool/epoxyCalculator/index.ts +2 -31
- package/src/tool/furnitureFit/component.astro +0 -345
- package/src/tool/furnitureFit/entry.ts +25 -0
- package/src/tool/furnitureFit/furniture-fit-calculator.css +343 -0
- package/src/tool/furnitureFit/index.ts +2 -26
- package/src/tool/mortarCalculator/component.astro +0 -620
- package/src/tool/mortarCalculator/entry.ts +25 -0
- package/src/tool/mortarCalculator/index.ts +2 -26
- package/src/tool/mortarCalculator/lime-mortar-calculator.css +618 -0
- package/src/tool/passepartoutCalculator/component.astro +0 -518
- package/src/tool/passepartoutCalculator/entry.ts +25 -0
- package/src/tool/passepartoutCalculator/index.ts +2 -26
- package/src/tool/passepartoutCalculator/passepartout-calculator.css +516 -0
- package/src/tool/stairCalculator/component.astro +0 -480
- package/src/tool/stairCalculator/entry.ts +25 -0
- package/src/tool/stairCalculator/index.ts +2 -27
- package/src/tool/stairCalculator/stair-calculator.css +478 -0
- package/src/tool/thermalExpansionCalculator/component.astro +0 -490
- package/src/tool/thermalExpansionCalculator/entry.ts +25 -0
- package/src/tool/thermalExpansionCalculator/index.ts +2 -26
- package/src/tool/thermalExpansionCalculator/thermal-expansion-calculator.css +488 -0
- package/src/tool/voltageDropCalculator/component.astro +0 -729
- package/src/tool/voltageDropCalculator/entry.ts +25 -0
- package/src/tool/voltageDropCalculator/index.ts +2 -26
- package/src/tool/voltageDropCalculator/voltage-drop-calculator.css +727 -0
- package/src/tools.ts +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { DiyToolEntry } from '../../types';
|
|
2
|
+
import type { VoltageDropCalculatorUI } from './ui';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export const voltageDropCalculator: DiyToolEntry<VoltageDropCalculatorUI> = {
|
|
6
|
+
id: 'voltage-drop-calculator',
|
|
7
|
+
icons: { bg: 'mdi:flash', fg: 'mdi:cable-data' },
|
|
8
|
+
i18n: {
|
|
9
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
10
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
11
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
12
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
13
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
14
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
15
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
16
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
17
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
18
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
19
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
20
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
21
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
22
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
23
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
24
|
+
},
|
|
25
|
+
};
|
|
@@ -1,29 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export const voltageDropCalculator: DiyToolEntry<VoltageDropCalculatorUI> = {
|
|
6
|
-
id: 'voltage-drop-calculator',
|
|
7
|
-
icons: { bg: 'mdi:flash', fg: 'mdi:cable-data' },
|
|
8
|
-
i18n: {
|
|
9
|
-
de: () => import('./i18n/de').then((m) => m.content),
|
|
10
|
-
en: () => import('./i18n/en').then((m) => m.content),
|
|
11
|
-
es: () => import('./i18n/es').then((m) => m.content),
|
|
12
|
-
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
13
|
-
id: () => import('./i18n/id').then((m) => m.content),
|
|
14
|
-
it: () => import('./i18n/it').then((m) => m.content),
|
|
15
|
-
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
16
|
-
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
17
|
-
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
18
|
-
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
19
|
-
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
20
|
-
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
21
|
-
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
22
|
-
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
23
|
-
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
24
|
-
},
|
|
25
|
-
};
|
|
26
|
-
|
|
1
|
+
import { voltageDropCalculator } from './entry';
|
|
2
|
+
export * from './entry';
|
|
27
3
|
export const VOLTAGE_DROP_CALCULATOR_TOOL: ToolDefinition = {
|
|
28
4
|
entry: voltageDropCalculator,
|
|
29
5
|
Component: () => import('./component.astro'),
|