Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💥Dropped link to add node and automatically connect its link via components panel #121

Merged
merged 27 commits into from
Mar 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
79a11b5
Add component panel when opening context menu
Mar 13, 2022
4ea6835
Delete old context menu
Mar 16, 2022
1af2db0
Enable to open component panel when link dropped
Mar 16, 2022
5aaf290
Refactor and remove unused general component lib
Mar 16, 2022
827c406
Automatically add node and connect its link
Mar 16, 2022
7a7129b
Add node action context menu
Mar 16, 2022
5241658
Add error msg when not literal node
Mar 16, 2022
51e416d
Always focus on input field
Mar 16, 2022
bade9c8
Refactor and get the allowable components
Mar 17, 2022
dab2480
Remove unused code
Mar 17, 2022
c27df99
Update tsconfig.tsbuildinfo
Mar 21, 2022
41d4490
Refactor passing the node's data
Mar 21, 2022
5b59fbb
Test console log
AdrySky Mar 21, 2022
f459786
Test updating package-lock
Mar 21, 2022
63c3077
Merge branch 'adry/components-panel' of https://github.com/XpressAI/x…
Mar 21, 2022
03712e7
Test passing link data
Mar 21, 2022
ce63e27
Test config after build
Mar 21, 2022
0304178
Define types
Mar 21, 2022
5d0e87b
Test adding node
Mar 21, 2022
d05d36a
Add commands for adding and connecting node
Mar 22, 2022
6b3f515
Remove console.log
Mar 22, 2022
1afa377
Add labextension to deploy the frontend
Mar 22, 2022
eed036c
Remove test code
Mar 22, 2022
0168cb7
Fix added node's position via context menu
Mar 24, 2022
ea4a277
Fix display panel via link by using the link event
Mar 24, 2022
d0a5b95
Remove labextension
Mar 24, 2022
9ff483f
Add command to build extension in dev mode in workflows
MFA-X-AI Mar 24, 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
6 changes: 5 additions & 1 deletion .github/workflows/build-python-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt


- name: Build Extension in Dev Mode
run: |
pip install -e .

- name: Build Wheel
run: |
python -m pip install --upgrade build &&
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
run: |
pip install -r requirements.txt

- name: Build Extension in Dev Mode
run: |
pip install -e .

- name: Build Wheel
run: |
python -m pip install --upgrade build &&
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ jobs:
nvm use 14.15.3
npm install --global yarn

- name: Build Extension in Dev Mode
run: |
pip install -e .

- name: Build Wheel
run: |
python -m pip install --upgrade pip
Expand Down
Loading