@jjlmoya/utils-developer 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.
Files changed (52) hide show
  1. package/package.json +3 -2
  2. package/src/entries.ts +74 -0
  3. package/src/index.ts +0 -24
  4. package/src/tool/aspectRatio/entry.ts +30 -0
  5. package/src/tool/aspectRatio/index.ts +2 -32
  6. package/src/tool/calculadoraTiempoDatos/entry.ts +29 -0
  7. package/src/tool/calculadoraTiempoDatos/index.ts +2 -31
  8. package/src/tool/colorConverter/entry.ts +29 -0
  9. package/src/tool/colorConverter/index.ts +2 -31
  10. package/src/tool/conversorExcelCsvHtml/entry.ts +29 -0
  11. package/src/tool/conversorExcelCsvHtml/index.ts +2 -31
  12. package/src/tool/cronGenerator/entry.ts +30 -0
  13. package/src/tool/cronGenerator/index.ts +2 -32
  14. package/src/tool/cssSpecificityCalculator/entry.ts +30 -0
  15. package/src/tool/cssSpecificityCalculator/index.ts +2 -32
  16. package/src/tool/cssToInlineConverter/entry.ts +30 -0
  17. package/src/tool/cssToInlineConverter/index.ts +2 -32
  18. package/src/tool/duplicateCssRemover/entry.ts +30 -0
  19. package/src/tool/duplicateCssRemover/index.ts +2 -32
  20. package/src/tool/generadorSecurityTxt/entry.ts +29 -0
  21. package/src/tool/generadorSecurityTxt/index.ts +2 -31
  22. package/src/tool/hashGenerator/entry.ts +29 -0
  23. package/src/tool/hashGenerator/index.ts +2 -31
  24. package/src/tool/inspectorCertificadosSsl/entry.ts +45 -0
  25. package/src/tool/inspectorCertificadosSsl/index.ts +2 -47
  26. package/src/tool/jsonFormatter/entry.ts +30 -0
  27. package/src/tool/jsonFormatter/index.ts +2 -32
  28. package/src/tool/keycode/entry.ts +30 -0
  29. package/src/tool/keycode/index.ts +2 -32
  30. package/src/tool/llmCostCalculator/entry.ts +46 -0
  31. package/src/tool/llmCostCalculator/index.ts +2 -48
  32. package/src/tool/mobileMockupGenerator/entry.ts +45 -0
  33. package/src/tool/mobileMockupGenerator/index.ts +2 -47
  34. package/src/tool/musicalTypography/entry.ts +29 -0
  35. package/src/tool/musicalTypography/index.ts +2 -31
  36. package/src/tool/placeholderGenerator/entry.ts +46 -0
  37. package/src/tool/placeholderGenerator/index.ts +2 -48
  38. package/src/tool/promptLibrary/entry.ts +45 -0
  39. package/src/tool/promptLibrary/index.ts +2 -47
  40. package/src/tool/readabilityCalculator/entry.ts +45 -0
  41. package/src/tool/readabilityCalculator/index.ts +2 -47
  42. package/src/tool/svgSanitizer/entry.ts +45 -0
  43. package/src/tool/svgSanitizer/index.ts +2 -47
  44. package/src/tool/svgToCss/entry.ts +30 -0
  45. package/src/tool/svgToCss/index.ts +2 -32
  46. package/src/tool/urlCleaner/entry.ts +45 -0
  47. package/src/tool/urlCleaner/index.ts +2 -47
  48. package/src/tool/urlEncoderDecoder/entry.ts +30 -0
  49. package/src/tool/urlEncoderDecoder/index.ts +2 -32
  50. package/src/tool/utmGenerator/entry.ts +29 -0
  51. package/src/tool/utmGenerator/index.ts +2 -31
  52. package/src/tools.ts +1 -1
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-developer",
3
- "version": "1.10.0",
3
+ "version": "1.12.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
7
7
  "exports": {
8
8
  ".": "./src/index.ts",
9
- "./data": "./src/data.ts"
9
+ "./data": "./src/data.ts",
10
+ "./entries": "./src/entries.ts"
10
11
  },
11
12
  "files": [
12
13
  "src"
package/src/entries.ts ADDED
@@ -0,0 +1,74 @@
1
+ export { aspectRatio } from './tool/aspectRatio/entry';
2
+ export type { AspectRatioLocaleContent } from './tool/aspectRatio/entry';
3
+ export { calculadoraTiempoDatos } from './tool/calculadoraTiempoDatos/entry';
4
+ export type { CalculadoraTiempoDatosLocaleContent } from './tool/calculadoraTiempoDatos/entry';
5
+ export { colorConverter } from './tool/colorConverter/entry';
6
+ export type { ColorConverterLocaleContent } from './tool/colorConverter/entry';
7
+ export { conversorExcelCsvHtml } from './tool/conversorExcelCsvHtml/entry';
8
+ export type { ConversorExcelCsvHtmlLocaleContent } from './tool/conversorExcelCsvHtml/entry';
9
+ export { cronGenerator } from './tool/cronGenerator/entry';
10
+ export type { CronGeneratorLocaleContent } from './tool/cronGenerator/entry';
11
+ export { cssSpecificityCalculator } from './tool/cssSpecificityCalculator/entry';
12
+ export type { CssSpecificityCalculatorLocaleContent } from './tool/cssSpecificityCalculator/entry';
13
+ export { cssToInlineConverter } from './tool/cssToInlineConverter/entry';
14
+ export type { CssToInlineConverterLocaleContent } from './tool/cssToInlineConverter/entry';
15
+ export { duplicateCssRemover } from './tool/duplicateCssRemover/entry';
16
+ export type { DuplicateCssRemoverLocaleContent } from './tool/duplicateCssRemover/entry';
17
+ export { generadorSecurityTxt } from './tool/generadorSecurityTxt/entry';
18
+ export type { GeneradorSecurityTxtLocaleContent } from './tool/generadorSecurityTxt/entry';
19
+ export { hashGenerator } from './tool/hashGenerator/entry';
20
+ export type { HashGeneratorLocaleContent } from './tool/hashGenerator/entry';
21
+ export { inspectorCertificadosSsl } from './tool/inspectorCertificadosSsl/entry';
22
+ export type { InspectorCertificadosSslLocaleContent } from './tool/inspectorCertificadosSsl/entry';
23
+ export { jsonFormatter } from './tool/jsonFormatter/entry';
24
+ export type { JsonFormatterLocaleContent } from './tool/jsonFormatter/entry';
25
+ export { keycode } from './tool/keycode/entry';
26
+ export type { KeycodeLocaleContent } from './tool/keycode/entry';
27
+ export { llmCostCalculator } from './tool/llmCostCalculator/entry';
28
+ export type { LlmCostCalculatorLocaleContent } from './tool/llmCostCalculator/entry';
29
+ export { mobileMockupGenerator } from './tool/mobileMockupGenerator/entry';
30
+ export type { MobileMockupGeneratorLocaleContent } from './tool/mobileMockupGenerator/entry';
31
+ export { musicalTypography } from './tool/musicalTypography/entry';
32
+ export type { MusicalTypographyLocaleContent } from './tool/musicalTypography/entry';
33
+ export { placeholderGenerator } from './tool/placeholderGenerator/entry';
34
+ export type { PlaceholderGeneratorLocaleContent } from './tool/placeholderGenerator/entry';
35
+ export { promptLibrary } from './tool/promptLibrary/entry';
36
+ export type { PromptLibraryLocaleContent } from './tool/promptLibrary/entry';
37
+ export { readabilityCalculator } from './tool/readabilityCalculator/entry';
38
+ export type { ReadabilityCalculatorLocaleContent } from './tool/readabilityCalculator/entry';
39
+ export { svgSanitizer } from './tool/svgSanitizer/entry';
40
+ export type { SvgSanitizerLocaleContent } from './tool/svgSanitizer/entry';
41
+ export { svgToCss } from './tool/svgToCss/entry';
42
+ export type { SvgToCssLocaleContent } from './tool/svgToCss/entry';
43
+ export { urlCleaner } from './tool/urlCleaner/entry';
44
+ export type { UrlCleanerLocaleContent } from './tool/urlCleaner/entry';
45
+ export { urlEncoderDecoder } from './tool/urlEncoderDecoder/entry';
46
+ export type { UrlEncoderDecoderLocaleContent } from './tool/urlEncoderDecoder/entry';
47
+ export { utmGenerator } from './tool/utmGenerator/entry';
48
+ export type { UtmGeneratorLocaleContent } from './tool/utmGenerator/entry';
49
+ export { developerCategory } from './category';
50
+ import { aspectRatio } from './tool/aspectRatio/entry';
51
+ import { calculadoraTiempoDatos } from './tool/calculadoraTiempoDatos/entry';
52
+ import { colorConverter } from './tool/colorConverter/entry';
53
+ import { conversorExcelCsvHtml } from './tool/conversorExcelCsvHtml/entry';
54
+ import { cronGenerator } from './tool/cronGenerator/entry';
55
+ import { cssSpecificityCalculator } from './tool/cssSpecificityCalculator/entry';
56
+ import { cssToInlineConverter } from './tool/cssToInlineConverter/entry';
57
+ import { duplicateCssRemover } from './tool/duplicateCssRemover/entry';
58
+ import { generadorSecurityTxt } from './tool/generadorSecurityTxt/entry';
59
+ import { hashGenerator } from './tool/hashGenerator/entry';
60
+ import { inspectorCertificadosSsl } from './tool/inspectorCertificadosSsl/entry';
61
+ import { jsonFormatter } from './tool/jsonFormatter/entry';
62
+ import { keycode } from './tool/keycode/entry';
63
+ import { llmCostCalculator } from './tool/llmCostCalculator/entry';
64
+ import { mobileMockupGenerator } from './tool/mobileMockupGenerator/entry';
65
+ import { musicalTypography } from './tool/musicalTypography/entry';
66
+ import { placeholderGenerator } from './tool/placeholderGenerator/entry';
67
+ import { promptLibrary } from './tool/promptLibrary/entry';
68
+ import { readabilityCalculator } from './tool/readabilityCalculator/entry';
69
+ import { svgSanitizer } from './tool/svgSanitizer/entry';
70
+ import { svgToCss } from './tool/svgToCss/entry';
71
+ import { urlCleaner } from './tool/urlCleaner/entry';
72
+ import { urlEncoderDecoder } from './tool/urlEncoderDecoder/entry';
73
+ import { utmGenerator } from './tool/utmGenerator/entry';
74
+ export const ALL_ENTRIES = [aspectRatio, calculadoraTiempoDatos, colorConverter, conversorExcelCsvHtml, cronGenerator, cssSpecificityCalculator, cssToInlineConverter, duplicateCssRemover, generadorSecurityTxt, hashGenerator, inspectorCertificadosSsl, jsonFormatter, keycode, llmCostCalculator, mobileMockupGenerator, musicalTypography, placeholderGenerator, promptLibrary, readabilityCalculator, svgSanitizer, svgToCss, urlCleaner, urlEncoderDecoder, utmGenerator];
package/src/index.ts CHANGED
@@ -17,74 +17,50 @@ export type {
17
17
 
18
18
  export { ALL_ENTRIES, ALL_TOOLS } from './tools';
19
19
 
20
- export { JsonFormatterComponent, JsonFormatterSEO, JsonFormatterBibliography } from './tool/jsonFormatter/index';
21
20
  export { JSON_FORMATTER_TOOL } from './tool/jsonFormatter/index';
22
21
 
23
- export { SvgToCssComponent, SvgToCssSEO, SvgToCssBibliography } from './tool/svgToCss/index';
24
22
  export { SVG_TO_CSS_TOOL } from './tool/svgToCss/index';
25
23
 
26
- export { AspectRatioComponent, AspectRatioSEO, AspectRatioBibliography } from './tool/aspectRatio/index';
27
24
  export { ASPECT_RATIO_TOOL } from './tool/aspectRatio/index';
28
25
 
29
- export { PlaceholderGeneratorComponent, PlaceholderGeneratorSEO, PlaceholderGeneratorBibliography } from './tool/placeholderGenerator/index';
30
26
  export { PLACEHOLDER_GENERATOR_TOOL } from './tool/placeholderGenerator/index';
31
27
 
32
- export { UrlEncoderDecoderComponent, UrlEncoderDecoderSEO, UrlEncoderDecoderBibliography } from './tool/urlEncoderDecoder/index';
33
28
  export { URL_ENCODER_DECODER_TOOL } from './tool/urlEncoderDecoder/index';
34
29
 
35
- export { DuplicateCssRemoverComponent, DuplicateCssRemoverSEO, DuplicateCssRemoverBibliography } from './tool/duplicateCssRemover/index';
36
30
  export { DUPLICATE_CSS_REMOVER_TOOL } from './tool/duplicateCssRemover/index';
37
31
 
38
- export { CssToInlineConverterComponent, CssToInlineConverterSEO, CssToInlineConverterBibliography } from './tool/cssToInlineConverter/index';
39
32
  export { CSS_TO_INLINE_CONVERTER_TOOL } from './tool/cssToInlineConverter/index';
40
33
 
41
- export { CssSpecificityCalculatorComponent, CssSpecificityCalculatorSEO, CssSpecificityCalculatorBibliography } from './tool/cssSpecificityCalculator/index';
42
34
  export { CSS_SPECIFICITY_CALCULATOR_TOOL } from './tool/cssSpecificityCalculator/index';
43
35
 
44
- export { CronGeneratorComponent, CronGeneratorSEO, CronGeneratorBibliography } from './tool/cronGenerator/index';
45
36
  export { CRON_GENERATOR_TOOL } from './tool/cronGenerator/index';
46
37
 
47
- export { KeycodeComponent, KeycodeSEO, KeycodeBibliography } from './tool/keycode/index';
48
38
  export { KEYCODE_TOOL } from './tool/keycode/index';
49
39
 
50
- export { LlmCostCalculatorComponent, LlmCostCalculatorSEO, LlmCostCalculatorBibliography } from './tool/llmCostCalculator/index';
51
40
  export { LLM_COST_CALCULATOR_TOOL } from './tool/llmCostCalculator/index';
52
41
 
53
- export { MusicalTypographyComponent, MusicalTypographySEO, MusicalTypographyBibliography } from './tool/musicalTypography/index';
54
42
  export { MUSICAL_TYPOGRAPHY_TOOL } from './tool/musicalTypography/index';
55
43
 
56
- export { MobileMockupGeneratorComponent, MobileMockupGeneratorSEO, MobileMockupGeneratorBibliography } from './tool/mobileMockupGenerator/index';
57
44
  export { MOBILE_MOCKUP_GENERATOR_TOOL } from './tool/mobileMockupGenerator/index';
58
45
 
59
- export { HashGeneratorComponent, HashGeneratorSEO, HashGeneratorBibliography } from './tool/hashGenerator/index';
60
46
  export { HASH_GENERATOR_TOOL } from './tool/hashGenerator/index';
61
47
 
62
- export { PromptLibraryComponent, PromptLibrarySEO, PromptLibraryBibliography } from './tool/promptLibrary/index';
63
48
  export { PROMPT_LIBRARY_TOOL } from './tool/promptLibrary/index';
64
49
 
65
- export { ColorConverterComponent, ColorConverterSEO, ColorConverterBibliography } from './tool/colorConverter/index';
66
50
  export { COLOR_CONVERTER_TOOL } from './tool/colorConverter/index';
67
51
 
68
- export { ReadabilityCalculatorComponent, ReadabilityCalculatorSEO, ReadabilityCalculatorBibliography } from './tool/readabilityCalculator/index';
69
52
  export { READABILITY_CALCULATOR_TOOL } from './tool/readabilityCalculator/index';
70
53
 
71
- export { SvgSanitizerComponent, SvgSanitizerSEO, SvgSanitizerBibliography } from './tool/svgSanitizer/index';
72
54
  export { SVG_SANITIZER_TOOL } from './tool/svgSanitizer/index';
73
55
 
74
- export { UtmGeneratorComponent, UtmGeneratorSEO, UtmGeneratorBibliography } from './tool/utmGenerator/index';
75
56
  export { UTM_GENERATOR_TOOL } from './tool/utmGenerator/index';
76
57
 
77
- export { UrlCleanerComponent, UrlCleanerSEO, UrlCleanerBibliography } from './tool/urlCleaner/index';
78
58
  export { URL_CLEANER_TOOL } from './tool/urlCleaner/index';
79
59
 
80
- export { GeneradorSecurityTxtComponent, GeneradorSecurityTxtSEO, GeneradorSecurityTxtBibliography } from './tool/generadorSecurityTxt/index';
81
60
  export { GENERADOR_SECURITY_TXT_TOOL } from './tool/generadorSecurityTxt/index';
82
61
 
83
- export { CalculadoraTiempoDatosComponent, CalculadoraTiempoDatosSEO, CalculadoraTiempoDatosBibliography } from './tool/calculadoraTiempoDatos/index';
84
62
  export { CALCULADORA_TIEMPO_DATOS_TOOL } from './tool/calculadoraTiempoDatos/index';
85
63
 
86
- export { InspectorCertificadosSslComponent, InspectorCertificadosSslSEO, InspectorCertificadosSslBibliography } from './tool/inspectorCertificadosSsl/index';
87
64
  export { INSPECTOR_CERTIFICADOS_SSL_TOOL } from './tool/inspectorCertificadosSsl/index';
88
65
 
89
- export { ConversorExcelCsvHtmlComponent, ConversorExcelCsvHtmlSEO, ConversorExcelCsvHtmlBibliography } from './tool/conversorExcelCsvHtml/index';
90
66
  export { CONVERSOR_EXCEL_CSV_HTML_TOOL } from './tool/conversorExcelCsvHtml/index';
@@ -0,0 +1,30 @@
1
+ import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
2
+
3
+ import type { AspectRatioUI } from './ui';
4
+
5
+ export type AspectRatioLocaleContent = ToolLocaleContent<AspectRatioUI>;
6
+
7
+ export const aspectRatio: DeveloperToolEntry<AspectRatioUI> = {
8
+ id: 'aspect-ratio',
9
+ icons: {
10
+ bg: 'mdi:aspect-ratio',
11
+ fg: 'mdi:resize',
12
+ },
13
+ i18n: {
14
+ de: async () => (await import('./i18n/de')).content,
15
+ en: async () => (await import('./i18n/en')).content,
16
+ es: async () => (await import('./i18n/es')).content,
17
+ fr: async () => (await import('./i18n/fr')).content,
18
+ id: async () => (await import('./i18n/id')).content,
19
+ it: async () => (await import('./i18n/it')).content,
20
+ ja: async () => (await import('./i18n/ja')).content,
21
+ ko: async () => (await import('./i18n/ko')).content,
22
+ nl: async () => (await import('./i18n/nl')).content,
23
+ pl: async () => (await import('./i18n/pl')).content,
24
+ pt: async () => (await import('./i18n/pt')).content,
25
+ ru: async () => (await import('./i18n/ru')).content,
26
+ sv: async () => (await import('./i18n/sv')).content,
27
+ tr: async () => (await import('./i18n/tr')).content,
28
+ zh: async () => (await import('./i18n/zh')).content,
29
+ },
30
+ };
@@ -1,35 +1,5 @@
1
- import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
2
-
3
- import type { AspectRatioUI } from './ui';
4
-
5
- export type AspectRatioLocaleContent = ToolLocaleContent<AspectRatioUI>;
6
-
7
- export const aspectRatio: DeveloperToolEntry<AspectRatioUI> = {
8
- id: 'aspect-ratio',
9
- icons: {
10
- bg: 'mdi:aspect-ratio',
11
- fg: 'mdi:resize',
12
- },
13
- i18n: {
14
- de: async () => (await import('./i18n/de')).content,
15
- en: async () => (await import('./i18n/en')).content,
16
- es: async () => (await import('./i18n/es')).content,
17
- fr: async () => (await import('./i18n/fr')).content,
18
- id: async () => (await import('./i18n/id')).content,
19
- it: async () => (await import('./i18n/it')).content,
20
- ja: async () => (await import('./i18n/ja')).content,
21
- ko: async () => (await import('./i18n/ko')).content,
22
- nl: async () => (await import('./i18n/nl')).content,
23
- pl: async () => (await import('./i18n/pl')).content,
24
- pt: async () => (await import('./i18n/pt')).content,
25
- ru: async () => (await import('./i18n/ru')).content,
26
- sv: async () => (await import('./i18n/sv')).content,
27
- tr: async () => (await import('./i18n/tr')).content,
28
- zh: async () => (await import('./i18n/zh')).content,
29
- },
30
- };
31
-
32
-
1
+ import { aspectRatio } from './entry';
2
+ export * from './entry';
33
3
  export const ASPECT_RATIO_TOOL: ToolDefinition = {
34
4
  entry: aspectRatio,
35
5
  Component: () => import('./component.astro'),
@@ -0,0 +1,29 @@
1
+ import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
2
+ import type { CalculadoraTiempoDatosUI } from './ui';
3
+
4
+ export type CalculadoraTiempoDatosLocaleContent = ToolLocaleContent<CalculadoraTiempoDatosUI>;
5
+
6
+ export const calculadoraTiempoDatos: DeveloperToolEntry<CalculadoraTiempoDatosUI> = {
7
+ id: 'calculadora-tiempo-datos',
8
+ icons: {
9
+ bg: 'mdi:wifi',
10
+ fg: 'mdi:clock-outline',
11
+ },
12
+ i18n: {
13
+ de: async () => (await import('./i18n/de')).content,
14
+ en: async () => (await import('./i18n/en')).content,
15
+ es: async () => (await import('./i18n/es')).content,
16
+ fr: async () => (await import('./i18n/fr')).content,
17
+ id: async () => (await import('./i18n/id')).content,
18
+ it: async () => (await import('./i18n/it')).content,
19
+ ja: async () => (await import('./i18n/ja')).content,
20
+ ko: async () => (await import('./i18n/ko')).content,
21
+ nl: async () => (await import('./i18n/nl')).content,
22
+ pl: async () => (await import('./i18n/pl')).content,
23
+ pt: async () => (await import('./i18n/pt')).content,
24
+ ru: async () => (await import('./i18n/ru')).content,
25
+ sv: async () => (await import('./i18n/sv')).content,
26
+ tr: async () => (await import('./i18n/tr')).content,
27
+ zh: async () => (await import('./i18n/zh')).content,
28
+ },
29
+ };
@@ -1,34 +1,5 @@
1
- import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
2
- import type { CalculadoraTiempoDatosUI } from './ui';
3
-
4
- export type CalculadoraTiempoDatosLocaleContent = ToolLocaleContent<CalculadoraTiempoDatosUI>;
5
-
6
- export const calculadoraTiempoDatos: DeveloperToolEntry<CalculadoraTiempoDatosUI> = {
7
- id: 'calculadora-tiempo-datos',
8
- icons: {
9
- bg: 'mdi:wifi',
10
- fg: 'mdi:clock-outline',
11
- },
12
- i18n: {
13
- de: async () => (await import('./i18n/de')).content,
14
- en: async () => (await import('./i18n/en')).content,
15
- es: async () => (await import('./i18n/es')).content,
16
- fr: async () => (await import('./i18n/fr')).content,
17
- id: async () => (await import('./i18n/id')).content,
18
- it: async () => (await import('./i18n/it')).content,
19
- ja: async () => (await import('./i18n/ja')).content,
20
- ko: async () => (await import('./i18n/ko')).content,
21
- nl: async () => (await import('./i18n/nl')).content,
22
- pl: async () => (await import('./i18n/pl')).content,
23
- pt: async () => (await import('./i18n/pt')).content,
24
- ru: async () => (await import('./i18n/ru')).content,
25
- sv: async () => (await import('./i18n/sv')).content,
26
- tr: async () => (await import('./i18n/tr')).content,
27
- zh: async () => (await import('./i18n/zh')).content,
28
- },
29
- };
30
-
31
-
1
+ import { calculadoraTiempoDatos } from './entry';
2
+ export * from './entry';
32
3
  export const CALCULADORA_TIEMPO_DATOS_TOOL: ToolDefinition = {
33
4
  entry: calculadoraTiempoDatos,
34
5
  Component: () => import('./component.astro'),
@@ -0,0 +1,29 @@
1
+ import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
2
+ import type { ColorConverterUI } from './ui';
3
+
4
+ export type ColorConverterLocaleContent = ToolLocaleContent<ColorConverterUI>;
5
+
6
+ export const colorConverter: DeveloperToolEntry<ColorConverterUI> = {
7
+ id: 'color-converter',
8
+ icons: {
9
+ bg: 'mdi:palette',
10
+ fg: 'mdi:eyedropper',
11
+ },
12
+ i18n: {
13
+ de: async () => (await import('./i18n/de')).content,
14
+ en: async () => (await import('./i18n/en')).content,
15
+ es: async () => (await import('./i18n/es')).content,
16
+ fr: async () => (await import('./i18n/fr')).content,
17
+ id: async () => (await import('./i18n/id')).content,
18
+ it: async () => (await import('./i18n/it')).content,
19
+ ja: async () => (await import('./i18n/ja')).content,
20
+ ko: async () => (await import('./i18n/ko')).content,
21
+ nl: async () => (await import('./i18n/nl')).content,
22
+ pl: async () => (await import('./i18n/pl')).content,
23
+ pt: async () => (await import('./i18n/pt')).content,
24
+ ru: async () => (await import('./i18n/ru')).content,
25
+ sv: async () => (await import('./i18n/sv')).content,
26
+ tr: async () => (await import('./i18n/tr')).content,
27
+ zh: async () => (await import('./i18n/zh')).content,
28
+ },
29
+ };
@@ -1,34 +1,5 @@
1
- import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
2
- import type { ColorConverterUI } from './ui';
3
-
4
- export type ColorConverterLocaleContent = ToolLocaleContent<ColorConverterUI>;
5
-
6
- export const colorConverter: DeveloperToolEntry<ColorConverterUI> = {
7
- id: 'color-converter',
8
- icons: {
9
- bg: 'mdi:palette',
10
- fg: 'mdi:eyedropper',
11
- },
12
- i18n: {
13
- de: async () => (await import('./i18n/de')).content,
14
- en: async () => (await import('./i18n/en')).content,
15
- es: async () => (await import('./i18n/es')).content,
16
- fr: async () => (await import('./i18n/fr')).content,
17
- id: async () => (await import('./i18n/id')).content,
18
- it: async () => (await import('./i18n/it')).content,
19
- ja: async () => (await import('./i18n/ja')).content,
20
- ko: async () => (await import('./i18n/ko')).content,
21
- nl: async () => (await import('./i18n/nl')).content,
22
- pl: async () => (await import('./i18n/pl')).content,
23
- pt: async () => (await import('./i18n/pt')).content,
24
- ru: async () => (await import('./i18n/ru')).content,
25
- sv: async () => (await import('./i18n/sv')).content,
26
- tr: async () => (await import('./i18n/tr')).content,
27
- zh: async () => (await import('./i18n/zh')).content,
28
- },
29
- };
30
-
31
-
1
+ import { colorConverter } from './entry';
2
+ export * from './entry';
32
3
  export const COLOR_CONVERTER_TOOL: ToolDefinition = {
33
4
  entry: colorConverter,
34
5
  Component: () => import('./component.astro'),
@@ -0,0 +1,29 @@
1
+ import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
2
+ import type { ConversorExcelCsvHtmlUI } from './ui';
3
+
4
+ export type ConversorExcelCsvHtmlLocaleContent = ToolLocaleContent<ConversorExcelCsvHtmlUI>;
5
+
6
+ export const conversorExcelCsvHtml: DeveloperToolEntry<ConversorExcelCsvHtmlUI> = {
7
+ id: 'conversor-excel-csv-html',
8
+ icons: {
9
+ bg: 'mdi:table',
10
+ fg: 'mdi:file-delimited',
11
+ },
12
+ i18n: {
13
+ de: async () => (await import('./i18n/de')).content,
14
+ en: async () => (await import('./i18n/en')).content,
15
+ es: async () => (await import('./i18n/es')).content,
16
+ fr: async () => (await import('./i18n/fr')).content,
17
+ id: async () => (await import('./i18n/id')).content,
18
+ it: async () => (await import('./i18n/it')).content,
19
+ ja: async () => (await import('./i18n/ja')).content,
20
+ ko: async () => (await import('./i18n/ko')).content,
21
+ nl: async () => (await import('./i18n/nl')).content,
22
+ pl: async () => (await import('./i18n/pl')).content,
23
+ pt: async () => (await import('./i18n/pt')).content,
24
+ ru: async () => (await import('./i18n/ru')).content,
25
+ sv: async () => (await import('./i18n/sv')).content,
26
+ tr: async () => (await import('./i18n/tr')).content,
27
+ zh: async () => (await import('./i18n/zh')).content,
28
+ },
29
+ };
@@ -1,34 +1,5 @@
1
- import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
2
- import type { ConversorExcelCsvHtmlUI } from './ui';
3
-
4
- export type ConversorExcelCsvHtmlLocaleContent = ToolLocaleContent<ConversorExcelCsvHtmlUI>;
5
-
6
- export const conversorExcelCsvHtml: DeveloperToolEntry<ConversorExcelCsvHtmlUI> = {
7
- id: 'conversor-excel-csv-html',
8
- icons: {
9
- bg: 'mdi:table',
10
- fg: 'mdi:file-delimited',
11
- },
12
- i18n: {
13
- de: async () => (await import('./i18n/de')).content,
14
- en: async () => (await import('./i18n/en')).content,
15
- es: async () => (await import('./i18n/es')).content,
16
- fr: async () => (await import('./i18n/fr')).content,
17
- id: async () => (await import('./i18n/id')).content,
18
- it: async () => (await import('./i18n/it')).content,
19
- ja: async () => (await import('./i18n/ja')).content,
20
- ko: async () => (await import('./i18n/ko')).content,
21
- nl: async () => (await import('./i18n/nl')).content,
22
- pl: async () => (await import('./i18n/pl')).content,
23
- pt: async () => (await import('./i18n/pt')).content,
24
- ru: async () => (await import('./i18n/ru')).content,
25
- sv: async () => (await import('./i18n/sv')).content,
26
- tr: async () => (await import('./i18n/tr')).content,
27
- zh: async () => (await import('./i18n/zh')).content,
28
- },
29
- };
30
-
31
-
1
+ import { conversorExcelCsvHtml } from './entry';
2
+ export * from './entry';
32
3
  export const CONVERSOR_EXCEL_CSV_HTML_TOOL: ToolDefinition = {
33
4
  entry: conversorExcelCsvHtml,
34
5
  Component: () => import('./component.astro'),
@@ -0,0 +1,30 @@
1
+ import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
2
+
3
+ import type { CronGeneratorUI } from './ui';
4
+
5
+ export type CronGeneratorLocaleContent = ToolLocaleContent<CronGeneratorUI>;
6
+
7
+ export const cronGenerator: DeveloperToolEntry<CronGeneratorUI> = {
8
+ id: 'cron-generator',
9
+ icons: {
10
+ bg: 'mdi:clock-outline',
11
+ fg: 'mdi:code-braces',
12
+ },
13
+ i18n: {
14
+ de: async () => (await import('./i18n/de')).content,
15
+ en: async () => (await import('./i18n/en')).content,
16
+ es: async () => (await import('./i18n/es')).content,
17
+ fr: async () => (await import('./i18n/fr')).content,
18
+ id: async () => (await import('./i18n/id')).content,
19
+ it: async () => (await import('./i18n/it')).content,
20
+ ja: async () => (await import('./i18n/ja')).content,
21
+ ko: async () => (await import('./i18n/ko')).content,
22
+ nl: async () => (await import('./i18n/nl')).content,
23
+ pl: async () => (await import('./i18n/pl')).content,
24
+ pt: async () => (await import('./i18n/pt')).content,
25
+ ru: async () => (await import('./i18n/ru')).content,
26
+ sv: async () => (await import('./i18n/sv')).content,
27
+ tr: async () => (await import('./i18n/tr')).content,
28
+ zh: async () => (await import('./i18n/zh')).content,
29
+ },
30
+ };
@@ -1,35 +1,5 @@
1
- import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
2
-
3
- import type { CronGeneratorUI } from './ui';
4
-
5
- export type CronGeneratorLocaleContent = ToolLocaleContent<CronGeneratorUI>;
6
-
7
- export const cronGenerator: DeveloperToolEntry<CronGeneratorUI> = {
8
- id: 'cron-generator',
9
- icons: {
10
- bg: 'mdi:clock-outline',
11
- fg: 'mdi:code-braces',
12
- },
13
- i18n: {
14
- de: async () => (await import('./i18n/de')).content,
15
- en: async () => (await import('./i18n/en')).content,
16
- es: async () => (await import('./i18n/es')).content,
17
- fr: async () => (await import('./i18n/fr')).content,
18
- id: async () => (await import('./i18n/id')).content,
19
- it: async () => (await import('./i18n/it')).content,
20
- ja: async () => (await import('./i18n/ja')).content,
21
- ko: async () => (await import('./i18n/ko')).content,
22
- nl: async () => (await import('./i18n/nl')).content,
23
- pl: async () => (await import('./i18n/pl')).content,
24
- pt: async () => (await import('./i18n/pt')).content,
25
- ru: async () => (await import('./i18n/ru')).content,
26
- sv: async () => (await import('./i18n/sv')).content,
27
- tr: async () => (await import('./i18n/tr')).content,
28
- zh: async () => (await import('./i18n/zh')).content,
29
- },
30
- };
31
-
32
-
1
+ import { cronGenerator } from './entry';
2
+ export * from './entry';
33
3
  export const CRON_GENERATOR_TOOL: ToolDefinition = {
34
4
  entry: cronGenerator,
35
5
  Component: () => import('./component.astro'),
@@ -0,0 +1,30 @@
1
+ import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
2
+
3
+ import type { CssSpecificityCalculatorUI } from './ui';
4
+
5
+ export type CssSpecificityCalculatorLocaleContent = ToolLocaleContent<CssSpecificityCalculatorUI>;
6
+
7
+ export const cssSpecificityCalculator: DeveloperToolEntry<CssSpecificityCalculatorUI> = {
8
+ id: 'css-specificity-calculator',
9
+ icons: {
10
+ bg: 'mdi:scale-balance',
11
+ fg: 'mdi:language-css3',
12
+ },
13
+ i18n: {
14
+ de: async () => (await import('./i18n/de')).content,
15
+ en: async () => (await import('./i18n/en')).content,
16
+ es: async () => (await import('./i18n/es')).content,
17
+ fr: async () => (await import('./i18n/fr')).content,
18
+ id: async () => (await import('./i18n/id')).content,
19
+ it: async () => (await import('./i18n/it')).content,
20
+ ja: async () => (await import('./i18n/ja')).content,
21
+ ko: async () => (await import('./i18n/ko')).content,
22
+ nl: async () => (await import('./i18n/nl')).content,
23
+ pl: async () => (await import('./i18n/pl')).content,
24
+ pt: async () => (await import('./i18n/pt')).content,
25
+ ru: async () => (await import('./i18n/ru')).content,
26
+ sv: async () => (await import('./i18n/sv')).content,
27
+ tr: async () => (await import('./i18n/tr')).content,
28
+ zh: async () => (await import('./i18n/zh')).content,
29
+ },
30
+ };
@@ -1,35 +1,5 @@
1
- import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
2
-
3
- import type { CssSpecificityCalculatorUI } from './ui';
4
-
5
- export type CssSpecificityCalculatorLocaleContent = ToolLocaleContent<CssSpecificityCalculatorUI>;
6
-
7
- export const cssSpecificityCalculator: DeveloperToolEntry<CssSpecificityCalculatorUI> = {
8
- id: 'css-specificity-calculator',
9
- icons: {
10
- bg: 'mdi:scale-balance',
11
- fg: 'mdi:language-css3',
12
- },
13
- i18n: {
14
- de: async () => (await import('./i18n/de')).content,
15
- en: async () => (await import('./i18n/en')).content,
16
- es: async () => (await import('./i18n/es')).content,
17
- fr: async () => (await import('./i18n/fr')).content,
18
- id: async () => (await import('./i18n/id')).content,
19
- it: async () => (await import('./i18n/it')).content,
20
- ja: async () => (await import('./i18n/ja')).content,
21
- ko: async () => (await import('./i18n/ko')).content,
22
- nl: async () => (await import('./i18n/nl')).content,
23
- pl: async () => (await import('./i18n/pl')).content,
24
- pt: async () => (await import('./i18n/pt')).content,
25
- ru: async () => (await import('./i18n/ru')).content,
26
- sv: async () => (await import('./i18n/sv')).content,
27
- tr: async () => (await import('./i18n/tr')).content,
28
- zh: async () => (await import('./i18n/zh')).content,
29
- },
30
- };
31
-
32
-
1
+ import { cssSpecificityCalculator } from './entry';
2
+ export * from './entry';
33
3
  export const CSS_SPECIFICITY_CALCULATOR_TOOL: ToolDefinition = {
34
4
  entry: cssSpecificityCalculator,
35
5
  Component: () => import('./component.astro'),
@@ -0,0 +1,30 @@
1
+ import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
2
+
3
+ import type { CssToInlineConverterUI } from './ui';
4
+
5
+ export type CssToInlineConverterLocaleContent = ToolLocaleContent<CssToInlineConverterUI>;
6
+
7
+ export const cssToInlineConverter: DeveloperToolEntry<CssToInlineConverterUI> = {
8
+ id: 'css-to-inline-converter',
9
+ icons: {
10
+ bg: 'mdi:email-outline',
11
+ fg: 'mdi:language-css3',
12
+ },
13
+ i18n: {
14
+ de: async () => (await import('./i18n/de')).content,
15
+ en: async () => (await import('./i18n/en')).content,
16
+ es: async () => (await import('./i18n/es')).content,
17
+ fr: async () => (await import('./i18n/fr')).content,
18
+ id: async () => (await import('./i18n/id')).content,
19
+ it: async () => (await import('./i18n/it')).content,
20
+ ja: async () => (await import('./i18n/ja')).content,
21
+ ko: async () => (await import('./i18n/ko')).content,
22
+ nl: async () => (await import('./i18n/nl')).content,
23
+ pl: async () => (await import('./i18n/pl')).content,
24
+ pt: async () => (await import('./i18n/pt')).content,
25
+ ru: async () => (await import('./i18n/ru')).content,
26
+ sv: async () => (await import('./i18n/sv')).content,
27
+ tr: async () => (await import('./i18n/tr')).content,
28
+ zh: async () => (await import('./i18n/zh')).content,
29
+ },
30
+ };