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