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.
package/dist/index.umd.js CHANGED
@@ -121,15 +121,15 @@
121
121
  var token = securityCtx ? securityCtx.token() : null;
122
122
  return fetchAsync('POST', domain + URL, body, token, headers);
123
123
  },
124
- PUT: function PUT(URL, body) {
124
+ PUT: function PUT(URL, body, headers) {
125
125
  var token = securityCtx ? securityCtx.token() : null;
126
126
  return fetchAsync('PUT', domain + URL, body, token, headers);
127
127
  },
128
- PATCH: function PATCH(URL, body) {
128
+ PATCH: function PATCH(URL, body, headers) {
129
129
  var token = securityCtx ? securityCtx.token() : null;
130
130
  return fetchAsync('PATCH', domain + URL, body, token, headers);
131
131
  },
132
- DELETE: function DELETE(URL) {
132
+ DELETE: function DELETE(URL, headers) {
133
133
  var token = securityCtx ? securityCtx.token() : null;
134
134
  return fetchAsync('DELETE', domain + URL, undefined, token, headers);
135
135
  }
@@ -3794,6 +3794,7 @@
3794
3794
  */
3795
3795
  var Site = function Site(_ref3) {
3796
3796
  var icon = _ref3.icon,
3797
+ iconSrc = _ref3.iconSrc,
3797
3798
  logo = _ref3.logo,
3798
3799
  title = _ref3.title,
3799
3800
  toolbar = _ref3.toolbar,
@@ -3810,6 +3811,7 @@
3810
3811
  className: "site6"
3811
3812
  }, /*#__PURE__*/React__default["default"].createElement(SiteHeader, {
3812
3813
  icon: icon,
3814
+ iconSrc: iconSrc,
3813
3815
  title: title
3814
3816
  }), /*#__PURE__*/React__default["default"].createElement(SiteToolBar, null, toolbar), /*#__PURE__*/React__default["default"].createElement(SiteMenu, {
3815
3817
  logo: logo,