aio-table 6.0.0 → 6.0.1
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/index.js +5 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1248,12 +1248,15 @@ var AIOTableTitle = /*#__PURE__*/function (_Component5) {
|
|
|
1248
1248
|
value: function getStyle() {
|
|
1249
1249
|
var _this$context6 = this.context,
|
|
1250
1250
|
headerHeight = _this$context6.headerHeight,
|
|
1251
|
-
columnGap = _this$context6.columnGap
|
|
1251
|
+
columnGap = _this$context6.columnGap,
|
|
1252
|
+
_this$context6$titleS = _this$context6.titleStyle,
|
|
1253
|
+
titleStyle = _this$context6$titleS === void 0 ? {} : _this$context6$titleS;
|
|
1252
1254
|
return {
|
|
1253
1255
|
height: headerHeight,
|
|
1254
1256
|
top: 0,
|
|
1255
1257
|
borderLeft: columnGap ? 'none' : undefined,
|
|
1256
|
-
borderRight: columnGap ? 'none' : undefined
|
|
1258
|
+
borderRight: columnGap ? 'none' : undefined,
|
|
1259
|
+
...titleStyle
|
|
1257
1260
|
};
|
|
1258
1261
|
}
|
|
1259
1262
|
}, {
|