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.cjs
CHANGED
@@ -3801,6 +3801,7 @@ var SiteProvider = function SiteProvider(_ref) {
|
|
3801
3801
|
*/
|
3802
3802
|
var Site = function Site(_ref3) {
|
3803
3803
|
var icon = _ref3.icon,
|
3804
|
+
iconSrc = _ref3.iconSrc,
|
3804
3805
|
logo = _ref3.logo,
|
3805
3806
|
title = _ref3.title,
|
3806
3807
|
toolbar = _ref3.toolbar,
|
@@ -3817,6 +3818,7 @@ var Site = function Site(_ref3) {
|
|
3817
3818
|
className: "site6"
|
3818
3819
|
}, /*#__PURE__*/React__default["default"].createElement(SiteHeader, {
|
3819
3820
|
icon: icon,
|
3821
|
+
iconSrc: iconSrc,
|
3820
3822
|
title: title
|
3821
3823
|
}), /*#__PURE__*/React__default["default"].createElement(SiteToolBar, null, toolbar), /*#__PURE__*/React__default["default"].createElement(SiteMenu, {
|
3822
3824
|
logo: logo,
|
@@ -3838,9 +3840,11 @@ var SiteNotifications = function SiteNotifications() {
|
|
3838
3840
|
var SiteHeader = function SiteHeader(props) {
|
3839
3841
|
var _props$icon = props.icon,
|
3840
3842
|
icon = _props$icon === void 0 ? "equalizer" : _props$icon,
|
3843
|
+
iconSrc = props.iconSrc,
|
3841
3844
|
title = props.title;
|
3842
3845
|
return /*#__PURE__*/React__default["default"].createElement(Header, {
|
3843
3846
|
icon: icon,
|
3847
|
+
iconSrc: iconSrc,
|
3844
3848
|
title: title
|
3845
3849
|
});
|
3846
3850
|
};
|
@@ -8854,7 +8858,7 @@ var TableEditor$1 = function TableEditor(props) {
|
|
8854
8858
|
title: /*#__PURE__*/React__default["default"].createElement(Text, null, title)
|
8855
8859
|
}, groupBy ? /*#__PURE__*/React__default["default"].createElement(DropDown, {
|
8856
8860
|
id: "groupBy",
|
8857
|
-
label: "
|
8861
|
+
label: /*#__PURE__*/React__default["default"].createElement(Text, null, "Group By"),
|
8858
8862
|
value: groupBy,
|
8859
8863
|
options: buildGroupOptions(schema),
|
8860
8864
|
onChange: changeGroup
|