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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goblin-gadgets",
3
- "version": "2.0.18",
3
+ "version": "2.0.19",
4
4
  "description": "Gadgets library",
5
5
  "main": "./builders/builders.js",
6
6
  "scripts": {
@@ -47,7 +47,7 @@ export default [
47
47
  {
48
48
  name: 'busyLook',
49
49
  group: 'aspect',
50
- type: types.enum(['', 'old', 'small', 'large']),
50
+ type: types.enum(['', 'old', 'very-small', 'small', 'large']),
51
51
  },
52
52
  {
53
53
  name: 'isDragged',
@@ -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}>