@atlaskit/renderer 114.3.4 → 114.4.1

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,26 @@
1
1
  # @atlaskit/renderer
2
2
 
3
+ ## 114.4.1
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
+ ## 114.4.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [#128632](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/128632)
17
+ [`4f577a185b2c4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4f577a185b2c4) -
18
+ [ux] set transparent background for multibodied extension
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+
3
24
  ## 114.3.4
4
25
 
5
26
  ### Patch Changes
@@ -88,7 +88,7 @@ var containerStylesNew = (0, _react.css)({
88
88
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
89
89
  ".multiBodiedExtension-content-dom-wrapper > [data-extension-frame='true'], .multiBodiedExtension--frames > [data-extension-frame='true']": {
90
90
  display: 'none',
91
- background: "var(--ds-surface, white)"
91
+ background: 'transparent'
92
92
  },
93
93
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
94
94
  '.multiBodiedExtension-content-dom-wrapper, .multiBodiedExtension--frames': {
@@ -15,7 +15,6 @@ var _adfSchema = require("@atlaskit/adf-schema");
15
15
  var _panel = require("@atlaskit/editor-common/panel");
16
16
  var _editorPalette = require("@atlaskit/editor-palette");
17
17
  var _emoji = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/emoji"));
18
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
19
18
  var _emoji2 = _interopRequireDefault(require("./emoji"));
20
19
  var _icons = require("@atlaskit/editor-common/icons");
21
20
  var _consts = require("@atlaskit/editor-shared-styles/consts");
@@ -239,10 +238,8 @@ var Panel = function Panel(props) {
239
238
  return null;
240
239
  }
241
240
  var Icon = panelIcons[panelType];
242
- return (0, _platformFeatureFlags.fg)('platform_editor_update_panel_icon_aria_label') ? (0, _react2.jsx)(Icon, {
241
+ return (0, _react2.jsx)(Icon, {
243
242
  label: "".concat(panelType, " panel")
244
- }) : (0, _react2.jsx)(Icon, {
245
- label: "Panel ".concat(panelType)
246
243
  });
247
244
  };
248
245
  var icon = getIcon();
@@ -67,7 +67,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
67
67
  var NORMAL_SEVERITY_THRESHOLD = exports.NORMAL_SEVERITY_THRESHOLD = 2000;
68
68
  var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
69
69
  var packageName = "@atlaskit/renderer";
70
- var packageVersion = "114.3.4";
70
+ var packageVersion = "114.4.1";
71
71
  var setAsQueryContainerStyles = (0, _react2.css)({
72
72
  containerName: 'ak-renderer-wrapper',
73
73
  containerType: 'inline-size',
@@ -96,7 +96,7 @@ const containerStylesNew = css({
96
96
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
97
97
  ".multiBodiedExtension-content-dom-wrapper > [data-extension-frame='true'], .multiBodiedExtension--frames > [data-extension-frame='true']": {
98
98
  display: 'none',
99
- background: "var(--ds-surface, white)"
99
+ background: 'transparent'
100
100
  },
101
101
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
102
102
  '.multiBodiedExtension-content-dom-wrapper, .multiBodiedExtension--frames': {
@@ -11,7 +11,6 @@ import { PanelType } from '@atlaskit/adf-schema';
11
11
  import { PanelSharedCssClassName, panelSharedStylesWithoutPrefix } from '@atlaskit/editor-common/panel';
12
12
  import { hexToEditorBackgroundPaletteColor } from '@atlaskit/editor-palette';
13
13
  import EmojiIcon from '@atlaskit/icon/glyph/editor/emoji';
14
- import { fg } from '@atlaskit/platform-feature-flags';
15
14
  import EmojiItem from './emoji';
16
15
  import { PanelInfoIcon, PanelSuccessIcon, PanelNoteIcon, PanelWarningIcon, PanelErrorIcon } from '@atlaskit/editor-common/icons';
17
16
  import { akEditorCustomIconSize } from '@atlaskit/editor-shared-styles/consts';
@@ -248,10 +247,8 @@ const Panel = props => {
248
247
  return null;
249
248
  }
250
249
  const Icon = panelIcons[panelType];
251
- return fg('platform_editor_update_panel_icon_aria_label') ? jsx(Icon, {
250
+ return jsx(Icon, {
252
251
  label: `${panelType} panel`
253
- }) : jsx(Icon, {
254
- label: `Panel ${panelType}`
255
252
  });
256
253
  };
257
254
  const icon = getIcon();
@@ -48,7 +48,7 @@ import { removeEmptySpaceAroundContent } from './rendererHelper';
48
48
  export const NORMAL_SEVERITY_THRESHOLD = 2000;
49
49
  export const DEGRADED_SEVERITY_THRESHOLD = 3000;
50
50
  const packageName = "@atlaskit/renderer";
51
- const packageVersion = "114.3.4";
51
+ const packageVersion = "114.4.1";
52
52
  const setAsQueryContainerStyles = css({
53
53
  containerName: 'ak-renderer-wrapper',
54
54
  containerType: 'inline-size',
@@ -79,7 +79,7 @@ var containerStylesNew = css({
79
79
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
80
80
  ".multiBodiedExtension-content-dom-wrapper > [data-extension-frame='true'], .multiBodiedExtension--frames > [data-extension-frame='true']": {
81
81
  display: 'none',
82
- background: "var(--ds-surface, white)"
82
+ background: 'transparent'
83
83
  },
84
84
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
85
85
  '.multiBodiedExtension-content-dom-wrapper, .multiBodiedExtension--frames': {
@@ -16,7 +16,6 @@ import { PanelType } from '@atlaskit/adf-schema';
16
16
  import { PanelSharedCssClassName, panelSharedStylesWithoutPrefix } from '@atlaskit/editor-common/panel';
17
17
  import { hexToEditorBackgroundPaletteColor } from '@atlaskit/editor-palette';
18
18
  import EmojiIcon from '@atlaskit/icon/glyph/editor/emoji';
19
- import { fg } from '@atlaskit/platform-feature-flags';
20
19
  import EmojiItem from './emoji';
21
20
  import { PanelInfoIcon, PanelSuccessIcon, PanelNoteIcon, PanelWarningIcon, PanelErrorIcon } from '@atlaskit/editor-common/icons';
22
21
  import { akEditorCustomIconSize } from '@atlaskit/editor-shared-styles/consts';
@@ -232,10 +231,8 @@ var Panel = function Panel(props) {
232
231
  return null;
233
232
  }
234
233
  var Icon = panelIcons[panelType];
235
- return fg('platform_editor_update_panel_icon_aria_label') ? jsx(Icon, {
234
+ return jsx(Icon, {
236
235
  label: "".concat(panelType, " panel")
237
- }) : jsx(Icon, {
238
- label: "Panel ".concat(panelType)
239
236
  });
240
237
  };
241
238
  var icon = getIcon();
@@ -57,7 +57,7 @@ import { removeEmptySpaceAroundContent } from './rendererHelper';
57
57
  export var NORMAL_SEVERITY_THRESHOLD = 2000;
58
58
  export var DEGRADED_SEVERITY_THRESHOLD = 3000;
59
59
  var packageName = "@atlaskit/renderer";
60
- var packageVersion = "114.3.4";
60
+ var packageVersion = "114.4.1";
61
61
  var setAsQueryContainerStyles = css({
62
62
  containerName: 'ak-renderer-wrapper',
63
63
  containerType: 'inline-size',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/renderer",
3
- "version": "114.3.4",
3
+ "version": "114.4.1",
4
4
  "description": "Renderer component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -31,7 +31,7 @@
31
31
  "@atlaskit/analytics-next": "^11.0.0",
32
32
  "@atlaskit/button": "^21.1.0",
33
33
  "@atlaskit/code": "^16.0.0",
34
- "@atlaskit/editor-common": "^102.10.0",
34
+ "@atlaskit/editor-common": "^102.11.0",
35
35
  "@atlaskit/editor-json-transformer": "^8.24.0",
36
36
  "@atlaskit/editor-palette": "^2.1.0",
37
37
  "@atlaskit/editor-prosemirror": "7.0.0",
@@ -129,9 +129,6 @@
129
129
  "platform_editor_emotion_refactor_renderer": {
130
130
  "type": "boolean"
131
131
  },
132
- "platform_editor_update_panel_icon_aria_label": {
133
- "type": "boolean"
134
- },
135
132
  "annotations_defensive_node_name_calculations": {
136
133
  "type": "boolean"
137
134
  },