@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.
- package/package.json +3 -2
- package/src/entries.ts +74 -0
- 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
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
import type { PlaceholderGeneratorUI } from './ui';
|
|
4
|
+
|
|
5
|
+
export type PlaceholderGeneratorLocaleContent = ToolLocaleContent<PlaceholderGeneratorUI>;
|
|
6
|
+
|
|
7
|
+
import { content as es } from './i18n/es';
|
|
8
|
+
import { content as en } from './i18n/en';
|
|
9
|
+
import { content as fr } from './i18n/fr';
|
|
10
|
+
import { content as de } from './i18n/de';
|
|
11
|
+
import { content as id } from './i18n/id';
|
|
12
|
+
import { content as it } from './i18n/it';
|
|
13
|
+
import { content as ja } from './i18n/ja';
|
|
14
|
+
import { content as ko } from './i18n/ko';
|
|
15
|
+
import { content as nl } from './i18n/nl';
|
|
16
|
+
import { content as pl } from './i18n/pl';
|
|
17
|
+
import { content as pt } from './i18n/pt';
|
|
18
|
+
import { content as ru } from './i18n/ru';
|
|
19
|
+
import { content as sv } from './i18n/sv';
|
|
20
|
+
import { content as tr } from './i18n/tr';
|
|
21
|
+
import { content as zh } from './i18n/zh';
|
|
22
|
+
|
|
23
|
+
export const placeholderGenerator: DeveloperToolEntry<PlaceholderGeneratorUI> = {
|
|
24
|
+
id: 'placeholder-generator',
|
|
25
|
+
icons: {
|
|
26
|
+
bg: 'mdi:image-outline',
|
|
27
|
+
fg: 'mdi:image-size-select-actual',
|
|
28
|
+
},
|
|
29
|
+
i18n: {
|
|
30
|
+
es: async () => es,
|
|
31
|
+
en: async () => en,
|
|
32
|
+
fr: async () => fr,
|
|
33
|
+
de: async () => de,
|
|
34
|
+
id: async () => id,
|
|
35
|
+
it: async () => it,
|
|
36
|
+
ja: async () => ja,
|
|
37
|
+
ko: async () => ko,
|
|
38
|
+
nl: async () => nl,
|
|
39
|
+
pl: async () => pl,
|
|
40
|
+
pt: async () => pt,
|
|
41
|
+
ru: async () => ru,
|
|
42
|
+
sv: async () => sv,
|
|
43
|
+
tr: async () => tr,
|
|
44
|
+
zh: async () => zh,
|
|
45
|
+
},
|
|
46
|
+
};
|
|
@@ -1,51 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import type { PlaceholderGeneratorUI } from './ui';
|
|
4
|
-
|
|
5
|
-
export type PlaceholderGeneratorLocaleContent = ToolLocaleContent<PlaceholderGeneratorUI>;
|
|
6
|
-
|
|
7
|
-
import { content as es } from './i18n/es';
|
|
8
|
-
import { content as en } from './i18n/en';
|
|
9
|
-
import { content as fr } from './i18n/fr';
|
|
10
|
-
import { content as de } from './i18n/de';
|
|
11
|
-
import { content as id } from './i18n/id';
|
|
12
|
-
import { content as it } from './i18n/it';
|
|
13
|
-
import { content as ja } from './i18n/ja';
|
|
14
|
-
import { content as ko } from './i18n/ko';
|
|
15
|
-
import { content as nl } from './i18n/nl';
|
|
16
|
-
import { content as pl } from './i18n/pl';
|
|
17
|
-
import { content as pt } from './i18n/pt';
|
|
18
|
-
import { content as ru } from './i18n/ru';
|
|
19
|
-
import { content as sv } from './i18n/sv';
|
|
20
|
-
import { content as tr } from './i18n/tr';
|
|
21
|
-
import { content as zh } from './i18n/zh';
|
|
22
|
-
|
|
23
|
-
export const placeholderGenerator: DeveloperToolEntry<PlaceholderGeneratorUI> = {
|
|
24
|
-
id: 'placeholder-generator',
|
|
25
|
-
icons: {
|
|
26
|
-
bg: 'mdi:image-outline',
|
|
27
|
-
fg: 'mdi:image-size-select-actual',
|
|
28
|
-
},
|
|
29
|
-
i18n: {
|
|
30
|
-
es: async () => es,
|
|
31
|
-
en: async () => en,
|
|
32
|
-
fr: async () => fr,
|
|
33
|
-
de: async () => de,
|
|
34
|
-
id: async () => id,
|
|
35
|
-
it: async () => it,
|
|
36
|
-
ja: async () => ja,
|
|
37
|
-
ko: async () => ko,
|
|
38
|
-
nl: async () => nl,
|
|
39
|
-
pl: async () => pl,
|
|
40
|
-
pt: async () => pt,
|
|
41
|
-
ru: async () => ru,
|
|
42
|
-
sv: async () => sv,
|
|
43
|
-
tr: async () => tr,
|
|
44
|
-
zh: async () => zh,
|
|
45
|
-
},
|
|
46
|
-
};
|
|
47
|
-
|
|
48
|
-
|
|
1
|
+
import { placeholderGenerator } from './entry';
|
|
2
|
+
export * from './entry';
|
|
49
3
|
export const PLACEHOLDER_GENERATOR_TOOL: ToolDefinition = {
|
|
50
4
|
entry: placeholderGenerator,
|
|
51
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { PromptLibraryUI } from './ui';
|
|
3
|
+
|
|
4
|
+
export type PromptLibraryLocaleContent = ToolLocaleContent<PromptLibraryUI>;
|
|
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 promptLibrary: DeveloperToolEntry<PromptLibraryUI> = {
|
|
23
|
+
id: 'prompt-library',
|
|
24
|
+
icons: {
|
|
25
|
+
bg: 'mdi:robot',
|
|
26
|
+
fg: 'mdi:text-box-multiple',
|
|
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
|
+
};
|
|
@@ -1,50 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type PromptLibraryLocaleContent = ToolLocaleContent<PromptLibraryUI>;
|
|
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 promptLibrary: DeveloperToolEntry<PromptLibraryUI> = {
|
|
23
|
-
id: 'prompt-library',
|
|
24
|
-
icons: {
|
|
25
|
-
bg: 'mdi:robot',
|
|
26
|
-
fg: 'mdi:text-box-multiple',
|
|
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 { promptLibrary } from './entry';
|
|
2
|
+
export * from './entry';
|
|
48
3
|
export const PROMPT_LIBRARY_TOOL: ToolDefinition = {
|
|
49
4
|
entry: promptLibrary,
|
|
50
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { ReadabilityCalculatorUI } from './ui';
|
|
3
|
+
|
|
4
|
+
export type ReadabilityCalculatorLocaleContent = ToolLocaleContent<ReadabilityCalculatorUI>;
|
|
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 readabilityCalculator: DeveloperToolEntry<ReadabilityCalculatorUI> = {
|
|
23
|
+
id: 'readability-calculator',
|
|
24
|
+
icons: {
|
|
25
|
+
bg: 'mdi:eye-check',
|
|
26
|
+
fg: 'mdi:contrast-circle',
|
|
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
|
+
};
|
|
@@ -1,50 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type ReadabilityCalculatorLocaleContent = ToolLocaleContent<ReadabilityCalculatorUI>;
|
|
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 readabilityCalculator: DeveloperToolEntry<ReadabilityCalculatorUI> = {
|
|
23
|
-
id: 'readability-calculator',
|
|
24
|
-
icons: {
|
|
25
|
-
bg: 'mdi:eye-check',
|
|
26
|
-
fg: 'mdi:contrast-circle',
|
|
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 { readabilityCalculator } from './entry';
|
|
2
|
+
export * from './entry';
|
|
48
3
|
export const READABILITY_CALCULATOR_TOOL: ToolDefinition = {
|
|
49
4
|
entry: readabilityCalculator,
|
|
50
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { SvgSanitizerUI } from './ui';
|
|
3
|
+
|
|
4
|
+
export type SvgSanitizerLocaleContent = ToolLocaleContent<SvgSanitizerUI>;
|
|
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 it } from './i18n/it';
|
|
11
|
+
import { content as ja } from './i18n/ja';
|
|
12
|
+
import { content as ko } from './i18n/ko';
|
|
13
|
+
import { content as nl } from './i18n/nl';
|
|
14
|
+
import { content as pl } from './i18n/pl';
|
|
15
|
+
import { content as pt } from './i18n/pt';
|
|
16
|
+
import { content as ru } from './i18n/ru';
|
|
17
|
+
import { content as sv } from './i18n/sv';
|
|
18
|
+
import { content as tr } from './i18n/tr';
|
|
19
|
+
import { content as zh } from './i18n/zh';
|
|
20
|
+
import { content as id } from './i18n/id';
|
|
21
|
+
|
|
22
|
+
export const svgSanitizer: DeveloperToolEntry<SvgSanitizerUI> = {
|
|
23
|
+
id: 'svg-sanitizer',
|
|
24
|
+
icons: {
|
|
25
|
+
bg: 'mdi:xml',
|
|
26
|
+
fg: 'mdi:broom',
|
|
27
|
+
},
|
|
28
|
+
i18n: {
|
|
29
|
+
es: async () => es,
|
|
30
|
+
en: async () => en,
|
|
31
|
+
fr: async () => fr,
|
|
32
|
+
de: async () => de,
|
|
33
|
+
it: async () => it,
|
|
34
|
+
ja: async () => ja,
|
|
35
|
+
ko: async () => ko,
|
|
36
|
+
nl: async () => nl,
|
|
37
|
+
pl: async () => pl,
|
|
38
|
+
pt: async () => pt,
|
|
39
|
+
ru: async () => ru,
|
|
40
|
+
sv: async () => sv,
|
|
41
|
+
tr: async () => tr,
|
|
42
|
+
zh: async () => zh,
|
|
43
|
+
id: async () => id,
|
|
44
|
+
},
|
|
45
|
+
};
|
|
@@ -1,50 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type SvgSanitizerLocaleContent = ToolLocaleContent<SvgSanitizerUI>;
|
|
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 it } from './i18n/it';
|
|
11
|
-
import { content as ja } from './i18n/ja';
|
|
12
|
-
import { content as ko } from './i18n/ko';
|
|
13
|
-
import { content as nl } from './i18n/nl';
|
|
14
|
-
import { content as pl } from './i18n/pl';
|
|
15
|
-
import { content as pt } from './i18n/pt';
|
|
16
|
-
import { content as ru } from './i18n/ru';
|
|
17
|
-
import { content as sv } from './i18n/sv';
|
|
18
|
-
import { content as tr } from './i18n/tr';
|
|
19
|
-
import { content as zh } from './i18n/zh';
|
|
20
|
-
import { content as id } from './i18n/id';
|
|
21
|
-
|
|
22
|
-
export const svgSanitizer: DeveloperToolEntry<SvgSanitizerUI> = {
|
|
23
|
-
id: 'svg-sanitizer',
|
|
24
|
-
icons: {
|
|
25
|
-
bg: 'mdi:xml',
|
|
26
|
-
fg: 'mdi:broom',
|
|
27
|
-
},
|
|
28
|
-
i18n: {
|
|
29
|
-
es: async () => es,
|
|
30
|
-
en: async () => en,
|
|
31
|
-
fr: async () => fr,
|
|
32
|
-
de: async () => de,
|
|
33
|
-
it: async () => it,
|
|
34
|
-
ja: async () => ja,
|
|
35
|
-
ko: async () => ko,
|
|
36
|
-
nl: async () => nl,
|
|
37
|
-
pl: async () => pl,
|
|
38
|
-
pt: async () => pt,
|
|
39
|
-
ru: async () => ru,
|
|
40
|
-
sv: async () => sv,
|
|
41
|
-
tr: async () => tr,
|
|
42
|
-
zh: async () => zh,
|
|
43
|
-
id: async () => id,
|
|
44
|
-
},
|
|
45
|
-
};
|
|
46
|
-
|
|
47
|
-
|
|
1
|
+
import { svgSanitizer } from './entry';
|
|
2
|
+
export * from './entry';
|
|
48
3
|
export const SVG_SANITIZER_TOOL: ToolDefinition = {
|
|
49
4
|
entry: svgSanitizer,
|
|
50
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
import type { SvgToCssUI } from './ui';
|
|
4
|
+
|
|
5
|
+
export type SvgToCssLocaleContent = ToolLocaleContent<SvgToCssUI>;
|
|
6
|
+
|
|
7
|
+
export const svgToCss: DeveloperToolEntry<SvgToCssUI> = {
|
|
8
|
+
id: 'svg-to-css',
|
|
9
|
+
icons: {
|
|
10
|
+
bg: 'mdi:svg',
|
|
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
|
|
2
|
-
|
|
3
|
-
import type { SvgToCssUI } from './ui';
|
|
4
|
-
|
|
5
|
-
export type SvgToCssLocaleContent = ToolLocaleContent<SvgToCssUI>;
|
|
6
|
-
|
|
7
|
-
export const svgToCss: DeveloperToolEntry<SvgToCssUI> = {
|
|
8
|
-
id: 'svg-to-css',
|
|
9
|
-
icons: {
|
|
10
|
-
bg: 'mdi:svg',
|
|
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 { svgToCss } from './entry';
|
|
2
|
+
export * from './entry';
|
|
33
3
|
export const SVG_TO_CSS_TOOL: ToolDefinition = {
|
|
34
4
|
entry: svgToCss,
|
|
35
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { UrlCleanerUI } from './ui';
|
|
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
|
+
};
|
|
@@ -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
|
+
};
|