@atlaskit/editor-plugin-table 1.6.7 → 1.6.8
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/ui/FloatingContextualMenu/ContextualMenu.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/plugins/table/ui/FloatingContextualMenu/ContextualMenu.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/plugins/table/ui/FloatingContextualMenu/ContextualMenu.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/plugins/table/ui/FloatingContextualMenu/ContextualMenu.d.ts +1 -1
- package/dist/types-ts4.5/plugins/table/ui/FloatingContextualMenu/ContextualMenu.d.ts +1 -1
- package/package.json +4 -4
- package/src/plugins/table/ui/FloatingContextualMenu/ContextualMenu.tsx +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 1.6.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`a9350cf3831`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a9350cf3831) - Check existence of window and document variable for confluence SSR to work
|
|
8
|
+
|
|
3
9
|
## 1.6.7
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -446,7 +446,7 @@ var ContextualMenu = /*#__PURE__*/function (_Component) {
|
|
|
446
446
|
}(_react.Component);
|
|
447
447
|
exports.ContextualMenu = ContextualMenu;
|
|
448
448
|
(0, _defineProperty2.default)(ContextualMenu, "defaultProps", {
|
|
449
|
-
boundariesElement: document.body
|
|
449
|
+
boundariesElement: typeof document !== 'undefined' ? document.body : undefined
|
|
450
450
|
});
|
|
451
451
|
var _default = (0, _reactIntlNext.injectIntl)(ContextualMenu);
|
|
452
452
|
exports.default = _default;
|
package/dist/cjs/version.json
CHANGED
|
@@ -454,6 +454,6 @@ export class ContextualMenu extends Component {
|
|
|
454
454
|
}
|
|
455
455
|
}
|
|
456
456
|
_defineProperty(ContextualMenu, "defaultProps", {
|
|
457
|
-
boundariesElement: document.body
|
|
457
|
+
boundariesElement: typeof document !== 'undefined' ? document.body : undefined
|
|
458
458
|
});
|
|
459
459
|
export default injectIntl(ContextualMenu);
|
package/dist/es2019/version.json
CHANGED
|
@@ -438,6 +438,6 @@ export var ContextualMenu = /*#__PURE__*/function (_Component) {
|
|
|
438
438
|
return ContextualMenu;
|
|
439
439
|
}(Component);
|
|
440
440
|
_defineProperty(ContextualMenu, "defaultProps", {
|
|
441
|
-
boundariesElement: document.body
|
|
441
|
+
boundariesElement: typeof document !== 'undefined' ? document.body : undefined
|
|
442
442
|
});
|
|
443
443
|
export default injectIntl(ContextualMenu);
|
package/dist/esm/version.json
CHANGED
|
@@ -69,7 +69,7 @@ export interface State {
|
|
|
69
69
|
export declare class ContextualMenu extends Component<Props & WrappedComponentProps, State> {
|
|
70
70
|
state: State;
|
|
71
71
|
static defaultProps: {
|
|
72
|
-
boundariesElement: HTMLElement;
|
|
72
|
+
boundariesElement: HTMLElement | undefined;
|
|
73
73
|
};
|
|
74
74
|
render(): jsx.JSX.Element | null;
|
|
75
75
|
private handleSubMenuRef;
|
|
@@ -69,7 +69,7 @@ export interface State {
|
|
|
69
69
|
export declare class ContextualMenu extends Component<Props & WrappedComponentProps, State> {
|
|
70
70
|
state: State;
|
|
71
71
|
static defaultProps: {
|
|
72
|
-
boundariesElement: HTMLElement;
|
|
72
|
+
boundariesElement: HTMLElement | undefined;
|
|
73
73
|
};
|
|
74
74
|
render(): jsx.JSX.Element | null;
|
|
75
75
|
private handleSubMenuRef;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.8",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"releaseModel": "continuous"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@atlaskit/adf-schema": "^25.
|
|
31
|
-
"@atlaskit/editor-common": "^74.
|
|
30
|
+
"@atlaskit/adf-schema": "^25.10.0",
|
|
31
|
+
"@atlaskit/editor-common": "^74.10.0",
|
|
32
32
|
"@atlaskit/editor-palette": "1.5.1",
|
|
33
33
|
"@atlaskit/editor-plugin-analytics": "^0.0.3",
|
|
34
34
|
"@atlaskit/editor-plugin-content-insertion": "^0.0.3",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@af/editor-libra": "*",
|
|
66
66
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
67
67
|
"@atlaskit/button": "^16.8.0",
|
|
68
|
-
"@atlaskit/editor-core": "^185.
|
|
68
|
+
"@atlaskit/editor-core": "^185.4.0",
|
|
69
69
|
"@atlaskit/editor-plugin-decorations": "^0.1.0",
|
|
70
70
|
"@atlaskit/editor-plugin-feature-flags": "^0.1.0",
|
|
71
71
|
"@atlaskit/editor-plugin-grid": "^0.1.0",
|