@atlaskit/editor-plugin-panel 4.4.8 → 4.4.10

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.10
4
+
5
+ ### Patch Changes
6
+
7
+ - [#171657](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/171657)
8
+ [`cb6c865095af1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cb6c865095af1) -
9
+ Clean-up platform_editor_lcm_nested_panel_icon_fix
10
+ - Updated dependencies
11
+
12
+ ## 4.4.9
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+
3
18
  ## 4.4.8
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', // EDITOR-266 This fixes an issue in LCM where if you have nested panels
46
- // The icon colour will be overriden by the parent panel style, this is used to create a more specefic css selector
47
- _objectSpread({
48
- class: _panel.PanelSharedCssClassName.icon
49
- }, (0, _platformFeatureFlags.fg)('platform_editor_lcm_nested_panel_icon_fix') ? {
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 overriden by the parent panel style, this is used to create a more specefic css selector
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
- ...(fg('platform_editor_lcm_nested_panel_icon_fix') ? {
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', // EDITOR-266 This fixes an issue in LCM where if you have nested panels
39
- // The icon colour will be overriden by the parent panel style, this is used to create a more specefic css selector
40
- _objectSpread({
41
- class: PanelSharedCssClassName.icon
42
- }, fg('platform_editor_lcm_nested_panel_icon_fix') ? {
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.8",
3
+ "version": "4.4.10",
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": "^106.6.0",
35
+ "@atlaskit/editor-common": "^106.9.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",
@@ -40,11 +40,11 @@
40
40
  "@atlaskit/editor-prosemirror": "7.0.0",
41
41
  "@atlaskit/editor-shared-styles": "^3.4.0",
42
42
  "@atlaskit/emoji": "^69.3.0",
43
- "@atlaskit/icon": "^26.4.0",
43
+ "@atlaskit/icon": "^27.0.0",
44
44
  "@atlaskit/platform-feature-flags": "^1.1.0",
45
45
  "@atlaskit/theme": "^18.0.0",
46
- "@atlaskit/tmp-editor-statsig": "^7.0.0",
47
- "@atlaskit/tokens": "^5.1.0",
46
+ "@atlaskit/tmp-editor-statsig": "^7.1.0",
47
+ "@atlaskit/tokens": "^5.2.0",
48
48
  "@babel/runtime": "^7.0.0",
49
49
  "uuid": "^3.1.0"
50
50
  },
@@ -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
  }