Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork118
Devops for v2.4.1#220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
22 commits Select commitHold shift + click to select a range
ae9cd9d Add numeric/nonnumeric icon to multiselector
3680896 Add packagemanager
2b41efa Edit Snippets search icon
e8b3b87 Fix students t-test two-sample code
3e6ccde Add numeric_only option to corr function
0d83b16 Edit Anova
50f4511 Edit category exception, input selection on focus
9ca7cc4 Edit loadState function
f493674 Edit position of user option
5fc1348 Edit Frame astype dtype list, qcut label mechanism, Add type labels
b62ea84 Edit valuecounts output
be0cdf8 Edit Regression to exclude selected dependent column
8c991d0 Edit style
b77aae8 Edit Frame - add column with apply
6c9fa11 Edit Package Manager
d8a62db Edit checking package if exist
80aa45c Add docs link for pandas libraries
42903cc Add jupyterlite extension type and functions
7e8d0f1 Edit import to set default checked state for jupyterlite seaborn
8d9c317 Add jupyterlite
eb81b7d Add gitignore
e108318 add jupyterlite
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
2 changes: 2 additions & 0 deletions.gitignore
This file contains hidden or 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
Binary file addedjupyterlab/.jupyterlite.doit.db
Binary file not shown.
8 changes: 7 additions & 1 deletionjupyterlab/dev-build.jupyterlab.sh
This file contains hidden or 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
3 changes: 3 additions & 0 deletionsjupyterlab/lib/index.js
This file contains hidden or 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
207 changes: 207 additions & 0 deletionsvisualpython/css/component/packageManager.css
This file contains hidden or 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,207 @@ | ||
| /* UDF Editor - CodeMirror */ | ||
| .vp-pm-body .CodeMirror { border: 1px solid silver; } | ||
| .vp-pm-body .CodeMirror.CodeMirror-focused { border: 1px solid var(--vp-highlight-color); } | ||
| .vp-pm-body .CodeMirror-empty { outline: 1px solid #c22; } | ||
| .vp-pm-body .CodeMirror-empty.CodeMirror-focused { outline: none; } | ||
| .vp-pm-body .CodeMirror pre.CodeMirror-placeholder { color: #999; } | ||
| .vp-pm-body .CodeMirror-scroll { min-height: 80px; max-height: 250px;} | ||
| .vp-pm-body { | ||
| padding: 10px; | ||
| } | ||
| .vp-pm-header { | ||
| height: 30px; | ||
| } | ||
| .vp-pm-header label { | ||
| font-weight: bold; | ||
| font-size: 14px; | ||
| line-height: 16px; | ||
| } | ||
| .vp-pm-menu { | ||
| float: right; | ||
| cursor: pointer; | ||
| position: relative; | ||
| } | ||
| .vp-pm-menu-box { | ||
| display: none; | ||
| position: absolute; | ||
| width: 130px; | ||
| top: 23px; | ||
| right: 0px; | ||
| border: 0.25px solid var(--vp-border-gray-color); | ||
| border-radius: 3px; | ||
| background: var(--vp-background-color); | ||
| padding: 5px; | ||
| z-index: 5; | ||
| } | ||
| .vp-pm-menu-item { | ||
| height: 30px; | ||
| font-size: 14px; | ||
| line-height: 30px; | ||
| padding: 0px 5px; | ||
| cursor: pointer; | ||
| } | ||
| .vp-pm-menu-item:hover { | ||
| color: var(--vp-font-highlight); | ||
| } | ||
| .vp-pm-search-box { | ||
| position: relative; | ||
| } | ||
| .vp-pm-search-box .vp-pm-search { | ||
| width: 100% !important; | ||
| height: 30px; | ||
| padding-right: 30px !important; | ||
| } | ||
| .vp-pm-search-box .vp-pm-search-icon { | ||
| position: absolute; | ||
| color: #C4C4C4; | ||
| right: 10px; | ||
| padding-top: 4px; | ||
| /* LAB: img to background-image */ | ||
| background: center / contain no-repeat url(../../img/search.svg); | ||
| width: 20px; | ||
| height: 20px; | ||
| top: 5px; | ||
| } | ||
| .vp-pm-func-box { | ||
| height: 50px; | ||
| padding: 10px 0px; | ||
| } | ||
| .vp-pm-func-left { | ||
| float: left; | ||
| position: relative; | ||
| } | ||
| .vp-pm-func-right { | ||
| float: right; | ||
| } | ||
| .vp-pm-sort { | ||
| cursor: pointer; | ||
| /* LAB: img to background-image */ | ||
| background: top / contain no-repeat url(../../img/snippets/sort.svg); | ||
| height: 22px; | ||
| width: 22px; | ||
| } | ||
| .vp-pm-sort-menu-box { | ||
| display: none; | ||
| position: absolute; | ||
| width: 100px; | ||
| border: 0.25px solid var(--vp-border-gray-color); | ||
| background: var(--vp-background-color); | ||
| padding: 5px; | ||
| z-index: 5; | ||
| } | ||
| .vp-pm-sort-menu-item { | ||
| height: 25px; | ||
| line-height: 25px; | ||
| padding: 0px 5px; | ||
| cursor: pointer; | ||
| } | ||
| .vp-pm-sort-menu-item:hover { | ||
| color: var(--vp-font-highlight); | ||
| } | ||
| /* Empty List */ | ||
| .vp-pm-table { | ||
| margin-top: 10px; | ||
| display: grid; | ||
| grid-row-gap: 5px; | ||
| } | ||
| .vp-pm-table:empty::after { | ||
| content: '(No saved snippets)'; | ||
| color: #C4C4C4; | ||
| } | ||
| .vp-pm-table-header { | ||
| height: 20px; | ||
| line-height: 20px; | ||
| padding: 0px 7px; | ||
| box-sizing: border-box; | ||
| display: grid; | ||
| grid-template-columns: 1fr 1fr 0.5fr; | ||
| } | ||
| .vp-pm-item { | ||
| min-height: 35px; | ||
| display: grid; | ||
| grid-template-columns: calc(100% - 25px) 25px; | ||
| } | ||
| .vp-pm-item.selected { | ||
| background: #F5F5F5; | ||
| } | ||
| .vp-pm-item-header { | ||
| height: 35px; | ||
| line-height: 35px; | ||
| padding: 0px 7px; | ||
| border: 0.25px solid var(--vp-border-gray-color); | ||
| box-sizing: border-box; | ||
| cursor: pointer; | ||
| display: grid; | ||
| grid-template-columns: 1fr 1fr 0.5fr; | ||
| } | ||
| .vp-pm-item-header.selected { | ||
| background: #F5F5F5; | ||
| } | ||
| .vp-pm-item-header .vp-pm-indicator { | ||
| display: inline-block; | ||
| cursor: pointer; | ||
| background-image: url(../../img/chevron_big_right.svg); | ||
| background-size: contain; | ||
| background-repeat: no-repeat; | ||
| width: 10px; | ||
| height: 10px; | ||
| } | ||
| .vp-pm-item-header .vp-pm-indicator.open { | ||
| background-image: url(../../img/chevron_big_down.svg) !important; | ||
| } | ||
| .vp-pm-item-header input.vp-pm-item-title { | ||
| width: calc(100% - 110px); | ||
| outline: none; | ||
| background: transparent; | ||
| border: 0.5px solid transparent; | ||
| cursor: pointer; | ||
| } | ||
| .vp-pm-item-header.selected input.vp-pm-item-title { | ||
| color: var(--vp-font-highlight); | ||
| } | ||
| .vp-pm-item-header input.vp-pm-item-title:focus { | ||
| transition: 0.7s; | ||
| border: 0.5px solid var(--vp-highlight-color) !important; | ||
| cursor: text; | ||
| } | ||
| .vp-pm-item-menu { | ||
| text-align: right; | ||
| padding-right: 5px; | ||
| } | ||
| .vp-pm-item-menu-item { | ||
| display: inline-block; | ||
| cursor: pointer; | ||
| margin-left: 5px; | ||
| } | ||
| .vp-pm-item-menu-item.vp-icon-install.disabled { | ||
| background: center / contain no-repeat url(../../img/import_disabled.svg); | ||
| cursor: not-allowed; | ||
| } | ||
| .vp-pm-item-menu-item.vp-icon-install:not(.disabled):hover { | ||
| background: center / contain no-repeat url(../../img/import_activated.svg); | ||
| } | ||
| .vp-pm-item-menu-item.vp-icon-upgrade.disabled { | ||
| background: center / contain no-repeat url(../../img/upgrade_disabled.svg); | ||
| cursor: not-allowed; | ||
| } | ||
| .vp-pm-item-menu-item.vp-icon-upgrade:not(.disabled):hover { | ||
| background: center / contain no-repeat url(../../img/upgrade_activated.svg); | ||
| } | ||
| .vp-pm-item-menu-item.vp-icon-delete { | ||
| background: center / contain no-repeat url(../../img/delete.svg); | ||
| } | ||
| .vp-pm-item-menu-item.vp-icon-delete.disabled { | ||
| background: center / contain no-repeat url(../../img/delete_disabled.svg); | ||
| cursor: not-allowed; | ||
| } | ||
| .vp-pm-item-menu-item.vp-icon-delete:not(.disabled):hover { | ||
| background: center / contain no-repeat url(../../img/delete_activated.svg); | ||
| } | ||
| .vp-pm-item-delete { | ||
| display: inline-block; | ||
| cursor: pointer; | ||
| margin-left: 5px; | ||
| margin-top: 8px; | ||
| } |
5 changes: 3 additions & 2 deletionsvisualpython/css/m_apps/snippets.css
This file contains hidden or 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
4 changes: 2 additions & 2 deletionsvisualpython/css/mainFrame.css
This file contains hidden or 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
12 changes: 8 additions & 4 deletionsvisualpython/css/menuFrame.css
This file contains hidden or 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
39 changes: 39 additions & 0 deletionsvisualpython/css/root.css
This file contains hidden or 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
2 changes: 2 additions & 0 deletionsvisualpython/html/component/fileNavigation.html
This file contains hidden or 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.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.