@atlaskit/editor-plugin-panel 4.4.9 → 4.4.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.4.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 4.4.10
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#171657](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/171657)
|
|
14
|
+
[`cb6c865095af1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cb6c865095af1) -
|
|
15
|
+
Clean-up platform_editor_lcm_nested_panel_icon_fix
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 4.4.9
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -42,13 +42,13 @@ var panelAttrsToDom = exports.panelAttrsToDom = function panelAttrsToDom(attrs,
|
|
|
42
42
|
'data-panel-icon-text': panelIconText
|
|
43
43
|
});
|
|
44
44
|
}
|
|
45
|
-
var iconDiv = ['div',
|
|
46
|
-
//
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
45
|
+
var iconDiv = ['div',
|
|
46
|
+
// EDITOR-266 This fixes an issue in LCM where if you have nested panels
|
|
47
|
+
// The icon colour will be overridden by the parent panel style, this is used to create a more specific css selector
|
|
48
|
+
{
|
|
49
|
+
class: _panel.PanelSharedCssClassName.icon,
|
|
50
50
|
'data-panel-type': panelType || _adfSchema.PanelType.INFO
|
|
51
|
-
}
|
|
51
|
+
}];
|
|
52
52
|
var contentDiv = ['div', {
|
|
53
53
|
class: _panel.PanelSharedCssClassName.content
|
|
54
54
|
}, 0];
|
|
@@ -39,12 +39,10 @@ export const panelAttrsToDom = (attrs, allowCustomPanel) => {
|
|
|
39
39
|
}
|
|
40
40
|
const iconDiv = ['div',
|
|
41
41
|
// EDITOR-266 This fixes an issue in LCM where if you have nested panels
|
|
42
|
-
// The icon colour will be
|
|
42
|
+
// The icon colour will be overridden by the parent panel style, this is used to create a more specific css selector
|
|
43
43
|
{
|
|
44
44
|
class: PanelSharedCssClassName.icon,
|
|
45
|
-
|
|
46
|
-
'data-panel-type': panelType || PanelType.INFO
|
|
47
|
-
} : {})
|
|
45
|
+
'data-panel-type': panelType || PanelType.INFO
|
|
48
46
|
}];
|
|
49
47
|
const contentDiv = ['div', {
|
|
50
48
|
class: PanelSharedCssClassName.content
|
|
@@ -35,13 +35,13 @@ export var panelAttrsToDom = function panelAttrsToDom(attrs, allowCustomPanel) {
|
|
|
35
35
|
'data-panel-icon-text': panelIconText
|
|
36
36
|
});
|
|
37
37
|
}
|
|
38
|
-
var iconDiv = ['div',
|
|
39
|
-
//
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
38
|
+
var iconDiv = ['div',
|
|
39
|
+
// EDITOR-266 This fixes an issue in LCM where if you have nested panels
|
|
40
|
+
// The icon colour will be overridden by the parent panel style, this is used to create a more specific css selector
|
|
41
|
+
{
|
|
42
|
+
class: PanelSharedCssClassName.icon,
|
|
43
43
|
'data-panel-type': panelType || PanelType.INFO
|
|
44
|
-
}
|
|
44
|
+
}];
|
|
45
45
|
var contentDiv = ['div', {
|
|
46
46
|
class: PanelSharedCssClassName.content
|
|
47
47
|
}, 0];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-panel",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.11",
|
|
4
4
|
"description": "Panel plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
35
|
-
"@atlaskit/editor-common": "^
|
|
35
|
+
"@atlaskit/editor-common": "^107.0.0",
|
|
36
36
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
37
37
|
"@atlaskit/editor-plugin-analytics": "^2.3.0",
|
|
38
38
|
"@atlaskit/editor-plugin-decorations": "^2.0.0",
|
|
@@ -96,9 +96,6 @@
|
|
|
96
96
|
"platform_editor_nested_dnd_styles_changes": {
|
|
97
97
|
"type": "boolean"
|
|
98
98
|
},
|
|
99
|
-
"platform_editor_lcm_nested_panel_icon_fix": {
|
|
100
|
-
"type": "boolean"
|
|
101
|
-
},
|
|
102
99
|
"platform_editor_controls_patch_8": {
|
|
103
100
|
"type": "boolean"
|
|
104
101
|
}
|