generated from allen-cell-animated/github-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* components folder, types file, constants file and stylesheet for test bed viewer * remove unneeded getContents function from AgentMetadata
- Loading branch information
Showing
11 changed files
with
129 additions
and
110 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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,19 @@ | ||
export const agentColors: string[] = [ | ||
"#fee34d", | ||
"#f7b232", | ||
"#bf5736", | ||
"#94a7fc", | ||
"#ce8ec9", | ||
"#58606c", | ||
"#0ba345", | ||
"#9267cb", | ||
"#81dbe6", | ||
"#bd7800", | ||
"#bbbb99", | ||
"#5b79f0", | ||
"#89a500", | ||
"#da8692", | ||
"#418463", | ||
"#9f516c", | ||
"#00aabf", | ||
]; |
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,6 @@ | ||
.ui-container { | ||
border: 1px solid black; | ||
padding: 6px; | ||
border-radius: 6px; | ||
width: fit-content; | ||
} |
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,28 @@ | ||
export interface CustomParameters { | ||
name: string; | ||
data_type: string; | ||
description: string; | ||
required: boolean; | ||
help: string; | ||
options?: string[]; | ||
} | ||
|
||
export interface BaseType { | ||
isBaseType: true; | ||
id: string; | ||
data: string; | ||
match: string; | ||
} | ||
|
||
export interface CustomType { | ||
[key: string]: { | ||
"python::module": string; | ||
"python::object": string; | ||
parameters: CustomParameters; | ||
}; | ||
} | ||
|
||
export interface InputParams { | ||
localBackendServer: boolean; | ||
useOctopus: boolean; | ||
} |