@atlaskit/editor-plugin-table 4.0.0 → 4.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/CHANGELOG.md +6 -0
- package/dist/cjs/plugins/table/nodeviews/TableComponent.js +2 -1
- package/dist/es2019/plugins/table/nodeviews/TableComponent.js +2 -1
- package/dist/esm/plugins/table/nodeviews/TableComponent.js +2 -1
- package/package.json +1 -1
- package/src/plugins/table/nodeviews/TableComponent.tsx +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 4.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#40684](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40684) [`9aa958ee692`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9aa958ee692) - [ux] Makes sticky scrollbar visible in Safari and Firefox by setting height.
|
|
8
|
+
|
|
3
9
|
## 4.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
|
@@ -559,7 +559,8 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
559
559
|
}
|
|
560
560
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
561
561
|
style: {
|
|
562
|
-
width: tableRef === null || tableRef === void 0 ? void 0 : tableRef.clientWidth
|
|
562
|
+
width: tableRef === null || tableRef === void 0 ? void 0 : tableRef.clientWidth,
|
|
563
|
+
height: '100%'
|
|
563
564
|
}
|
|
564
565
|
})), /*#__PURE__*/_react.default.createElement("div", {
|
|
565
566
|
style: shadowStyle(showAfterShadow),
|
|
@@ -560,7 +560,8 @@ class TableComponent extends React.Component {
|
|
|
560
560
|
}
|
|
561
561
|
}, /*#__PURE__*/React.createElement("div", {
|
|
562
562
|
style: {
|
|
563
|
-
width: tableRef === null || tableRef === void 0 ? void 0 : tableRef.clientWidth
|
|
563
|
+
width: tableRef === null || tableRef === void 0 ? void 0 : tableRef.clientWidth,
|
|
564
|
+
height: '100%'
|
|
564
565
|
}
|
|
565
566
|
})), /*#__PURE__*/React.createElement("div", {
|
|
566
567
|
style: shadowStyle(showAfterShadow),
|
|
@@ -552,7 +552,8 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
552
552
|
}
|
|
553
553
|
}, /*#__PURE__*/React.createElement("div", {
|
|
554
554
|
style: {
|
|
555
|
-
width: tableRef === null || tableRef === void 0 ? void 0 : tableRef.clientWidth
|
|
555
|
+
width: tableRef === null || tableRef === void 0 ? void 0 : tableRef.clientWidth,
|
|
556
|
+
height: '100%'
|
|
556
557
|
}
|
|
557
558
|
})), /*#__PURE__*/React.createElement("div", {
|
|
558
559
|
style: shadowStyle(showAfterShadow),
|
package/package.json
CHANGED
|
@@ -524,7 +524,12 @@ class TableComponent extends React.Component<ComponentProps, TableState> {
|
|
|
524
524
|
display: 'none',
|
|
525
525
|
}}
|
|
526
526
|
>
|
|
527
|
-
<div
|
|
527
|
+
<div
|
|
528
|
+
style={{
|
|
529
|
+
width: tableRef?.clientWidth,
|
|
530
|
+
height: '100%',
|
|
531
|
+
}}
|
|
532
|
+
></div>
|
|
528
533
|
</div>
|
|
529
534
|
)}
|
|
530
535
|
<div
|