@jjlmoya/utils-developer 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 +1 -1
- package/src/index.ts +1 -1
- package/src/pages/[locale]/[slug].astro +3 -4
- package/src/tool/aspectRatio/index.ts +3 -7
- package/src/tool/calculadoraTiempoDatos/index.ts +3 -7
- package/src/tool/colorConverter/index.ts +3 -7
- package/src/tool/conversorExcelCsvHtml/index.ts +3 -7
- package/src/tool/cronGenerator/index.ts +3 -7
- package/src/tool/cssSpecificityCalculator/index.ts +3 -7
- package/src/tool/cssToInlineConverter/index.ts +3 -7
- package/src/tool/duplicateCssRemover/index.ts +3 -7
- package/src/tool/generadorSecurityTxt/index.ts +3 -7
- package/src/tool/hashGenerator/index.ts +3 -7
- package/src/tool/inspectorCertificadosSsl/index.ts +3 -7
- package/src/tool/jsonFormatter/index.ts +3 -7
- package/src/tool/keycode/index.ts +3 -7
- package/src/tool/llmCostCalculator/index.ts +3 -7
- package/src/tool/mobileMockupGenerator/index.ts +3 -7
- package/src/tool/musicalTypography/index.ts +3 -7
- package/src/tool/placeholderGenerator/index.ts +3 -7
- package/src/tool/promptLibrary/index.ts +3 -7
- package/src/tool/readabilityCalculator/index.ts +3 -7
- package/src/tool/svgSanitizer/index.ts +3 -7
- package/src/tool/svgToCss/index.ts +3 -7
- package/src/tool/urlCleaner/index.ts +3 -7
- package/src/tool/urlEncoderDecoder/index.ts +3 -7
- package/src/tool/utmGenerator/index.ts +3 -7
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -14,7 +14,8 @@ import type { UtilitySEOContent } from "@jjlmoya/utils-shared";
|
|
|
14
14
|
export async function getStaticPaths() {
|
|
15
15
|
const paths = [];
|
|
16
16
|
|
|
17
|
-
for (const { entry, Component } of ALL_TOOLS) {
|
|
17
|
+
for (const { entry, Component: lazyComp } of ALL_TOOLS) {
|
|
18
|
+
const { default: Component } = await lazyComp();
|
|
18
19
|
const localeEntries = Object.entries(entry.i18n) as [
|
|
19
20
|
KnownLocale,
|
|
20
21
|
() => Promise<ToolLocaleContent>,
|
|
@@ -52,8 +53,6 @@ export async function getStaticPaths() {
|
|
|
52
53
|
return paths;
|
|
53
54
|
}
|
|
54
55
|
|
|
55
|
-
type ToolComponent = (props: { ui: Record<string, string> }) => unknown;
|
|
56
|
-
|
|
57
56
|
interface NavItem {
|
|
58
57
|
id: string;
|
|
59
58
|
title: string;
|
|
@@ -62,7 +61,7 @@ interface NavItem {
|
|
|
62
61
|
}
|
|
63
62
|
|
|
64
63
|
interface Props {
|
|
65
|
-
Component:
|
|
64
|
+
Component: unknown;
|
|
66
65
|
locale: KnownLocale;
|
|
67
66
|
content: ToolLocaleContent;
|
|
68
67
|
localeUrls: Partial<Record<KnownLocale, string>>;
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import AspectRatioComponent from './component.astro';
|
|
3
|
-
import AspectRatioSEO from './seo.astro';
|
|
4
|
-
import AspectRatioBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { AspectRatioUI } from './ui';
|
|
7
4
|
|
|
@@ -32,11 +29,10 @@ export const aspectRatio: DeveloperToolEntry<AspectRatioUI> = {
|
|
|
32
29
|
},
|
|
33
30
|
};
|
|
34
31
|
|
|
35
|
-
export { AspectRatioComponent, AspectRatioSEO, AspectRatioBibliography };
|
|
36
32
|
|
|
37
33
|
export const ASPECT_RATIO_TOOL: ToolDefinition = {
|
|
38
34
|
entry: aspectRatio,
|
|
39
|
-
Component:
|
|
40
|
-
SEOComponent:
|
|
41
|
-
BibliographyComponent:
|
|
35
|
+
Component: () => import('./component.astro'),
|
|
36
|
+
SEOComponent: () => import('./seo.astro'),
|
|
37
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
42
38
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import CalculadoraTiempoDatosComponent from './component.astro';
|
|
3
|
-
import CalculadoraTiempoDatosSEO from './seo.astro';
|
|
4
|
-
import CalculadoraTiempoDatosBibliography from './bibliography.astro';
|
|
5
2
|
import type { CalculadoraTiempoDatosUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type CalculadoraTiempoDatosLocaleContent = ToolLocaleContent<CalculadoraTiempoDatosUI>;
|
|
@@ -31,11 +28,10 @@ export const calculadoraTiempoDatos: DeveloperToolEntry<CalculadoraTiempoDatosUI
|
|
|
31
28
|
},
|
|
32
29
|
};
|
|
33
30
|
|
|
34
|
-
export { CalculadoraTiempoDatosComponent, CalculadoraTiempoDatosSEO, CalculadoraTiempoDatosBibliography };
|
|
35
31
|
|
|
36
32
|
export const CALCULADORA_TIEMPO_DATOS_TOOL: ToolDefinition = {
|
|
37
33
|
entry: calculadoraTiempoDatos,
|
|
38
|
-
Component:
|
|
39
|
-
SEOComponent:
|
|
40
|
-
BibliographyComponent:
|
|
34
|
+
Component: () => import('./component.astro'),
|
|
35
|
+
SEOComponent: () => import('./seo.astro'),
|
|
36
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
41
37
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import ColorConverterComponent from './component.astro';
|
|
3
|
-
import ColorConverterSEO from './seo.astro';
|
|
4
|
-
import ColorConverterBibliography from './bibliography.astro';
|
|
5
2
|
import type { ColorConverterUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type ColorConverterLocaleContent = ToolLocaleContent<ColorConverterUI>;
|
|
@@ -31,11 +28,10 @@ export const colorConverter: DeveloperToolEntry<ColorConverterUI> = {
|
|
|
31
28
|
},
|
|
32
29
|
};
|
|
33
30
|
|
|
34
|
-
export { ColorConverterComponent, ColorConverterSEO, ColorConverterBibliography };
|
|
35
31
|
|
|
36
32
|
export const COLOR_CONVERTER_TOOL: ToolDefinition = {
|
|
37
33
|
entry: colorConverter,
|
|
38
|
-
Component:
|
|
39
|
-
SEOComponent:
|
|
40
|
-
BibliographyComponent:
|
|
34
|
+
Component: () => import('./component.astro'),
|
|
35
|
+
SEOComponent: () => import('./seo.astro'),
|
|
36
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
41
37
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import ConversorExcelCsvHtmlComponent from './component.astro';
|
|
3
|
-
import ConversorExcelCsvHtmlSEO from './seo.astro';
|
|
4
|
-
import ConversorExcelCsvHtmlBibliography from './bibliography.astro';
|
|
5
2
|
import type { ConversorExcelCsvHtmlUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type ConversorExcelCsvHtmlLocaleContent = ToolLocaleContent<ConversorExcelCsvHtmlUI>;
|
|
@@ -31,11 +28,10 @@ export const conversorExcelCsvHtml: DeveloperToolEntry<ConversorExcelCsvHtmlUI>
|
|
|
31
28
|
},
|
|
32
29
|
};
|
|
33
30
|
|
|
34
|
-
export { ConversorExcelCsvHtmlComponent, ConversorExcelCsvHtmlSEO, ConversorExcelCsvHtmlBibliography };
|
|
35
31
|
|
|
36
32
|
export const CONVERSOR_EXCEL_CSV_HTML_TOOL: ToolDefinition = {
|
|
37
33
|
entry: conversorExcelCsvHtml,
|
|
38
|
-
Component:
|
|
39
|
-
SEOComponent:
|
|
40
|
-
BibliographyComponent:
|
|
34
|
+
Component: () => import('./component.astro'),
|
|
35
|
+
SEOComponent: () => import('./seo.astro'),
|
|
36
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
41
37
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import CronGeneratorComponent from './component.astro';
|
|
3
|
-
import CronGeneratorSEO from './seo.astro';
|
|
4
|
-
import CronGeneratorBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { CronGeneratorUI } from './ui';
|
|
7
4
|
|
|
@@ -32,11 +29,10 @@ export const cronGenerator: DeveloperToolEntry<CronGeneratorUI> = {
|
|
|
32
29
|
},
|
|
33
30
|
};
|
|
34
31
|
|
|
35
|
-
export { CronGeneratorComponent, CronGeneratorSEO, CronGeneratorBibliography };
|
|
36
32
|
|
|
37
33
|
export const CRON_GENERATOR_TOOL: ToolDefinition = {
|
|
38
34
|
entry: cronGenerator,
|
|
39
|
-
Component:
|
|
40
|
-
SEOComponent:
|
|
41
|
-
BibliographyComponent:
|
|
35
|
+
Component: () => import('./component.astro'),
|
|
36
|
+
SEOComponent: () => import('./seo.astro'),
|
|
37
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
42
38
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import CssSpecificityCalculatorComponent from './component.astro';
|
|
3
|
-
import CssSpecificityCalculatorSEO from './seo.astro';
|
|
4
|
-
import CssSpecificityCalculatorBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { CssSpecificityCalculatorUI } from './ui';
|
|
7
4
|
|
|
@@ -32,11 +29,10 @@ export const cssSpecificityCalculator: DeveloperToolEntry<CssSpecificityCalculat
|
|
|
32
29
|
},
|
|
33
30
|
};
|
|
34
31
|
|
|
35
|
-
export { CssSpecificityCalculatorComponent, CssSpecificityCalculatorSEO, CssSpecificityCalculatorBibliography };
|
|
36
32
|
|
|
37
33
|
export const CSS_SPECIFICITY_CALCULATOR_TOOL: ToolDefinition = {
|
|
38
34
|
entry: cssSpecificityCalculator,
|
|
39
|
-
Component:
|
|
40
|
-
SEOComponent:
|
|
41
|
-
BibliographyComponent:
|
|
35
|
+
Component: () => import('./component.astro'),
|
|
36
|
+
SEOComponent: () => import('./seo.astro'),
|
|
37
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
42
38
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import CssToInlineConverterComponent from './component.astro';
|
|
3
|
-
import CssToInlineConverterSEO from './seo.astro';
|
|
4
|
-
import CssToInlineConverterBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { CssToInlineConverterUI } from './ui';
|
|
7
4
|
|
|
@@ -32,11 +29,10 @@ export const cssToInlineConverter: DeveloperToolEntry<CssToInlineConverterUI> =
|
|
|
32
29
|
},
|
|
33
30
|
};
|
|
34
31
|
|
|
35
|
-
export { CssToInlineConverterComponent, CssToInlineConverterSEO, CssToInlineConverterBibliography };
|
|
36
32
|
|
|
37
33
|
export const CSS_TO_INLINE_CONVERTER_TOOL: ToolDefinition = {
|
|
38
34
|
entry: cssToInlineConverter,
|
|
39
|
-
Component:
|
|
40
|
-
SEOComponent:
|
|
41
|
-
BibliographyComponent:
|
|
35
|
+
Component: () => import('./component.astro'),
|
|
36
|
+
SEOComponent: () => import('./seo.astro'),
|
|
37
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
42
38
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import DuplicateCssRemoverComponent from './component.astro';
|
|
3
|
-
import DuplicateCssRemoverSEO from './seo.astro';
|
|
4
|
-
import DuplicateCssRemoverBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { DuplicateCssRemoverUI } from './ui';
|
|
7
4
|
|
|
@@ -32,11 +29,10 @@ export const duplicateCssRemover: DeveloperToolEntry<DuplicateCssRemoverUI> = {
|
|
|
32
29
|
},
|
|
33
30
|
};
|
|
34
31
|
|
|
35
|
-
export { DuplicateCssRemoverComponent, DuplicateCssRemoverSEO, DuplicateCssRemoverBibliography };
|
|
36
32
|
|
|
37
33
|
export const DUPLICATE_CSS_REMOVER_TOOL: ToolDefinition = {
|
|
38
34
|
entry: duplicateCssRemover,
|
|
39
|
-
Component:
|
|
40
|
-
SEOComponent:
|
|
41
|
-
BibliographyComponent:
|
|
35
|
+
Component: () => import('./component.astro'),
|
|
36
|
+
SEOComponent: () => import('./seo.astro'),
|
|
37
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
42
38
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import GeneradorSecurityTxtComponent from './component.astro';
|
|
3
|
-
import GeneradorSecurityTxtSEO from './seo.astro';
|
|
4
|
-
import GeneradorSecurityTxtBibliography from './bibliography.astro';
|
|
5
2
|
import type { GeneradorSecurityTxtUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type GeneradorSecurityTxtLocaleContent = ToolLocaleContent<GeneradorSecurityTxtUI>;
|
|
@@ -31,11 +28,10 @@ export const generadorSecurityTxt: DeveloperToolEntry<GeneradorSecurityTxtUI> =
|
|
|
31
28
|
},
|
|
32
29
|
};
|
|
33
30
|
|
|
34
|
-
export { GeneradorSecurityTxtComponent, GeneradorSecurityTxtSEO, GeneradorSecurityTxtBibliography };
|
|
35
31
|
|
|
36
32
|
export const GENERADOR_SECURITY_TXT_TOOL: ToolDefinition = {
|
|
37
33
|
entry: generadorSecurityTxt,
|
|
38
|
-
Component:
|
|
39
|
-
SEOComponent:
|
|
40
|
-
BibliographyComponent:
|
|
34
|
+
Component: () => import('./component.astro'),
|
|
35
|
+
SEOComponent: () => import('./seo.astro'),
|
|
36
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
41
37
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import HashGeneratorComponent from './component.astro';
|
|
3
|
-
import HashGeneratorSEO from './seo.astro';
|
|
4
|
-
import HashGeneratorBibliography from './bibliography.astro';
|
|
5
2
|
import type { HashGeneratorUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type HashGeneratorLocaleContent = ToolLocaleContent<HashGeneratorUI>;
|
|
@@ -31,11 +28,10 @@ export const hashGenerator: DeveloperToolEntry<HashGeneratorUI> = {
|
|
|
31
28
|
},
|
|
32
29
|
};
|
|
33
30
|
|
|
34
|
-
export { HashGeneratorComponent, HashGeneratorSEO, HashGeneratorBibliography };
|
|
35
31
|
|
|
36
32
|
export const HASH_GENERATOR_TOOL: ToolDefinition = {
|
|
37
33
|
entry: hashGenerator,
|
|
38
|
-
Component:
|
|
39
|
-
SEOComponent:
|
|
40
|
-
BibliographyComponent:
|
|
34
|
+
Component: () => import('./component.astro'),
|
|
35
|
+
SEOComponent: () => import('./seo.astro'),
|
|
36
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
41
37
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import InspectorCertificadosSslComponent from './component.astro';
|
|
3
|
-
import InspectorCertificadosSslSEO from './seo.astro';
|
|
4
|
-
import InspectorCertificadosSslBibliography from './bibliography.astro';
|
|
5
2
|
import type { InspectorCertificadosSslUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type InspectorCertificadosSslLocaleContent = ToolLocaleContent<InspectorCertificadosSslUI>;
|
|
@@ -47,11 +44,10 @@ export const inspectorCertificadosSsl: DeveloperToolEntry<InspectorCertificadosS
|
|
|
47
44
|
},
|
|
48
45
|
};
|
|
49
46
|
|
|
50
|
-
export { InspectorCertificadosSslComponent, InspectorCertificadosSslSEO, InspectorCertificadosSslBibliography };
|
|
51
47
|
|
|
52
48
|
export const INSPECTOR_CERTIFICADOS_SSL_TOOL: ToolDefinition = {
|
|
53
49
|
entry: inspectorCertificadosSsl,
|
|
54
|
-
Component:
|
|
55
|
-
SEOComponent:
|
|
56
|
-
BibliographyComponent:
|
|
50
|
+
Component: () => import('./component.astro'),
|
|
51
|
+
SEOComponent: () => import('./seo.astro'),
|
|
52
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
57
53
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import JsonFormatterComponent from './component.astro';
|
|
3
|
-
import JsonFormatterSEO from './seo.astro';
|
|
4
|
-
import JsonFormatterBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { JsonFormatterUI } from './ui';
|
|
7
4
|
|
|
@@ -32,11 +29,10 @@ export const jsonFormatter: DeveloperToolEntry<JsonFormatterUI> = {
|
|
|
32
29
|
},
|
|
33
30
|
};
|
|
34
31
|
|
|
35
|
-
export { JsonFormatterComponent, JsonFormatterSEO, JsonFormatterBibliography };
|
|
36
32
|
|
|
37
33
|
export const JSON_FORMATTER_TOOL: ToolDefinition = {
|
|
38
34
|
entry: jsonFormatter,
|
|
39
|
-
Component:
|
|
40
|
-
SEOComponent:
|
|
41
|
-
BibliographyComponent:
|
|
35
|
+
Component: () => import('./component.astro'),
|
|
36
|
+
SEOComponent: () => import('./seo.astro'),
|
|
37
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
42
38
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import KeycodeComponent from './component.astro';
|
|
3
|
-
import KeycodeSEO from './seo.astro';
|
|
4
|
-
import KeycodeBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { KeycodeUI } from './ui';
|
|
7
4
|
|
|
@@ -32,11 +29,10 @@ export const keycode: DeveloperToolEntry<KeycodeUI> = {
|
|
|
32
29
|
},
|
|
33
30
|
};
|
|
34
31
|
|
|
35
|
-
export { KeycodeComponent, KeycodeSEO, KeycodeBibliography };
|
|
36
32
|
|
|
37
33
|
export const KEYCODE_TOOL: ToolDefinition = {
|
|
38
34
|
entry: keycode,
|
|
39
|
-
Component:
|
|
40
|
-
SEOComponent:
|
|
41
|
-
BibliographyComponent:
|
|
35
|
+
Component: () => import('./component.astro'),
|
|
36
|
+
SEOComponent: () => import('./seo.astro'),
|
|
37
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
42
38
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import LlmCostCalculatorComponent from './component.astro';
|
|
3
|
-
import LlmCostCalculatorSEO from './seo.astro';
|
|
4
|
-
import LlmCostCalculatorBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { LlmCostCalculatorUI } from './ui';
|
|
7
4
|
|
|
@@ -48,11 +45,10 @@ export const llmCostCalculator: DeveloperToolEntry<LlmCostCalculatorUI> = {
|
|
|
48
45
|
},
|
|
49
46
|
};
|
|
50
47
|
|
|
51
|
-
export { LlmCostCalculatorComponent, LlmCostCalculatorSEO, LlmCostCalculatorBibliography };
|
|
52
48
|
|
|
53
49
|
export const LLM_COST_CALCULATOR_TOOL: ToolDefinition = {
|
|
54
50
|
entry: llmCostCalculator,
|
|
55
|
-
Component:
|
|
56
|
-
SEOComponent:
|
|
57
|
-
BibliographyComponent:
|
|
51
|
+
Component: () => import('./component.astro'),
|
|
52
|
+
SEOComponent: () => import('./seo.astro'),
|
|
53
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
58
54
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import MobileMockupGeneratorComponent from './component.astro';
|
|
3
|
-
import MobileMockupGeneratorSEO from './seo.astro';
|
|
4
|
-
import MobileMockupGeneratorBibliography from './bibliography.astro';
|
|
5
2
|
import type { MobileMockupGeneratorUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type MobileMockupGeneratorLocaleContent = ToolLocaleContent<MobileMockupGeneratorUI>;
|
|
@@ -47,11 +44,10 @@ export const mobileMockupGenerator: DeveloperToolEntry<MobileMockupGeneratorUI>
|
|
|
47
44
|
},
|
|
48
45
|
};
|
|
49
46
|
|
|
50
|
-
export { MobileMockupGeneratorComponent, MobileMockupGeneratorSEO, MobileMockupGeneratorBibliography };
|
|
51
47
|
|
|
52
48
|
export const MOBILE_MOCKUP_GENERATOR_TOOL: ToolDefinition = {
|
|
53
49
|
entry: mobileMockupGenerator,
|
|
54
|
-
Component:
|
|
55
|
-
SEOComponent:
|
|
56
|
-
BibliographyComponent:
|
|
50
|
+
Component: () => import('./component.astro'),
|
|
51
|
+
SEOComponent: () => import('./seo.astro'),
|
|
52
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
57
53
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import MusicalTypographyComponent from './component.astro';
|
|
3
|
-
import MusicalTypographySEO from './seo.astro';
|
|
4
|
-
import MusicalTypographyBibliography from './bibliography.astro';
|
|
5
2
|
import type { MusicalTypographyUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type MusicalTypographyLocaleContent = ToolLocaleContent<MusicalTypographyUI>;
|
|
@@ -31,11 +28,10 @@ export const musicalTypography: DeveloperToolEntry<MusicalTypographyUI> = {
|
|
|
31
28
|
},
|
|
32
29
|
};
|
|
33
30
|
|
|
34
|
-
export { MusicalTypographyComponent, MusicalTypographySEO, MusicalTypographyBibliography };
|
|
35
31
|
|
|
36
32
|
export const MUSICAL_TYPOGRAPHY_TOOL: ToolDefinition = {
|
|
37
33
|
entry: musicalTypography,
|
|
38
|
-
Component:
|
|
39
|
-
SEOComponent:
|
|
40
|
-
BibliographyComponent:
|
|
34
|
+
Component: () => import('./component.astro'),
|
|
35
|
+
SEOComponent: () => import('./seo.astro'),
|
|
36
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
41
37
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import PlaceholderGeneratorComponent from './component.astro';
|
|
3
|
-
import PlaceholderGeneratorSEO from './seo.astro';
|
|
4
|
-
import PlaceholderGeneratorBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { PlaceholderGeneratorUI } from './ui';
|
|
7
4
|
|
|
@@ -48,11 +45,10 @@ export const placeholderGenerator: DeveloperToolEntry<PlaceholderGeneratorUI> =
|
|
|
48
45
|
},
|
|
49
46
|
};
|
|
50
47
|
|
|
51
|
-
export { PlaceholderGeneratorComponent, PlaceholderGeneratorSEO, PlaceholderGeneratorBibliography };
|
|
52
48
|
|
|
53
49
|
export const PLACEHOLDER_GENERATOR_TOOL: ToolDefinition = {
|
|
54
50
|
entry: placeholderGenerator,
|
|
55
|
-
Component:
|
|
56
|
-
SEOComponent:
|
|
57
|
-
BibliographyComponent:
|
|
51
|
+
Component: () => import('./component.astro'),
|
|
52
|
+
SEOComponent: () => import('./seo.astro'),
|
|
53
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
58
54
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import PromptLibraryComponent from './component.astro';
|
|
3
|
-
import PromptLibrarySEO from './seo.astro';
|
|
4
|
-
import PromptLibraryBibliography from './bibliography.astro';
|
|
5
2
|
import type { PromptLibraryUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type PromptLibraryLocaleContent = ToolLocaleContent<PromptLibraryUI>;
|
|
@@ -47,11 +44,10 @@ export const promptLibrary: DeveloperToolEntry<PromptLibraryUI> = {
|
|
|
47
44
|
},
|
|
48
45
|
};
|
|
49
46
|
|
|
50
|
-
export { PromptLibraryComponent, PromptLibrarySEO, PromptLibraryBibliography };
|
|
51
47
|
|
|
52
48
|
export const PROMPT_LIBRARY_TOOL: ToolDefinition = {
|
|
53
49
|
entry: promptLibrary,
|
|
54
|
-
Component:
|
|
55
|
-
SEOComponent:
|
|
56
|
-
BibliographyComponent:
|
|
50
|
+
Component: () => import('./component.astro'),
|
|
51
|
+
SEOComponent: () => import('./seo.astro'),
|
|
52
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
57
53
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import ReadabilityCalculatorComponent from './component.astro';
|
|
3
|
-
import ReadabilityCalculatorSEO from './seo.astro';
|
|
4
|
-
import ReadabilityCalculatorBibliography from './bibliography.astro';
|
|
5
2
|
import type { ReadabilityCalculatorUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type ReadabilityCalculatorLocaleContent = ToolLocaleContent<ReadabilityCalculatorUI>;
|
|
@@ -47,11 +44,10 @@ export const readabilityCalculator: DeveloperToolEntry<ReadabilityCalculatorUI>
|
|
|
47
44
|
},
|
|
48
45
|
};
|
|
49
46
|
|
|
50
|
-
export { ReadabilityCalculatorComponent, ReadabilityCalculatorSEO, ReadabilityCalculatorBibliography };
|
|
51
47
|
|
|
52
48
|
export const READABILITY_CALCULATOR_TOOL: ToolDefinition = {
|
|
53
49
|
entry: readabilityCalculator,
|
|
54
|
-
Component:
|
|
55
|
-
SEOComponent:
|
|
56
|
-
BibliographyComponent:
|
|
50
|
+
Component: () => import('./component.astro'),
|
|
51
|
+
SEOComponent: () => import('./seo.astro'),
|
|
52
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
57
53
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import SvgSanitizerComponent from './component.astro';
|
|
3
|
-
import SvgSanitizerSEO from './seo.astro';
|
|
4
|
-
import SvgSanitizerBibliography from './bibliography.astro';
|
|
5
2
|
import type { SvgSanitizerUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type SvgSanitizerLocaleContent = ToolLocaleContent<SvgSanitizerUI>;
|
|
@@ -47,11 +44,10 @@ export const svgSanitizer: DeveloperToolEntry<SvgSanitizerUI> = {
|
|
|
47
44
|
},
|
|
48
45
|
};
|
|
49
46
|
|
|
50
|
-
export { SvgSanitizerComponent, SvgSanitizerSEO, SvgSanitizerBibliography };
|
|
51
47
|
|
|
52
48
|
export const SVG_SANITIZER_TOOL: ToolDefinition = {
|
|
53
49
|
entry: svgSanitizer,
|
|
54
|
-
Component:
|
|
55
|
-
SEOComponent:
|
|
56
|
-
BibliographyComponent:
|
|
50
|
+
Component: () => import('./component.astro'),
|
|
51
|
+
SEOComponent: () => import('./seo.astro'),
|
|
52
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
57
53
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import SvgToCssComponent from './component.astro';
|
|
3
|
-
import SvgToCssSEO from './seo.astro';
|
|
4
|
-
import SvgToCssBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { SvgToCssUI } from './ui';
|
|
7
4
|
|
|
@@ -32,11 +29,10 @@ export const svgToCss: DeveloperToolEntry<SvgToCssUI> = {
|
|
|
32
29
|
},
|
|
33
30
|
};
|
|
34
31
|
|
|
35
|
-
export { SvgToCssComponent, SvgToCssSEO, SvgToCssBibliography };
|
|
36
32
|
|
|
37
33
|
export const SVG_TO_CSS_TOOL: ToolDefinition = {
|
|
38
34
|
entry: svgToCss,
|
|
39
|
-
Component:
|
|
40
|
-
SEOComponent:
|
|
41
|
-
BibliographyComponent:
|
|
35
|
+
Component: () => import('./component.astro'),
|
|
36
|
+
SEOComponent: () => import('./seo.astro'),
|
|
37
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
42
38
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import UrlCleanerComponent from './component.astro';
|
|
3
|
-
import UrlCleanerSEO from './seo.astro';
|
|
4
|
-
import UrlCleanerBibliography from './bibliography.astro';
|
|
5
2
|
import type { UrlCleanerUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type UrlCleanerLocaleContent = ToolLocaleContent<UrlCleanerUI>;
|
|
@@ -47,11 +44,10 @@ export const urlCleaner: DeveloperToolEntry<UrlCleanerUI> = {
|
|
|
47
44
|
},
|
|
48
45
|
};
|
|
49
46
|
|
|
50
|
-
export { UrlCleanerComponent, UrlCleanerSEO, UrlCleanerBibliography };
|
|
51
47
|
|
|
52
48
|
export const URL_CLEANER_TOOL: ToolDefinition = {
|
|
53
49
|
entry: urlCleaner,
|
|
54
|
-
Component:
|
|
55
|
-
SEOComponent:
|
|
56
|
-
BibliographyComponent:
|
|
50
|
+
Component: () => import('./component.astro'),
|
|
51
|
+
SEOComponent: () => import('./seo.astro'),
|
|
52
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
57
53
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import UrlEncoderDecoderComponent from './component.astro';
|
|
3
|
-
import UrlEncoderDecoderSEO from './seo.astro';
|
|
4
|
-
import UrlEncoderDecoderBibliography from './bibliography.astro';
|
|
5
2
|
|
|
6
3
|
import type { UrlEncoderDecoderUI } from './ui';
|
|
7
4
|
|
|
@@ -32,11 +29,10 @@ export const urlEncoderDecoder: DeveloperToolEntry<UrlEncoderDecoderUI> = {
|
|
|
32
29
|
},
|
|
33
30
|
};
|
|
34
31
|
|
|
35
|
-
export { UrlEncoderDecoderComponent, UrlEncoderDecoderSEO, UrlEncoderDecoderBibliography };
|
|
36
32
|
|
|
37
33
|
export const URL_ENCODER_DECODER_TOOL: ToolDefinition = {
|
|
38
34
|
entry: urlEncoderDecoder,
|
|
39
|
-
Component:
|
|
40
|
-
SEOComponent:
|
|
41
|
-
BibliographyComponent:
|
|
35
|
+
Component: () => import('./component.astro'),
|
|
36
|
+
SEOComponent: () => import('./seo.astro'),
|
|
37
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
42
38
|
};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
|
|
2
|
-
import UtmGeneratorComponent from './component.astro';
|
|
3
|
-
import UtmGeneratorSEO from './seo.astro';
|
|
4
|
-
import UtmGeneratorBibliography from './bibliography.astro';
|
|
5
2
|
import type { UtmGeneratorUI } from './ui';
|
|
6
3
|
|
|
7
4
|
export type UtmGeneratorLocaleContent = ToolLocaleContent<UtmGeneratorUI>;
|
|
@@ -31,11 +28,10 @@ export const utmGenerator: DeveloperToolEntry<UtmGeneratorUI> = {
|
|
|
31
28
|
},
|
|
32
29
|
};
|
|
33
30
|
|
|
34
|
-
export { UtmGeneratorComponent, UtmGeneratorSEO, UtmGeneratorBibliography };
|
|
35
31
|
|
|
36
32
|
export const UTM_GENERATOR_TOOL: ToolDefinition = {
|
|
37
33
|
entry: utmGenerator,
|
|
38
|
-
Component:
|
|
39
|
-
SEOComponent:
|
|
40
|
-
BibliographyComponent:
|
|
34
|
+
Component: () => import('./component.astro'),
|
|
35
|
+
SEOComponent: () => import('./seo.astro'),
|
|
36
|
+
BibliographyComponent: () => import('./bibliography.astro'),
|
|
41
37
|
};
|