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 206
206
<li >Exported project template code now more accurately reflects component placement in app</li >
207
207
<li >Improved canvas drag and deselect</li >
208
208
<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 >
210
211
<br >
211
212
<h4 ><strong >Bug Fixes</strong ></h4 >
212
213
<li >Fixed routing components in project exports </li >
213
214
<li >Fixed component hierarchy in project exports </li >
214
215
<li >Fixed import statements of route child components</li >
215
216
<li >Fixed edge case HTML element bugs in project exports </li >
216
217
<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 >
217
220
</ul >
218
221
</details >
219
222
<br />
Original file line number Diff line number Diff line change @@ -33,10 +33,10 @@ const htmlElementMap :HtmlElementMap= {
33
33
} ;
34
34
35
35
const 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' , '' ] ,
40
40
link : [ '<a href="#"/>' , '' ] ,
41
41
list : [ '<li>' , '</li>' ] ,
42
42
paragraph : [ '<p>' , '</p>' ] ,
You can’t perform that action at this time.
0 commit comments