react-crud-mobile 1.3.25 → 1.3.26

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.
@@ -515,6 +515,9 @@ function UISelect(props) {
515
515
  };
516
516
  var iconColor = Utils.nvl((_theme$colors = theme.colors) == null ? void 0 : _theme$colors.text, '#100e0e');
517
517
  var modalColor = Utils.nvl(headerStyle.color, 'white');
518
+ var defaults = {
519
+ color: modalColor
520
+ };
518
521
  var onClick = function onClick(_ref) {
519
522
  var value = _ref.value;
520
523
  var val = value;
@@ -547,7 +550,7 @@ function UISelect(props) {
547
550
  style: style('selectLabel'),
548
551
  children: Utils.nvl(value, placeholder)
549
552
  }), /*#__PURE__*/jsx(Ionicons$1, {
550
- name: "close",
553
+ name: "chevron-down-outline",
551
554
  size: scope.getPart('iconSize', null, 24),
552
555
  color: scope.getPart('iconColor', null, iconColor),
553
556
  style: style('iconStyle', {})
@@ -571,10 +574,10 @@ function UISelect(props) {
571
574
  },
572
575
  style: style('modalCloseButton'),
573
576
  children: /*#__PURE__*/jsx(Ionicons$1, {
574
- name: "chevron-back-outline",
577
+ name: "close",
575
578
  size: 24,
576
579
  color: modalColor,
577
- style: style('modalCloseText', {})
580
+ style: style('modalCloseText', defaults)
578
581
  })
579
582
  }), /*#__PURE__*/jsx(Text, {
580
583
  style: style('modalTitle'),