@@ -111,10 +111,6 @@ const DivStyled = styled.div`
111
111
> div:first-child {
112
112
margin-bottom: 6px;
113
113
}
114
-
115
- .tooltipLabel {
116
- white-space: nowrap;
117
- }
118
114
119
115
}
120
116
// custom styles for icon selector
@@ -189,6 +185,8 @@ const childrenMap = {
189
185
maxWidth : dropdownInputSimpleControl ( OPTIONS , USER_DEFINE , "1920" ) ,
190
186
themeId : valueComp < string > ( DEFAULT_THEMEID ) ,
191
187
preventAppStylesOverwriting : withDefault ( BoolControl , true ) ,
188
+ showComponentLoadingIndicators : withDefault ( BoolControl , true ) ,
189
+ showDataLoadingIndicators : withDefault ( BoolControl , true ) ,
192
190
customShortcuts : CustomShortcutsComp ,
193
191
disableCollision : valueComp < boolean > ( false ) ,
194
192
lowcoderCompVersion : withDefault ( StringControl , 'latest' ) ,
@@ -211,6 +209,8 @@ function AppSettingsModal(props: ChildrenInstance) {
211
209
category,
212
210
showHeaderInPublic,
213
211
preventAppStylesOverwriting,
212
+ showComponentLoadingIndicators,
213
+ showDataLoadingIndicators,
214
214
lowcoderCompVersion,
215
215
} = props ;
216
216
@@ -325,6 +325,16 @@ function AppSettingsModal(props: ChildrenInstance) {
325
325
label : trans ( "prop.preventOverwriting" ) ,
326
326
} ) }
327
327
</ div >
328
+ < div style = { { margin : '20px 0' } } >
329
+ { showComponentLoadingIndicators . propertyView ( {
330
+ label : trans ( "prop.showComponentLoadingIndicators" ) ,
331
+ } ) }
332
+ </ div >
333
+ < div style = { { margin : '20px 0' } } >
334
+ { showDataLoadingIndicators . propertyView ( {
335
+ label : trans ( "prop.showDataLoadingIndicators" ) ,
336
+ } ) }
337
+ </ div >
328
338
</ DivStyled >
329
339
< DividerStyled />
330
340
< DivStyled >
0 commit comments