Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CRAB-45722: Add advance project configuration to addon.json #54

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 76 additions & 64 deletions addon.json
Original file line number Diff line number Diff line change
@@ -1,68 +1,80 @@
{
"identifier": "com.seeq.addon.correlation",
"name": "Correlation Analysis",
"description": "Determine cross correlations and time shifts to maximize correlations among signals",
"version": "Input version here",
"maintainer":"Seeq Corporation https://seeq.com/",
"license": "Apache-2.0 license",
"icon": "fa fa-th",
"tags": {"documentation":"Documentation website here https://seeq12.github.io/seeq-correlation/introduction.html" },
"previews": [
"additional_content/LargeMatrixExample.png"
],
"elements": [
{
"name": "Correlation Analysis",
"description": "Determine cross correlations and time shifts to maximize correlations among signals",
"identifier": "com.seeq.addon.correlation.correlation",
"known_aliases": ["Correlation"],
"type": "AddOnTool",
"path": "data-lab-functions",
"notebook_file_path": "correlation_analysis_master.ipynb",
"extensions": ["ipyvuetify", "widgetsnbextension","ipyvue"],
"configuration_schema": {
"type": "object",
"properties": {
"display": {
"type": "object",
"properties": {
"icon": {
"type": "string",
"default": "fa fa-th"
},
"linkType": {
"enum": ["window", "tab", "none"],
"default": "window"
},
"sortKey": {
"type": "string",
"default": "c"
},
"windowDetails": {
"type": "string",
"default": "toolbar=0,location=0,left=800,top=400,height=1000,width=1400"
},
"reuseWindow": {
"type": "boolean",
"default": true
},
"includeWorkbookParameters": {
"type": "boolean",
"default": true
}
"identifier": "com.seeq.addon.correlation",
"name": "Correlation Analysis",
"description": "Determine cross correlations and time shifts to maximize correlations among signals",
"version": "Input version here",
"maintainer": "Seeq Corporation https://seeq.com/",
"license": "Apache-2.0 license",
"icon": "fa fa-th",
"tags": {
"documentation": "Documentation website here https://seeq12.github.io/seeq-correlation/introduction.html"
},
"previews": ["additional_content/LargeMatrixExample.png"],
"elements": [
{
"name": "Correlation Analysis",
"description": "Determine cross correlations and time shifts to maximize correlations among signals",
"identifier": "com.seeq.addon.correlation.correlation",
"known_aliases": ["Correlation"],
"type": "AddOnTool",
"path": "data-lab-functions",
"notebook_file_path": "correlation_analysis_master.ipynb",
"extensions": ["ipyvuetify", "widgetsnbextension", "ipyvue"],
"configuration_schema": {
"type": "object",
"properties": {
"display": {
"type": "object",
"properties": {
"icon": {
"type": "string",
"default": "fa fa-th"
},
"required": [
"icon",
"linkType",
"sortKey",
"windowDetails",
"reuseWindow",
"includeWorkbookParameters"
]
}
"linkType": {
"enum": ["window", "tab", "none"],
"default": "window"
},
"sortKey": {
"type": "string",
"default": "c"
},
"windowDetails": {
"type": "string",
"default": "toolbar=0,location=0,left=800,top=400,height=1000,width=1400"
},
"reuseWindow": {
"type": "boolean",
"default": true
},
"includeWorkbookParameters": {
"type": "boolean",
"default": true
}
},
"required": [
"icon",
"linkType",
"sortKey",
"windowDetails",
"reuseWindow",
"includeWorkbookParameters"
]
},
"required": ["display"]
}
"advanced_project_configuration": {
"type": "object",
"properties": {
"kernel_name": {
"type": "string",
"default": "python38"
}
},
"required": [
"kernel_name"
]
}
},
"required": ["display", "advanced_project_configuration"]
}
]
}
}
]
}