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 v1.1.13#95
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
25 commits Select commitHold shift + click to select a range
653b700 Apps > Instance - Allocate variable to simple input
04ee638 remove Apps > TimeSeries
f185377 Apps > Subset bug fix & change event naming to apps_run
0e8a242 Apps > Groupby prototype & CreateApsBtn module
2312eb2 Apps > Groupby, Merge, Reshape prototype
29ccae8 vpKeyManager as global variable
8157042 ColumnSelector module added
1871f49 vpCommon > loadCssForDiv - as applying style partially
bd5ae46 Apps > Groupby - without advanced options
8645c2a prepare Apps > Merge
7acd5c8 Groupby - if allocation is available, display allocated variable
84b7ed4 Groupby - disable typing on columns input tag
994f464 ColumnSelector module update - add all & delete all
8a64435 bug fix
34d8a45 codeview event bug fix
5eb5a46 Apps > Groupby - advanced box generate code update & load&save
c025bbe Apps > Groupby - almost finish (except Grouper)
a4eff82 Apps > Groupby update
3e11947 Apps > Groupby - added Grouper
cade17c Grouper unbindEvent
4627e67 Apps > Groupby - small update
03994b2 Apps > Markdown - set default text from 'Sample Text' to nothing
6d01555 add checkbox:disabled style with gray colored svg
882d71f Apps > Groupby - enable Grouper only with datetime column
83b4f4a Apps > PDF - edit import package code, and defined function code
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
3 changes: 3 additions & 0 deletionscss/api_block/index.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
68 changes: 68 additions & 0 deletionscss/common/component/columnSelector.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,68 @@ | ||
| .vp-cs-select-container { | ||
| width: 100%; | ||
| height: 100%; | ||
| display: grid; | ||
| grid-template-columns: calc(47% - 15px) 50px calc(47% - 15px); | ||
| grid-auto-rows: 100%; | ||
| } | ||
| .vp-cs-select-search { | ||
| width: 100%; | ||
| } | ||
| .vp-cs-select-search::after { | ||
| content: ''; | ||
| background-image: url(../../../resource/close_big.svg); | ||
| } | ||
| .vp-cs-select-box { | ||
| width: 100%; | ||
| height: 100%; | ||
| border: 0.25px solid #E4E4E4; | ||
| overflow-y: auto; | ||
| overflow-x: hidden; | ||
| } | ||
| .vp-cs-select-box.left { | ||
| height: calc(100% - 30px); | ||
| } | ||
| .vp-cs-select-item { | ||
| width: 100%; | ||
| height: 25px; | ||
| padding: 0px 10px; | ||
| border-bottom: 0.25px solid #E4E4E4; | ||
| line-height: 25px; | ||
| background-color: white; | ||
| text-overflow: ellipsis; | ||
| overflow: hidden; | ||
| white-space: nowrap; | ||
| } | ||
| .vp-cs-select-item:hover { | ||
| cursor: pointer; | ||
| background-color: #E4E4E4; | ||
| } | ||
| .vp-cs-select-item.selected { | ||
| color: var(--font-hightlight); | ||
| background-color: #F5F5F5; | ||
| } | ||
| /* Item Sorting FIXME: change span to class */ | ||
| .right .vp-cs-select-item span { | ||
| padding: 0px 10px 0px 0px; | ||
| } | ||
| /* TODO: If sortable, apply this style */ | ||
| /* .right .vp-cs-select-item span:hover { | ||
| cursor: n-resize; | ||
| } */ | ||
| /* Select Boxes */ | ||
| .vp-cs-select-btn-box { | ||
| margin: auto; | ||
| display: inherit; | ||
| } | ||
| .vp-cs-select-btn-box button { | ||
| height: 24px; | ||
| background: #FFFFFF; | ||
| border: 0.25px solid #E4E4E4; | ||
| } | ||
| .vp-cs-select-btn-box button:not(:nth-child(1)) { | ||
| margin-top: 5px; | ||
| } | ||
| .vp-cs-select-btn-box button:hover { | ||
| background: #F8F8F8; | ||
| } |
82 changes: 82 additions & 0 deletionscss/common/groupby.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,82 @@ | ||
| .vp-gb-container { | ||
| width: 700px; | ||
| height: 550px; | ||
| } | ||
| .vp-gb-container .vp-pp-body { | ||
| overflow: hidden; | ||
| } | ||
| .vp-gb-df-box { | ||
| display: grid; | ||
| grid-template-rows: 30px; | ||
| grid-row-gap: 5px; | ||
| } | ||
| .vp-gb-df-refresh { | ||
| display: inline-block; | ||
| cursor: pointer; | ||
| margin-left: 5px; | ||
| } | ||
| .vp-gb-df-box label { | ||
| font-weight: bold; | ||
| } | ||
| .vp-gb-df-box select, | ||
| .vp-gb-df-box input { | ||
| width: 160px; | ||
| } | ||
| .vp-gb-by-grouper-box { | ||
| display: inline-block; | ||
| padding: 0px 5px; | ||
| } | ||
| .vp-gb-by-number { | ||
| width: 80px !important; | ||
| } | ||
| .vp-gb-adv-box { | ||
| border: 1px solid var(--border-gray-color); | ||
| padding: 10px; | ||
| margin-top: 5px; | ||
| height: 170px; | ||
| overflow: auto; | ||
| } | ||
| .vp-gb-adv-item { | ||
| margin-bottom: 5px; | ||
| } | ||
| .vp-gb-adv-method-box { | ||
| position: relative; | ||
| display: inline-block; | ||
| } | ||
| .vp-gb-adv-method { | ||
| padding-right: 25px; | ||
| } | ||
| .vp-gb-adv-method-return { | ||
| position: absolute; | ||
| color: #C4C4C4; | ||
| right: 7px; | ||
| top: 7px; | ||
| cursor: pointer; | ||
| background: white; | ||
| } | ||
| .vp-gb-adv-item-delete { | ||
| display: inline-block; | ||
| padding-left: 5px; | ||
| } | ||
| .vp-gb-naming-box label { | ||
| height: 30px; | ||
| line-height: 30px; | ||
| vertical-align: middle; | ||
| font-weight: bold; | ||
| margin-bottom: 5px; | ||
| } | ||
| .vp-gb-naming-item label { | ||
| width: 100px; | ||
| height: 30px; | ||
| line-height: 30px; | ||
| vertical-align: middle; | ||
| margin-bottom: 5px; | ||
| text-overflow: ellipsis; | ||
| white-space: nowrap; | ||
| overflow: hidden; | ||
| font-weight: bold; | ||
| } |
4 changes: 4 additions & 0 deletionscss/common/merge.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,4 @@ | ||
| .vp-mg-container { | ||
| width: 700px; | ||
| height: 550px; | ||
| } |
39 changes: 37 additions & 2 deletionscss/common/popupPage.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
19 changes: 19 additions & 0 deletionscss/component/common.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
8 changes: 4 additions & 4 deletionscss/file_io/instance.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
35 changes: 27 additions & 8 deletionscss/main.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
7 changes: 7 additions & 0 deletionsresource/apps/apps_profiling.svg
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletionsresource/apps/apps_pymupdf.svg
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletionsresource/arrow_left_double.svg
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletionsresource/arrow_right_double.svg
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletionsresource/checkbox_gray.svg
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.