forked from eclipse-cdt-cloud/vscode-peripheral-inspector
-
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.
Introduce PrimeReact (eclipse-cdt-cloud#24)
Co-authored-by: jreineckearm <[email protected]> Co-authored-by: Martin Fleck <[email protected]>
- Loading branch information
1 parent
35e8206
commit 61550b2
Showing
43 changed files
with
3,621 additions
and
313 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"Copyright": { | ||
"prefix": [ | ||
"header", | ||
"copyright" | ||
], | ||
"body": "/********************************************************************************\n * Copyright (C) $CURRENT_YEAR ${YourCompany} and others.\n *\n * This program and the accompanying materials are made available under the\n * terms of the MIT License as outlined in the LICENSE File\n ********************************************************************************/\n\n$0", | ||
"description": "Adds the copyright...", | ||
"scope": "css,javascript,javascriptreact,typescript,typescriptreact" | ||
}, | ||
"Import VSCode": { | ||
"prefix": "codeimport", | ||
"body": "import * as vscode from 'vscode';", | ||
"scope": "typescript,javascript" | ||
} | ||
} |
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,11 @@ | ||
// If one would like to add/remove/modify user preferences without modifying the content of the | ||
// workspace settings file, then one would need to modify the `settings.json` under here: | ||
// - Windows: %APPDATA%\Code\User\settings.json | ||
// - Linux: $HOME/.config/Code/User/settings.json | ||
// - Mac: $HOME/Library/Application Support/Code/User/settings.json | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit" | ||
} | ||
} |
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
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 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2024 EclipseSource and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the MIT License as outlined in the LICENSE File | ||
********************************************************************************/ | ||
|
||
.tooltip { | ||
background: var(--vscode-editorHoverWidget-background); | ||
border: 1px solid var(--vscode-editorHoverWidget-border); | ||
border-radius: 3px; | ||
box-shadow: 0 2px 8px var(--vscode-widget-shadow); | ||
max-width: 700px; | ||
max-height: 375px; | ||
padding: 0; | ||
} | ||
|
||
.tooltip .tooltip-content { | ||
background: var(--vscode-editorHoverWidget-background); | ||
color: var(--vscode-editorHoverWidget-foreground); | ||
font-size: 12px; | ||
padding: 2px 8px; | ||
max-width: var(--vscode-hover-maxWidth, 500px); | ||
word-wrap: break-word; | ||
white-space: unset; | ||
display: block; | ||
flex-direction: column; | ||
} |
Oops, something went wrong.