@atlaskit/editor-plugin-panel 5.3.1 → 5.3.3
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,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-panel
|
|
2
2
|
|
|
3
|
+
## 5.3.3
|
|
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
|
+
|
|
11
|
+
## 5.3.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 5.3.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -107,7 +107,9 @@ var PanelNodeView = /*#__PURE__*/function () {
|
|
|
107
107
|
panelAttributes: node.attrs,
|
|
108
108
|
providerFactory: _this.providerFactory
|
|
109
109
|
});
|
|
110
|
-
}, this.icon, this.key
|
|
110
|
+
}, this.icon, this.key, undefined,
|
|
111
|
+
// @portal-render-immediately
|
|
112
|
+
true);
|
|
111
113
|
}
|
|
112
114
|
return (0, _createClass2.default)(PanelNodeView, [{
|
|
113
115
|
key: "ignoreMutation",
|
|
@@ -101,7 +101,9 @@ class PanelNodeView {
|
|
|
101
101
|
allowCustomPanel: pluginOptions.allowCustomPanel,
|
|
102
102
|
panelAttributes: node.attrs,
|
|
103
103
|
providerFactory: this.providerFactory
|
|
104
|
-
}), this.icon, this.key
|
|
104
|
+
}), this.icon, this.key, undefined,
|
|
105
|
+
// @portal-render-immediately
|
|
106
|
+
true);
|
|
105
107
|
}
|
|
106
108
|
ignoreMutation(mutation) {
|
|
107
109
|
// ignore mutation if it caused by the icon.
|
|
@@ -101,7 +101,9 @@ var PanelNodeView = /*#__PURE__*/function () {
|
|
|
101
101
|
panelAttributes: node.attrs,
|
|
102
102
|
providerFactory: _this.providerFactory
|
|
103
103
|
});
|
|
104
|
-
}, this.icon, this.key
|
|
104
|
+
}, this.icon, this.key, undefined,
|
|
105
|
+
// @portal-render-immediately
|
|
106
|
+
true);
|
|
105
107
|
}
|
|
106
108
|
return _createClass(PanelNodeView, [{
|
|
107
109
|
key: "ignoreMutation",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-panel",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.3",
|
|
4
4
|
"description": "Panel plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"@atlaskit/editor-plugin-emoji": "^4.2.0",
|
|
38
38
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
39
39
|
"@atlaskit/editor-shared-styles": "^3.6.0",
|
|
40
|
-
"@atlaskit/emoji": "^69.
|
|
40
|
+
"@atlaskit/emoji": "^69.4.0",
|
|
41
41
|
"@atlaskit/icon": "^27.12.0",
|
|
42
42
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
43
43
|
"@atlaskit/theme": "^19.0.0",
|
|
44
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
44
|
+
"@atlaskit/tmp-editor-statsig": "^11.1.0",
|
|
45
45
|
"@atlaskit/tokens": "^6.0.0",
|
|
46
46
|
"@babel/runtime": "^7.0.0",
|
|
47
47
|
"uuid": "^3.1.0"
|