goblin-gadgets 2.0.18 → 2.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -169,7 +169,15 @@ class Container extends Widget {
|
|
|
169
169
|
const busyBoxClass = this.styles.classNames.busyBox;
|
|
170
170
|
const busyGlyphClass = this.styles.classNames.busyGlyph;
|
|
171
171
|
|
|
172
|
-
if (this.props.busyLook === 'small') {
|
|
172
|
+
if (this.props.busyLook === 'very-small') {
|
|
173
|
+
return (
|
|
174
|
+
<div className={busyBoxClass}>
|
|
175
|
+
<div className={busyGlyphClass}>
|
|
176
|
+
<Spinner size="40px" />
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
);
|
|
180
|
+
} else if (this.props.busyLook === 'small') {
|
|
173
181
|
return (
|
|
174
182
|
<div className={busyBoxClass}>
|
|
175
183
|
<div className={busyGlyphClass}>
|