@jjlmoya/utils-home 1.2.0 → 1.4.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/index.ts +6 -6
- package/src/tool/qrGenerator/i18n/es.ts +1 -1
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -17,10 +17,10 @@ export type {
|
|
|
17
17
|
|
|
18
18
|
export { ALL_TOOLS } from './tools';
|
|
19
19
|
|
|
20
|
-
export { QRGeneratorComponent, QRGeneratorSEO, QRGeneratorBibliography } from './tool/qrGenerator';
|
|
21
|
-
export { SolarCalculatorComponent, SolarCalculatorSEO, SolarCalculatorBibliography } from './tool/solarCalculator';
|
|
22
|
-
export { ProjectorCalculatorComponent, ProjectorCalculatorSEO, ProjectorCalculatorBibliography } from './tool/projectorCalculator';
|
|
23
|
-
export { DewPointCalculatorComponent, DewPointCalculatorSEO, DewPointCalculatorBibliography } from './tool/dewPointCalculator';
|
|
24
|
-
export { LedSavingCalculatorComponent, LedSavingCalculatorSEO, LedSavingCalculatorBibliography } from './tool/ledSavingCalculator';
|
|
25
|
-
export { TariffComparatorComponent, TariffComparatorSEO, TariffComparatorBibliography } from './tool/tariffComparator';
|
|
20
|
+
export { QRGeneratorComponent, QRGeneratorSEO, QRGeneratorBibliography, QR_GENERATOR_TOOL } from './tool/qrGenerator';
|
|
21
|
+
export { SolarCalculatorComponent, SolarCalculatorSEO, SolarCalculatorBibliography, SOLAR_CALCULATOR_TOOL } from './tool/solarCalculator';
|
|
22
|
+
export { ProjectorCalculatorComponent, ProjectorCalculatorSEO, ProjectorCalculatorBibliography, PROJECTOR_CALCULATOR_TOOL } from './tool/projectorCalculator';
|
|
23
|
+
export { DewPointCalculatorComponent, DewPointCalculatorSEO, DewPointCalculatorBibliography, DEW_POINT_CALCULATOR_TOOL } from './tool/dewPointCalculator';
|
|
24
|
+
export { LedSavingCalculatorComponent, LedSavingCalculatorSEO, LedSavingCalculatorBibliography, LED_SAVING_CALCULATOR_TOOL } from './tool/ledSavingCalculator';
|
|
25
|
+
export { TariffComparatorComponent, TariffComparatorSEO, TariffComparatorBibliography, TARIFF_COMPARATOR_TOOL } from './tool/tariffComparator';
|
|
26
26
|
|
|
@@ -2,7 +2,7 @@ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dt
|
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { QRGeneratorUI } from '../ui';
|
|
4
4
|
|
|
5
|
-
const slug = '
|
|
5
|
+
const slug = 'qr';
|
|
6
6
|
const title = 'Generador de Códigos QR Offline';
|
|
7
7
|
const description =
|
|
8
8
|
'Genera códigos QR para WiFi, URLs y Contactos de forma 100% segura en tu navegador. Tus datos nunca salen de tu dispositivo.';
|