@@ -113,6 +113,13 @@ import {
113
113
KanbanCompIcon ,
114
114
115
115
} from "lowcoder-design" ;
116
+ import { TableComp } from "@lowcoder-ee/comps/comps/tableComp" ;
117
+ import { TextComp } from "@lowcoder-ee/comps/comps/textComp" ;
118
+ import { ModuleComp } from "@lowcoder-ee/comps/comps/moduleComp/moduleComp" ;
119
+ import { InputComp } from "@lowcoder-ee/comps/comps/textInputComp/inputComp" ;
120
+ import { TextAreaComp } from "@lowcoder-ee/comps/comps/textInputComp/textAreaComp" ;
121
+ import { ButtonComp } from "@lowcoder-ee/comps/comps/buttonComp/buttonComp" ;
122
+ import { ImageComp } from "@lowcoder-ee/comps/comps/imageComp" ;
116
123
117
124
type Registry = {
118
125
[ key in UICompType ] ?:UICompManifest ;
@@ -343,7 +350,8 @@ export var uiCompMap: Registry = {
343
350
categories :[ "dashboards" ] ,
344
351
icon :MultiIcon ( TableCompIcon ) ,
345
352
keywords :trans ( "uiComp.tableCompKeywords" ) ,
346
- lazyLoad :true ,
353
+ lazyLoad :false ,
354
+ comp :TableComp ,
347
355
compName :"TableComp" ,
348
356
compPath :"comps/tableComp/index" ,
349
357
layoutInfo :{
@@ -927,8 +935,9 @@ export var uiCompMap: Registry = {
927
935
categories :[ "forms" ] ,
928
936
icon :MultiIcon ( InputCompIcon ) ,
929
937
keywords :trans ( "uiComp.inputCompKeywords" ) ,
930
- lazyLoad :true ,
938
+ lazyLoad :false ,
931
939
compName :"InputComp" ,
940
+ comp :InputComp ,
932
941
compPath :"comps/textInputComp/inputComp" ,
933
942
layoutInfo :{
934
943
w :6 ,
@@ -972,8 +981,9 @@ export var uiCompMap: Registry = {
972
981
categories :[ "forms" ] ,
973
982
icon :MultiIcon ( TextAreaCompIcon ) ,
974
983
keywords :trans ( "uiComp.textAreaCompKeywords" ) ,
975
- lazyLoad :true ,
984
+ lazyLoad :false ,
976
985
compName :"TextAreaComp" ,
986
+ comp :TextAreaComp ,
977
987
compPath :"comps/textInputComp/textAreaComp" ,
978
988
layoutInfo :{
979
989
w :6 ,
@@ -1141,8 +1151,9 @@ export var uiCompMap: Registry = {
1141
1151
categories :[ "forms" ] ,
1142
1152
icon :MultiIcon ( ButtonCompIcon ) ,
1143
1153
keywords :trans ( "uiComp.buttonCompKeywords" ) ,
1144
- lazyLoad :true ,
1154
+ lazyLoad :false ,
1145
1155
compName :"ButtonComp" ,
1156
+ comp :ButtonComp ,
1146
1157
compPath :"comps/buttonComp/buttonComp" ,
1147
1158
layoutInfo :{
1148
1159
w :6 ,
@@ -1381,8 +1392,9 @@ export var uiCompMap: Registry = {
1381
1392
categories :[ "multimedia" ] ,
1382
1393
icon :MultiIcon ( ImageCompIcon ) ,
1383
1394
keywords :trans ( "uiComp.imageCompKeywords" ) ,
1384
- lazyLoad :true ,
1395
+ lazyLoad :false ,
1385
1396
compName :"ImageComp" ,
1397
+ comp :ImageComp ,
1386
1398
compPath :"comps/imageComp" ,
1387
1399
layoutInfo :{
1388
1400
w :12 ,
@@ -1705,8 +1717,9 @@ export var uiCompMap: Registry = {
1705
1717
description :trans ( "uiComp.moduleCompDesc" ) ,
1706
1718
categories :[ ] ,
1707
1719
keywords :trans ( "uiComp.moduleCompKeywords" ) ,
1708
- lazyLoad :true ,
1720
+ lazyLoad :false ,
1709
1721
compName :"ModuleComp" ,
1722
+ comp :ModuleComp ,
1710
1723
compPath :"comps/moduleComp/moduleComp" ,
1711
1724
layoutInfo :{
1712
1725
w :12 ,
@@ -1724,7 +1737,8 @@ export var uiCompMap: Registry = {
1724
1737
icon :MultiIcon ( TextCompIcon ) ,
1725
1738
keywords :trans ( "uiComp.textCompKeywords" ) ,
1726
1739
compName :"TextComp" ,
1727
- lazyLoad :true ,
1740
+ comp :TextComp ,
1741
+ lazyLoad :false ,
1728
1742
compPath :"comps/textComp" ,
1729
1743
layoutInfo :{
1730
1744
w :6 ,