@jjlmoya/utils-developer 1.11.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 (51) hide show
  1. package/package.json +3 -2
  2. package/src/entries.ts +74 -0
  3. package/src/tool/aspectRatio/entry.ts +30 -0
  4. package/src/tool/aspectRatio/index.ts +2 -32
  5. package/src/tool/calculadoraTiempoDatos/entry.ts +29 -0
  6. package/src/tool/calculadoraTiempoDatos/index.ts +2 -31
  7. package/src/tool/colorConverter/entry.ts +29 -0
  8. package/src/tool/colorConverter/index.ts +2 -31
  9. package/src/tool/conversorExcelCsvHtml/entry.ts +29 -0
  10. package/src/tool/conversorExcelCsvHtml/index.ts +2 -31
  11. package/src/tool/cronGenerator/entry.ts +30 -0
  12. package/src/tool/cronGenerator/index.ts +2 -32
  13. package/src/tool/cssSpecificityCalculator/entry.ts +30 -0
  14. package/src/tool/cssSpecificityCalculator/index.ts +2 -32
  15. package/src/tool/cssToInlineConverter/entry.ts +30 -0
  16. package/src/tool/cssToInlineConverter/index.ts +2 -32
  17. package/src/tool/duplicateCssRemover/entry.ts +30 -0
  18. package/src/tool/duplicateCssRemover/index.ts +2 -32
  19. package/src/tool/generadorSecurityTxt/entry.ts +29 -0
  20. package/src/tool/generadorSecurityTxt/index.ts +2 -31
  21. package/src/tool/hashGenerator/entry.ts +29 -0
  22. package/src/tool/hashGenerator/index.ts +2 -31
  23. package/src/tool/inspectorCertificadosSsl/entry.ts +45 -0
  24. package/src/tool/inspectorCertificadosSsl/index.ts +2 -47
  25. package/src/tool/jsonFormatter/entry.ts +30 -0
  26. package/src/tool/jsonFormatter/index.ts +2 -32
  27. package/src/tool/keycode/entry.ts +30 -0
  28. package/src/tool/keycode/index.ts +2 -32
  29. package/src/tool/llmCostCalculator/entry.ts +46 -0
  30. package/src/tool/llmCostCalculator/index.ts +2 -48
  31. package/src/tool/mobileMockupGenerator/entry.ts +45 -0
  32. package/src/tool/mobileMockupGenerator/index.ts +2 -47
  33. package/src/tool/musicalTypography/entry.ts +29 -0
  34. package/src/tool/musicalTypography/index.ts +2 -31
  35. package/src/tool/placeholderGenerator/entry.ts +46 -0
  36. package/src/tool/placeholderGenerator/index.ts +2 -48
  37. package/src/tool/promptLibrary/entry.ts +45 -0
  38. package/src/tool/promptLibrary/index.ts +2 -47
  39. package/src/tool/readabilityCalculator/entry.ts +45 -0
  40. package/src/tool/readabilityCalculator/index.ts +2 -47
  41. package/src/tool/svgSanitizer/entry.ts +45 -0
  42. package/src/tool/svgSanitizer/index.ts +2 -47
  43. package/src/tool/svgToCss/entry.ts +30 -0
  44. package/src/tool/svgToCss/index.ts +2 -32
  45. package/src/tool/urlCleaner/entry.ts +45 -0
  46. package/src/tool/urlCleaner/index.ts +2 -47
  47. package/src/tool/urlEncoderDecoder/entry.ts +30 -0
  48. package/src/tool/urlEncoderDecoder/index.ts +2 -32
  49. package/src/tool/utmGenerator/entry.ts +29 -0
  50. package/src/tool/utmGenerator/index.ts +2 -31
  51. package/src/tools.ts +1 -1
@@ -1,34 +1,5 @@
1
- import type { DeveloperToolEntry, ToolLocaleContent, ToolDefinition } from '../../types';
2
- import type { UtmGeneratorUI } from './ui';
3
-
4
- export type UtmGeneratorLocaleContent = ToolLocaleContent<UtmGeneratorUI>;
5
-
6
- export const utmGenerator: DeveloperToolEntry<UtmGeneratorUI> = {
7
- id: 'utm-generator',
8
- icons: {
9
- bg: 'mdi:link-variant',
10
- fg: 'mdi:tag-multiple',
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 { utmGenerator } from './entry';
2
+ export * from './entry';
32
3
  export const UTM_GENERATOR_TOOL: ToolDefinition = {
33
4
  entry: utmGenerator,
34
5
  Component: () => import('./component.astro'),
package/src/tools.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export { ALL_ENTRIES } from './entries';
1
2
  import type { ToolDefinition } from './types';
2
3
  import { JSON_FORMATTER_TOOL } from './tool/jsonFormatter/index';
3
4
  import { SVG_TO_CSS_TOOL } from './tool/svgToCss/index';
@@ -26,4 +27,3 @@ import { CONVERSOR_EXCEL_CSV_HTML_TOOL } from './tool/conversorExcelCsvHtml/inde
26
27
 
27
28
  export const ALL_TOOLS: ToolDefinition[] = [JSON_FORMATTER_TOOL, SVG_TO_CSS_TOOL, ASPECT_RATIO_TOOL, PLACEHOLDER_GENERATOR_TOOL, URL_ENCODER_DECODER_TOOL, DUPLICATE_CSS_REMOVER_TOOL, CSS_TO_INLINE_CONVERTER_TOOL, CSS_SPECIFICITY_CALCULATOR_TOOL, CRON_GENERATOR_TOOL, KEYCODE_TOOL, LLM_COST_CALCULATOR_TOOL, MUSICAL_TYPOGRAPHY_TOOL, MOBILE_MOCKUP_GENERATOR_TOOL, HASH_GENERATOR_TOOL, PROMPT_LIBRARY_TOOL, COLOR_CONVERTER_TOOL, READABILITY_CALCULATOR_TOOL, SVG_SANITIZER_TOOL, UTM_GENERATOR_TOOL, URL_CLEANER_TOOL, INSPECTOR_CERTIFICADOS_SSL_TOOL, GENERADOR_SECURITY_TXT_TOOL, CALCULADORA_TIEMPO_DATOS_TOOL, CONVERSOR_EXCEL_CSV_HTML_TOOL];
28
29
 
29
- export const ALL_ENTRIES = ALL_TOOLS.map(t => t.entry);