ywana-core8 0.0.849 → 0.0.851

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.
@@ -119,15 +119,15 @@ var HTTPClient = function HTTPClient(domain, securityCtx) {
119
119
  var token = securityCtx ? securityCtx.token() : null;
120
120
  return fetchAsync('POST', domain + URL, body, token, headers);
121
121
  },
122
- PUT: function PUT(URL, body) {
122
+ PUT: function PUT(URL, body, headers) {
123
123
  var token = securityCtx ? securityCtx.token() : null;
124
124
  return fetchAsync('PUT', domain + URL, body, token, headers);
125
125
  },
126
- PATCH: function PATCH(URL, body) {
126
+ PATCH: function PATCH(URL, body, headers) {
127
127
  var token = securityCtx ? securityCtx.token() : null;
128
128
  return fetchAsync('PATCH', domain + URL, body, token, headers);
129
129
  },
130
- DELETE: function DELETE(URL) {
130
+ DELETE: function DELETE(URL, headers) {
131
131
  var token = securityCtx ? securityCtx.token() : null;
132
132
  return fetchAsync('DELETE', domain + URL, undefined, token, headers);
133
133
  }
@@ -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,