-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: SP-1716 Add select licenses dropdown (#63)
* feat: Add code editor manager, scroll to first matched line on mount, sync cursors * feat: Add LicenseService, add license selector in replace component modal * fet: Consider license and replaceWith for bom entry duplicated values * feat: SP-1716 Add dropdown item for selecting a different license while including/dismissing * feat: SP-1708 Fix scanoss settings default folder location * feat: SP-1708 Handle command line arguments with tilde * feat: SP-1708 Prevent syncing scroll to interfere with reveal line * feat: SP-1716 Centralize all dialogs in just one provider * feat: SP-1708 Add more timeout for editor cursor sync * feat: SP-1708 Fix editor autoscroll * feat: SP-1708 Add button to toggle scroll sync * feat: SP-1708 Small design adjustments in editor toolbar * feat: SP-1708 Variable name changes * feat: SP-1716 - Make scroll sync enabled by default * feat: SP-1716 Calculate relative percentages on scroll position * feat: SP-1716 Fix relative scroll sync, add keyboard shortuct and menu option * feat: SP-1716 Get component name from purl, sort licenses and declared components lists * feat: SP-1716 Reset license when selecting a new component * feat: SP-1716 Add optional labels, add clear selected license button * feat: Add LicenseService, add license selector in replace component modal * fet: Consider license and replaceWith for bom entry duplicated values * feat: SP-1716 Add dropdown item for selecting a different license while including/dismissing * feat: SP-1716 Centralize all dialogs in just one provider * feat: Add code editor manager, scroll to first matched line on mount, sync cursors * feat: SP-1708 Fix scanoss settings default folder location * feat: SP-1708 Handle command line arguments with tilde * feat: SP-1708 Prevent syncing scroll to interfere with reveal line * feat: SP-1708 Add more timeout for editor cursor sync * feat: SP-1708 Fix editor autoscroll * feat: SP-1708 Add button to toggle scroll sync * feat: SP-1708 Small design adjustments in editor toolbar * feat: SP-1708 Variable name changes * feat: SP-1716 - Make scroll sync enabled by default * feat: SP-1716 Calculate relative percentages on scroll position * feat: SP-1716 Fix relative scroll sync, add keyboard shortuct and menu option * feat: SP-1716 Get component name from purl, sort licenses and declared components lists * feat: SP-1716 Reset license when selecting a new component * feat: SP-1716 Add optional labels, add clear selected license button * feat: SP-1716 Get modifier key from current environment * feat: SP-1716 Simplify and refactor code, handle unfocus search bar * feat: SP-1716 When changing the search query, reset selected results * feat: SP-1716 Move filters to results store * feat: SP-1716 Add tooltip for sync scroll position button --------- Co-authored-by: eeisegn <[email protected]>
- Loading branch information
1 parent
24a2a6f
commit 0b3940a
Showing
62 changed files
with
7,540 additions
and
885 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
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,13 @@ | ||
package entities | ||
|
||
type LicenseFile struct { | ||
LicenseListVersion string `json:"licenseListVersion"` | ||
Licenses []License `json:"licenses"` | ||
ReleaseDate string `json:"releaseDate"` | ||
} | ||
|
||
type License struct { | ||
Name string `json:"name"` | ||
LicenseId string `json:"licenseId"` | ||
Reference string `json:"reference"` | ||
} |
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
Oops, something went wrong.