@agilemotion/oui-react-js 1.8.70 → 1.8.71
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.
|
@@ -43,7 +43,9 @@ const TabPage = /*#__PURE__*/_react.default.memo(/*#__PURE__*/_react.default.for
|
|
|
43
43
|
return /*#__PURE__*/_react.default.createElement("div", {
|
|
44
44
|
style: _Utils.default.mergeStyles({
|
|
45
45
|
width: "100%",
|
|
46
|
-
height: '100%'
|
|
46
|
+
height: '100%',
|
|
47
|
+
borderRadius: '4px',
|
|
48
|
+
padding: '8px'
|
|
47
49
|
}, props.config)
|
|
48
50
|
}, /*#__PURE__*/_react.default.createElement(_Typography.default, _extends({
|
|
49
51
|
component: "div",
|
|
@@ -149,7 +149,8 @@ const TabPanel = /*#__PURE__*/_react.default.memo(/*#__PURE__*/_react.default.fo
|
|
|
149
149
|
return !_Utils.default.isNull(visibleTabPages) && /*#__PURE__*/_react.default.createElement("div", {
|
|
150
150
|
style: {
|
|
151
151
|
width: '100%',
|
|
152
|
-
height: '100%'
|
|
152
|
+
height: '100%',
|
|
153
|
+
borderBottom: '1px solid #d1d1d1'
|
|
153
154
|
}
|
|
154
155
|
}, /*#__PURE__*/_react.default.createElement(_AppBar.default, {
|
|
155
156
|
position: "static",
|
|
@@ -157,7 +158,7 @@ const TabPanel = /*#__PURE__*/_react.default.memo(/*#__PURE__*/_react.default.fo
|
|
|
157
158
|
style: {
|
|
158
159
|
background: 'transparent',
|
|
159
160
|
boxShadow: 'none',
|
|
160
|
-
|
|
161
|
+
borderBottom: '1px solid #e1e1e1'
|
|
161
162
|
}
|
|
162
163
|
}, /*#__PURE__*/_react.default.createElement(_Tabs.default, {
|
|
163
164
|
value: tabValue,
|
|
@@ -119,6 +119,8 @@ const Toolbar = props => {
|
|
|
119
119
|
setConfig(props.tableRow ? _objectSpread(_objectSpread({}, props.config), {}, {
|
|
120
120
|
id: props.config.id + '_' + ((_props$tableRow$id = props.tableRow.id) === null || _props$tableRow$id === void 0 ? void 0 : _props$tableRow$id.replaceAll('-', ''))
|
|
121
121
|
}) : props.config);
|
|
122
|
+
let parsedConfig = _Utils.default.parseConfig(props.config, props.viewId);
|
|
123
|
+
setVisible(_Utils.default.evaluateBooleanExpression(parsedConfig.visible, parsedConfig.id, true));
|
|
122
124
|
}, []);
|
|
123
125
|
function createButtonItemHandle(id) {
|
|
124
126
|
var _props$tableRow$id2;
|
package/package.json
CHANGED