react-crud-mobile 1.0.812 → 1.0.814

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.
@@ -375,14 +375,14 @@ var BUTTONS_SIZE = {
375
375
  };
376
376
  var ICONS_SIZE = {
377
377
  small: {
378
- fontSize: 20
378
+ fontSize: 16
379
379
  }
380
380
  };
381
381
  function UIButton(props) {
382
382
  var scope = props.scope;
383
383
  var element = scope.original;
384
- var size = scope.getPart('size', 'default');
385
- var variant = scope.getPart('variant', 'default');
384
+ var size = reactCrudUtils.Utils.nvl(element.size, 'default');
385
+ var variant = reactCrudUtils.Utils.nvl(element.variant, 'default');
386
386
  var color = element.color;
387
387
  var label = element.label;
388
388
  var icon = element.icon;