@atlaskit/editor-plugin-table 12.2.1 → 12.2.2

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
+ ## 12.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`20d3223b57972`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/20d3223b57972) -
8
+ Opted out of debounced portal provider
9
+ - Updated dependencies
10
+
3
11
  ## 12.2.1
4
12
 
5
13
  ### Patch Changes
@@ -139,7 +139,9 @@ var createPlugin = exports.createPlugin = function createPlugin(api, nodeViewPor
139
139
  onKeyDown: function onKeyDown() {},
140
140
  api: api
141
141
  }));
142
- }, element, decorationRenderKey);
142
+ }, element, decorationRenderKey, undefined,
143
+ // @portal-render-immediately
144
+ true);
143
145
  return element;
144
146
  }, {
145
147
  destroy: function destroy(node) {
@@ -111,7 +111,9 @@ export const createPlugin = (api, nodeViewPortalProviderAPI) => {
111
111
  onClick: () => {},
112
112
  onKeyDown: () => {},
113
113
  api
114
- })), element, decorationRenderKey);
114
+ })), element, decorationRenderKey, undefined,
115
+ // @portal-render-immediately
116
+ true);
115
117
  return element;
116
118
  }, {
117
119
  destroy: node => {
@@ -134,7 +134,9 @@ export var createPlugin = function createPlugin(api, nodeViewPortalProviderAPI)
134
134
  onKeyDown: function onKeyDown() {},
135
135
  api: api
136
136
  }));
137
- }, element, decorationRenderKey);
137
+ }, element, decorationRenderKey, undefined,
138
+ // @portal-render-immediately
139
+ true);
138
140
  return element;
139
141
  }, {
140
142
  destroy: function destroy(node) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-table",
3
- "version": "12.2.1",
3
+ "version": "12.2.2",
4
4
  "description": "Table plugin for the @atlaskit/editor",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -37,10 +37,10 @@
37
37
  "@atlaskit/editor-plugin-batch-attribute-updates": "^3.0.0",
38
38
  "@atlaskit/editor-plugin-content-insertion": "^3.1.0",
39
39
  "@atlaskit/editor-plugin-editor-viewmode": "^5.0.0",
40
- "@atlaskit/editor-plugin-extension": "6.1.8",
40
+ "@atlaskit/editor-plugin-extension": "6.1.9",
41
41
  "@atlaskit/editor-plugin-guideline": "^3.0.0",
42
42
  "@atlaskit/editor-plugin-interaction": "^5.0.0",
43
- "@atlaskit/editor-plugin-limited-mode": "^0.0.2",
43
+ "@atlaskit/editor-plugin-limited-mode": "^0.0.3",
44
44
  "@atlaskit/editor-plugin-selection": "^3.0.0",
45
45
  "@atlaskit/editor-plugin-user-intent": "^1.1.0",
46
46
  "@atlaskit/editor-plugin-width": "^4.0.0",
@@ -57,7 +57,7 @@
57
57
  "@atlaskit/primitives": "^14.11.0",
58
58
  "@atlaskit/react-ufo": "^4.3.0",
59
59
  "@atlaskit/theme": "^19.0.0",
60
- "@atlaskit/tmp-editor-statsig": "^11.0.0",
60
+ "@atlaskit/tmp-editor-statsig": "^11.1.0",
61
61
  "@atlaskit/toggle": "^15.1.0",
62
62
  "@atlaskit/tokens": "^6.0.0",
63
63
  "@atlaskit/tooltip": "^20.4.0",
@@ -143,6 +143,9 @@ export const createPlugin = (
143
143
  ),
144
144
  element,
145
145
  decorationRenderKey,
146
+ undefined,
147
+ // @portal-render-immediately
148
+ true,
146
149
  );
147
150
 
148
151
  return element;