react-crud-mobile 1.3.560 → 1.3.562

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/dist/index.js CHANGED
@@ -352,7 +352,8 @@ function UIIcon({ scope }) {
352
352
  ant: import_vector_icons.AntDesign,
353
353
  entypo: import_vector_icons.Entypo,
354
354
  evil: import_vector_icons.EvilIcons,
355
- material: import_vector_icons.MaterialCommunityIcons
355
+ material: import_vector_icons.MaterialCommunityIcons,
356
+ ma: import_vector_icons.MaterialCommunityIcons
356
357
  };
357
358
  let library = import_react_crud_utils4.Utils.nvl(scope.original.library, "ion");
358
359
  let icon = name.trim();
@@ -502,7 +503,8 @@ function UIButton(props) {
502
503
  if (!label) {
503
504
  def = { ...def, borderRadius: 20 };
504
505
  }
505
- let css = { ...def, ...style("button") };
506
+ let pure = style("button", {});
507
+ let css = { ...style("button", def), ...pure };
506
508
  if (!css.width) {
507
509
  let h = css.height;
508
510
  if (typeof h === "number") css.minWidth = h;