ywana-core8 0.0.848 → 0.0.850

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.
@@ -3792,6 +3792,7 @@ var SiteProvider = function SiteProvider(_ref) {
3792
3792
  */
3793
3793
  var Site = function Site(_ref3) {
3794
3794
  var icon = _ref3.icon,
3795
+ iconSrc = _ref3.iconSrc,
3795
3796
  logo = _ref3.logo,
3796
3797
  title = _ref3.title,
3797
3798
  toolbar = _ref3.toolbar,
@@ -3808,6 +3809,7 @@ var Site = function Site(_ref3) {
3808
3809
  className: "site6"
3809
3810
  }, /*#__PURE__*/React.createElement(SiteHeader, {
3810
3811
  icon: icon,
3812
+ iconSrc: iconSrc,
3811
3813
  title: title
3812
3814
  }), /*#__PURE__*/React.createElement(SiteToolBar, null, toolbar), /*#__PURE__*/React.createElement(SiteMenu, {
3813
3815
  logo: logo,
@@ -3829,9 +3831,11 @@ var SiteNotifications = function SiteNotifications() {
3829
3831
  var SiteHeader = function SiteHeader(props) {
3830
3832
  var _props$icon = props.icon,
3831
3833
  icon = _props$icon === void 0 ? "equalizer" : _props$icon,
3834
+ iconSrc = props.iconSrc,
3832
3835
  title = props.title;
3833
3836
  return /*#__PURE__*/React.createElement(Header, {
3834
3837
  icon: icon,
3838
+ iconSrc: iconSrc,
3835
3839
  title: title
3836
3840
  });
3837
3841
  };
@@ -8845,7 +8849,7 @@ var TableEditor$1 = function TableEditor(props) {
8845
8849
  title: /*#__PURE__*/React.createElement(Text, null, title)
8846
8850
  }, groupBy ? /*#__PURE__*/React.createElement(DropDown, {
8847
8851
  id: "groupBy",
8848
- label: "Agrupar Por",
8852
+ label: /*#__PURE__*/React.createElement(Text, null, "Group By"),
8849
8853
  value: groupBy,
8850
8854
  options: buildGroupOptions(schema),
8851
8855
  onChange: changeGroup