@atlaskit/editor-plugin-table 15.3.16 → 15.3.17
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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 15.3.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`cdde660f1ee48`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cdde660f1ee48) -
|
|
8
|
+
Refresh sticky header when native sticky positioning is removed
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 15.3.16
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -300,6 +300,7 @@ var TableRowNativeStickyWithFallback = exports.default = /*#__PURE__*/function (
|
|
|
300
300
|
observer.root.classList.remove(_types.TableCssClassName.TABLE_NODE_WRAPPER_NO_OVERFLOW);
|
|
301
301
|
_this2.dom.classList.remove(_types.TableCssClassName.NATIVE_STICKY);
|
|
302
302
|
_this2.isNativeSticky = false;
|
|
303
|
+
_this2.refreshStickyState();
|
|
303
304
|
}
|
|
304
305
|
});
|
|
305
306
|
}, options);
|
|
@@ -269,6 +269,7 @@ export default class TableRowNativeStickyWithFallback extends TableNodeView {
|
|
|
269
269
|
observer.root.classList.remove(ClassName.TABLE_NODE_WRAPPER_NO_OVERFLOW);
|
|
270
270
|
this.dom.classList.remove(ClassName.NATIVE_STICKY);
|
|
271
271
|
this.isNativeSticky = false;
|
|
272
|
+
this.refreshStickyState();
|
|
272
273
|
}
|
|
273
274
|
});
|
|
274
275
|
}, options);
|
|
@@ -293,6 +293,7 @@ var TableRowNativeStickyWithFallback = /*#__PURE__*/function (_ref) {
|
|
|
293
293
|
observer.root.classList.remove(ClassName.TABLE_NODE_WRAPPER_NO_OVERFLOW);
|
|
294
294
|
_this2.dom.classList.remove(ClassName.NATIVE_STICKY);
|
|
295
295
|
_this2.isNativeSticky = false;
|
|
296
|
+
_this2.refreshStickyState();
|
|
296
297
|
}
|
|
297
298
|
});
|
|
298
299
|
}, options);
|