File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 206206<li >Exported project template code now more accurately reflects component placement in app</li >
207207<li >Improved canvas drag and deselect</li >
208208<li >Improved WSL developer installation instructions</li >
209- <li >Added TypeScipt to application files</li >
209+ <li >Added TypeScipt to application</li >
210+ <li >Implemented component search bar feature</li >
210211<br >
211212<h4 ><strong >Bug Fixes</strong ></h4 >
212213<li >Fixed routing components in project exports </li >
213214<li >Fixed component hierarchy in project exports </li >
214215<li >Fixed import statements of route child components</li >
215216<li >Fixed edge case HTML element bugs in project exports </li >
216217<li >Fixed in app component movement bugs which caused position to not update correctly </li >
218+ <li >Fixed drag and drop HTML element on click bug</li >
219+ <li >Eliminated code redundancy by implementing mixins</li >
217220</ul >
218221</details >
219222<br />
Original file line number Diff line number Diff line change @@ -33,10 +33,10 @@ const htmlElementMap :HtmlElementMap= {
3333} ;
3434
3535const openHtmlElementMap :HtmlElementMap = {
36- div : [ '<div> ' , '</div>' ] ,
37- button : [ '<button> ' , '</button>' ] ,
38- form : [ '<form> ' , '</form>' ] ,
39- img : [ '<img> ' , '' ] ,
36+ div : [ '<div' , '</div>' ] ,
37+ button : [ '<button' , '</button>' ] ,
38+ form : [ '<form' , '</form>' ] ,
39+ img : [ '<img' , '' ] ,
4040 link : [ '<a href="#"/>' , '' ] ,
4141 list : [ '<li>' , '</li>' ] ,
4242 paragraph : [ '<p>' , '</p>' ] ,
You can’t perform that action at this time.
0 commit comments