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.mjs CHANGED
@@ -324,7 +324,8 @@ function UIIcon({ scope }) {
324
324
  ant: AntDesign,
325
325
  entypo: Entypo,
326
326
  evil: EvilIcons,
327
- material: MaterialCommunityIcons
327
+ material: MaterialCommunityIcons,
328
+ ma: MaterialCommunityIcons
328
329
  };
329
330
  let library = Utils4.nvl(scope.original.library, "ion");
330
331
  let icon = name.trim();
@@ -474,7 +475,8 @@ function UIButton(props) {
474
475
  if (!label) {
475
476
  def = { ...def, borderRadius: 20 };
476
477
  }
477
- let css = { ...def, ...style("button") };
478
+ let pure = style("button", {});
479
+ let css = { ...style("button", def), ...pure };
478
480
  if (!css.width) {
479
481
  let h = css.height;
480
482
  if (typeof h === "number") css.minWidth = h;