-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from sadnub/feat-reporting
Reporting Frontend Changes
- Loading branch information
Showing
46 changed files
with
7,726 additions
and
1,657 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
Large diffs are not rendered by default.
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
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,10 @@ | ||
import { boot } from "quasar/wrappers"; | ||
|
||
export default boot(({ app }) => { | ||
app.config.globalProperties.$integrations = { | ||
fileBarIntegrations: [], | ||
clientMenuIntegrations: [], | ||
siteMenuIntegrations: [], | ||
agentMenuIntegrations: [], | ||
}; | ||
}); |
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,23 @@ | ||
import editorWorker from "monaco-editor/esm/vs/editor/editor.worker?worker"; | ||
import cssWorker from "monaco-editor/esm/vs/language/css/css.worker?worker"; | ||
import htmlWorker from "monaco-editor/esm/vs/language/html/html.worker?worker"; | ||
import jsonWorker from "monaco-editor/esm/vs/language/json/json.worker?worker"; | ||
|
||
import { boot } from "quasar/wrappers"; | ||
|
||
export default boot(() => { | ||
self.MonacoEnvironment = { | ||
getWorker(_: unknown, label: string) { | ||
if (label === "json") { | ||
return new jsonWorker(); | ||
} | ||
if (label === "css" || label === "scss" || label === "less") { | ||
return new cssWorker(); | ||
} | ||
if (label === "html" || label === "handlebars" || label === "razor") { | ||
return new htmlWorker(); | ||
} | ||
return new editorWorker(); | ||
}, | ||
}; | ||
}); |
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
Oops, something went wrong.