Skip to content

Commit d87be76

Browse files
committed
update doc strings
1 parent b5b9710 commit d87be76

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

components/dash-core-components/src/components/Loading.react.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -166,24 +166,24 @@ Loading.propTypes = {
166166
]),
167167

168168
/**
169-
* Property that determines which spinner to show
169+
* Property that determines which built-in spinner to show
170170
* one of 'graph', 'cube', 'circle', 'dot', or 'default'.
171171
*/
172172
type: PropTypes.oneOf(['graph', 'cube', 'circle', 'dot', 'default']),
173173

174174
/**
175-
* Boolean that makes the spinner display full-screen
175+
* Boolean that makes the built-in spinner display full-screen
176176
*/
177177
fullscreen: PropTypes.bool,
178178

179179
/**
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
181181
* while loading
182182
*/
183183
debug: PropTypes.bool,
184184

185185
/**
186-
* Additional CSS class for the spinner root DOM node
186+
* Additional CSS class for the built-in spinner root DOM node
187187
*/
188188
className: PropTypes.string,
189189

@@ -193,7 +193,7 @@ Loading.propTypes = {
193193
parent_className: PropTypes.string,
194194

195195
/**
196-
* Additional CSS styling for the spinner root DOM node
196+
* Additional CSS styling for the built-in spinner root DOM node
197197
*/
198198
style: PropTypes.object,
199199

@@ -203,12 +203,12 @@ Loading.propTypes = {
203203
parent_style: PropTypes.object,
204204
/**
205205
* 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'}`
207207
*/
208208
overlay_style: PropTypes.object,
209209

210210
/**
211-
* Primary color used for the loading spinners
211+
* Primary color used for the built-in loading spinners
212212
*/
213213
color: PropTypes.string,
214214

@@ -243,7 +243,7 @@ Loading.propTypes = {
243243

244244
/**
245245
* 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`.
247247
*/
248248
show_initially: PropTypes.bool,
249249

@@ -255,7 +255,7 @@ Loading.propTypes = {
255255
target_components: PropTypes.arrayOf(PropTypes.object),
256256

257257
/**
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.
259259
*
260260
*/
261261
custom_spinner: PropTypes.node,

0 commit comments

Comments
 (0)