Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Hotfix version for ML#121

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
minjk-bl merged 17 commits intovisualpython:devopsfromminjk-bl:devops
Mar 29, 2022
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
17 commits
Select commitHold shift + click to select a range
5376294
Fix catching error
Mar 16, 2022
3580a04
Seaborn chart app prototype
Mar 21, 2022
dd8f84d
Chart Setting app
Mar 24, 2022
9d3cf50
Remove deprecated files
Mar 24, 2022
a0e569f
Change options for model selection
Mar 24, 2022
9ba043e
Subset condition box changed
Mar 27, 2022
8d50031
Style Settig icon added
Mar 28, 2022
bec37d8
Chart menu align changed
Mar 28, 2022
6cec08f
DataSelector proto
Mar 28, 2022
9a81d22
Evaluation code indent fixed
Mar 28, 2022
2c6ef06
Fix design - Snippets, Popup scrollbar
Mar 28, 2022
bc17e8c
ML > Evaluation check bug fixed
Mar 28, 2022
9dce53b
ML > Data Prep options changed
Mar 29, 2022
874b594
checkbox style fixed
Mar 29, 2022
3d6b0e2
ML > Data Prep - make column transformer added
Mar 29, 2022
bfd939d
Reverted version for changed FileNavigation extensions (need other way)
Mar 29, 2022
c0b0b8c
Temporary rollback for ml hotfix
Mar 29, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletionscss/boardFrame.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -238,6 +238,13 @@
.vp-block.apps.vp-focus-child .vp-block-header {
background-color: rgb(253, 177, 133);
}
.vp-block.visualization .vp-block-header {
background-color: rgb(249, 227, 214);
}
.vp-block.visualization.vp-focus .vp-block-header,
.vp-block.visualization.vp-focus-child .vp-block-header {
background-color: rgb(253, 177, 133);
}
.vp-block.machine_learning .vp-block-header {
background-color: #E8ECD0;
}
Expand Down
17 changes: 17 additions & 0 deletionscss/component/dataSelector.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
/* Code Preview */
.vp-ds-preview {
width: 100%;
height: 35px;
background-image: repeating-linear-gradient( to right, var(--grid-line-color) 0, var(--grid-line-color) 0.25px, transparent 1px, transparent 5px ), repeating-linear-gradient( to bottom, var(--grid-line-color) 0, var(--grid-line-color) 0.25px, transparent 1px, transparent 5px );
background-color: white;
border: 0.25px solid #E4E4E4;
}
.vp-ds-preview textarea {
display: none;
}
.vp-ds-preview .CodeMirror-code .cm-variable {
background-color: rgba(47, 133, 90, 0.2);
}
.vp-ds-preview .CodeMirror-code .cm-string {
background-color: rgba(246, 173, 85, 0.2);
}
2 changes: 1 addition & 1 deletioncss/m_apps/snippets.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -163,7 +163,7 @@
.vp-sn-export-mode .vp-sn-item-menu {
display: none;
}
.vp-sn-export-mode input.vp-sn-checkbox {
.vp-sn-export-mode input[type=checkbox].vp-sn-checkbox {
display: inline-block;
position: relative !important;
width: 13px;
Expand Down
3 changes: 3 additions & 0 deletionscss/m_apps/subset.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -116,6 +116,9 @@
.vp-ds-rowtype-box.condition .vp-td-line {
padding-bottom: 5px;
}
.vp-ds-rowtype-box.condition table {
width: 100%;
}
.vp-ds-rowtype-box.condition table td {
padding-bottom: 20px;
}
Expand Down
43 changes: 43 additions & 0 deletionscss/m_visualize/seaborn.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
.vp-chart-setting {
float: right;
color: var(--gray-color);
padding-right: 5px;
cursor: pointer;
}
.vp-tab-bar {
width: 100%;
overflow-y: hidden;
}
.vp-tab-item {
display: inline-block;
position: relative;
width: 85px;
height: 30px;
line-height: 30px;
background: var(--light-gray-color);
cursor: pointer;
border: 0.24px solid #E4E4E4;
box-sizing: border-box;
border-radius: 2px 2px 0px 0px;
font-weight: bold;
text-align: center;
}
.vp-tab-item.vp-focus {
color: var(--font-hightlight);
background: white;
border-bottom: 3px solid #FFCF73;
}
.vp-tab-page {
width: 100%;
height: 180px;
}

.vp-chart-left-box,
.vp-chart-right-box {
padding: 3px;
height: 250px;
}

.vp-chart-preview-box {
min-height: 150px;
}
81 changes: 81 additions & 0 deletionscss/popupComponent.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -402,3 +402,84 @@
text-align: center;
cursor: pointer;
}
/* variable popup */
.vp-variable-popup-box {
position: absolute;
left: calc(50% - 135px);
top: calc(50% - 135px);
min-width: 370px;
min-height: 370px;
width: 370px;
height: 370px;
background-color: white;
z-index: 200;
border: 0.25px solid var(--border-gray-color);
box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
}
.vp-variable-popup-header {
position: relative;
height: 30px;
background: var(--light-gray-color);
border-bottom: 1px solid var(--border-gray-color);
}
.vp-variable-popup-title {
line-height: 33px;
width: calc(100% - 30px);
height: 30px;
padding-left: 10px;
font-size: 15px;
color: var(--font-primary);
cursor: pointer;
}
.vp-variable-popup-body {
height: calc(100% - 70px);
padding: 10px;
}
.vp-variable-popup-button-box {
float: right;
margin: 0 10px 10px 0;
}
.vp-variable-popup-close {
position: absolute;
width: 20px;
height: 20px;
top: 4px;
right: 5px;
z-index: 3;
line-height: 20px;
text-align: center;
cursor: pointer;
}
/* body top-bar */
.vp-popup-body-top-bar {
text-align: right;
}
.vp-popup-body-top-bar-item {
margin-bottom: 5px;
}
.vp-popup-body-top-bar-item:hover {
color: var(--font-hightlight);
}
.vp-popup-body-top-bar-item img {
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 22px; /* Width of new image */
height: 22px; /* Height of new image */
padding-left: 22px; /* Equal to width of new image */
margin-bottom: 5px;
}
.vp-popup-body-top-bar-item[data-type="import"] img {
background: url(../../visualpython/img/import.svg) no-repeat;
}
.vp-popup-body-top-bar-item[data-type="import"]:hover img {
background: url(../../visualpython/img/import_activated.svg) no-repeat;
}
.vp-popup-body-top-bar-item[data-type="package"] {
margin-left: 10px;
}
.vp-popup-body-top-bar-item[data-type="package"] img {
background: url(../../visualpython/img/setting.svg) no-repeat;
}
.vp-popup-body-top-bar-item[data-type="package"]:hover img {
background: url(../../visualpython/img/setting_activated.svg) no-repeat;
}
9 changes: 6 additions & 3 deletionscss/root.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -129,13 +129,17 @@ body {
}

/* Input & Select Design - width m&s */
.vp-input.l,
.vp-select.l {
width: 232px !important;
}
.vp-input.m,
.vp-select.m {
width: 116px;
width: 116px !important;
}
.vp-input.s,
.vp-select.s {
width: 55px;
width: 55px !important;
}

/* Buttons */
Expand DownExpand Up@@ -197,7 +201,6 @@ body {
color: #696969;
cursor: not-allowed;
}

.vp-checkbox {
display: inline-block;
position: relative !important;
Expand Down
28 changes: 14 additions & 14 deletionsdata/libraries.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -3033,20 +3033,6 @@
"icon": "apps/apps_reshape.svg"
}
},
{
"id" : "apps_chart",
"type" : "function",
"level": 1,
"name" : "Chart",
"tag" : "CHART,APPS",
"path" : "visualpython - apps - chart",
"desc" : "Chart",
"file" : "m_apps/Chart",
"apps" : {
"color": 3,
"icon": "apps/apps_chart.svg"
}
},
{
"id" : "apps_markdown",
"type" : "function",
Expand All@@ -3061,6 +3047,20 @@
"icon": "apps/apps_markdown.svg"
}
},
{
"id" : "visualize_chart",
"type" : "function",
"level": 1,
"name" : "Chart",
"tag" : "MATPLOTLIB,CHART,VISUALIZATION,VISUALIZE",
"path" : "visualpython - visualization - matplotlib",
"desc" : "Matplotlib chart creation",
"file" : "m_apps/Chart",
"apps" : {
"color": 3,
"icon": "apps/apps_chart.svg"
}
},
{
"id" : "apps_pdf",
"type" : "function",
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp