@atlaskit/editor-plugin-extension 5.5.11 → 5.5.13

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,19 @@
1
1
  # @atlaskit/editor-plugin-extension
2
2
 
3
+ ## 5.5.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [#179090](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/179090)
8
+ [`5a7c6f6b155de`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5a7c6f6b155de) -
9
+ Clean up deprecation message feature flag
10
+
11
+ ## 5.5.12
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 5.5.11
4
18
 
5
19
  ### Patch Changes
@@ -8,7 +8,6 @@ exports.DescriptionSummary = DescriptionSummary;
8
8
  var _react = _interopRequireWildcard(require("react"));
9
9
  var _reactIntlNext = require("react-intl-next");
10
10
  var _extensions = require("@atlaskit/editor-common/extensions");
11
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
12
11
  var _primitives = require("@atlaskit/primitives");
13
12
  var _HelpLink = require("./HelpLink");
14
13
  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); }
@@ -37,7 +36,7 @@ function DescriptionSummary(_ref) {
37
36
  }, description && /*#__PURE__*/_react.default.createElement(_react.Fragment, null,
38
37
  // Ignored via go/ees005
39
38
  // eslint-disable-next-line require-unicode-regexp
40
- description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && (0, _platformFeatureFlags.fg)('platform_editor_extension_deprecation_status') && /*#__PURE__*/_react.default.createElement(_primitives.Box, {
39
+ description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && /*#__PURE__*/_react.default.createElement(_primitives.Box, {
41
40
  paddingBlockStart: "space.150"
42
41
  }, deprecation.message), documentationUrl && (enableHelpCTA ? /*#__PURE__*/_react.default.createElement(_primitives.Box, {
43
42
  xcss: helpLinkStyles
@@ -12,7 +12,6 @@ var _new = require("@atlaskit/button/new");
12
12
  var _extensions = require("@atlaskit/editor-common/extensions");
13
13
  var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
14
14
  var _closeCross = _interopRequireDefault(require("@atlaskit/icon/core/migration/close--cross"));
15
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
16
15
  var _primitives = require("@atlaskit/primitives");
17
16
  var _colors = require("@atlaskit/theme/colors");
18
17
  var _constants = require("@atlaskit/theme/constants");
@@ -151,7 +150,7 @@ var Header = function Header(_ref) {
151
150
  }, description && (0, _react2.jsx)(_react.Fragment, null,
152
151
  // Ignored via go/ees005
153
152
  // eslint-disable-next-line require-unicode-regexp
154
- description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && (0, _platformFeatureFlags.fg)('platform_editor_extension_deprecation_status') && (0, _react2.jsx)(_primitives.Box, {
153
+ description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && (0, _react2.jsx)(_primitives.Box, {
155
154
  paddingBlockStart: "space.150"
156
155
  }, deprecation.message), documentationUrl && (enableHelpCTA ? (0, _react2.jsx)(_primitives.Box, {
157
156
  xcss: helpLinkStyles
@@ -1,7 +1,6 @@
1
1
  import React, { Fragment } from 'react';
2
2
  import { useIntl } from 'react-intl-next';
3
3
  import { configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
4
- import { fg } from '@atlaskit/platform-feature-flags';
5
4
  import { Box, Text, xcss } from '@atlaskit/primitives';
6
5
  import { HelpLink } from './HelpLink';
7
6
  const descriptionStyles = xcss({
@@ -33,7 +32,7 @@ export function DescriptionSummary({
33
32
  }, description && /*#__PURE__*/React.createElement(Fragment, null,
34
33
  // Ignored via go/ees005
35
34
  // eslint-disable-next-line require-unicode-regexp
36
- description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && fg('platform_editor_extension_deprecation_status') && /*#__PURE__*/React.createElement(Box, {
35
+ description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && /*#__PURE__*/React.createElement(Box, {
37
36
  paddingBlockStart: "space.150"
38
37
  }, deprecation.message), documentationUrl && (enableHelpCTA ? /*#__PURE__*/React.createElement(Box, {
39
38
  xcss: helpLinkStyles
@@ -11,7 +11,6 @@ import { IconButton } from '@atlaskit/button/new';
11
11
  import { configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
12
12
  import { relativeFontSizeToBase16 } from '@atlaskit/editor-shared-styles';
13
13
  import CrossIcon from '@atlaskit/icon/core/migration/close--cross';
14
- import { fg } from '@atlaskit/platform-feature-flags';
15
14
  import { Box, Text, xcss } from '@atlaskit/primitives';
16
15
  import { N200 } from '@atlaskit/theme/colors';
17
16
  import { borderRadius } from '@atlaskit/theme/constants';
@@ -142,7 +141,7 @@ const Header = ({
142
141
  }, description && jsx(Fragment, null,
143
142
  // Ignored via go/ees005
144
143
  // eslint-disable-next-line require-unicode-regexp
145
- description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && fg('platform_editor_extension_deprecation_status') && jsx(Box, {
144
+ description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && jsx(Box, {
146
145
  paddingBlockStart: "space.150"
147
146
  }, deprecation.message), documentationUrl && (enableHelpCTA ? jsx(Box, {
148
147
  xcss: helpLinkStyles
@@ -1,7 +1,6 @@
1
1
  import React, { Fragment } from 'react';
2
2
  import { useIntl } from 'react-intl-next';
3
3
  import { configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
4
- import { fg } from '@atlaskit/platform-feature-flags';
5
4
  import { Box, Text, xcss } from '@atlaskit/primitives';
6
5
  import { HelpLink } from './HelpLink';
7
6
  var descriptionStyles = xcss({
@@ -29,7 +28,7 @@ export function DescriptionSummary(_ref) {
29
28
  }, description && /*#__PURE__*/React.createElement(Fragment, null,
30
29
  // Ignored via go/ees005
31
30
  // eslint-disable-next-line require-unicode-regexp
32
- description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && fg('platform_editor_extension_deprecation_status') && /*#__PURE__*/React.createElement(Box, {
31
+ description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && /*#__PURE__*/React.createElement(Box, {
33
32
  paddingBlockStart: "space.150"
34
33
  }, deprecation.message), documentationUrl && (enableHelpCTA ? /*#__PURE__*/React.createElement(Box, {
35
34
  xcss: helpLinkStyles
@@ -11,7 +11,6 @@ import { IconButton } from '@atlaskit/button/new';
11
11
  import { configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
12
12
  import { relativeFontSizeToBase16 } from '@atlaskit/editor-shared-styles';
13
13
  import CrossIcon from '@atlaskit/icon/core/migration/close--cross';
14
- import { fg } from '@atlaskit/platform-feature-flags';
15
14
  import { Box, Text, xcss } from '@atlaskit/primitives';
16
15
  import { N200 } from '@atlaskit/theme/colors';
17
16
  import { borderRadius } from '@atlaskit/theme/constants';
@@ -143,7 +142,7 @@ var Header = function Header(_ref) {
143
142
  }, description && jsx(Fragment, null,
144
143
  // Ignored via go/ees005
145
144
  // eslint-disable-next-line require-unicode-regexp
146
- description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && fg('platform_editor_extension_deprecation_status') && jsx(Box, {
145
+ description.replace(/([^.])$/, '$1.'), ' '), (deprecation === null || deprecation === void 0 ? void 0 : deprecation.isDeprecated) && (deprecation === null || deprecation === void 0 ? void 0 : deprecation.message) && jsx(Box, {
147
146
  paddingBlockStart: "space.150"
148
147
  }, deprecation.message), documentationUrl && (enableHelpCTA ? jsx(Box, {
149
148
  xcss: helpLinkStyles
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-extension",
3
- "version": "5.5.11",
3
+ "version": "5.5.13",
4
4
  "description": "editor-plugin-extension plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -9,8 +9,7 @@
9
9
  },
10
10
  "atlassian": {
11
11
  "team": "Editor: Core Experiences",
12
- "singleton": true,
13
- "runReact18": true
12
+ "singleton": true
14
13
  },
15
14
  "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
16
15
  "main": "dist/cjs/index.js",
@@ -32,7 +31,7 @@
32
31
  "@atlaskit/button": "^23.2.0",
33
32
  "@atlaskit/checkbox": "^17.1.0",
34
33
  "@atlaskit/datetime-picker": "^17.0.0",
35
- "@atlaskit/editor-common": "^107.1.0",
34
+ "@atlaskit/editor-common": "^107.3.0",
36
35
  "@atlaskit/editor-json-transformer": "^8.24.0",
37
36
  "@atlaskit/editor-plugin-analytics": "^2.3.0",
38
37
  "@atlaskit/editor-plugin-connectivity": "^2.0.0",
@@ -44,23 +43,23 @@
44
43
  "@atlaskit/editor-prosemirror": "7.0.0",
45
44
  "@atlaskit/editor-shared-styles": "^3.4.0",
46
45
  "@atlaskit/editor-tables": "^2.9.0",
47
- "@atlaskit/empty-state": "^10.0.0",
46
+ "@atlaskit/empty-state": "^10.1.0",
48
47
  "@atlaskit/form": "^12.0.0",
49
48
  "@atlaskit/heading": "^5.2.0",
50
- "@atlaskit/icon": "^27.1.0",
49
+ "@atlaskit/icon": "^27.2.0",
51
50
  "@atlaskit/link": "^3.2.0",
52
51
  "@atlaskit/platform-feature-flags": "^1.1.0",
53
- "@atlaskit/primitives": "^14.9.0",
52
+ "@atlaskit/primitives": "^14.10.0",
54
53
  "@atlaskit/radio": "^8.1.0",
55
54
  "@atlaskit/section-message": "^8.2.0",
56
- "@atlaskit/select": "^20.7.0",
55
+ "@atlaskit/select": "^21.0.0",
57
56
  "@atlaskit/smart-user-picker": "^8.0.0",
58
57
  "@atlaskit/spinner": "^18.0.0",
59
58
  "@atlaskit/tabs": "^18.1.0",
60
59
  "@atlaskit/textarea": "^8.0.0",
61
60
  "@atlaskit/textfield": "^8.0.0",
62
61
  "@atlaskit/theme": "^18.0.0",
63
- "@atlaskit/tmp-editor-statsig": "^8.0.0",
62
+ "@atlaskit/tmp-editor-statsig": "^8.5.0",
64
63
  "@atlaskit/toggle": "^15.0.0",
65
64
  "@atlaskit/tokens": "^5.4.0",
66
65
  "@atlaskit/tooltip": "^20.3.0",
@@ -118,9 +117,6 @@
118
117
  "platform_editor_ai_object_sidebar_injection": {
119
118
  "type": "boolean"
120
119
  },
121
- "platform_editor_extension_deprecation_status": {
122
- "type": "boolean"
123
- },
124
120
  "platform_editor_update_extension_local_id_on_reset": {
125
121
  "type": "boolean"
126
122
  },