@atlaskit/renderer 124.21.1 → 124.21.2

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,13 @@
1
1
  # @atlaskit/renderer
2
2
 
3
+ ## 124.21.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`90abe9b926a6f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/90abe9b926a6f) -
8
+ Icon entrypoint migration
9
+ - Updated dependencies
10
+
3
11
  ## 124.21.1
4
12
 
5
13
  ### Patch Changes
@@ -9,12 +9,12 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
9
9
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
10
10
  var _react = _interopRequireDefault(require("react"));
11
11
  var _react2 = require("@emotion/react");
12
- var _lightbulbEditorHint = _interopRequireDefault(require("@atlaskit/icon/core/migration/lightbulb--editor-hint"));
12
+ var _lightbulb = _interopRequireDefault(require("@atlaskit/icon/core/lightbulb"));
13
13
  var _adfSchema = require("@atlaskit/adf-schema");
14
14
  var _panel = require("@atlaskit/editor-common/panel");
15
15
  var _editorPalette = require("@atlaskit/editor-palette");
16
- var _emojiEditorEmoji = _interopRequireDefault(require("@atlaskit/icon/core/migration/emoji--editor-emoji"));
17
- var _emoji = _interopRequireDefault(require("./emoji"));
16
+ var _emoji = _interopRequireDefault(require("@atlaskit/icon/core/emoji"));
17
+ var _emoji2 = _interopRequireDefault(require("./emoji"));
18
18
  var _icons = require("@atlaskit/editor-common/icons");
19
19
  var _consts = require("@atlaskit/editor-shared-styles/consts");
20
20
  var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
@@ -190,10 +190,10 @@ var panelIcons = {
190
190
  info: _icons.PanelInfoIcon,
191
191
  success: _icons.PanelSuccessIcon,
192
192
  note: _icons.PanelNoteIcon,
193
- tip: _lightbulbEditorHint.default,
193
+ tip: _lightbulb.default,
194
194
  warning: _icons.PanelWarningIcon,
195
195
  error: _icons.PanelErrorIcon,
196
- custom: _emojiEditorEmoji.default
196
+ custom: _emoji.default
197
197
  };
198
198
  var Panel = function Panel(props) {
199
199
  var allowCustomPanels = props.allowCustomPanels,
@@ -211,7 +211,7 @@ var Panel = function Panel(props) {
211
211
  var getIcon = function getIcon() {
212
212
  if (panelType === _adfSchema.PanelType.CUSTOM) {
213
213
  if (panelIcon && providers) {
214
- return (0, _react2.jsx)(_emoji.default, {
214
+ return (0, _react2.jsx)(_emoji2.default, {
215
215
  id: panelIconId,
216
216
  text: panelIconText,
217
217
  shortName: panelIcon,
@@ -69,7 +69,7 @@ var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
69
69
  // we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
70
70
  var TABLE_INFO_TIMEOUT = 10000;
71
71
  var packageName = "@atlaskit/renderer";
72
- var packageVersion = "0.0.0-development";
72
+ var packageVersion = "124.21.1";
73
73
  var setAsQueryContainerStyles = (0, _react2.css)({
74
74
  containerName: 'ak-renderer-wrapper',
75
75
  containerType: 'inline-size'
@@ -6,11 +6,11 @@ import _extends from "@babel/runtime/helpers/extends";
6
6
  import React from 'react';
7
7
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
8
8
  import { css, jsx } from '@emotion/react';
9
- import TipIcon from '@atlaskit/icon/core/migration/lightbulb--editor-hint';
9
+ import TipIcon from '@atlaskit/icon/core/lightbulb';
10
10
  import { PanelType } from '@atlaskit/adf-schema';
11
11
  import { PanelSharedCssClassName } from '@atlaskit/editor-common/panel';
12
12
  import { hexToEditorBackgroundPaletteColor } from '@atlaskit/editor-palette';
13
- import EmojiIcon from '@atlaskit/icon/core/migration/emoji--editor-emoji';
13
+ import EmojiIcon from '@atlaskit/icon/core/emoji';
14
14
  import EmojiItem from './emoji';
15
15
  import { PanelInfoIcon, PanelSuccessIcon, PanelNoteIcon, PanelWarningIcon, PanelErrorIcon } from '@atlaskit/editor-common/icons';
16
16
  import { akEditorCustomIconSize } from '@atlaskit/editor-shared-styles/consts';
@@ -55,7 +55,7 @@ export const DEGRADED_SEVERITY_THRESHOLD = 3000;
55
55
  // we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
56
56
  const TABLE_INFO_TIMEOUT = 10000;
57
57
  const packageName = "@atlaskit/renderer";
58
- const packageVersion = "0.0.0-development";
58
+ const packageVersion = "124.21.1";
59
59
  const setAsQueryContainerStyles = css({
60
60
  containerName: 'ak-renderer-wrapper',
61
61
  containerType: 'inline-size'
@@ -8,11 +8,11 @@ var _excluded = ["backgroundColor", "hasIcon"];
8
8
  import React from 'react';
9
9
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
10
10
  import { css, jsx } from '@emotion/react';
11
- import TipIcon from '@atlaskit/icon/core/migration/lightbulb--editor-hint';
11
+ import TipIcon from '@atlaskit/icon/core/lightbulb';
12
12
  import { PanelType } from '@atlaskit/adf-schema';
13
13
  import { PanelSharedCssClassName } from '@atlaskit/editor-common/panel';
14
14
  import { hexToEditorBackgroundPaletteColor } from '@atlaskit/editor-palette';
15
- import EmojiIcon from '@atlaskit/icon/core/migration/emoji--editor-emoji';
15
+ import EmojiIcon from '@atlaskit/icon/core/emoji';
16
16
  import EmojiItem from './emoji';
17
17
  import { PanelInfoIcon, PanelSuccessIcon, PanelNoteIcon, PanelWarningIcon, PanelErrorIcon } from '@atlaskit/editor-common/icons';
18
18
  import { akEditorCustomIconSize } from '@atlaskit/editor-shared-styles/consts';
@@ -60,7 +60,7 @@ export var DEGRADED_SEVERITY_THRESHOLD = 3000;
60
60
  // we want to calculate all the table widths (which causes reflows) after the renderer has finished loading to mitigate performance impact
61
61
  var TABLE_INFO_TIMEOUT = 10000;
62
62
  var packageName = "@atlaskit/renderer";
63
- var packageVersion = "0.0.0-development";
63
+ var packageVersion = "124.21.1";
64
64
  var setAsQueryContainerStyles = css({
65
65
  containerName: 'ak-renderer-wrapper',
66
66
  containerType: 'inline-size'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/renderer",
3
- "version": "124.21.1",
3
+ "version": "124.21.2",
4
4
  "description": "Renderer component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"