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.
- package/dist/index.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +5 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +5 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage2.js +2 -2
- package/src/site/site.js +4 -4
package/dist/index.umd.js
CHANGED
@@ -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,
|
@@ -3831,9 +3833,11 @@
|
|
3831
3833
|
var SiteHeader = function SiteHeader(props) {
|
3832
3834
|
var _props$icon = props.icon,
|
3833
3835
|
icon = _props$icon === void 0 ? "equalizer" : _props$icon,
|
3836
|
+
iconSrc = props.iconSrc,
|
3834
3837
|
title = props.title;
|
3835
3838
|
return /*#__PURE__*/React__default["default"].createElement(Header, {
|
3836
3839
|
icon: icon,
|
3840
|
+
iconSrc: iconSrc,
|
3837
3841
|
title: title
|
3838
3842
|
});
|
3839
3843
|
};
|
@@ -8847,7 +8851,7 @@
|
|
8847
8851
|
title: /*#__PURE__*/React__default["default"].createElement(Text, null, title)
|
8848
8852
|
}, groupBy ? /*#__PURE__*/React__default["default"].createElement(DropDown, {
|
8849
8853
|
id: "groupBy",
|
8850
|
-
label: "
|
8854
|
+
label: /*#__PURE__*/React__default["default"].createElement(Text, null, "Group By"),
|
8851
8855
|
value: groupBy,
|
8852
8856
|
options: buildGroupOptions(schema),
|
8853
8857
|
onChange: changeGroup
|