@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.
- package/package.json +3 -2
- package/src/entries.ts +74 -0
- package/src/index.ts +0 -24
- package/src/tool/aspectRatio/entry.ts +30 -0
- package/src/tool/aspectRatio/index.ts +2 -32
- package/src/tool/calculadoraTiempoDatos/entry.ts +29 -0
- package/src/tool/calculadoraTiempoDatos/index.ts +2 -31
- package/src/tool/colorConverter/entry.ts +29 -0
- package/src/tool/colorConverter/index.ts +2 -31
- package/src/tool/conversorExcelCsvHtml/entry.ts +29 -0
- package/src/tool/conversorExcelCsvHtml/index.ts +2 -31
- package/src/tool/cronGenerator/entry.ts +30 -0
- package/src/tool/cronGenerator/index.ts +2 -32
- package/src/tool/cssSpecificityCalculator/entry.ts +30 -0
- package/src/tool/cssSpecificityCalculator/index.ts +2 -32
- package/src/tool/cssToInlineConverter/entry.ts +30 -0
- package/src/tool/cssToInlineConverter/index.ts +2 -32
- package/src/tool/duplicateCssRemover/entry.ts +30 -0
- package/src/tool/duplicateCssRemover/index.ts +2 -32
- package/src/tool/generadorSecurityTxt/entry.ts +29 -0
- package/src/tool/generadorSecurityTxt/index.ts +2 -31
- package/src/tool/hashGenerator/entry.ts +29 -0
- package/src/tool/hashGenerator/index.ts +2 -31
- package/src/tool/inspectorCertificadosSsl/entry.ts +45 -0
- package/src/tool/inspectorCertificadosSsl/index.ts +2 -47
- package/src/tool/jsonFormatter/entry.ts +30 -0
- package/src/tool/jsonFormatter/index.ts +2 -32
- package/src/tool/keycode/entry.ts +30 -0
- package/src/tool/keycode/index.ts +2 -32
- package/src/tool/llmCostCalculator/entry.ts +46 -0
- package/src/tool/llmCostCalculator/index.ts +2 -48
- package/src/tool/mobileMockupGenerator/entry.ts +45 -0
- package/src/tool/mobileMockupGenerator/index.ts +2 -47
- package/src/tool/musicalTypography/entry.ts +29 -0
- package/src/tool/musicalTypography/index.ts +2 -31
- package/src/tool/placeholderGenerator/entry.ts +46 -0
- package/src/tool/placeholderGenerator/index.ts +2 -48
- package/src/tool/promptLibrary/entry.ts +45 -0
- package/src/tool/promptLibrary/index.ts +2 -47
- package/src/tool/readabilityCalculator/entry.ts +45 -0
- package/src/tool/readabilityCalculator/index.ts +2 -47
- package/src/tool/svgSanitizer/entry.ts +45 -0
- package/src/tool/svgSanitizer/index.ts +2 -47
- package/src/tool/svgToCss/entry.ts +30 -0
- package/src/tool/svgToCss/index.ts +2 -32
- package/src/tool/urlCleaner/entry.ts +45 -0
- package/src/tool/urlCleaner/index.ts +2 -47
- package/src/tool/urlEncoderDecoder/entry.ts +30 -0
- package/src/tool/urlEncoderDecoder/index.ts +2 -32
- package/src/tool/utmGenerator/entry.ts +29 -0
- package/src/tool/utmGenerator/index.ts +2 -31
- package/src/tools.ts +1 -1
|
@@ -1,50 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type UrlCleanerLocaleContent = ToolLocaleContent<UrlCleanerUI>;
|
|
5
|
-
|
|
6
|
-
import { content as es } from './i18n/es';
|
|
7
|
-
import { content as en } from './i18n/en';
|
|
8
|
-
import { content as fr } from './i18n/fr';
|
|
9
|
-
import { content as de } from './i18n/de';
|
|
10
|
-
import { content as id } from './i18n/id';
|
|
11
|
-
import { content as it } from './i18n/it';
|
|
12
|
-
import { content as ja } from './i18n/ja';
|
|
13
|
-
import { content as ko } from './i18n/ko';
|
|
14
|
-
import { content as nl } from './i18n/nl';
|
|
15
|
-
import { content as pl } from './i18n/pl';
|
|
16
|
-
import { content as pt } from './i18n/pt';
|
|
17
|
-
import { content as ru } from './i18n/ru';
|
|
18
|
-
import { content as sv } from './i18n/sv';
|
|
19
|
-
import { content as tr } from './i18n/tr';
|
|
20
|
-
import { content as zh } from './i18n/zh';
|
|
21
|
-
|
|
22
|
-
export const urlCleaner: DeveloperToolEntry<UrlCleanerUI> = {
|
|
23
|
-
id: 'url-cleaner',
|
|
24
|
-
icons: {
|
|
25
|
-
bg: 'mdi:link-variant-off',
|
|
26
|
-
fg: 'mdi:broom',
|
|
27
|
-
},
|
|
28
|
-
i18n: {
|
|
29
|
-
es: async () => es,
|
|
30
|
-
en: async () => en,
|
|
31
|
-
fr: async () => fr,
|
|
32
|
-
de: async () => de,
|
|
33
|
-
id: async () => id,
|
|
34
|
-
it: async () => it,
|
|
35
|
-
ja: async () => ja,
|
|
36
|
-
ko: async () => ko,
|
|
37
|
-
nl: async () => nl,
|
|
38
|
-
pl: async () => pl,
|
|
39
|
-
pt: async () => pt,
|
|
40
|
-
ru: async () => ru,
|
|
41
|
-
sv: async () => sv,
|
|
42
|
-
tr: async () => tr,
|
|
43
|
-
zh: async () => zh,
|
|
44
|
-
},
|
|
45
|
-
};
|
|
46
|
-
|
|
47
|
-
|
|
1
|
+
import { urlCleaner } from './entry';
|
|
2
|
+
export * from './entry';
|
|
48
3
|
export const URL_CLEANER_TOOL: ToolDefinition = {
|
|
49
4
|
entry: urlCleaner,
|
|
50
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
import type { UrlEncoderDecoderUI } from './ui';
|
|
4
|
+
|
|
5
|
+
export type UrlEncoderDecoderLocaleContent = ToolLocaleContent<UrlEncoderDecoderUI>;
|
|
6
|
+
|
|
7
|
+
export const urlEncoderDecoder: DeveloperToolEntry<UrlEncoderDecoderUI> = {
|
|
8
|
+
id: 'url-encoder-decoder',
|
|
9
|
+
icons: {
|
|
10
|
+
bg: 'mdi:link-variant',
|
|
11
|
+
fg: 'mdi:code-brackets',
|
|
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
|
|
2
|
-
|
|
3
|
-
import type { UrlEncoderDecoderUI } from './ui';
|
|
4
|
-
|
|
5
|
-
export type UrlEncoderDecoderLocaleContent = ToolLocaleContent<UrlEncoderDecoderUI>;
|
|
6
|
-
|
|
7
|
-
export const urlEncoderDecoder: DeveloperToolEntry<UrlEncoderDecoderUI> = {
|
|
8
|
-
id: 'url-encoder-decoder',
|
|
9
|
-
icons: {
|
|
10
|
-
bg: 'mdi:link-variant',
|
|
11
|
-
fg: 'mdi:code-brackets',
|
|
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 { urlEncoderDecoder } from './entry';
|
|
2
|
+
export * from './entry';
|
|
33
3
|
export const URL_ENCODER_DECODER_TOOL: ToolDefinition = {
|
|
34
4
|
entry: urlEncoderDecoder,
|
|
35
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } 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
|
+
};
|
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
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);
|