@n8n/i18n 1.1.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/dist/types.js ADDED
@@ -0,0 +1,2 @@
1
+ import "./chunk-55J6XMHW.js";
2
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/dist/utils.cjs ADDED
@@ -0,0 +1,14 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
+
3
+
4
+
5
+
6
+ var _chunkMOPMPZJOcjs = require('./chunk-MOPMPZJO.cjs');
7
+ require('./chunk-WMF2ZDRE.cjs');
8
+
9
+
10
+
11
+
12
+
13
+ exports.deriveMiddleKey = _chunkMOPMPZJOcjs.deriveMiddleKey; exports.insertOptionsAndValues = _chunkMOPMPZJOcjs.insertOptionsAndValues; exports.isNestedInCollectionLike = _chunkMOPMPZJOcjs.isNestedInCollectionLike; exports.normalize = _chunkMOPMPZJOcjs.normalize;
14
+ //# sourceMappingURL=utils.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["/home/runner/work/n8n/n8n/packages/frontend/@n8n/i18n/dist/utils.cjs"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACF,wDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACF,uQAAC","file":"/home/runner/work/n8n/n8n/packages/frontend/@n8n/i18n/dist/utils.cjs"}
@@ -0,0 +1,9 @@
1
+ declare function deriveMiddleKey(path: string, parameter: {
2
+ name: string;
3
+ type?: string;
4
+ }): string;
5
+ declare const isNestedInCollectionLike: (path: string) => boolean;
6
+ declare const normalize: (path: string) => string;
7
+ declare const insertOptionsAndValues: (pathSegments: string[]) => string[];
8
+
9
+ export { deriveMiddleKey, insertOptionsAndValues, isNestedInCollectionLike, normalize };
@@ -0,0 +1,9 @@
1
+ declare function deriveMiddleKey(path: string, parameter: {
2
+ name: string;
3
+ type?: string;
4
+ }): string;
5
+ declare const isNestedInCollectionLike: (path: string) => boolean;
6
+ declare const normalize: (path: string) => string;
7
+ declare const insertOptionsAndValues: (pathSegments: string[]) => string[];
8
+
9
+ export { deriveMiddleKey, insertOptionsAndValues, isNestedInCollectionLike, normalize };
package/dist/utils.js ADDED
@@ -0,0 +1,14 @@
1
+ import {
2
+ deriveMiddleKey,
3
+ insertOptionsAndValues,
4
+ isNestedInCollectionLike,
5
+ normalize
6
+ } from "./chunk-NITZKE2M.js";
7
+ import "./chunk-QKQ47GQZ.js";
8
+ export {
9
+ deriveMiddleKey,
10
+ insertOptionsAndValues,
11
+ isNestedInCollectionLike,
12
+ normalize
13
+ };
14
+ //# sourceMappingURL=utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@n8n/i18n",
3
+ "type": "module",
4
+ "version": "1.1.0",
5
+ "files": [
6
+ "dist",
7
+ "LICENSE_EE.md",
8
+ "LICENSE.md"
9
+ ],
10
+ "main": "dist/index.cjs",
11
+ "module": "dist/index.js",
12
+ "types": "dist/index.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.js",
17
+ "require": "./dist/index.cjs"
18
+ },
19
+ "./*": {
20
+ "types": "./dist/*.d.ts",
21
+ "import": "./dist/*.js",
22
+ "require": "./dist/*.cjs"
23
+ }
24
+ },
25
+ "dependencies": {
26
+ "vue-i18n": "^11.1.2",
27
+ "n8n-workflow": "1.94.0"
28
+ },
29
+ "devDependencies": {
30
+ "@testing-library/jest-dom": "^6.6.3",
31
+ "@testing-library/user-event": "^14.6.1",
32
+ "@testing-library/vue": "^8.1.0",
33
+ "@vitejs/plugin-vue": "^5.2.4",
34
+ "@vue/tsconfig": "^0.7.0",
35
+ "@vueuse/core": "^10.11.0",
36
+ "vue": "^3.5.13",
37
+ "tsup": "^8.4.0",
38
+ "typescript": "^5.8.2",
39
+ "vite": "^6.3.5",
40
+ "vitest": "^3.1.3",
41
+ "vue-tsc": "^2.2.8",
42
+ "@n8n/typescript-config": "1.2.0",
43
+ "@n8n/eslint-config": "0.0.1",
44
+ "@n8n/vitest-config": "1.2.0"
45
+ },
46
+ "peerDependencies": {
47
+ "vue": "^3.5.13"
48
+ },
49
+ "license": "SEE LICENSE IN LICENSE.md",
50
+ "homepage": "https://n8n.io",
51
+ "author": {
52
+ "name": "Jan Oberhauser",
53
+ "email": "jan@n8n.io"
54
+ },
55
+ "repository": {
56
+ "type": "git",
57
+ "url": "git+https://github.com/n8n-io/n8n.git"
58
+ },
59
+ "scripts": {
60
+ "dev": "vite",
61
+ "build": "pnpm run typecheck && tsup",
62
+ "preview": "vite preview",
63
+ "typecheck": "vue-tsc --noEmit",
64
+ "test": "vitest run",
65
+ "test:dev": "vitest --silent=false",
66
+ "lint": "eslint src --ext .js,.ts,.vue --quiet",
67
+ "lintfix": "eslint src --ext .js,.ts,.vue --fix",
68
+ "format": "biome format --write . && prettier --write . --ignore-path ../../../../.prettierignore",
69
+ "format:check": "biome ci . && prettier --check . --ignore-path ../../../../.prettierignore"
70
+ }
71
+ }