@atlaskit/editor-plugin-expand 7.4.17 → 7.5.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,22 @@
1
1
  # @atlaskit/editor-plugin-expand
2
2
 
3
+ ## 7.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 7.5.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [`762b79e21f96a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/762b79e21f96a) -
14
+ Migrated and cleaned up legacy iconography usage.
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+
3
20
  ## 7.4.17
4
21
 
5
22
  ### Patch Changes
@@ -21,7 +21,6 @@ var _styles = require("@atlaskit/editor-common/styles");
21
21
  var _ui = require("@atlaskit/editor-common/ui");
22
22
  var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
23
23
  var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/core/chevron-right"));
24
- var _chevronRight2 = _interopRequireDefault(require("@atlaskit/icon/glyph/chevron-right"));
25
24
  var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
26
25
  var _excluded = ["buttonStyles"];
27
26
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
@@ -88,7 +87,6 @@ var CustomButton = exports.CustomButton = function CustomButton(props) {
88
87
  className: _styles.expandClassNames.iconContainer,
89
88
  iconBefore: (0, _react2.jsx)(_chevronRight.default, {
90
89
  label: '',
91
- LEGACY_fallbackIcon: _chevronRight2.default,
92
90
  size: "small"
93
91
  }),
94
92
  shouldFitContainer: true,
@@ -16,7 +16,6 @@ var _styles = require("@atlaskit/editor-common/styles");
16
16
  var _ui = require("@atlaskit/editor-common/ui");
17
17
  var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
18
18
  var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/core/chevron-right"));
19
- var _chevronRight2 = _interopRequireDefault(require("@atlaskit/icon/glyph/chevron-right"));
20
19
  var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
21
20
  var _excluded = ["buttonStyles"];
22
21
  /**
@@ -73,7 +72,6 @@ var ExpandButtonInner = exports.ExpandButtonInner = function ExpandButtonInner(p
73
72
  className: _styles.expandClassNames.iconContainer,
74
73
  iconBefore: (0, _react2.jsx)(_chevronRight.default, {
75
74
  label: '',
76
- LEGACY_fallbackIcon: _chevronRight2.default,
77
75
  size: "small"
78
76
  }),
79
77
  shouldFitContainer: true,
@@ -12,7 +12,6 @@ import { expandClassNames } from '@atlaskit/editor-common/styles';
12
12
  import { expandLayoutWrapperStyle, ExpandLayoutWrapperWithRef, expandMessages } from '@atlaskit/editor-common/ui';
13
13
  import { akEditorSwoopCubicBezier } from '@atlaskit/editor-shared-styles';
14
14
  import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
15
- import { default as ChevronRightIconLegacy } from '@atlaskit/icon/glyph/chevron-right';
16
15
  import Tooltip from '@atlaskit/tooltip';
17
16
  export const withTooltip = WrapperComponent => {
18
17
  return class WithSortableColumn extends React.Component {
@@ -72,7 +71,6 @@ export const CustomButton = props => {
72
71
  className: expandClassNames.iconContainer,
73
72
  iconBefore: jsx(ChevronRightIcon, {
74
73
  label: '',
75
- LEGACY_fallbackIcon: ChevronRightIconLegacy,
76
74
  size: "small"
77
75
  }),
78
76
  shouldFitContainer: true,
@@ -12,7 +12,6 @@ import { expandClassNames } from '@atlaskit/editor-common/styles';
12
12
  import { expandLayoutWrapperStyle, ExpandLayoutWrapperWithRef, expandMessages } from '@atlaskit/editor-common/ui';
13
13
  import { akEditorSwoopCubicBezier } from '@atlaskit/editor-shared-styles';
14
14
  import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
15
- import { default as ChevronRightIconLegacy } from '@atlaskit/icon/glyph/chevron-right';
16
15
  import Tooltip from '@atlaskit/tooltip';
17
16
  function withTooltip(Component) {
18
17
  return function WithTooltip(props) {
@@ -65,7 +64,6 @@ export const ExpandButtonInner = props => {
65
64
  className: expandClassNames.iconContainer,
66
65
  iconBefore: jsx(ChevronRightIcon, {
67
66
  label: '',
68
- LEGACY_fallbackIcon: ChevronRightIconLegacy,
69
67
  size: "small"
70
68
  }),
71
69
  shouldFitContainer: true,
@@ -24,7 +24,6 @@ import { expandClassNames } from '@atlaskit/editor-common/styles';
24
24
  import { expandLayoutWrapperStyle, ExpandLayoutWrapperWithRef, expandMessages } from '@atlaskit/editor-common/ui';
25
25
  import { akEditorSwoopCubicBezier } from '@atlaskit/editor-shared-styles';
26
26
  import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
27
- import { default as ChevronRightIconLegacy } from '@atlaskit/icon/glyph/chevron-right';
28
27
  import Tooltip from '@atlaskit/tooltip';
29
28
  export var withTooltip = function withTooltip(WrapperComponent) {
30
29
  return /*#__PURE__*/function (_React$Component) {
@@ -82,7 +81,6 @@ export var CustomButton = function CustomButton(props) {
82
81
  className: expandClassNames.iconContainer,
83
82
  iconBefore: jsx(ChevronRightIcon, {
84
83
  label: '',
85
- LEGACY_fallbackIcon: ChevronRightIconLegacy,
86
84
  size: "small"
87
85
  }),
88
86
  shouldFitContainer: true,
@@ -17,7 +17,6 @@ import { expandClassNames } from '@atlaskit/editor-common/styles';
17
17
  import { expandLayoutWrapperStyle, ExpandLayoutWrapperWithRef, expandMessages } from '@atlaskit/editor-common/ui';
18
18
  import { akEditorSwoopCubicBezier } from '@atlaskit/editor-shared-styles';
19
19
  import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
20
- import { default as ChevronRightIconLegacy } from '@atlaskit/icon/glyph/chevron-right';
21
20
  import Tooltip from '@atlaskit/tooltip';
22
21
  function withTooltip(Component) {
23
22
  return function WithTooltip(props) {
@@ -65,7 +64,6 @@ export var ExpandButtonInner = function ExpandButtonInner(props) {
65
64
  className: expandClassNames.iconContainer,
66
65
  iconBefore: jsx(ChevronRightIcon, {
67
66
  label: '',
68
- LEGACY_fallbackIcon: ChevronRightIconLegacy,
69
67
  size: "small"
70
68
  }),
71
69
  shouldFitContainer: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-expand",
3
- "version": "7.4.17",
3
+ "version": "7.5.1",
4
4
  "description": "Expand plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -31,7 +31,7 @@
31
31
  "dependencies": {
32
32
  "@atlaskit/adf-schema": "^51.5.0",
33
33
  "@atlaskit/browser-apis": "^0.0.1",
34
- "@atlaskit/button": "^23.7.0",
34
+ "@atlaskit/button": "^23.9.0",
35
35
  "@atlaskit/editor-plugin-analytics": "^6.2.0",
36
36
  "@atlaskit/editor-plugin-block-menu": "^5.2.0",
37
37
  "@atlaskit/editor-plugin-decorations": "^6.1.0",
@@ -39,17 +39,17 @@
39
39
  "@atlaskit/editor-plugin-editor-viewmode": "^8.0.0",
40
40
  "@atlaskit/editor-plugin-local-id": "^4.3.0",
41
41
  "@atlaskit/editor-plugin-selection": "^6.1.0",
42
- "@atlaskit/editor-plugin-selection-marker": "^6.2.0",
42
+ "@atlaskit/editor-plugin-selection-marker": "^6.3.0",
43
43
  "@atlaskit/editor-prosemirror": "^7.2.0",
44
44
  "@atlaskit/editor-shared-styles": "^3.10.0",
45
45
  "@atlaskit/editor-tables": "^2.9.0",
46
46
  "@atlaskit/editor-toolbar": "^0.18.0",
47
- "@atlaskit/icon": "^29.1.0",
48
- "@atlaskit/icon-lab": "^5.12.0",
47
+ "@atlaskit/icon": "^29.3.0",
48
+ "@atlaskit/icon-lab": "^5.13.0",
49
49
  "@atlaskit/platform-feature-flags": "^1.1.0",
50
50
  "@atlaskit/prosemirror-history": "^0.2.0",
51
- "@atlaskit/tmp-editor-statsig": "^15.12.0",
52
- "@atlaskit/tokens": "^8.5.0",
51
+ "@atlaskit/tmp-editor-statsig": "^16.0.0",
52
+ "@atlaskit/tokens": "^8.6.0",
53
53
  "@atlaskit/tooltip": "^20.11.0",
54
54
  "@babel/runtime": "^7.0.0",
55
55
  "@emotion/react": "^11.7.1",
@@ -57,7 +57,7 @@
57
57
  "w3c-keyname": "^2.1.8"
58
58
  },
59
59
  "peerDependencies": {
60
- "@atlaskit/editor-common": "^110.44.0",
60
+ "@atlaskit/editor-common": "^110.46.0",
61
61
  "react": "^18.2.0",
62
62
  "react-dom": "^18.2.0",
63
63
  "react-intl-next": "npm:react-intl@^5.18.1"