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

Merge changes from #420 #427

Merged
merged 20 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
8df0336
Update TS compile target & MBL commit
AntoineGautier Dec 6, 2024
893ce8f
Allow blocks as possible templates
AntoineGautier Dec 6, 2024
3b38570
Add ElementType, refactor Replaceable as utility, rename classes acc.…
AntoineGautier Dec 10, 2024
4ff7f5b
Handle UI props and inputs in ShortClass
AntoineGautier Dec 12, 2024
04898e7
Fix `deadend` assignment
AntoineGautier Dec 13, 2024
4c98808
Modify client src to display replaceable short class
AntoineGautier Dec 17, 2024
cba7a57
Server and client fix with debug
AntoineGautier Dec 20, 2024
b2489c0
Solve issue of outer elements being displayed
AntoineGautier Dec 21, 2024
4308fca
Fix path resolution for short class components
AntoineGautier Dec 21, 2024
16d8302
Undo unneeded changes
AntoineGautier Dec 23, 2024
6bb5ebc
Fix display logic for short class instances
AntoineGautier Dec 23, 2024
0a3d2ff
Update MBL commit & JSON
AntoineGautier Dec 23, 2024
96edb91
Merge branch 'main' of github.com:lbl-srg/ctrl-flow-dev into issue359…
AntoineGautier Dec 23, 2024
1871872
Fix failing test with outer
AntoineGautier Dec 23, 2024
5dca8bf
Add test with short class, revert change in getChildElements
AntoineGautier Jan 6, 2025
fd7cee1
Support assignment of relative class name
AntoineGautier Jan 7, 2025
fb709a7
Update doc
AntoineGautier Jan 13, 2025
fde823a
Use MBL commit from main, remove debug in SlideOut
AntoineGautier Jan 15, 2025
f7d79f7
Merge pull request #420 from AntoineGautier/issue359_replaceableClass
JayHuLBL Jan 15, 2025
c20be88
improved docker file
JayHuLBL Jan 17, 2025
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
1 change: 1 addition & 0 deletions client/src/data/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export interface OptionInterface {
choiceModifiers?: { [key: string]: Modifiers };
treeList: string[];
definition: boolean;
shortExclType: boolean; // Short class definition excluding `type` definition
replaceable: boolean;
}

Expand Down
Loading