@atlaskit/editor-plugin-panel 4.2.9 → 4.2.11
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,20 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-panel
|
|
2
2
|
|
|
3
|
+
## 4.2.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#128744](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/128744)
|
|
8
|
+
[`2165ceedf2fc2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2165ceedf2fc2) -
|
|
9
|
+
EDITOR-176 - Cleanup FG platform_editor_update_panel_icon_aria_label
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 4.2.10
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 4.2.9
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -17,7 +17,6 @@ var _panel = require("@atlaskit/editor-common/panel");
|
|
|
17
17
|
var _model = require("@atlaskit/editor-prosemirror/model");
|
|
18
18
|
var _consts = require("@atlaskit/editor-shared-styles/consts");
|
|
19
19
|
var _hint = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/hint"));
|
|
20
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
21
20
|
var _utils = require("../pm-plugins/utils/utils");
|
|
22
21
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
23
22
|
// Mapping export
|
|
@@ -60,10 +59,8 @@ var PanelIcon = exports.PanelIcon = function PanelIcon(props) {
|
|
|
60
59
|
});
|
|
61
60
|
}
|
|
62
61
|
var Icon = panelIcons[panelType];
|
|
63
|
-
return
|
|
62
|
+
return /*#__PURE__*/_react.default.createElement(Icon, {
|
|
64
63
|
label: "".concat(panelType, " panel")
|
|
65
|
-
}) : /*#__PURE__*/_react.default.createElement(Icon, {
|
|
66
|
-
label: "Panel ".concat(panelType)
|
|
67
64
|
});
|
|
68
65
|
};
|
|
69
66
|
var PanelNodeView = /*#__PURE__*/function () {
|
|
@@ -8,7 +8,6 @@ import { PanelSharedCssClassName } from '@atlaskit/editor-common/panel';
|
|
|
8
8
|
import { DOMSerializer } from '@atlaskit/editor-prosemirror/model';
|
|
9
9
|
import { akEditorCustomIconSize } from '@atlaskit/editor-shared-styles/consts';
|
|
10
10
|
import TipIcon from '@atlaskit/icon/glyph/editor/hint';
|
|
11
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
12
11
|
import { panelAttrsToDom } from '../pm-plugins/utils/utils';
|
|
13
12
|
|
|
14
13
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
@@ -56,10 +55,8 @@ export const PanelIcon = props => {
|
|
|
56
55
|
});
|
|
57
56
|
}
|
|
58
57
|
const Icon = panelIcons[panelType];
|
|
59
|
-
return
|
|
58
|
+
return /*#__PURE__*/React.createElement(Icon, {
|
|
60
59
|
label: `${panelType} panel`
|
|
61
|
-
}) : /*#__PURE__*/React.createElement(Icon, {
|
|
62
|
-
label: `Panel ${panelType}`
|
|
63
60
|
});
|
|
64
61
|
};
|
|
65
62
|
class PanelNodeView {
|
|
@@ -10,7 +10,6 @@ import { PanelSharedCssClassName } from '@atlaskit/editor-common/panel';
|
|
|
10
10
|
import { DOMSerializer } from '@atlaskit/editor-prosemirror/model';
|
|
11
11
|
import { akEditorCustomIconSize } from '@atlaskit/editor-shared-styles/consts';
|
|
12
12
|
import TipIcon from '@atlaskit/icon/glyph/editor/hint';
|
|
13
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
14
13
|
import { panelAttrsToDom } from '../pm-plugins/utils/utils';
|
|
15
14
|
|
|
16
15
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
@@ -54,10 +53,8 @@ export var PanelIcon = function PanelIcon(props) {
|
|
|
54
53
|
});
|
|
55
54
|
}
|
|
56
55
|
var Icon = panelIcons[panelType];
|
|
57
|
-
return
|
|
56
|
+
return /*#__PURE__*/React.createElement(Icon, {
|
|
58
57
|
label: "".concat(panelType, " panel")
|
|
59
|
-
}) : /*#__PURE__*/React.createElement(Icon, {
|
|
60
|
-
label: "Panel ".concat(panelType)
|
|
61
58
|
});
|
|
62
59
|
};
|
|
63
60
|
var PanelNodeView = /*#__PURE__*/function () {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-panel",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.11",
|
|
4
4
|
"description": "Panel plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
35
|
-
"@atlaskit/editor-common": "^102.
|
|
35
|
+
"@atlaskit/editor-common": "^102.11.0",
|
|
36
36
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
37
37
|
"@atlaskit/editor-plugin-analytics": "^2.2.0",
|
|
38
38
|
"@atlaskit/editor-plugin-decorations": "^2.0.0",
|
|
39
39
|
"@atlaskit/editor-plugin-emoji": "^3.2.0",
|
|
40
40
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
41
41
|
"@atlaskit/editor-shared-styles": "^3.4.0",
|
|
42
|
-
"@atlaskit/emoji": "^
|
|
42
|
+
"@atlaskit/emoji": "^69.0.0",
|
|
43
43
|
"@atlaskit/icon": "^25.0.0",
|
|
44
44
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
45
45
|
"@atlaskit/theme": "^18.0.0",
|
|
46
|
-
"@atlaskit/tmp-editor-statsig": "^4.
|
|
46
|
+
"@atlaskit/tmp-editor-statsig": "^4.1.0",
|
|
47
47
|
"@atlaskit/tokens": "^4.5.0",
|
|
48
48
|
"@babel/runtime": "^7.0.0",
|
|
49
49
|
"uuid": "^3.1.0"
|
|
@@ -93,9 +93,6 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"platform-feature-flags": {
|
|
96
|
-
"platform_editor_update_panel_icon_aria_label": {
|
|
97
|
-
"type": "boolean"
|
|
98
|
-
},
|
|
99
96
|
"platform_editor_nbm_backspace_fixes": {
|
|
100
97
|
"type": "boolean"
|
|
101
98
|
}
|