-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into wip/jtulach/ReadArgumentCheckNodeHierarch…
…y_6165
- Loading branch information
Showing
146 changed files
with
4,741 additions
and
1,723 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
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,22 @@ | ||
{ | ||
"Vue single-file component": { | ||
"scope": "vue", | ||
"prefix": "vue sfc", | ||
"isFileTemplate": true, | ||
"body": [ | ||
"<script setup lang=\"ts\">", | ||
"const props = defineProps<{$0}>()", | ||
"const emit = defineEmits<{}>()", | ||
"</script>", | ||
"", | ||
"<template>", | ||
"<div class=\"${TM_FILENAME_BASE}\"></div>", | ||
"</template>", | ||
"", | ||
"<style scoped>", | ||
".${TM_FILENAME_BASE} {", | ||
"}", | ||
"</style>" | ||
] | ||
} | ||
} |
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,9 @@ | ||
{ | ||
"rust-analyzer.linkedProjects": ["./app/gui2/rust-ffi/Cargo.toml"], | ||
"vue.complete.casing.status": false, | ||
"vue.complete.casing.props": "camel", | ||
"vue.complete.casing.tags": "pascal", | ||
"auto-snippets.snippets": [ | ||
{ "language": "vue", "snippet": "Vue single-file component" } | ||
] | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
/** Table visualization. */ | ||
loadScript('https://cdn.jsdelivr.net/npm/ag-grid-community/dist/ag-grid-community.min.js') | ||
// Use the following line instead of the above one to use the enterprise version of ag-grid. | ||
// loadScript('https://cdn.jsdelivr.net/npm/[email protected]/dist/ag-grid-enterprise.min.js') | ||
|
||
loadScript('https://cdn.jsdelivr.net/npm/ag-grid-enterprise/dist/ag-grid-enterprise.min.js') | ||
|
||
// ============================ | ||
// === Style Initialisation === | ||
|
@@ -153,6 +152,13 @@ class TableVisualization extends Visualization { | |
onColumnResized: e => this.lockColumnSize(e), | ||
suppressFieldDotNotation: true, | ||
} | ||
|
||
if (typeof AG_GRID_LICENSE_KEY !== 'undefined') { | ||
agGrid.LicenseManager.setLicenseKey(AG_GRID_LICENSE_KEY) | ||
} else { | ||
console.warn('The AG_GRID_LICENSE_KEY is not defined.') | ||
} | ||
|
||
this.agGrid = new agGrid.Grid(tabElem, this.agGridOptions) | ||
} | ||
|
||
|
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,2 @@ | ||
*.html | ||
*.css |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* eslint-env node */ | ||
module.exports = { | ||
plugins: { | ||
autoprefixer: {}, | ||
|
Oops, something went wrong.