@flowuent-org/diagramming-core 1.0.6 → 1.0.8
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/TRANSLATION_FIX_SUMMARY.md +118 -0
- package/package.json +1 -1
- package/packages/diagrams/I18N_SETUP.md +126 -0
- package/packages/diagrams/README.md +459 -3
- package/packages/diagrams/locales/en/translation.json +713 -0
- package/packages/diagrams/package.json +27 -25
- package/packages/diagrams/project.json +42 -37
- package/packages/diagrams/rollup.config.js +26 -26
- package/packages/diagrams/src/index.ts +116 -113
- package/packages/diagrams/src/lib/components/automation/AutomationEndNode.tsx +8 -8
- package/packages/diagrams/src/lib/components/automation/AutomationFormattingNode.tsx +8 -8
- package/packages/diagrams/src/lib/components/automation/AutomationStartNode.tsx +9 -9
- package/packages/diagrams/src/lib/i18n.ts +42 -0
- package/packages/diagrams/src/lib/utils/AutomationExecutionEngine.ts +1179 -1162
- package/packages/diagrams/tsconfig.lib.json +25 -25
- package/tsconfig.base.json +30 -30
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "../../dist/out-tsc",
|
|
5
|
-
"types": [
|
|
6
|
-
"node",
|
|
7
|
-
|
|
8
|
-
"@nx/react/typings/cssmodule.d.ts",
|
|
9
|
-
"@nx/react/typings/image.d.ts"
|
|
10
|
-
],
|
|
11
|
-
"noEmitOnError": false
|
|
12
|
-
},
|
|
13
|
-
"exclude": [
|
|
14
|
-
"jest.config.ts",
|
|
15
|
-
"src/**/*.spec.ts",
|
|
16
|
-
"src/**/*.test.ts",
|
|
17
|
-
"src/**/*.spec.tsx",
|
|
18
|
-
"src/**/*.test.tsx",
|
|
19
|
-
"src/**/*.spec.js",
|
|
20
|
-
"src/**/*.test.js",
|
|
21
|
-
"src/**/*.spec.jsx",
|
|
22
|
-
"src/**/*.test.jsx"
|
|
23
|
-
],
|
|
24
|
-
"include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx"]
|
|
25
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "../../dist/out-tsc",
|
|
5
|
+
"types": [
|
|
6
|
+
"node",
|
|
7
|
+
|
|
8
|
+
"@nx/react/typings/cssmodule.d.ts",
|
|
9
|
+
"@nx/react/typings/image.d.ts"
|
|
10
|
+
],
|
|
11
|
+
"noEmitOnError": false
|
|
12
|
+
},
|
|
13
|
+
"exclude": [
|
|
14
|
+
"jest.config.ts",
|
|
15
|
+
"src/**/*.spec.ts",
|
|
16
|
+
"src/**/*.test.ts",
|
|
17
|
+
"src/**/*.spec.tsx",
|
|
18
|
+
"src/**/*.test.tsx",
|
|
19
|
+
"src/**/*.spec.js",
|
|
20
|
+
"src/**/*.test.js",
|
|
21
|
+
"src/**/*.spec.jsx",
|
|
22
|
+
"src/**/*.test.jsx"
|
|
23
|
+
],
|
|
24
|
+
"include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx"]
|
|
25
|
+
}
|
package/tsconfig.base.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compileOnSave": false,
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"rootDir": ".",
|
|
5
|
-
"sourceMap": true,
|
|
6
|
-
"declaration": false,
|
|
7
|
-
"moduleResolution": "node",
|
|
8
|
-
"emitDecoratorMetadata": true,
|
|
9
|
-
"experimentalDecorators": true,
|
|
10
|
-
"importHelpers": true,
|
|
11
|
-
"target": "es2015",
|
|
12
|
-
"module": "esnext",
|
|
13
|
-
"lib": ["es2020", "dom"],
|
|
14
|
-
"skipLibCheck": true,
|
|
15
|
-
"skipDefaultLibCheck": true,
|
|
16
|
-
"baseUrl": ".",
|
|
17
|
-
"paths": {
|
|
18
|
-
"@flowuent-labs/api": ["packages/api/src/index.ts"],
|
|
19
|
-
"@flowuent-labs/atoms": ["packages/atoms/src/index.ts"],
|
|
20
|
-
"@flowuent-labs/common": ["packages/common/src/index.ts"],
|
|
21
|
-
"@flowuent-labs/contexts": ["packages/contexts/src/index.ts"],
|
|
22
|
-
"@flowuent-labs/diagrams": ["packages/diagrams/src/index.ts"],
|
|
23
|
-
"@flowuent-labs/interfaces": ["packages/interfaces/src/index.ts"],
|
|
24
|
-
"@flowuent-labs/molecules": ["packages/molecules/src/index.ts"],
|
|
25
|
-
"@flowuent-labs/organisms": ["packages/organisms/src/index.ts"],
|
|
26
|
-
"@flowuent-labs/zustand": ["packages/zustand/src/index.ts"]
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
"exclude": ["node_modules", "tmp"]
|
|
30
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compileOnSave": false,
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"rootDir": ".",
|
|
5
|
+
"sourceMap": true,
|
|
6
|
+
"declaration": false,
|
|
7
|
+
"moduleResolution": "node",
|
|
8
|
+
"emitDecoratorMetadata": true,
|
|
9
|
+
"experimentalDecorators": true,
|
|
10
|
+
"importHelpers": true,
|
|
11
|
+
"target": "es2015",
|
|
12
|
+
"module": "esnext",
|
|
13
|
+
"lib": ["es2020", "dom"],
|
|
14
|
+
"skipLibCheck": true,
|
|
15
|
+
"skipDefaultLibCheck": true,
|
|
16
|
+
"baseUrl": ".",
|
|
17
|
+
"paths": {
|
|
18
|
+
"@flowuent-labs/api": ["packages/api/src/index.ts"],
|
|
19
|
+
"@flowuent-labs/atoms": ["packages/atoms/src/index.ts"],
|
|
20
|
+
"@flowuent-labs/common": ["packages/common/src/index.ts"],
|
|
21
|
+
"@flowuent-labs/contexts": ["packages/contexts/src/index.ts"],
|
|
22
|
+
"@flowuent-labs/diagrams": ["packages/diagrams/src/index.ts"],
|
|
23
|
+
"@flowuent-labs/interfaces": ["packages/interfaces/src/index.ts"],
|
|
24
|
+
"@flowuent-labs/molecules": ["packages/molecules/src/index.ts"],
|
|
25
|
+
"@flowuent-labs/organisms": ["packages/organisms/src/index.ts"],
|
|
26
|
+
"@flowuent-labs/zustand": ["packages/zustand/src/index.ts"]
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"exclude": ["node_modules", "tmp"]
|
|
30
|
+
}
|