@atlaskit/editor-plugin-table 12.2.7 → 12.3.0
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,16 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 12.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`2a4fd9178e46c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2a4fd9178e46c) -
|
|
8
|
+
Debounced sort button on table
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 12.2.7
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -139,9 +139,7 @@ var createPlugin = exports.createPlugin = function createPlugin(api, nodeViewPor
|
|
|
139
139
|
onKeyDown: function onKeyDown() {},
|
|
140
140
|
api: api
|
|
141
141
|
}));
|
|
142
|
-
}, element, decorationRenderKey
|
|
143
|
-
// @portal-render-immediately
|
|
144
|
-
true);
|
|
142
|
+
}, element, decorationRenderKey);
|
|
145
143
|
return element;
|
|
146
144
|
}, {
|
|
147
145
|
destroy: function destroy(node) {
|
|
@@ -111,9 +111,7 @@ export const createPlugin = (api, nodeViewPortalProviderAPI) => {
|
|
|
111
111
|
onClick: () => {},
|
|
112
112
|
onKeyDown: () => {},
|
|
113
113
|
api
|
|
114
|
-
})), element, decorationRenderKey
|
|
115
|
-
// @portal-render-immediately
|
|
116
|
-
true);
|
|
114
|
+
})), element, decorationRenderKey);
|
|
117
115
|
return element;
|
|
118
116
|
}, {
|
|
119
117
|
destroy: node => {
|
|
@@ -134,9 +134,7 @@ export var createPlugin = function createPlugin(api, nodeViewPortalProviderAPI)
|
|
|
134
134
|
onKeyDown: function onKeyDown() {},
|
|
135
135
|
api: api
|
|
136
136
|
}));
|
|
137
|
-
}, element, decorationRenderKey
|
|
138
|
-
// @portal-render-immediately
|
|
139
|
-
true);
|
|
137
|
+
}, element, decorationRenderKey);
|
|
140
138
|
return element;
|
|
141
139
|
}, {
|
|
142
140
|
destroy: function destroy(node) {
|