@flowuent-org/diagramming-core 1.0.5 → 1.0.6

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.
@@ -1,29 +1,29 @@
1
- import { EntityNode } from '../organisms/Card/EntityNode';
2
- import BendpointNode from '../atoms/BendpointNode';
3
- import WorkflowNode from '../organisms/WorkflowNode';
4
- import CollabObjectNode from '../templates/collaborationDiagram/nodes/CollabObjectNode';
5
- import ActorNode from '../atoms/ActorNode';
6
- import {
7
- AutomationStartNode,
8
- AutomationApiNode,
9
- AutomationFormattingNode,
10
- AutomationSheetsNode,
11
- AutomationEndNode,
12
- AutomationNoteNode,
13
- AutomationAISuggestionNode,
14
- } from '../components/automation';
15
-
16
- export default {
17
- entity: EntityNode,
18
- bendPoint: BendpointNode,
19
- workflow: WorkflowNode,
20
- collabObject: CollabObjectNode,
21
- actor: ActorNode,
22
- AutomationStartNode,
23
- AutomationApiNode,
24
- AutomationFormattingNode,
25
- AutomationSheetsNode,
26
- AutomationEndNode,
27
- AutomationNoteNode,
28
- AutomationAISuggestionNode,
29
- };
1
+ import { EntityNode } from '../organisms/Card/EntityNode';
2
+ import BendpointNode from '../atoms/BendpointNode';
3
+ import WorkflowNode from '../organisms/WorkflowNode';
4
+ import CollabObjectNode from '../templates/collaborationDiagram/nodes/CollabObjectNode';
5
+ import ActorNode from '../atoms/ActorNode';
6
+ import {
7
+ AutomationStartNode,
8
+ AutomationApiNode,
9
+ AutomationFormattingNode,
10
+ AutomationSheetsNode,
11
+ AutomationEndNode,
12
+ AutomationNoteNode,
13
+ AutomationAISuggestionNode,
14
+ } from '../components/automation';
15
+
16
+ export default {
17
+ entity: EntityNode,
18
+ bendPoint: BendpointNode,
19
+ workflow: WorkflowNode,
20
+ collabObject: CollabObjectNode,
21
+ actor: ActorNode,
22
+ AutomationStartNode,
23
+ AutomationApiNode,
24
+ AutomationFormattingNode,
25
+ AutomationSheetsNode,
26
+ AutomationEndNode,
27
+ AutomationNoteNode,
28
+ AutomationAISuggestionNode,
29
+ };
@@ -1,27 +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
- "incremental": false,
13
- "composite": false
14
- },
15
- "exclude": [
16
- "jest.config.ts",
17
- "src/**/*.spec.ts",
18
- "src/**/*.test.ts",
19
- "src/**/*.spec.tsx",
20
- "src/**/*.test.tsx",
21
- "src/**/*.spec.js",
22
- "src/**/*.test.js",
23
- "src/**/*.spec.jsx",
24
- "src/**/*.test.jsx"
25
- ],
26
- "include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx"]
27
- }
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,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-org/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
+ }