-
-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
236e275
commit dd63476
Showing
30 changed files
with
105 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+3.94 KB
(120%)
app/public/template-screenshots/thumb_network-diagram-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
app/public/template-screenshots/thumb_network-diagram-dark.ts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
app/public/template-screenshots/thumb_network-diagram-icons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import { FFTheme } from "../FFTheme"; | ||
|
||
export const content = ` | ||
Start Process | ||
Step 1: Initial Assessment | ||
Decision Point | ||
Yes: Proceed to Step 2 | ||
Step 2: Detailed Analysis | ||
Review Documentation [href="https://docs.example.com"] | ||
Conduct Analysis | ||
Generate Report | ||
Share Results [href="https://results.example.com"] | ||
No: Request More Information | ||
Contact Client [href="mailto:[email protected]"] | ||
(Initial Assessment) | ||
Step 3: Final Decision | ||
Approve: Complete Process | ||
Reject: Provide Feedback | ||
(Start Process) | ||
`; | ||
|
||
export const theme: FFTheme = { | ||
layoutName: "dagre", | ||
direction: "DOWN", | ||
spacingFactor: 1.1, | ||
|
||
background: "#fbfbfb", | ||
fontFamily: "Inter", | ||
|
||
shape: "roundrectangle", | ||
nodeBackground: "#e6e6e6", | ||
nodeForeground: "#333333", | ||
padding: 15, | ||
borderWidth: 0, | ||
borderColor: "#cccccc", | ||
textMaxWidth: 150, | ||
lineHeight: 1.3, | ||
textMarginY: 0, | ||
useFixedHeight: false, | ||
fixedHeight: 60, | ||
|
||
curveStyle: "bezier", | ||
edgeWidth: 2, | ||
edgeColor: "#888888", | ||
sourceArrowShape: "none", | ||
targetArrowShape: "triangle", | ||
sourceDistanceFromNode: 0, | ||
targetDistanceFromNode: 5, | ||
arrowScale: 1, | ||
edgeTextSize: 0.9, | ||
rotateEdgeLabel: false, | ||
}; | ||
|
||
export const cytoscapeStyle = `@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap'); | ||
:childless { | ||
font-weight: bold; | ||
} | ||
/** Start */ | ||
:childless[in_degree < 1][out_degree > 0] { | ||
background-color: #50c878; | ||
border-color: #3da75d; | ||
} | ||
/** Decision Point */ | ||
:childless[out_degree > 1] { | ||
shape: diamond; | ||
background-color: #ffa500; | ||
height: $width; | ||
text-margin-y: 2; | ||
border-color: #cc8400; | ||
} | ||
/** Terminal */ | ||
:childless[out_degree < 1][in_degree > 0] { | ||
background-color: #ff6347; | ||
color: white; | ||
border-color: #e74c3c; | ||
} | ||
/** Links */ | ||
:childless[href] { | ||
background-color: #4a90e2; | ||
color: white; | ||
text-decoration: underline; | ||
cursor: pointer; | ||
border-color: #3a7ac5; | ||
} | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
export const templates = [ | ||
"code-flow", | ||
"process-flow", | ||
"flowchart", | ||
"decision-flow", | ||
"pert-light", | ||
"default", | ||
"flowchart", | ||
"org-chart", | ||
"knowledge-graph", | ||
"mindmap-dark", | ||
"mindmap", | ||
"mindmap-dark", | ||
"network-diagram-dark", | ||
"network-diagram-icons", | ||
"org-chart", | ||
"pert-light", | ||
"playful-mindmap", | ||
] as const; |