@@ -166,24 +166,24 @@ Loading.propTypes = {
166
166
] ) ,
167
167
168
168
/**
169
- * Property that determines which spinner to show
169
+ * Property that determines which built-in spinner to show
170
170
* one of 'graph', 'cube', 'circle', 'dot', or 'default'.
171
171
*/
172
172
type : PropTypes . oneOf ( [ 'graph' , 'cube' , 'circle' , 'dot' , 'default' ] ) ,
173
173
174
174
/**
175
- * Boolean that makes the spinner display full-screen
175
+ * Boolean that makes the built-in spinner display full-screen
176
176
*/
177
177
fullscreen : PropTypes . bool ,
178
178
179
179
/**
180
- * If true, the spinner will display the component_name and prop_name
180
+ * If true, the built-in spinner will display the component_name and prop_name
181
181
* while loading
182
182
*/
183
183
debug : PropTypes . bool ,
184
184
185
185
/**
186
- * Additional CSS class for the spinner root DOM node
186
+ * Additional CSS class for the built-in spinner root DOM node
187
187
*/
188
188
className : PropTypes . string ,
189
189
@@ -193,7 +193,7 @@ Loading.propTypes = {
193
193
parent_className : PropTypes . string ,
194
194
195
195
/**
196
- * Additional CSS styling for the spinner root DOM node
196
+ * Additional CSS styling for the built-in spinner root DOM node
197
197
*/
198
198
style : PropTypes . object ,
199
199
@@ -203,12 +203,12 @@ Loading.propTypes = {
203
203
parent_style : PropTypes . object ,
204
204
/**
205
205
* Additional CSS styling for the spinner overlay. This is applied to the
206
- * dcc.Loading children while the spinner is active. The default is {'visibility': 'hidden'}
206
+ * dcc.Loading children while the spinner is active. The default is ` {'visibility': 'hidden'}`
207
207
*/
208
208
overlay_style : PropTypes . object ,
209
209
210
210
/**
211
- * Primary color used for the loading spinners
211
+ * Primary color used for the built-in loading spinners
212
212
*/
213
213
color : PropTypes . string ,
214
214
@@ -243,7 +243,7 @@ Loading.propTypes = {
243
243
244
244
/**
245
245
* Whether the Spinner should show on app start-up before the loading state
246
- * has been determined. Default True.
246
+ * has been determined. Default True. Use when also setting `delay_show`.
247
247
*/
248
248
show_initially : PropTypes . bool ,
249
249
@@ -255,7 +255,7 @@ Loading.propTypes = {
255
255
target_components : PropTypes . arrayOf ( PropTypes . object ) ,
256
256
257
257
/**
258
- * Component to use rather than the spinner specified in the `type` prop.
258
+ * Component to use rather than the built-in spinner specified in the `type` prop.
259
259
*
260
260
*/
261
261
custom_spinner : PropTypes . node ,
0 commit comments