Skip to content

Commit

Permalink
Merge pull request #54 from seeq12/bugfix/ao/build-failure-behavior-d…
Browse files Browse the repository at this point in the history
…atalabplaywrightsystemtest-correlation-CRAB-45722

CRAB-45722: Add advance project configuration to addon.json
  • Loading branch information
wizzle3d authored Nov 18, 2024
2 parents 998740e + dab784e commit 8b2ab78
Showing 1 changed file with 76 additions and 64 deletions.
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"]
}
]
}
}
]
}

0 comments on commit 8b2ab78

Please sign in to comment.